:root {
  --teal-950: #042e3d;
  --teal-900: #073f52;
  --teal-800: #07556b;
  --teal-700: #0a6a80;
  --sage-500: #91a986;
  --sage-300: #c6d2bf;
  --sage-100: #edf2e9;
  --cream: #f5f2eb;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #17313a;
  --muted: #61727a;
  --line: #dce4e1;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(4, 46, 61, .1);
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; }
h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 5vw, 4.35rem); line-height: .98; }
h3 { line-height: 1.25; }
address { font-style: normal; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px; transform: translateY(-180%); border-radius: 4px; background: var(--white); color: var(--teal-900); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 16px; color: var(--teal-700); font-size: .75rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.light { color: #c5dac0; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 56px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 650px; margin-inline: auto; color: var(--muted); font-size: 1.06rem; }
.lead-copy { color: var(--teal-900); font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.35; }
.text-link { display: inline-flex; gap: 12px; margin-top: 12px; align-items: center; color: var(--teal-800); font-size: .9rem; font-weight: 700; text-decoration: none; }
.text-link span { font-size: 1.2em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; padding: 0 24px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 700; letter-spacing: .01em; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal-800); color: var(--white); box-shadow: 0 12px 28px rgba(7, 85, 107, .22); }
.button-primary:hover { background: var(--teal-950); }
.button-ghost { border-color: rgba(255,255,255,.65); background: rgba(4,46,61,.12); color: var(--white); backdrop-filter: blur(8px); }
.button-ghost:hover { background: var(--white); color: var(--teal-900); }
.button-outline { border-color: var(--teal-700); color: var(--teal-800); }
.button-outline:hover { background: var(--teal-900); color: var(--white); }
.button-light { background: var(--white); color: var(--teal-900); box-shadow: 0 12px 28px rgba(0,0,0,.13); }
.button-light:hover { background: var(--sage-100); }

.transition-bar { position: relative; z-index: 110; background: var(--teal-950); color: #dbe6e1; font-size: .78rem; }
.transition-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.transition-inner a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; z-index: 100; top: 0; height: 100px; border-bottom: 1px solid rgba(7,63,82,.08); background: rgba(251,250,247,.96); transition: box-shadow .25s ease, height .25s ease; backdrop-filter: blur(14px); }
.site-header.scrolled { height: 90px; box-shadow: 0 8px 30px rgba(4,46,61,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 215px; height: 98px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.brand img { width: 190px; max-width: none; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 8px 0; color: var(--ink); font-size: .87rem; font-weight: 600; text-decoration: none; }
.primary-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 2px; transform: scaleX(0); background: var(--sage-500); content: ""; transform-origin: right; transition: transform .25s ease; }
.primary-nav > a:hover::after, .primary-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; min-height: 44px; padding: 0 20px; align-items: center; border-radius: 999px; background: var(--teal-900); color: var(--white); font-size: .83rem; font-weight: 700; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { transform: translateY(-1px); background: var(--teal-700); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--teal-900); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: calc(100svh - 124px); display: flex; align-items: center; overflow: hidden; background: var(--teal-950); color: var(--white); }
.hero-media { position: absolute; inset: 0; background: url("hero-consultation.png") center / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,39,52,.96) 0%, rgba(3,39,52,.85) 34%, rgba(3,39,52,.24) 64%, rgba(3,39,52,.04) 100%); }
.hero::before { position: absolute; z-index: 1; top: 10%; left: -8%; width: 480px; height: 480px; border: 1px solid rgba(196,218,192,.17); border-radius: 50%; content: ""; }
.hero-inner { position: relative; z-index: 2; padding: 100px 0 120px; }
.hero-copy { max-width: 650px; }
.hero h1 { max-width: 750px; margin: 0; font-size: clamp(4rem, 8.8vw, 7.6rem); line-height: .79; letter-spacing: -.065em; }
.hero h1 em, .page-hero h1 em { display: inline-block; color: var(--sage-300); font-weight: 400; }
.hero-lead { max-width: 610px; margin: 34px 0 0; color: #e3ece9; font-size: clamp(1.06rem, 1.8vw, 1.25rem); line-height: 1.68; }
.hero-location { position: absolute; z-index: 3; right: 0; bottom: 0; min-width: 335px; min-height: 96px; display: flex; padding: 20px 44px 20px 25px; align-items: center; gap: 15px; background: var(--paper); color: var(--teal-900); text-decoration: none; }
.hero-location::before { position: absolute; inset: 0 auto 0 -44px; width: 46px; background: linear-gradient(to top right, var(--paper) 0 49%, transparent 51%); content: ""; }
.hero-location svg { width: 26px; fill: none; stroke: var(--sage-500); stroke-width: 1.6; }
.hero-location span { display: flex; flex-direction: column; color: var(--muted); font-size: .8rem; }
.hero-location strong { color: var(--teal-900); font-size: .95rem; }

.proof-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { min-height: 128px; display: flex; padding: 26px 34px; align-items: center; gap: 20px; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item > span { color: var(--sage-500); font-family: var(--serif); font-size: 1.8rem; }
.proof-item strong, .proof-item small { display: block; }
.proof-item strong { color: var(--teal-900); }
.proof-item small { margin-top: 3px; color: var(--muted); }

.welcome-section { background: var(--paper); }
.split-intro, .two-col { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.intro-copy { padding-top: 12px; }
.intro-copy > p:not(.lead-copy) { color: var(--muted); }

.services-preview { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 365px; display: flex; padding: 34px; flex-direction: column; border: 1px solid var(--line); overflow: hidden; background: var(--white); color: var(--ink); text-decoration: none; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card::after { position: absolute; right: -80px; bottom: -90px; width: 180px; height: 180px; border: 1px solid var(--sage-300); border-radius: 50%; content: ""; opacity: 0; transition: opacity .3s ease, transform .3s ease; }
.service-card:hover { z-index: 1; transform: translateY(-7px); border-color: var(--sage-300); box-shadow: var(--shadow); }
.service-card:hover::after { opacity: .7; transform: scale(1.2); }
.service-number { align-self: flex-end; color: #a3b0b3; font-family: var(--serif); }
.service-icon { width: 62px; height: 62px; display: grid; margin: 4px 0 30px; place-items: center; border-radius: 50%; background: var(--sage-100); }
.service-icon svg { width: 34px; fill: none; stroke: var(--teal-700); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.service-card h3 { margin: 0 0 12px; color: var(--teal-900); font-family: var(--serif); font-size: 1.72rem; font-weight: 500; }
.service-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.card-link { display: inline-flex; margin-top: auto; padding-top: 24px; gap: 10px; align-items: center; color: var(--teal-800); font-size: .82rem; font-weight: 700; }
.card-link span { transition: transform .2s ease; }
.service-card:hover .card-link span, .contact-card:hover .card-link span { transform: translateX(4px); }
.all-services { display: flex; margin-top: 34px; align-items: center; justify-content: center; gap: 30px; }
.all-services p { margin: 0; color: var(--muted); }

.conditions-section { padding: 112px 0; background: var(--teal-900); color: var(--white); }
.conditions-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.conditions-copy { position: sticky; top: 130px; }
.conditions-copy p:not(.eyebrow) { max-width: 520px; color: #cbdad9; }
.conditions-copy .button { margin-top: 18px; }
.condition-list { border-top: 1px solid rgba(255,255,255,.18); }
.condition-list > div { min-height: 74px; display: flex; padding: 15px 4px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.18); }
.condition-list span:first-child { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.condition-list span:last-child { color: #93aaa9; font-size: .75rem; }

.process-section { background: var(--paper); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid::before { position: absolute; top: 27px; right: 12.5%; left: 12.5%; height: 1px; background: var(--sage-300); content: ""; }
.process-step { position: relative; padding: 0 24px; text-align: center; }
.process-step > span { position: relative; z-index: 1; width: 56px; height: 56px; display: grid; margin: 0 auto 26px; place-items: center; border: 1px solid var(--sage-500); border-radius: 50%; background: var(--paper); color: var(--teal-800); font-family: var(--serif); }
.process-step h3 { margin: 0 0 10px; color: var(--teal-900); font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.process-step p { color: var(--muted); font-size: .9rem; }

.legacy-section { padding: 0 0 112px; background: var(--paper); }
.legacy-card { position: relative; display: grid; grid-template-columns: 120px 1fr auto; padding: 56px 64px; align-items: center; gap: 42px; overflow: hidden; background: var(--teal-950); color: var(--white); }
.legacy-card::after { position: absolute; top: -200px; right: -120px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.legacy-card h2 { max-width: 700px; margin-bottom: 16px; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.legacy-card p:not(.eyebrow) { max-width: 770px; margin: 0; color: #c7d7d5; }
.legacy-mark { width: 110px; height: 110px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.legacy-mark span { color: var(--sage-300); font-family: var(--serif); font-size: 4rem; }
.legacy-card .button { position: relative; z-index: 2; }

.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.location-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.location-copy address { margin: 30px 0; color: var(--teal-900); font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; }
.hours-card { padding: 42px; border-top: 5px solid var(--sage-500); background: var(--cream); box-shadow: var(--shadow); }
.hours-card dl { margin: 0; }
.hours-card dl > div { display: grid; grid-template-columns: 1fr 1fr; padding: 17px 0; gap: 20px; border-bottom: 1px solid var(--line); }
.hours-card dt { color: var(--teal-900); font-weight: 700; }
.hours-card dd { margin: 0; color: var(--muted); text-align: right; }
.hours-card small { display: block; margin-top: 20px; color: var(--muted); }

.final-cta { position: relative; padding: 112px 0; overflow: hidden; background: var(--teal-800); color: var(--white); text-align: center; }
.final-cta::before, .final-cta::after { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; content: ""; }
.final-cta::before { top: -260px; left: -100px; width: 520px; height: 520px; }
.final-cta::after { right: -150px; bottom: -330px; width: 650px; height: 650px; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { max-width: 800px; margin: 0 auto 18px; }
.final-cta p:not(.eyebrow) { margin-bottom: 28px; color: #d5e2e2; }

.site-footer { padding: 70px 0 0; background: var(--teal-950); color: #b9c9c8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1.1fr; padding-bottom: 52px; gap: 50px; }
.footer-wordmark { display: flex; margin-bottom: 20px; flex-direction: column; align-items: flex-start; line-height: 1; }
.footer-wordmark strong { color: var(--white); font-size: 2rem; font-weight: 600; letter-spacing: .18em; }
.footer-wordmark span { margin-top: 9px; color: var(--sage-300); font-size: .66rem; font-weight: 700; letter-spacing: .3em; }
.footer-brand p { max-width: 320px; }
.footer-grid h3 { margin: 0 0 18px; color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { display: block; width: fit-content; margin: 7px 0; color: #dbe6e5; text-decoration: none; }
.footer-grid a:hover { color: var(--sage-300); }
.footer-grid p, .footer-grid address { margin: 0; font-size: .88rem; }
.footer-bottom { min-height: 72px; display: flex; padding: 18px 0; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }
.mobile-call { display: none; }

/* Interior pages */
.page-hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: var(--teal-900); color: var(--white); }
.page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 78% 45%, rgba(145,169,134,.22), transparent 26%); content: ""; }
.page-hero-inner { position: relative; z-index: 2; padding: 80px 0; }
.page-hero h1 { max-width: 900px; margin: 0 0 26px; font-size: clamp(3.7rem, 7.5vw, 6.8rem); line-height: .88; }
.page-hero p:last-child { max-width: 700px; margin: 0; color: #d7e3e2; font-size: 1.15rem; }
.page-hero-art { position: absolute; inset: 0; overflow: hidden; }
.page-hero-art span { position: absolute; display: block; border: 1px solid rgba(198,210,191,.16); border-radius: 50%; }
.page-hero-art span:nth-child(1) { top: -280px; right: -80px; width: 650px; height: 650px; }
.page-hero-art span:nth-child(2) { top: -130px; right: 80px; width: 430px; height: 430px; }
.page-hero-art span:nth-child(3) { right: 240px; bottom: -210px; width: 350px; height: 350px; }

.service-jump { position: sticky; z-index: 20; top: 76px; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); scrollbar-width: none; }
.service-jump::-webkit-scrollbar { display: none; }
.service-jump .wrap { display: flex; align-items: center; gap: 30px; white-space: nowrap; }
.service-jump a { padding: 18px 0; color: var(--teal-900); font-size: .78rem; font-weight: 700; text-decoration: none; }
.service-jump a:hover { color: var(--sage-500); }
.service-intro { margin-bottom: 80px; }
.service-intro > p:last-child { color: var(--muted); }
.service-detail-wrap { background: var(--paper); }
.service-detail { display: grid; grid-template-columns: .78fr 1.22fr; padding: 76px 0; gap: clamp(60px, 9vw, 130px); border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail-title { position: sticky; top: 170px; align-self: start; }
.service-detail-title > span { display: block; margin-bottom: 18px; color: var(--sage-500); font-family: var(--serif); font-size: 1.3rem; }
.service-detail-title h2 { margin-bottom: 16px; color: var(--teal-900); font-size: clamp(2.45rem, 4.4vw, 3.8rem); }
.service-detail-title p { color: var(--muted); }
.service-detail-body > p { color: var(--muted); font-size: 1.02rem; }
.service-detail-body > p:first-child { color: var(--ink); font-size: 1.16rem; }
.service-detail-body h3 { margin: 30px 0 12px; color: var(--teal-900); font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; gap: 32px; }
.detail-columns > div { padding: 28px; background: var(--cream); }
.detail-columns h3 { margin-top: 0; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 10px 0; padding-left: 25px; color: var(--muted); }
.check-list li::before { position: absolute; top: .7em; left: 0; width: 10px; height: 5px; transform: rotate(-45deg); border-bottom: 2px solid var(--sage-500); border-left: 2px solid var(--sage-500); content: ""; }
.detail-note { display: grid; grid-template-columns: 150px 1fr; margin-top: 32px; padding: 25px 28px; align-items: start; gap: 20px; border-left: 4px solid var(--sage-500); background: var(--sage-100); }
.detail-note strong { color: var(--teal-900); }
.detail-note span { color: var(--muted); }
.detail-note.alert { border-color: #d3a86c; background: #faf2e5; }
.pill-list { display: flex; margin: 32px 0 0; padding: 0; flex-wrap: wrap; gap: 9px; list-style: none; }
.pill-list li { padding: 9px 15px; border: 1px solid var(--sage-300); border-radius: 999px; color: var(--teal-800); font-size: .82rem; font-weight: 600; }
.therapy-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 32px; gap: 12px; }
.therapy-grid > div { padding: 23px; background: var(--cream); }
.therapy-grid strong, .therapy-grid span { display: block; }
.therapy-grid strong { margin-bottom: 5px; color: var(--teal-900); }
.therapy-grid span { color: var(--muted); font-size: .88rem; }

/* New patients */
.patient-intro { background: var(--white); }
.visit-flow-section { padding: 110px 0; background: var(--cream); }
.visit-flow { max-width: 900px; margin: 0 auto; padding: 0; list-style: none; }
.visit-flow li { position: relative; display: grid; grid-template-columns: 74px 1fr; padding: 0 0 42px; gap: 26px; }
.visit-flow li:not(:last-child)::before { position: absolute; top: 56px; bottom: 0; left: 27px; width: 1px; background: var(--sage-300); content: ""; }
.visit-flow li > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-900); color: var(--white); font-family: var(--serif); }
.visit-flow h3 { margin: 4px 0 7px; color: var(--teal-900); font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.visit-flow p { margin: 0; color: var(--muted); }
.payment-section { background: var(--white); }
.payment-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.payment-grid .section-heading > p:not(.eyebrow) { color: var(--muted); }
.payment-card { padding: 42px; border-top: 5px solid var(--sage-500); background: var(--cream); box-shadow: var(--shadow); }
.payment-card h3 { color: var(--teal-900); font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.payment-card .button { margin-top: 26px; }
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-layout .section-heading { position: sticky; top: 130px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; padding: 24px 0; align-items: center; justify-content: space-between; gap: 20px; color: var(--teal-900); font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details div { padding: 0 35px 22px 0; color: var(--muted); }
.faq-list details div p { margin: 0; }

/* Contact */
.contact-main { position: relative; z-index: 2; padding: 0 0 110px; background: var(--paper); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); transform: translateY(-52px); gap: 18px; }
.contact-card { min-height: 300px; display: flex; padding: 34px; flex-direction: column; border: 1px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; box-shadow: 0 15px 45px rgba(4,46,61,.07); transition: transform .25s ease, box-shadow .25s ease; }
a.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-icon { width: 52px; height: 52px; display: grid; margin-bottom: 38px; place-items: center; border-radius: 50%; background: var(--sage-100); }
.contact-icon svg { width: 25px; fill: none; stroke: var(--teal-700); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.contact-card small { margin-bottom: 8px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { color: var(--teal-900); font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.35; }
.contact-card > .card-link { margin-top: auto; }
.hours-contact > span:last-child { margin-top: auto; color: var(--muted); font-size: .85rem; }
.map-section { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 570px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 570px; display: block; border: 0; filter: saturate(.72) contrast(.92); }
.map-info { display: flex; padding: 70px; align-items: center; background: var(--teal-900); color: var(--white); }
.map-info-inner { max-width: 450px; }
.map-info p:not(.eyebrow) { color: #ccdbda; }
.map-info address { margin: 27px 0; font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; }
.contact-note { background: var(--white); }
.contact-note-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.contact-note-inner > div:last-child p { color: var(--muted); }
.contact-note-inner .button { margin-top: 16px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  :root { --wrap: min(100% - 38px, 900px); }
  .primary-nav { gap: 20px; }
  .brand { width: 180px; }
  .hero { min-height: 720px; }
  .hero-copy { max-width: 590px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-layout { gap: 65px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-grid::before { display: none; }
  .legacy-card { grid-template-columns: 90px 1fr; padding: 50px; }
  .legacy-mark { width: 85px; height: 85px; }
  .legacy-card .button { grid-column: 2; width: fit-content; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .service-detail { grid-template-columns: .7fr 1.3fr; gap: 60px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .map-section { grid-template-columns: 1fr 1fr; }
  .map-info { padding: 50px; }
}

@media (max-width: 800px) {
  body { padding-bottom: 64px; }
  .transition-bar { display: none; }
  .site-header, .site-header.scrolled { height: 84px; }
  .brand { width: 184px; height: 82px; }
  .brand img { width: 158px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: -1; inset: 84px 0 0; display: flex; padding: 45px 24px; flex-direction: column; align-items: stretch; gap: 4px; transform: translateX(100%); background: var(--paper); transition: transform .28s ease; }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > a:not(.nav-cta) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { min-height: 54px; margin-top: 24px; justify-content: center; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,39,52,.96) 0%, rgba(3,39,52,.88) 45%, rgba(3,39,52,.28) 100%); }
  .hero-inner { padding: 100px 0 170px; }
  .hero h1 { font-size: clamp(4rem, 14vw, 6.4rem); }
  .hero-location { min-width: 285px; min-height: 82px; padding-right: 25px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 100px; padding: 22px 0; }
  .proof-item + .proof-item { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 82px 0; }
  .split-intro, .two-col, .conditions-layout, .location-grid, .payment-grid, .faq-layout, .contact-note-inner { grid-template-columns: 1fr; gap: 35px; }
  .conditions-copy, .faq-layout .section-heading { position: static; }
  .conditions-section { padding: 85px 0; }
  .condition-list { margin-top: 10px; }
  .legacy-section { padding-bottom: 82px; }
  .legacy-card { grid-template-columns: 1fr; padding: 42px 32px; gap: 25px; }
  .legacy-mark { display: none; }
  .legacy-card .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .mobile-call { position: fixed; z-index: 99; right: 0; bottom: 0; left: 0; min-height: 64px; display: flex; padding: 8px 24px; align-items: center; justify-content: space-between; background: var(--sage-500); color: var(--teal-950); text-decoration: none; box-shadow: 0 -5px 20px rgba(4,46,61,.12); }
  .mobile-call span { font-size: .8rem; }
  .mobile-call strong { font-size: .92rem; }
  .page-hero { min-height: 420px; }
  .service-jump { top: 84px; }
  .service-jump .wrap { width: max-content; padding: 0 20px; }
  .service-detail { grid-template-columns: 1fr; padding: 60px 0; gap: 24px; }
  .service-detail-title { position: static; }
  .service-detail-title p { margin-bottom: 0; }
  .detail-columns { gap: 14px; }
  .contact-cards { grid-template-columns: 1fr; transform: translateY(-36px); }
  .contact-main { padding-bottom: 70px; }
  .contact-card { min-height: 270px; }
  .map-section { grid-template-columns: 1fr; }
  .map-frame iframe { min-height: 430px; }
  .map-info { padding: 70px 30px; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 30px); }
  h2 { font-size: 2.65rem; }
  .hero { min-height: 700px; }
  .hero-media { background-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,39,52,.95) 0%, rgba(3,39,52,.82) 65%, rgba(3,39,52,.38) 100%); }
  .hero-inner { padding: 80px 0 160px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.35rem); }
  .hero-lead { font-size: 1rem; }
  .button-row { align-items: stretch; }
  .hero .button-row .button { width: 100%; }
  .hero-location { right: auto; left: 45px; min-width: calc(100% - 45px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .all-services { flex-direction: column; gap: 15px; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding-inline: 10px; }
  .legacy-card { width: 100%; }
  .hours-card, .payment-card { padding: 30px 24px; }
  .hours-card dl > div { grid-template-columns: 1fr; gap: 5px; }
  .hours-card dd { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 390px; }
  .page-hero h1 { font-size: clamp(3.3rem, 15vw, 4.7rem); }
  .page-hero p:last-child { font-size: 1rem; }
  .detail-columns, .therapy-grid { grid-template-columns: 1fr; }
  .detail-note { grid-template-columns: 1fr; gap: 7px; }
  .visit-flow li { grid-template-columns: 58px 1fr; gap: 16px; }
  .visit-flow li:not(:last-child)::before { left: 23px; }
  .visit-flow li > span { width: 48px; height: 48px; }
  .contact-card { padding: 28px; }
  .contact-note-inner .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
