:root {
  --ink: #16312d;
  --ink-soft: #35514b;
  --muted: #647873;
  --teal: #0f766e;
  --teal-deep: #0b514d;
  --mint: #dff4eb;
  --sage: #a8c8b8;
  --coral: #f47d68;
  --coral-deep: #c95e50;
  --paper: #f6faf7;
  --surface: #ffffff;
  --surface-soft: #edf6f1;
  --border: #d7e6df;
  --error: #b3261e;
  --success: #28704a;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 5rem;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 8px 24px rgba(22, 49, 45, .07);
  --shadow-lg: 0 22px 60px rgba(22, 49, 45, .13);
  --maxw: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 1rem; line-height: 1.65; }
img, svg { max-width: 100%; }
h1, h2, h3 { color: var(--ink); font-family: var(--font-display); line-height: 1.08; letter-spacing: -.045em; margin: 0 0 var(--space-2); }
h1 { max-width: 13ch; font-size: clamp(2.7rem, 6vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 780; }
h3 { font-size: 1.35rem; font-weight: 750; }
p { margin-top: 0; }
a { color: var(--teal-deep); }
a:hover { color: var(--coral-deep); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; border-radius: 6px; }
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.container-narrow { max-width: 48rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: .7rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

.draft-banner { background: #fff3c4; color: #5d4a12; text-align: center; font-size: .78rem; font-weight: 800; letter-spacing: .06em; padding: .55rem 1rem; }
.confirm-flag { display: inline-block; background: #fff0ed; color: #934338; border: 1px dashed #e08a79; border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .02em; padding: .1rem .5rem; vertical-align: middle; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246, 250, 247, .9); border-bottom: 1px solid rgba(215, 230, 223, .8); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); min-height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 2.55rem; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { color: var(--ink); font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.06em; }
.brand-type { color: var(--teal); font-size: .58rem; font-weight: 850; letter-spacing: .34em; }
.nav-toggle { display: none; align-items: center; gap: .5rem; min-height: 44px; padding: .5rem .9rem; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); color: var(--ink); font: inherit; font-weight: 700; cursor: pointer; }
.nav-toggle-bar { display: inline-block; width: 18px; height: 2px; background: var(--teal); box-shadow: 0 -5px 0 var(--teal), 0 5px 0 var(--teal); }
.nav-list { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-list a { display: inline-block; padding: .55rem .1rem; color: var(--ink-soft); font-size: .92rem; font-weight: 750; text-decoration: none; }
.nav-list a:hover { color: var(--teal); }
.nav-cta { padding: .72rem 1.15rem !important; border-radius: 999px; background: var(--teal); color: #fff !important; box-shadow: 0 8px 18px rgba(15, 118, 110, .2); }
.nav-cta:hover { background: var(--teal-deep); color: #fff !important; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .8rem 1.35rem; border: 2px solid transparent; border-radius: 999px; font-size: .98rem; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 10px 22px rgba(244, 125, 104, .25); }
.btn-primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--teal); color: var(--teal-deep); }
.btn-ghost:hover { background: var(--mint); color: var(--teal-deep); }
.btn-block { width: 100%; }
.text-link { font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero { overflow: hidden; background: radial-gradient(circle at 80% 18%, rgba(168, 200, 184, .4), transparent 34%), linear-gradient(135deg, #f6faf7 0%, #e4f3eb 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; min-height: 690px; padding-block: 5.5rem; }
.eyebrow { display: inline-flex; flex-wrap: wrap; gap: .45rem; color: var(--teal); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.lede { max-width: 39rem; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 .8rem; }
.hero-sms-note { max-width: 42ch; color: var(--muted); font-size: .82rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .65rem; list-style: none; margin: 1.7rem 0 0; padding: 0; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.hero-points li { padding: .55rem .8rem; border: 1px solid rgba(15, 118, 110, .18); border-radius: 999px; background: rgba(255,255,255,.58); }
.hero-art { display: grid; place-items: center; min-height: 370px; border-radius: 50% 50% 44% 56% / 48% 44% 56% 52%; background: var(--teal); box-shadow: var(--shadow-lg); transform: rotate(3deg); }
.hero-mark { width: min(280px, 64%); transform: rotate(-3deg); }

.section { padding-block: var(--space-5); }
.section-alt { background: var(--surface); }
.section-intro { max-width: 47rem; margin-bottom: 2.4rem; color: var(--muted); font-size: 1.1rem; }
.service { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); padding: clamp(1.5rem, 4vw, 2.5rem); }
.service-featured { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr; margin-bottom: 1rem; border: 0; background: var(--ink); color: #e8f4ef; box-shadow: var(--shadow-lg); }
.service-featured::after { position: absolute; right: -8rem; top: -8rem; width: 18rem; height: 18rem; border-radius: 50%; background: var(--mint); content: ""; opacity: .45; }
.service-featured h3, .service-featured p, .service-featured li { position: relative; z-index: 1; color: #fff; }
.service-featured p { color: #cfe3dc; }
.service-featured .service-tag { color: var(--coral); }
.service-featured .btn { position: relative; z-index: 1; width: fit-content; }
.service-tag { margin-bottom: .4rem; color: var(--coral-deep); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-list { columns: 2; gap: 2rem; margin: 1.2rem 0 1.7rem; padding-left: 1.15rem; }
.service-list li { margin-bottom: .45rem; break-inside: avoid; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-row .service { transition: transform .18s ease, box-shadow .18s ease; }
.service-row .service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .7rem; list-style: none; margin: 0 0 1.5rem; padding: 0; }
.area-list li { padding: .72rem .9rem; border-radius: var(--radius-sm); background: var(--surface-soft); color: var(--ink-soft); font-weight: 750; }
.area-note { color: var(--muted); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.why-item { padding: 1.5rem; border-radius: var(--radius-md); background: var(--surface-soft); }
.why-item h3 { font-size: 1.18rem; }
.why-item p { margin: 0; color: var(--muted); }
.proof-note { margin-top: 2rem; padding: 1.2rem 1.4rem; border: 1px dashed var(--sage); border-radius: var(--radius-md); background: var(--mint); color: var(--ink-soft); }
.testimonial-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 1rem; margin-top: 2rem; }
.testimonial-card { margin: 0; padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.testimonial-featured { border: 0; background: var(--mint); box-shadow: none; }
.testimonial-card blockquote { margin: 0 0 1.4rem; color: var(--ink); font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 650; line-height: 1.45; }
.testimonial-card figcaption { display: grid; gap: .2rem; color: var(--ink); }
.testimonial-card figcaption strong { font-size: .95rem; }
.testimonial-card figcaption span { color: var(--muted); font-size: .78rem; }

.section-quote { background: var(--teal-deep); }
.section-quote h2 { color: #fff; }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.quote-copy { color: #d7ece4; }
.quote-copy a { color: #baf0d8; }
.quote-contact { font-size: 1.05rem; line-height: 2; }
.draft-note { padding-left: .9rem; border-left: 3px solid var(--coral); font-size: .84rem; }
.text-jessica-note { margin: 1.4rem 0; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-sm); background: rgba(255,255,255,.08); }
.text-jessica-note h3 { margin-bottom: .4rem; color: #fff; font-size: 1rem; }
.text-jessica-note p { margin: 0; font-size: .9rem; line-height: 1.55; }
.quote-form { padding: clamp(1.3rem, 3vw, 2rem); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: .35rem; color: var(--ink); font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .72rem .85rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fbfefd; color: var(--ink); font: inherit; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline-color: var(--coral); }
.field input[aria-invalid="true"] { border-color: var(--error); }
.field-error { margin: .3rem 0 0; color: var(--error); font-size: .84rem; }
.form-status { min-height: 1.4em; margin: 1rem 0 0; font-weight: 800; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }

.faq-item { margin-bottom: .8rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.faq-item summary { min-height: 48px; padding: 1rem 1.15rem; color: var(--ink); cursor: pointer; font-weight: 800; }
.faq-item summary:hover { color: var(--teal); }
.faq-item p { margin: 0; padding: 0 1.15rem 1rem; color: var(--muted); }
.site-footer { padding: 4rem 0 1rem; background: var(--ink); color: #c7ddd5; }
.site-footer a { color: #e9fff6; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-name { margin: 0 0 .5rem; color: #fff; font-size: 1.35rem; }
.footer-name .brand-type { margin-left: .3rem; color: var(--coral); }
.footer-heading { color: var(--coral); font-family: var(--font-body); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-legal { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .82rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 4rem; }
  .hero-art { order: -1; min-height: 260px; }
  .hero-mark { width: 150px; }
  .quote-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 1.4rem, var(--maxw)); }
  .header-inner { min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .nav-list { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; border-bottom: 1px solid var(--border); background: rgba(246,250,247,.98); box-shadow: var(--shadow-sm); }
  .nav-list.is-open { display: flex; }
  .nav-list a { display: block; min-height: 44px; padding: .8rem 1.2rem; }
  .nav-cta { margin: .25rem .8rem; text-align: center; }
  nav[aria-label="Primary"] { position: relative; }
  .site-header { position: static; }
  h1 { max-width: 12ch; font-size: clamp(2.45rem, 14vw, 4rem); }
  .hero-art { min-height: 210px; }
  .hero-points { display: block; }
  .hero-points li { display: inline-block; margin: .25rem .25rem .25rem 0; }
  .service-list { columns: 1; }
  .service-row, .why-grid, .footer-grid { grid-template-columns: 1fr; }
}
