:root {
  --ink: #18201e;
  --ink-soft: #53615d;
  --paper: #f8f5ee;
  --white: #fffdf9;
  --sage: #3d725e;
  --sage-deep: #204c3d;
  --sage-pale: #dce9e2;
  --clay: #c87452;
  --clay-pale: #f1d9cd;
  --moss: #a8b86f;
  --line: rgba(24, 32, 30, .14);
  --shadow: 0 24px 70px rgba(26, 47, 39, .12);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --max: 1220px;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

.theme-home {
  --paper: #faf4ea; --white: #fffdf8; --sage: #73805a; --sage-deep: #3d4934;
  --sage-pale: #e6ead7; --clay: #c96f50; --clay-pale: #f2ddd3; --moss: #d7b66d;
}
.theme-programs {
  --paper: #faf6fc; --white: #fffafd; --sage: #726782; --sage-deep: #443b52;
  --sage-pale: #e8ddf0; --clay: #c7745a; --clay-pale: #f3dfd8; --moss: #91a06d;
}
.theme-diagnostics {
  --paper: #f3f8f6; --white: #fbfefd; --sage: #477d76; --sage-deep: #28534e;
  --sage-pale: #dcebe7; --clay: #c89c42; --clay-pale: #f3e7c5; --moss: #829a6c;
}
.theme-modalities {
  --paper: #f5f7ef; --white: #fcfdf8; --sage: #667b4b; --sage-deep: #39492f;
  --sage-pale: #e1e8d5; --clay: #b96e4d; --clay-pale: #eedbd1; --moss: #b8c47b;
}
.theme-consultant {
  --paper: #f8f2ea; --white: #fffaf3; --sage: #766254; --sage-deep: #3a302b;
  --sage-pale: #e8ddd1; --clay: #b76d4b; --clay-pale: #ead3c6; --moss: #c7a867;
}
.theme-contact {
  --paper: #fbf3ef; --white: #fffaf7; --sage: #9a5f4d; --sage-deep: #5a342b;
  --sage-pale: #f0ded7; --clay: #d9825d; --clay-pale: #f7ded1; --moss: #d8b765;
}
.theme-procedures {
  --paper: #f9f4ec; --white: #fffdfa; --sage: #836551; --sage-deep: #49362e;
  --sage-pale: #eadfd1; --clay: #bd7652; --clay-pale: #f0d8cd; --moss: #cda75f;
}
.theme-reviews {
  --paper: #f8f6ee; --white: #fffef9; --sage: #6f7e55; --sage-deep: #35452f;
  --sage-pale: #e3e8d7; --clay: #c97957; --clay-pale: #f2ddd4; --moss: #d0ad63;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body[class*="theme-"] {
  background-image: radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--clay-pale) 70%, transparent), transparent 24%), linear-gradient(var(--paper), var(--paper));
  background-size: 150% 150%, 100% 100%;
  animation: ambientShift 20s ease-in-out infinite alternate;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; color: var(--sage); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.display { margin: 14px 0 20px; font-family: var(--serif); font-weight: 560; font-size: clamp(3.3rem, 8vw, 7.7rem); line-height: .91; letter-spacing: -.065em; }
.title { margin: 14px 0 20px; font-family: var(--serif); font-size: clamp(2.5rem, 5.2vw, 5rem); line-height: .98; letter-spacing: -.05em; font-weight: 560; }
.subtitle { max-width: 720px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.accent { color: var(--clay); font-style: italic; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; background: var(--sage); color: white; font-weight: 800; text-decoration: none; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); background: var(--sage-deep); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button.secondary:hover { background: var(--white); }
.button.clay { background: var(--clay); }
.button.clay:hover { background: #a9573a; }
.button.small { min-height: 44px; padding-inline: 18px; font-size: .88rem; }

.announcement { background: var(--sage-deep); color: white; font-size: .78rem; }
.announcement .container { display: flex; justify-content: center; gap: 28px; padding: 8px 0; }
.announcement a { font-weight: 800; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); background: color-mix(in srgb, var(--paper) 94%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.site-header::after { content: ""; position: absolute; inset: auto 0 -1px; height: 2px; background: linear-gradient(90deg, transparent, var(--sage), var(--clay), var(--moss), transparent); opacity: .42; }
.header-row { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--sage); color: white; font-family: var(--serif); font-size: 1.25rem; }
.brand-copy strong { display: block; font-size: 1.05rem; line-height: 1.05; }
.brand-copy small { display: block; color: var(--ink-soft); font-size: .63rem; letter-spacing: .08em; }
.nav { display: flex; justify-content: center; gap: 4px; }
.nav a { position: relative; padding: 12px 11px; color: var(--ink-soft); text-decoration: none; font-size: .86rem; font-weight: 700; border-radius: 999px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--sage-deep); background: var(--sage-pale); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.phone-link { padding: 10px 14px; color: var(--ink-soft); font-size: .82rem; font-weight: 700; text-decoration: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; border-radius: 50%; color: var(--ink); }

.page-hero { min-height: 68vh; display: grid; align-items: center; padding: 72px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--ink-soft); font-size: .81rem; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row span::before { content: "✓"; color: var(--sage); font-weight: 900; }
.hero-film { position: relative; min-height: 570px; }
.hero-film .photo-slot { position: absolute; width: auto; }
.hero-photo-main { inset: 0 8% 4% 10%; border-radius: 180px 180px var(--radius-lg) var(--radius-lg); }
.hero-photo-card { left: -3%; bottom: 3%; width: 46%; height: 44%; border: 8px solid var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-image { position: absolute; width: auto; height: auto; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.hero-note { position: absolute; right: 0; bottom: 1%; z-index: 4; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.hero-note small { display: block; color: var(--ink-soft); }
.hero-note strong { font-size: 1.05rem; }

.photo-slot { position: relative; overflow: hidden; width: 100%; background-color: var(--sage-pale); background-image: linear-gradient(135deg, rgba(61,114,94,.18), rgba(200,116,82,.15)); background-position: center; background-size: cover; }
.media-frame { overflow: hidden; background: var(--sage-pale); }
.media-frame > img, img.media-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.atlas { background-image: var(--fallback, linear-gradient(135deg, rgba(61,114,94,.06), rgba(200,116,82,.04))), url("assets/clinical-atlas.png"); background-size: cover, 400% 400%; background-repeat: no-repeat; }
.atlas-01 { background-position: center, 0% 0%; }
.atlas-02 { background-position: center, 33.333% 0%; }
.atlas-03 { background-position: center, 66.666% 0%; }
.atlas-04 { background-position: center, 100% 0%; }
.atlas-05 { background-position: center, 0% 33.333%; }
.atlas-06 { background-position: center, 33.333% 33.333%; }
.atlas-07 { background-position: center, 66.666% 33.333%; }
.atlas-08 { background-position: center, 100% 33.333%; }
.atlas-09 { background-position: center, 0% 66.666%; }
.atlas-10 { background-position: center, 33.333% 66.666%; }
.atlas-11 { background-position: center, 66.666% 66.666%; }
.atlas-12 { background-position: center, 100% 66.666%; }
.atlas-13 { background-position: center, 0% 100%; }
.atlas-14 { background-position: center, 33.333% 100%; }
.atlas-15 { background-position: center, 66.666% 100%; }
.atlas-16 { background-position: center, 100% 100%; }
.program-care { background-image: linear-gradient(135deg, rgba(61,114,94,.04), rgba(200,116,82,.03)), url("assets/program-care-atlas-v2.png"); background-size: cover, 200% 200%; background-repeat: no-repeat; }
.care-gait { background-position: center, 0% 0%; }
.care-paediatric { background-position: center, 100% 0%; }
.care-neuro { background-position: center, 0% 100%; }
.care-swallow { background-position: center, 100% 100%; }
.priority-photo { background-image: linear-gradient(135deg, rgba(61,114,94,.06), rgba(200,116,82,.04)), url("assets/program-priority-atlas-v2.png"); background-size: cover, 300% 100%; background-repeat: no-repeat; }
.priority-stroke { background-position: center, 0% 50%; }
.priority-sci { background-position: center, 50% 50%; }
.priority-sports { background-position: center, 100% 50%; }
.program-pathways { background-image: linear-gradient(135deg, rgba(61,114,94,.04), rgba(200,116,82,.03)), url("assets/program-pathways-atlas-v1.png"); background-size: cover, 200% 200%; background-repeat: no-repeat; }
.pathway-cardiac { background-position: center, 0% 0%; }
.pathway-geriatric { background-position: center, 100% 0%; }
.pathway-occupational { background-position: center, 0% 100%; }
.pathway-postsurgical { background-position: center, 100% 100%; }
.program-pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pathway { padding: 24px 0 94px; }
.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.path-card { min-height: 258px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.path-card:nth-child(2) { background: var(--sage-pale); }
.path-card:nth-child(3) { background: var(--clay-pale); }
.path-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.path-card .number { color: var(--sage); font-family: var(--serif); font-size: .9rem; }
.path-card h2 { margin: 30px 0 8px; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.path-card p { margin: 0; color: var(--ink-soft); }
.path-card .arrow { align-self: flex-end; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.home-compact .page-hero { min-height: auto; padding: 58px 0 66px; }
.home-compact .display { font-size: clamp(2.9rem, 6.2vw, 6.25rem); }
.home-compact .hero-film { min-height: 470px; }
.home-compact .hero-photo-main { inset: 3% 0 5% 4%; width: 88%; height: 86%; border-radius: var(--radius-lg); object-position: 52% center; }
.home-compact .hero-photo-card { left: 0; bottom: 0; width: 39%; height: 35%; }
.home-compact .pathway { padding-bottom: 64px; }
.discovery { padding: 72px 0; background: var(--sage-deep); color: white; }
.discovery .eyebrow { color: #bcd6ca; }
.discovery-shell { display: grid; grid-template-columns: 270px 1fr; gap: 16px; margin-top: 36px; }
.tab-list { display: flex; flex-direction: column; gap: 8px; }
.tab-button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 64px; padding: 0 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: transparent; color: #d9e6df; text-align: left; font-weight: 800; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.tab-button:hover { transform: translateX(4px); }
.tab-button[aria-selected="true"] { background: var(--white); color: var(--ink); }
.tab-button::after { content: "→"; }
.tab-panel { min-height: 390px; overflow: hidden; border-radius: var(--radius); background: var(--white); color: var(--ink); }
.tab-panel[hidden] { display: none; }
.tab-panel:not([hidden]) .tab-copy { animation: panelCopy .55s cubic-bezier(.2,.8,.2,1) both; }
.tab-panel:not([hidden]) .tab-photo { animation: panelPhoto .65s cubic-bezier(.2,.8,.2,1) both; }
.tab-panel-grid { min-height: 390px; display: grid; grid-template-columns: 1fr 1fr; }
.tab-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 56px); }
.tab-copy h2 { margin: 10px 0 14px; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); line-height: .98; }
.tab-copy p { color: var(--ink-soft); }
.tab-copy .button { align-self: flex-start; margin-top: 14px; }
.tab-photo { min-height: 390px; overflow: hidden; background: var(--sage-pale); }
.tab-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.compact-end { padding: 58px 0; }
.compact-end-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.compact-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.compact-panel.clinician { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; }
.compact-portrait { width: 150px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--sage-deep); color: white; font-family: var(--serif); font-size: 3.3rem; object-fit: cover; object-position: 50% 23%; }
.compact-panel h2 { margin: 8px 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.7rem); line-height: 1; }
.compact-panel p { color: var(--ink-soft); }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route-card { position: relative; min-height: 360px; display: flex; align-items: end; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sage-pale); color: white; text-decoration: none; isolation: isolate; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease; }
.route-card::before { content: ""; position: absolute; z-index: 1; inset: 35% 0 0; background: linear-gradient(transparent, rgba(24,32,30,.86)); }
.route-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.route-photo { position: absolute; inset: 0; z-index: -1; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.route-card:hover .route-photo { transform: scale(1.09); filter: saturate(1.08); }
.route-copy { position: relative; z-index: 2; width: 100%; padding: 24px; }
.route-copy small { display: block; color: #eadfd1; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.route-copy h2 { margin: 7px 0 4px; color: white; font-family: var(--serif); font-size: 2rem; line-height: .95; }
.route-copy p { margin: 0; color: #e7ece8; font-size: .84rem; }
.route-arrow { position: absolute; right: 20px; top: 20px; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(255,255,255,.12); }

.review-hero { padding: 100px 0 60px; text-align: center; }
.review-hero .title { max-width: 800px; margin-inline: auto; }
.review-stat { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 220px; height: 220px; margin-top: 28px; border-radius: 50%; background: var(--sage-deep); color: white; box-shadow: var(--shadow); }
.review-stat strong { font-family: var(--serif); font-size: 3.7rem; line-height: .9; }
.review-stat span { max-width: 125px; margin-top: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-stage { position: relative; display: grid; gap: 28px; padding: 72px 0 82px; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, #dcebe2, #fff8ee 38%, #f3d7cd 70%, #dbe9ef); background-size: 220% 220%; animation: reviewGradient 16s ease-in-out infinite alternate; }
.review-stage::before, .review-stage::after { content: ""; position: absolute; z-index: -1; width: 420px; aspect-ratio: 1; border-radius: 50%; filter: blur(12px); opacity: .5; animation: reviewOrb 13s ease-in-out infinite alternate; }
.review-stage::before { left: -120px; top: 80px; background: radial-gradient(circle, rgba(213,140,87,.48), transparent 68%); }
.review-stage::after { right: -110px; bottom: 40px; background: radial-gradient(circle, rgba(64,142,130,.42), transparent 68%); animation-delay: -6s; }
.review-lane { width: 100%; overflow: hidden; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.review-track { display: flex; width: max-content; gap: 22px; animation: reviewMarquee 42s linear infinite; }
.review-lane.reverse .review-track { animation-direction: reverse; animation-duration: 46s; }
.review-lane:hover .review-track, .review-lane:focus-within .review-track { animation-play-state: paused; }
.review-set { display: flex; gap: 22px; }
.review-card { --review-tint: #fffdf8; position: relative; flex: 0 0 330px; min-height: 230px; padding: 25px; border: 1px solid color-mix(in srgb, var(--review-tint) 65%, var(--line)); border-radius: 24px; background: color-mix(in srgb, var(--review-tint) 90%, transparent); box-shadow: 0 18px 55px rgba(34,45,33,.12); backdrop-filter: blur(12px); animation: reviewFloat 6s ease-in-out infinite alternate; }
.review-card:nth-child(2n) { animation-delay: -3s; }
.review-set .review-card:nth-child(3n+1) { --review-tint: #fff4df; }
.review-set .review-card:nth-child(3n+2) { --review-tint: #e4f2ea; }
.review-set .review-card:nth-child(3n) { --review-tint: #f9e2dc; }
.review-stars { color: var(--clay); font-size: 1.05rem; letter-spacing: .1em; }
.review-card blockquote { margin: 16px 0; font-family: var(--serif); font-size: 1.2rem; line-height: 1.32; }
.review-card cite { display: block; color: var(--ink-soft); font-size: .82rem; font-style: normal; font-weight: 800; }
.review-disclosure { max-width: 680px; margin: 0 auto; padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--ink-soft); font-size: .82rem; text-align: center; }

.section { padding: 110px 0; }
.section.tight { padding: 78px 0; }
.section.sage { background: var(--sage-deep); color: white; }
.section.soft { background: var(--sage-pale); }
.section.clay { background: var(--clay-pale); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.section-head .title { max-width: 820px; margin-bottom: 0; }
.section-head p { max-width: 450px; color: var(--ink-soft); }
.section.sage .eyebrow, .section.sage .section-head p { color: #bcd6ca; }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.feature-photo { min-height: 560px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-copy p { color: var(--ink-soft); font-size: 1.08rem; }
.section.sage .feature-copy p { color: #d9e6df; }
.feature-list { padding: 0; margin: 28px 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.section.sage .feature-list { border-color: rgba(255,255,255,.2); }
.section.sage .feature-list li { border-color: rgba(255,255,255,.2); }
.feature-list span { color: var(--clay); font-family: var(--serif); }

.page-intro { position: relative; isolation: isolate; overflow: hidden; padding: 86px 0 68px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg, color-mix(in srgb, var(--sage-pale) 68%, var(--paper)), var(--paper) 62%, color-mix(in srgb, var(--clay-pale) 74%, var(--paper))); }
.page-intro::after { content: ""; position: absolute; z-index: -1; width: 260px; height: 260px; right: 7%; top: -120px; border-radius: 50%; background: color-mix(in srgb, var(--clay) 16%, transparent); filter: blur(2px); }
.page-intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.page-intro .title { margin-bottom: 10px; }
.page-intro-aside { color: var(--ink-soft); }
.subnav { position: sticky; top: 82px; z-index: 60; border-bottom: 1px solid var(--line); background: var(--paper); background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(16px); }
.subnav .container { display: flex; gap: 6px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.subnav a { flex: 0 0 auto; padding: 10px 15px; border-radius: 999px; color: var(--ink-soft); font-size: .82rem; font-weight: 800; text-decoration: none; }
.subnav a:hover { background: var(--sage-pale); color: var(--sage-deep); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 360px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--sage), var(--clay)); opacity: .72; }
.service-card .card-photo { height: 190px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .card-photo { transform: scale(1.045); }
.service-body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.service-body small { color: var(--sage); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-body h2, .service-body h3 { margin: 8px 0 9px; font-family: var(--serif); font-size: 1.65rem; line-height: 1.05; }
.service-body p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.service-body a { margin-top: auto; padding-top: 18px; color: var(--sage-deep); font-weight: 800; text-decoration: none; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink-soft); font-weight: 800; cursor: pointer; }
.filter[aria-pressed="true"] { background: var(--sage); color: white; border-color: var(--sage); }
.filter[role="tab"][aria-selected="true"] { background: var(--sage); color: white; border-color: var(--sage); }
.modality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.modality-card { border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; }
.modality-card[hidden] { display: none; }
.modality-thumb { height: 150px; }
.modality-card details { padding: 20px; }
.modality-card summary { display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.24rem; line-height: 1.05; }
.modality-card summary::-webkit-details-marker { display: none; }
.modality-card summary::after { content: "+"; flex: 0 0 auto; color: var(--sage); font-family: var(--sans); font-size: 1.3rem; }
.modality-card details[open] summary::after { content: "−"; }
.modality-card p { margin: 14px 0 0; color: var(--ink-soft); font-size: .88rem; }
.modality-card .tag { display: inline-block; margin-top: 14px; color: var(--sage); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.process article { position: relative; padding: 28px 24px 10px 0; border-right: 1px solid var(--line); }
.process article:not(:first-child) { padding-left: 24px; }
.process article:last-child { border-right: 0; }
.process article::before { counter-increment: step; content: "0" counter(step); color: var(--clay); font-family: var(--serif); }
.process h3 { margin: 24px 0 8px; font-family: var(--serif); font-size: 1.35rem; }
.process p { color: var(--ink-soft); font-size: .9rem; }

.condition-tabs { margin-top: 34px; }
.condition-tablist { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.condition-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.condition-panel[hidden] { display: none; }
.condition-panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.condition-group h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.05; }
.condition-group ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: .9rem; }
.condition-group li { margin: 5px 0; }

.consultant-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.portrait-placeholder { min-height: 620px; display: grid; place-items: center; border-radius: var(--radius-lg); background: var(--sage-deep); color: white; text-align: center; box-shadow: var(--shadow); }
.portrait-monogram { font-family: var(--serif); font-size: clamp(5rem, 12vw, 9rem); line-height: 1; }
.portrait-placeholder p { max-width: 260px; margin: 18px auto 0; color: #c9ddd4; font-size: .85rem; }
.consultant-photo-wrap { min-height: 620px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--sage-pale); box-shadow: var(--shadow); }
.consultant-photo { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 50% 20%; }
.credential-list { margin: 30px 0; padding: 0; list-style: none; }
.credential-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.quote { margin: 38px 0; padding: 30px; border-left: 4px solid var(--clay); background: var(--white); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card:nth-child(2n) { background: color-mix(in srgb, var(--clay-pale) 42%, var(--white)); }
.contact-card h2 { margin: 12px 0; font-family: var(--serif); font-size: 2rem; }
.contact-card p { color: var(--ink-soft); }
.contact-card a:not(.button) { color: var(--sage-deep); font-weight: 800; }
.map-placeholder { min-height: 480px; display: grid; place-items: center; border-radius: var(--radius); background: radial-gradient(circle at 20% 30%, rgba(200,116,82,.2), transparent 24%), linear-gradient(135deg, var(--sage-pale), #cad9cf); text-align: center; }
.map-pin { width: 80px; height: 80px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--clay); color: white; font-family: var(--serif); font-size: 1.6rem; }
.map-pin span { transform: rotate(45deg); }
.notice { padding: 18px 20px; border: 1px solid rgba(200,116,82,.35); border-radius: 14px; background: var(--clay-pale); color: #643a2a; font-size: .86rem; }
.theme-diagnostics .notice { color: var(--ink); border-color: color-mix(in srgb, var(--clay) 45%, transparent); }

.theme-home .path-card:first-child { background: color-mix(in srgb, var(--moss) 18%, var(--white)); }
.theme-programs #pelvic-health { background: linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--clay-pale) 35%, var(--paper))); }
.theme-programs #neuro { background: linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--sage-pale) 46%, var(--paper))); }
.theme-diagnostics #overview { background: linear-gradient(145deg, var(--paper), color-mix(in srgb, var(--sage-pale) 38%, var(--paper))); }
.theme-modalities #catalogue { background: linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--sage-pale) 32%, var(--paper))); }
.theme-consultant .quote { background: color-mix(in srgb, var(--moss) 14%, var(--white)); }
.theme-contact .map-placeholder { background: radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--clay) 26%, transparent), transparent 24%), linear-gradient(135deg, var(--sage-pale), var(--clay-pale)); }

.cta-band { padding: 80px 0; background: var(--clay); color: white; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-row h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); line-height: .96; font-weight: 540; }
.cta-row .button { background: var(--white); color: var(--ink); }

.site-footer { padding: 64px 0 30px; background: var(--ink); color: #d9e2de; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.footer-grid h2, .footer-grid h3 { color: white; }
.footer-grid h2 { margin: 16px 0 10px; font-family: var(--serif); font-size: 2rem; }
.footer-grid h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: #aebcb6; }
.footer-grid a { display: block; width: fit-content; margin: 7px 0; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #899891; font-size: .76rem; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: rise .65s both; }
.hero-copy > * { opacity: 1; transform: none; }
body.ready .hero-copy > * { animation: rise .7s both; }
body.ready .hero-copy > *:nth-child(2) { animation-delay: .08s; }
body.ready .hero-copy > *:nth-child(3) { animation-delay: .16s; }
body.ready .hero-copy > *:nth-child(4) { animation-delay: .24s; }
body.ready .hero-copy > *:nth-child(5) { animation-delay: .32s; }
.hero-film { opacity: 1; transform: none; }
body.ready .hero-film { animation: heroIn .9s .2s both; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroIn { from { opacity: 0; transform: translateX(30px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes panelCopy { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: none; } }
@keyframes panelPhoto { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes ambientShift { from { background-position: 90% 8%, 0 0; } to { background-position: 68% 22%, 0 0; } }
@keyframes reviewFloat { from { margin-top: 0; } to { margin-top: -16px; } }
@keyframes reviewMarquee { to { transform: translateX(calc(-50% - 11px)); } }
@keyframes reviewGradient { 0% { background-position: 0% 20%; } 50% { background-position: 100% 70%; } 100% { background-position: 25% 100%; } }
@keyframes reviewOrb { from { transform: translate3d(0,0,0) scale(.9); } to { transform: translate3d(80px,-45px,0) scale(1.15); } }

@media (max-width: 1240px) {
  .nav { position: fixed; inset: 82px 0 auto; max-height: calc(100vh - 82px); display: none; flex-direction: column; align-items: stretch; padding: 18px 20px 28px; overflow-y: auto; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  body.menu-open .nav { display: flex; }
  .nav a { padding: 14px 18px; font-size: 1rem; }
  .menu-toggle { display: grid; place-items: center; }
  .phone-link { display: none; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .modality-grid { grid-template-columns: repeat(3, 1fr); }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .announcement .container span:not(:first-child) { display: none; }
  .brand-copy small { display: none; }
  .header-actions .button { display: none; }
  .page-hero { min-height: auto; padding: 52px 0 70px; }
  .hero-grid, .feature-split, .page-intro-grid, .consultant-grid, .contact-grid { grid-template-columns: 1fr; }
  .display { font-size: clamp(3.2rem, 16vw, 5.8rem); }
  .hero-film { min-height: 460px; margin-top: 12px; }
  .hero-photo-main { inset: 0 0 5% 8%; }
  .hero-photo-card { left: 0; width: 48%; }
  .hero-note { right: 0; }
  .pathway-grid, .modality-grid { grid-template-columns: repeat(2, 1fr); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .discovery-shell { grid-template-columns: 1fr; }
  .tab-list { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .tab-button { min-width: 190px; }
  .tab-button:hover { transform: none; }
  .compact-end-row { grid-template-columns: 1fr; }
  .review-card { flex-basis: 310px; }
  .section { padding: 78px 0; }
  .section-head, .cta-row { align-items: flex-start; flex-direction: column; }
  .feature-photo { min-height: 430px; }
  .process { grid-template-columns: repeat(2,1fr); }
  .condition-panel-grid { grid-template-columns: repeat(2, 1fr); }
  .process article:nth-child(2) { border-right: 0; }
  .process article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portrait-placeholder { min-height: 480px; }
}

@media (max-width: 560px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: .94rem; }
  .header-row { min-height: 72px; }
  .nav { inset: 72px 0 auto; }
  .subnav { top: 72px; }
  .title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .pathway-grid, .card-grid, .modality-grid, .process, .footer-grid { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .condition-panel-grid { grid-template-columns: 1fr; }
  .tab-panel-grid { grid-template-columns: 1fr; }
  .tab-photo { min-height: 240px; order: -1; }
  .compact-panel.clinician { grid-template-columns: 90px 1fr; gap: 18px; }
  .compact-portrait { width: 90px; font-size: 2.2rem; }
  .review-stage { gap: 14px; padding: 38px 0 48px; }
  .review-lane { padding: 12px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
  .review-card { flex-basis: min(286px, calc(100vw - 42px)); min-height: 220px; }
  .path-card { min-height: 220px; }
  .process article, .process article:not(:first-child) { padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .service-card { min-height: 330px; }
  .footer-bottom { flex-direction: column; }
  .hero-note { padding: 12px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-copy > *, .hero-film { opacity: 1; transform: none; }
  .review-track { animation: none !important; }
  .review-set[aria-hidden="true"] { display: none; }
  .review-lane { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

@media print {
  .announcement, .site-header, .subnav, .cta-band, .site-footer, .button { display: none !important; }
  body { background: white; color: black; }
  .section, .page-intro { padding: 28px 0; }
  .reveal { opacity: 1; transform: none; }
}
