:root {
  --purple: #6f4ca5;
  --purple-deep: #38234f;
  --purple-dark: #281838;
  --lavender: #ddcef2;
  --lavender-soft: #f4effb;
  --ink: #211b26;
  --muted: #68606f;
  --cream: #fbfafc;
  --white: #fff;
  --line: #e4ddeb;
  --shadow: 0 18px 55px rgba(56,35,79,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; padding: .8rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .75rem clamp(1.25rem, 5vw, 5rem); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(111,76,165,.12); position: sticky; top: 0; z-index: 30; backdrop-filter: blur(12px); }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; line-height: 1.05; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font: 800 1.05rem/1.1 "Manrope", sans-serif; color: var(--purple-deep); }
.brand small { margin-top: .27rem; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
nav { display: flex; align-items: center; gap: 1.7rem; }
nav a { text-decoration: none; font-weight: 700; font-size: .92rem; }
nav a:hover { color: var(--purple); }
.nav-call { background: var(--purple-deep); color: white; padding: .7rem 1.05rem; border-radius: 999px; }
.nav-call:hover { color: white; background: var(--purple); }

.hero { min-height: 670px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(31,20,44,.93) 0%, rgba(45,28,63,.82) 36%, rgba(45,28,63,.2) 68%, rgba(45,28,63,.04) 100%); }
.hero-content { position: relative; z-index: 2; width: min(670px, 90%); margin-left: clamp(1.25rem, 7vw, 7rem); color: white; padding: 5rem 0; }
.eyebrow { margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: .78rem; color: var(--lavender); }
.eyebrow.dark { color: var(--purple); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; letter-spacing: -.035em; }
h1 { margin-bottom: 1.3rem; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .99; max-width: 780px; }
.hero-copy { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; max-width: 610px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.25rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; padding: .8rem 1.2rem; text-decoration: none; font: 800 .95rem "DM Sans", sans-serif; border: 2px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple); color: white; box-shadow: 0 10px 24px rgba(38,23,52,.24); }
.button-primary:hover { background: #7e5ab5; }
.button-light { background: rgba(255,255,255,.95); color: var(--purple-deep); }
.service-area { font-size: .9rem; color: rgba(255,255,255,.74); }

.trust-strip { background: var(--purple-dark); color: white; display: grid; grid-template-columns: repeat(3, 1fr); padding: 1.35rem clamp(1.25rem, 7vw, 7rem); }
.trust-strip div { display: grid; grid-template-columns: 2rem 1fr; padding: .5rem 2.4rem; border-right: 1px solid rgba(255,255,255,.16); }
.trust-strip div:last-child { border: 0; }
.trust-strip span { grid-row: 1 / 3; font-weight: 800; color: #bca3dc; }
.trust-strip strong { font-family: "Manrope", sans-serif; }
.trust-strip small { color: rgba(255,255,255,.68); }

.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem); }
.section-heading { max-width: 720px; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4rem); line-height: 1.08; margin-bottom: 1.1rem; }
.section-heading > p:last-child { font-size: 1.08rem; color: var(--muted); max-width: 650px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3.2rem; }
.service-card { min-height: 310px; padding: 2rem; background: white; border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; box-shadow: 0 8px 30px rgba(56,35,79,.04); }
.service-card.featured { background: var(--purple-deep); color: white; border-color: var(--purple-deep); box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--lavender-soft); color: var(--purple); font-size: 1.5rem; font-weight: 700; margin-bottom: 2.2rem; }
.featured .service-icon { background: rgba(255,255,255,.13); color: var(--lavender); }
.service-card h3 { font-size: 1.45rem; margin-bottom: .65rem; }
.service-card p { color: var(--muted); margin: 0 0 1.8rem; }
.featured p { color: rgba(255,255,255,.75); }
.service-card a { margin-top: auto; font-weight: 800; color: var(--purple); text-decoration: none; }
.service-card a span { margin-left: .35rem; }
.featured a { color: var(--lavender); }

.promise { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--purple-deep); color: white; }
.promise-copy, .promise-note { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem); }
.promise-copy { border-right: 1px solid rgba(255,255,255,.14); }
.promise-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); font-size: 1.08rem; max-width: 650px; }
.promise-copy a { display: inline-block; margin-top: 1rem; color: var(--lavender); font-weight: 800; text-decoration: none; }
.promise-note { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #513672, #342047); }
.quote-mark { font: 800 5rem/1 Georgia, serif; color: #bca3dc; }
.promise-note p { font: 700 clamp(1.5rem, 2.7vw, 2.35rem)/1.3 "Manrope", sans-serif; margin: -.5rem 0 1.5rem; }
.promise-note small { letter-spacing: .16em; color: #cbb8e5; font-weight: 700; }

.estimate-section { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(480px,1.28fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; background: var(--lavender-soft); }
.estimate-intro { position: sticky; top: 120px; }
.estimate-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.direct-contact { margin-top: 2.2rem; padding: 1.4rem; background: white; border-left: 4px solid var(--purple); box-shadow: 0 8px 30px rgba(56,35,79,.08); }
.direct-contact span, .direct-contact small { display: block; color: var(--muted); }
.direct-contact a { display: block; color: var(--purple-deep); font: 800 1.45rem "Manrope", sans-serif; text-decoration: none; }
.direct-contact .email-link { margin-top: .75rem; font: 700 .95rem "DM Sans", sans-serif; color: var(--purple); overflow-wrap: anywhere; }
.estimate-form { background: white; padding: clamp(1.35rem, 4vw, 3rem); border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .88rem; font-weight: 800; color: var(--purple-deep); margin-bottom: 1rem; }
input, select, textarea { width: 100%; margin-top: .45rem; border: 1px solid #cdc4d5; border-radius: 8px; background: #fff; color: var(--ink); padding: .85rem .9rem; font: 500 1rem "DM Sans", sans-serif; min-height: 50px; }
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(111,76,165,.18); border-color: var(--purple); }
.submit-button { width: 100%; margin-top: .4rem; }
.form-note { text-align: center; color: var(--muted); font-size: .82rem; margin: .75rem 0 0; }
.form-status { min-height: 1.5rem; color: var(--purple-deep); font-weight: 700; text-align: center; }

footer { background: #1d1228; color: white; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 3.5rem clamp(1.25rem, 7vw, 7rem); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font: 800 1.2rem "Manrope", sans-serif; }
.footer-brand span, footer > p { color: rgba(255,255,255,.6); }
.footer-contact { text-align: right; }
.footer-contact span { display: block; color: rgba(255,255,255,.65); }
.footer-contact a { font: 800 1.45rem "Manrope", sans-serif; text-decoration: none; color: var(--lavender); }
.footer-contact .footer-email { display: block; margin-top: .25rem; font: 600 .9rem "DM Sans", sans-serif; color: white; }
footer > p { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); margin: 0; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-call { display: none; }
.meet-marie { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.marie-portrait { width: 100%; max-width: 440px; height: auto; border-radius: 18px; box-shadow: var(--shadow); }
.meet-marie p:not(.eyebrow) { font-size: 1.08rem; color: var(--muted); margin-bottom: 1.6rem; }
@media (max-width: 700px) {
  .meet-marie { grid-template-columns: 1fr; }
  .marie-portrait { max-width: 360px; margin-inline: auto; }
}

@media (max-width: 900px) {
  nav a:not(.nav-call) { display: none; }
  .hero { min-height: 620px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(31,20,44,.94) 0%, rgba(45,28,63,.78) 60%, rgba(45,28,63,.3) 100%); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding: .8rem 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .promise { grid-template-columns: 1fr; }
  .promise-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .estimate-section { grid-template-columns: 1fr; }
  .estimate-intro { position: static; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .site-header { min-height: 72px; padding: .5rem 1rem; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .61rem; letter-spacing: .07em; }
  .nav-call { display: none; }
  .hero { min-height: 680px; align-items: end; }
  .hero-image { object-position: 69% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(31,20,44,.97) 0%, rgba(45,28,63,.85) 50%, rgba(45,28,63,.35) 100%); }
  .hero-content { margin: 0; width: 100%; padding: 3.5rem 1.25rem; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section { padding: 4.5rem 1.25rem; }
  .promise-copy, .promise-note { padding: 4rem 1.25rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .footer-contact { text-align: left; }
  .mobile-call { position: fixed; display: grid; place-items: center; left: 0; right: 0; bottom: 0; height: 64px; z-index: 40; background: var(--purple); color: white; font-weight: 800; text-decoration: none; box-shadow: 0 -5px 20px rgba(32,18,44,.25); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
