:root {
  --green: #086438;
  --deep: #061c12;
  --black: #030202;
  --cream: #fdfce8;
  --sage: #b7c8b2;
  --light-sage: #e8f1e7;
  --white: #fff;
  --lime: #c9ff5a;
  --line: rgba(6, 28, 18, .17);
  --heading: "Bricolage Grotesque", sans-serif;
  --accent: "Gilda Display", serif;
  --body: "Inter", sans-serif;
  --radius: 30px;
  --shadow: 0 22px 60px rgba(3, 34, 20, .14);
  --ease-out-premium: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
  --ease-liquid: cubic-bezier(.19, 1, .22, 1);
  --motion-fast: 180ms;
  --motion-med: 360ms;
  --motion-slow: 620ms;
  --motion-xl: 900ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--deep); font-family: var(--body); overflow-x: hidden; }
body.menu-open, body.menu-is-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.sr-only { width: 1px; height: 1px; position: absolute; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--deep); }
.container { width: min(100% - 48px, 1380px); margin-inline: auto; }
.section-pad { padding: clamp(90px, 10vw, 160px) 0; }
.section-pad-sm { padding: 38px 0; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 1000; background: var(--lime); padding: 14px 20px; border-radius: 10px; }
.skip-link:focus { top: 14px; }

.eyebrow { margin: 0 0 24px; font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.66); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(50px, 7vw, 100px); line-height: .91; font-weight: 520; }
h2 em, h1 span, .footer-statement em { font-family: var(--accent); font-weight: 400; font-style: italic; letter-spacing: -.025em; }
.button { --mx: 0px; --my: 0px; --arrow-x: 0px; --arrow-y: 0px; position: relative; isolation: isolate; overflow: hidden; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 24px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; transform: translate3d(var(--mx),var(--my),0) scale(1); transition: transform 420ms var(--ease-liquid), box-shadow 720ms var(--ease-liquid), color 720ms var(--ease-liquid), background 720ms var(--ease-liquid), border-color 720ms var(--ease-liquid); }
.button::before { content: ""; position: absolute; z-index: -1; width: 190%; height: 190%; left: 50%; top: 115%; border-radius: 999px; background: var(--button-liquid, var(--lime)); opacity: .98; transform: translate3d(-50%,0,0) scale(.18); transform-origin: center; transition: top 720ms var(--ease-liquid), transform 720ms var(--ease-liquid), opacity 420ms ease; }
.button span { position: relative; z-index: 1; display: inline-block; font-size: 19px; transform: translate3d(var(--arrow-x),var(--arrow-y),0) rotate(0deg); transition: transform 460ms var(--ease-liquid); }
.button:hover { transform: translate3d(var(--mx),calc(var(--my) - 3px),0) scale(1.018); box-shadow: 0 17px 42px rgba(3,25,13,.17), 0 0 26px rgba(201,255,90,.14); }
.button:hover::before { top: 50%; transform: translate3d(-50%,-50%,0) scale(1); }
.button:hover span { transform: translate3d(calc(var(--arrow-x) + 5px),calc(var(--arrow-y) - 5px),0) rotate(-2deg); }
.button:active { transform: translate3d(var(--mx),var(--my),0) scale(.985); transition-duration: var(--motion-fast); }
.button:focus-visible { outline: 3px solid rgba(201,255,90,.5); outline-offset: 3px; }
.button-lime { --button-liquid: var(--deep); background: var(--lime); color: var(--deep); box-shadow: 0 8px 24px rgba(201,255,90,.18); }
.button-lime:hover { color: var(--white); box-shadow: 0 15px 38px rgba(3,25,13,.2), 0 0 24px rgba(201,255,90,.18); }
.button-dark { --button-liquid: var(--lime); background: var(--deep); color: var(--white); }
.button-dark:hover { color: var(--deep); }
.button-ghost { --button-liquid: #dff6a8; border: 1px solid rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { color: var(--deep); border-color: rgba(8,100,56,.55); }
.text-link { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 20px; transition: transform .3s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.inline-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* Shared header and navigation overlay */
.site-header { position: fixed; z-index: 100; top: 16px; left: 50%; transform: translate3d(-50%,0,0); width: min(calc(100% - 32px), 1380px); height: 74px; padding: 9px 11px 9px 14px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.9); border: 1px solid rgba(6,28,18,.08); border-radius: 999px; box-shadow: 0 8px 30px rgba(4,31,18,.065); -webkit-backdrop-filter: blur(18px) saturate(120%); backdrop-filter: blur(18px) saturate(120%); will-change: height, top, box-shadow; transition: transform 420ms var(--ease-out-premium), background 420ms var(--ease-out-premium), box-shadow 420ms var(--ease-out-premium), border-color 420ms var(--ease-out-premium), padding 420ms var(--ease-out-premium), height 420ms var(--ease-out-premium), top 420ms var(--ease-out-premium), backdrop-filter 420ms var(--ease-out-premium); }
.site-header.is-scrolled { height: 64px; top: 9px; padding-block: 6px; background: rgba(255,255,255,.82); border-color: rgba(6,28,18,.1); box-shadow: 0 14px 42px rgba(4,31,18,.12), 0 1px 0 rgba(255,255,255,.72) inset; -webkit-backdrop-filter: blur(24px) saturate(130%); backdrop-filter: blur(24px) saturate(130%); }
.brand { height: 100%; display: flex; align-items: center; gap: 12px; font-family: var(--heading); font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 50px; height: 50px; object-fit: cover; object-position: left; border-radius: 13px; transition: width 420ms var(--ease-out-premium), height 420ms var(--ease-out-premium), transform 420ms var(--ease-out-premium); }
.is-scrolled .brand img { width: 43px; height: 43px; transform: scale(.985); }
.brand em { display: block; color: var(--green); font-size: 10px; font-family: var(--body); font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.menu-toggle { width: 52px; height: 52px; border: 0; border-radius: 50%; background: var(--deep); display: grid; place-content: center; gap: 5px; cursor: pointer; transition: width 420ms var(--ease-out-premium), height 420ms var(--ease-out-premium), transform 420ms var(--ease-soft), box-shadow 420ms var(--ease-soft), background 420ms var(--ease-soft); }
.site-header.is-scrolled .menu-toggle { width: 50px; height: 50px; }
.menu-toggle:hover { transform: scale(1.025); background: var(--green); box-shadow: 0 9px 25px rgba(3,25,13,.17); }
.menu-toggle:focus-visible { outline: 3px solid rgba(201,255,90,.65); outline-offset: 3px; }
.menu-toggle span { width: 21px; height: 1px; background: white; display: block; transform-origin: center; transition: transform 420ms var(--ease-soft), opacity var(--motion-fast) ease; }
.menu-toggle:active { transform: scale(.96); }
.menu-open .menu-toggle { background: var(--deep); }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-panel { position: fixed; z-index: 90; top: 102px; bottom: 18px; left: 50%; width: min(calc(100% - 32px), 1280px); overflow-y: auto; background: rgba(253,252,248,.96); color: var(--deep); border: 1px solid rgba(6,28,18,.08); border-radius: 28px; box-shadow: 0 28px 80px rgba(4,31,18,.14); opacity: 0; pointer-events: none; visibility: hidden; transform: translate3d(-50%,-18px,0) scale(.985); transform-origin: top center; clip-path: inset(0 0 100% 0 round 28px); -webkit-backdrop-filter: blur(24px) saturate(120%); backdrop-filter: blur(24px) saturate(120%); transition: opacity 420ms var(--ease-out-premium), transform 760ms var(--ease-out-premium), clip-path 760ms var(--ease-out-premium), visibility 0s linear 760ms; }
.menu-panel.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: translate3d(-50%,0,0) scale(1); clip-path: inset(0 0 0 0 round 28px); transition-delay: 0s; }
.menu-inner { width: min(100% - 56px, 1060px); min-height: 100%; margin: auto; padding: 28px 0; display: grid; grid-template-columns: minmax(280px,1fr) auto; grid-template-rows: auto 1fr auto; gap: 18px 36px; align-items: end; }
.menu-inner .eyebrow { grid-column: 1 / -1; align-self: start; margin-bottom: 0; color: rgba(6,28,18,.48); }
.menu-inner nav { grid-column: 1 / -1; align-self: center; width: min(100%,760px); margin-inline: auto; display: grid; gap: 2px; }
.menu-inner nav .menu-link { position: relative; isolation: isolate; overflow: hidden; min-height: 49px; display: flex; justify-content: space-between; align-items: center; border: 0; border-radius: 999px; padding: 7px 20px; color: var(--deep); font-family: var(--heading); font-size: clamp(27px,3vw,39px); line-height: 1; font-weight: 470; opacity: 0; filter: blur(8px); transform: translate3d(0,18px,0); transition: color var(--motion-med) var(--ease-soft), box-shadow var(--motion-med) var(--ease-soft), opacity 360ms ease, filter 520ms var(--ease-out-premium), transform 620ms var(--ease-out-premium); }
.menu-inner nav .menu-link::before { content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit; background: rgba(201,255,90,.24); transform: scaleX(0); transform-origin: left center; transition: transform 620ms var(--ease-liquid), background var(--motion-med) ease; }
.menu-inner nav .menu-link:hover { color: var(--green); }
.menu-inner nav .menu-link:hover::before { transform: scaleX(1); }
.menu-inner nav .menu-link.is-current { color: var(--deep) !important; box-shadow: 0 10px 28px rgba(111,153,28,.13), 0 0 0 1px rgba(201,255,90,.25); }
.menu-inner nav .menu-link.is-current::before { background: var(--lime); transform: scaleX(1); }
.menu-panel.is-open .menu-link { opacity: 1; filter: blur(0); transform: none; }
.menu-panel.is-open .menu-link:nth-child(1) { transition-delay: 80ms; }
.menu-panel.is-open .menu-link:nth-child(2) { transition-delay: 130ms; }
.menu-panel.is-open .menu-link:nth-child(3) { transition-delay: 180ms; }
.menu-panel.is-open .menu-link:nth-child(4) { transition-delay: 230ms; }
.menu-panel.is-open .menu-link:nth-child(5) { transition-delay: 280ms; }
.menu-panel.is-open .menu-link:nth-child(6) { transition-delay: 330ms; }
.menu-panel.is-open .menu-link:nth-child(7) { transition-delay: 380ms; }
.menu-panel.is-open .menu-link:nth-child(8) { transition-delay: 430ms; }
.menu-inner nav span { color: rgba(6,28,18,.46); font: 10px var(--body); letter-spacing: .15em; }
.menu-inner > .button { grid-column: 1; justify-self: start; width: min(100%,340px); }
.menu-contact { grid-column: 2; display: flex; gap: 28px; align-self: center; color: rgba(6,28,18,.58); font-size: 12px; }

.hero { min-height: 940px; height: 100svh; position: relative; color: var(--white); overflow: hidden; }
.hero-media { --hero-parallax: 0px; position: absolute; inset: -7% 0; background: url("../assets/hero.jpg") center 34% / cover no-repeat; translate: 0 var(--hero-parallax); transform: scale(1.14); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,20,11,.85) 0%, rgba(1,20,11,.57) 46%, rgba(1,20,11,.08) 78%), linear-gradient(0deg, rgba(1,18,10,.45), transparent 55%); }
.hero-content { position: relative; z-index: 2; min-height: inherit; height: 100%; padding-top: 190px; padding-bottom: 110px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-kicker { margin: 0 0 34px; text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 700; }
.hero h1 { max-width: 1050px; margin: 0; font-size: clamp(58px, 8.2vw, 124px); line-height: .82; font-weight: 480; }
.hero h1 span { color: var(--lime); }
.hero-copy { max-width: 720px; margin: 40px 0 0; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.trust-badge { margin-top: 28px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(1,18,10,.22); backdrop-filter: blur(10px); color: rgba(255,255,255,.78); font-size: 10px; font-weight: 600; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(201,255,90,.12); }
.trust-badge i { width: 3px; height: 3px; background: rgba(255,255,255,.4); border-radius: 50%; }
.hero-scroll { position: absolute; z-index: 2; right: 3.5vw; bottom: 40px; display: flex; align-items: center; gap: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; writing-mode: vertical-rl; }
.hero-scroll b { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 14px; }
.animate-in { opacity: 1; filter: none; transform: none; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-card { padding: 18px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.55); transition: transform .3s, box-shadow .3s; }
.trust-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(6,28,18,.08); }
.trust-icon { width: 46px; height: 46px; flex: 0 0 46px; border: 1px solid var(--green); border-radius: 50%; display: grid; place-items: center; color: var(--green); font-family: var(--accent); font-size: 16px; }
.trust-card strong { font: 600 14px var(--heading); }
.trust-card p { margin: 4px 0 0; color: rgba(6,28,18,.58); font-size: 11px; }

.about { background: var(--cream); }
.section-intro { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; margin-bottom: 100px; }
.word-reveal { max-width: 1100px; margin: 0; font: 480 clamp(30px, 4.1vw, 61px)/1.14 var(--heading); letter-spacing: -.04em; }
.word-reveal .word { opacity: .14; transition: opacity .18s linear; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 8vw, 120px); align-items: center; }
.image-frame { margin: 0; overflow: hidden; border-radius: var(--radius); }
.about-image { position: relative; }
.about-image img { height: min(650px, 68vw); object-fit: cover; transition: transform .7s; }
.about-image:hover img { transform: scale(1.025); }
.about-image figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: space-between; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,.88); backdrop-filter: blur(14px); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-copy { max-width: 520px; }
.about-copy .display-quote { margin-bottom: 48px; font: 400 clamp(33px, 4vw, 55px)/1.09 var(--accent); letter-spacing: -.02em; }
.about-copy > p:not(.display-quote) { color: rgba(6,28,18,.66); line-height: 1.8; font-size: 15px; }
.about-copy .text-link { margin-top: 25px; }

.services { background: var(--deep); color: white; }
.heading-row { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: end; padding-bottom: 80px; }
.heading-row > p { max-width: 430px; margin-bottom: 8px; color: rgba(255,255,255,.61); font-size: 15px; line-height: 1.8; }
.service-row { display: grid; grid-template-columns: 70px minmax(320px, .9fr) 1.1fr; gap: clamp(25px, 5vw, 80px); align-items: center; padding: 42px 0; border-top: 1px solid rgba(255,255,255,.19); transition: padding .35s; }
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.19); }
.service-row:hover { padding-left: 12px; padding-right: 12px; }
.service-number { align-self: start; color: rgba(255,255,255,.34); font: 400 25px var(--accent); transition: color .3s; }
.service-row:hover .service-number { color: var(--lime); }
.service-row figure { margin: 0; height: 330px; overflow: hidden; border-radius: 24px; }
.service-row figure img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.service-row:hover figure img { transform: scale(1.055); }
.service-copy { position: relative; padding-right: 80px; }
.service-copy h3 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 58px); line-height: .98; font-weight: 450; }
.service-copy > p { max-width: 590px; color: rgba(255,255,255,.58); line-height: 1.7; font-size: 14px; }
.service-copy ul { padding: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.service-copy li { font-size: 12px; color: rgba(255,255,255,.82); }
.service-copy li::before { content: "↗"; margin-right: 10px; color: var(--lime); }
.circle-link { position: absolute; right: 0; top: 0; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 20px; transition: background .3s, color .3s, transform .3s; }
.circle-link:hover { background: var(--lime); color: var(--deep); transform: rotate(45deg); }
.service-note { width: fit-content; margin: 34px auto 0; padding: 15px 24px; border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.66); font-size: 12px; }
.service-note span { color: var(--lime); margin-right: 8px; }

.appointment-cta { background: var(--light-sage); }
.cta-shell { min-height: 670px; position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 110px); padding: 28px; border-radius: 42px; background: var(--deep); color: white; overflow: hidden; }
.cta-shell figure { margin: 0; border-radius: 27px; overflow: hidden; }
.cta-shell figure img { height: 100%; object-fit: cover; }
.cta-copy { align-self: center; max-width: 650px; padding-right: 6vw; }
.cta-copy h2 { font-size: clamp(52px, 6vw, 88px); }
.cta-copy > p:not(.eyebrow) { max-width: 570px; margin: 34px 0; color: rgba(255,255,255,.66); line-height: 1.75; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; }
.phone-link { font-size: 12px; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.top-button { position: absolute; right: 25px; top: 25px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; transition: background .3s, color .3s; }
.top-button:hover { background: var(--lime); color: var(--deep); }

.before-after { background: var(--cream); }
.gallery-heading { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 50px; align-items: end; margin-bottom: 70px; }
.gallery-heading .eyebrow { align-self: start; }
.gallery-heading h2 { font-size: clamp(50px, 6vw, 86px); }
.gallery-heading > p:last-child { margin: 0; color: rgba(6,28,18,.6); font-size: 14px; line-height: 1.75; }
.comparison { position: relative; height: min(65vw, 690px); min-height: 400px; border-radius: 34px; overflow: hidden; cursor: ew-resize; touch-action: pan-y; user-select: none; background: #d9d1c4; }
.comparison > img, .comparison-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.comparison-before { position: absolute; inset: 0 auto 0 0; width: 50%; overflow: hidden; }
.comparison-before img { width: var(--comparison-width, calc(min(100vw - 48px, 1380px))); max-width: none; }
.comparison-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; width: 2px; background: white; transform: translateX(-1px); pointer-events: none; }
.comparison-line span { position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%,-50%); display: grid; place-items: center; border-radius: 50%; background: white; color: var(--deep); font-size: 22px; box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.comparison-label { position: absolute; z-index: 2; top: 24px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.label-before { left: 24px; }.label-after { right: 24px; }
.comparison input { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.gallery-disclaimer { text-align: right; margin-top: 14px; color: rgba(6,28,18,.45); font-size: 10px; }

.doctors { background: var(--light-sage); }
.heading-row.dark-text > p { color: rgba(6,28,18,.6); }
.doctor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.doctor-card { padding: 16px; border-radius: 32px; background: rgba(255,255,255,.72); border: 1px solid rgba(6,28,18,.08); transition: transform .4s, box-shadow .4s; }
.doctor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.doctor-card figure { position: relative; margin: 0; height: 560px; overflow: hidden; border-radius: 22px; background: var(--sage); }
.doctor-card figure img { height: 100%; object-fit: cover; transition: transform .6s; }
.doctor-card:hover figure img { transform: scale(1.025); }
.doctor-card figure span { position: absolute; left: 16px; top: 16px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.84); font: 12px var(--accent); }
.doctor-info { padding: 30px 14px 12px; }
.doctor-info > div:first-child { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.doctor-info h3 { margin: 0; font-size: 40px; font-weight: 480; }
.doctor-info > div p { margin: 0 0 5px; color: var(--green); font-size: 12px; }
.doctor-info dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 25px 0; margin: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.doctor-info dl div { display: grid; gap: 6px; }
.doctor-info dt { color: rgba(6,28,18,.47); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.doctor-info dd { margin: 0; font-size: 13px; font-weight: 600; }

.form-section { background: var(--green); color: white; }
.form-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 160px); }
.form-intro h2 { font-size: clamp(55px, 6vw, 88px); }
.form-intro > p:not(.eyebrow) { max-width: 520px; margin-top: 35px; color: rgba(255,255,255,.68); line-height: 1.75; }
.form-contact { margin-top: 70px; display: grid; gap: 16px; }
.form-contact a { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.22); font-size: 13px; }
.form-contact span { color: rgba(255,255,255,.5); }
.appointment-form { padding: clamp(24px, 5vw, 62px); display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; border-radius: 34px; background: var(--cream); color: var(--deep); }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(6,28,18,.25); border-radius: 0; background: transparent; color: var(--deep); outline: none; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { resize: vertical; }
.appointment-form .button { margin-top: 8px; }
.form-note { margin: -10px 0 0; text-align: center; color: rgba(6,28,18,.48); font-size: 10px; }

.collage { background: var(--cream); overflow: hidden; }
.collage-heading { text-align: center; max-width: 1000px; }
.collage-heading h2 { font-size: clamp(48px, 6vw, 87px); }
.collage-heading > p:last-child { max-width: 650px; margin: 34px auto 70px; color: rgba(6,28,18,.6); line-height: 1.75; }
.image-marquee { width: 100%; overflow: hidden; }
.marquee-track { display: flex; width: max-content; gap: 18px; animation: marquee 35s linear infinite; }
.marquee-track figure { width: clamp(260px, 28vw, 420px); height: 470px; margin: 0; border-radius: 24px; overflow: hidden; }
.marquee-track figure:nth-child(odd) { transform: translateY(35px); }
.marquee-track img { height: 100%; object-fit: cover; transition: transform .5s; }
.marquee-track figure:hover img { transform: scale(1.04); }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

.faq { background: var(--light-sage); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 160px); }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { font-size: clamp(50px, 6vw, 84px); }
.faq-item { border-top: 1px solid rgba(6,28,18,.22); }
.faq-item:last-child { border-bottom: 1px solid rgba(6,28,18,.22); }
.faq-item button { width: 100%; padding: 27px 0; display: flex; justify-content: space-between; gap: 25px; align-items: center; border: 0; background: transparent; text-align: left; font: 500 clamp(18px, 2vw, 26px) var(--heading); cursor: pointer; }
.faq-item button i { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid rgba(6,28,18,.3); border-radius: 50%; font: normal 24px var(--body); transition: transform .3s, background .3s; }
.faq-item.open button i { transform: rotate(45deg); background: var(--lime); }
.faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .42s cubic-bezier(.22,1,.36,1), opacity .3s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; max-width: 650px; padding-bottom: 0; color: rgba(6,28,18,.65); line-height: 1.7; font-size: 14px; transform: translate3d(0,-7px,0); transition: transform .42s cubic-bezier(.22,1,.36,1), padding-bottom .42s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer { opacity: 1; }
.faq-item.open .faq-answer p { padding-bottom: 28px; transform: none; }

.journal { background: var(--cream); }
.journal-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 70px; }
.journal-heading h2 { font-size: clamp(50px, 6vw, 84px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card figure { height: 420px; position: relative; margin: 0 0 24px; overflow: hidden; border-radius: 24px; background: var(--sage); }
.blog-card figure img { height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card figure span { position: absolute; inset: auto 14px 14px; padding: 15px; border-radius: 14px; background: rgba(255,255,255,.92); font-size: 11px; font-weight: 700; text-align: center; transform: translateY(80px); transition: transform .4s; }
.blog-card:hover figure img { transform: scale(1.05); }
.blog-card:hover figure span { transform: none; }
.blog-card > a > p { margin-bottom: 12px; color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h3 { margin: 0; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.15; font-weight: 500; }

/* Shared footer */
.footer { padding: 90px 0 26px; background: var(--deep); color: white; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 50px; padding-bottom: 90px; }
.footer-brand img { width: 190px; height: 66px; object-fit: cover; object-position: left; margin-bottom: 28px; border-radius: 12px; }
.footer-brand p { color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.7; margin: 7px 0; }
.footer-brand a { display: block; margin: 10px 0; font-size: 12px; }
.footer-links { display: grid; align-content: start; gap: 13px; }
.footer-links h3 { margin-bottom: 13px; color: rgba(255,255,255,.42); font: 700 10px var(--body); letter-spacing: .15em; text-transform: uppercase; }
.footer-links a, .footer-links > span { width: fit-content; font-size: 12px; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: var(--lime); }
.footer-statement { padding: 55px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); font: 440 clamp(58px, 10vw, 145px)/.82 var(--heading); letter-spacing: -.055em; }
.footer-statement em { color: var(--lime); }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 10px; }
.footer-bottom p { margin: 0; }
.whatsapp-fab { position: fixed; z-index: 70; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 7px 14px 7px 7px; border-radius: 999px; background: var(--lime); color: var(--deep); box-shadow: 0 10px 35px rgba(0,0,0,.2); font-size: 11px; animation: fabArrive var(--motion-xl) 900ms var(--ease-liquid) both; transition: transform 460ms var(--ease-liquid), box-shadow 460ms var(--ease-liquid); }
.whatsapp-fab:hover { transform: translate3d(0,-3px,0) scale(1.015); box-shadow: 0 16px 38px rgba(3,25,13,.2); }
.whatsapp-fab:active { transform: scale(.985); }
.whatsapp-fab span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--deep); color: white; font-size: 9px; font-weight: 700; }
@keyframes fabArrive { 0% { opacity: 0; transform: translate3d(0,9px,0) scale(.96); } 65% { opacity: 1; transform: translate3d(0,-2px,0) scale(1.015); } 100% { opacity: 1; transform: none; } }

.reveal,
.reveal-up,
.reveal-scale,
.reveal-blur,
.reveal-left,
.reveal-right,
.stagger-item,
.animate-in { opacity: 1; filter: none; transform: none; }
.motion-ready .reveal,
.motion-ready .reveal-up,
.motion-ready .reveal-scale,
.motion-ready .reveal-blur,
.motion-ready .reveal-left,
.motion-ready .reveal-right,
.motion-ready .stagger-item,
.motion-ready .animate-in { --reveal-from: translate3d(0,26px,0); opacity: 0; filter: blur(10px); transform: var(--reveal-from); }
.motion-ready .reveal-scale { --reveal-from: translate3d(0,16px,0) scale(.98); }
.motion-ready .reveal-blur { --reveal-from: translate3d(0,18px,0); }
.motion-ready .reveal-left { --reveal-from: translate3d(-28px,0,0); }
.motion-ready .reveal-right { --reveal-from: translate3d(28px,0,0); }
.motion-ready .services-hero-visual.reveal-scale { --reveal-from: scale(.98); }
.motion-ready .hero-media.reveal-scale { --reveal-from: scale(1.1); }
.motion-ready .reveal.is-visible,
.motion-ready .reveal-up.is-visible,
.motion-ready .reveal-scale.is-visible,
.motion-ready .reveal-blur.is-visible,
.motion-ready .reveal-left.is-visible,
.motion-ready .reveal-right.is-visible,
.motion-ready .stagger-item.is-visible,
.motion-ready .animate-in.is-visible { opacity: 1; filter: blur(0); transform: none; animation: revealEnter 880ms cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms) 1 backwards; }
.motion-ready .services-hero-visual.reveal-scale.is-visible { transform: scale(1); }
.motion-ready .hero-media.reveal-scale.is-visible { transform: scale(1.14); }
.stagger-group > .stagger-item { --reveal-delay: calc(var(--stagger-index, 0) * 70ms); }
@keyframes revealEnter {
  from { opacity: 0; filter: blur(10px); transform: var(--reveal-from, translate3d(0,26px,0)); }
}

/* Shared premium interaction layer */
.premium-card { backface-visibility: hidden; transform: translateZ(0) scale(1); }
.premium-card.premium-card { transition: transform 620ms cubic-bezier(.16,1,.3,1), box-shadow 620ms cubic-bezier(.16,1,.3,1), border-color 560ms ease, background-color 620ms ease; }
.premium-card.premium-card:hover { transform: translate3d(0,-6px,0) scale(1.01); border-color: rgba(8,100,56,.36); box-shadow: 0 24px 64px rgba(3,34,20,.14), 0 0 0 1px rgba(201,255,90,.18); }
.premium-card.premium-card:is(.trust-card,.service-hub-card,.doctor-card,.blog-preview-card,.gallery-card,.contact-card,.pathway-card:not(.pathway-primary)):hover { background-image: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,248,221,.9)); }
.premium-card.premium-card:is(.care-card,.why-service-card,.pathway-primary,.stats-shell,.faq-item):hover { background-image: linear-gradient(145deg, rgba(201,255,90,.075), rgba(255,255,255,.025)); }
.premium-card figure,
.image-frame,
.approach-image,
.centre-image,
.cta-shell figure,
.marquee-track figure,
.patient-stack figure { position: relative; overflow: hidden; }
.premium-card figure::after,
.image-frame::after,
.approach-image::after,
.centre-image::after,
.cta-shell figure::after,
.marquee-track figure::after,
.patient-stack figure::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 0, rgba(255,255,255,.2), transparent 38%), linear-gradient(180deg, transparent 52%, rgba(3,31,18,.16)); opacity: 0; transition: opacity 620ms cubic-bezier(.16,1,.3,1); }
.premium-card figure > :not(img),
.image-frame > :not(img) { z-index: 2; }
.premium-card.premium-card figure img,
.image-frame img,
.approach-image img,
.centre-image img,
.cta-shell figure img,
.marquee-track figure img,
.patient-stack figure img { transform: scale(1.001); filter: saturate(1) contrast(1); transition: transform 650ms cubic-bezier(.16,1,.3,1), filter 650ms cubic-bezier(.16,1,.3,1); }
.premium-card.premium-card:hover figure img,
.image-frame:hover img,
.approach-image:hover img,
.centre-image:hover img,
.cta-shell figure:hover img,
.marquee-track figure:hover img,
.patient-stack figure:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.02); }
.premium-card.premium-card:hover figure::after,
.image-frame:hover::after,
.approach-image:hover::after,
.centre-image:hover::after,
.cta-shell figure:hover::after,
.marquee-track figure:hover::after,
.patient-stack figure:hover::after { opacity: 1; }
.premium-card.premium-card:is(.comparison):hover img { transform: none; filter: saturate(1.04) contrast(1.02); }
.service-row.premium-card:hover { padding-left: 0; padding-right: 0; }
.card-arrow,
.gallery-card-meta > span { transition: transform 580ms cubic-bezier(.16,1,.3,1), background-color 500ms ease, border-color 500ms ease; }
.premium-card:hover .card-arrow,
.premium-card:hover .gallery-card-meta > span { transform: translate3d(3px,-3px,0) rotate(45deg); background: var(--lime); border-color: rgba(8,100,56,.28); }
.service-copy li::before { display: inline-block; transition: transform 580ms cubic-bezier(.16,1,.3,1); }
.service-row:hover .service-copy li::before { transform: translate3d(3px,-3px,0); }

.is-filtering-out { pointer-events: none; }

.gallery-lightbox .lightbox-stage { opacity: 0; filter: blur(8px); transform: translate3d(0,14px,0) scale(.975); transition: opacity .38s ease, filter .38s ease, transform .48s cubic-bezier(.22,1,.36,1); }
.gallery-lightbox.is-open .lightbox-stage { opacity: 1; filter: blur(0); transform: none; }
.gallery-lightbox { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

.services-hero-visual { --hero-parallax: 0px; opacity: 1; filter: none; translate: 0 var(--hero-parallax); transform: none; }
.services-hero-main { animation: visualFloat 7s 1.1s ease-in-out infinite; }
.services-hero-small { animation: visualFloat 6s .4s ease-in-out infinite reverse; }
@keyframes visualFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }

/* About page */
[data-page="about"] .menu-inner nav a.is-current,
[data-page="about"] .footer-links a.is-current { color: var(--lime); }
.about-collage-hero { min-height: 1000px; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 48%, #fffef3 0, var(--cream) 43%, #f2f2dc 100%); }
.about-collage-content { min-height: 1000px; position: relative; z-index: 3; padding-top: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; pointer-events: none; }
.about-collage-content::before { content: ""; position: absolute; z-index: -1; width: min(76vw, 900px); height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(253,252,232,.97) 25%, rgba(253,252,232,.74) 62%, transparent 74%); }
.about-collage-content .eyebrow { color: var(--green); }
.about-collage-content h1 { margin: 0; font: 480 clamp(92px, 13vw, 190px)/.78 var(--heading); letter-spacing: -.07em; }
.about-collage-content h1 em { color: var(--green); font: italic 400 .92em var(--accent); letter-spacing: -.03em; }
.about-collage-content > p:not(.eyebrow) { max-width: 660px; margin: 40px 0 30px; color: rgba(6,28,18,.62); font-size: 15px; line-height: 1.75; }
.about-collage-content .button { pointer-events: auto; }
.about-collage-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.collage-float { --float-y: 0px; --rotate: 0deg; position: absolute; margin: 0; overflow: hidden; border: 7px solid rgba(255,255,255,.92); border-radius: 25px; box-shadow: 0 24px 65px rgba(6,28,18,.17); opacity: 0; transform: translateY(var(--float-y)) rotate(var(--rotate)) scale(.98); animation: collageEnter .9s cubic-bezier(.16,1,.3,1) forwards; }
.collage-float img { height: 100%; object-fit: cover; }
.collage-dental { --rotate: -6deg; width: 260px; height: 205px; left: 3.5%; top: 17%; animation-delay: .12s; }
.collage-smile { --rotate: 5deg; width: 225px; height: 250px; left: 11%; bottom: 6%; animation-delay: .28s; }
.collage-aesthetic { --rotate: 6deg; width: 265px; height: 215px; right: 4%; top: 16%; animation-delay: .2s; }
.collage-hair { --rotate: -5deg; width: 230px; height: 265px; right: 10%; bottom: 5%; animation-delay: .36s; }
.collage-doctor { --rotate: 4deg; width: 145px; height: 180px; left: 1%; top: 48%; animation-delay: .44s; }
.collage-clinic { --rotate: -4deg; width: 165px; height: 190px; right: 1%; top: 46%; animation-delay: .5s; }
.collage-chip { position: absolute; z-index: 2; padding: 12px 17px; border: 1px solid rgba(6,28,18,.13); border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: 0 10px 30px rgba(6,28,18,.08); color: var(--deep); font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.chip-dental { left: 20%; top: 17%; }.chip-esthetics { right: 20%; top: 24%; }.chip-hair { right: 22%; bottom: 16%; }.chip-experience { left: 21%; bottom: 19%; }
.about-hero-scroll { position: absolute; z-index: 4; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(6,28,18,.6); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.about-hero-scroll b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(6,28,18,.25); border-radius: 50%; }
@keyframes collageEnter { to { opacity: 1; transform: translateY(var(--float-y)) rotate(var(--rotate)) scale(1); } }
.about-intro { background: var(--cream); text-align: center; }
.about-intro .eyebrow { margin-bottom: 45px; }
.about-intro .word-reveal { max-width: 1180px; margin-inline: auto; font-size: clamp(34px, 4.5vw, 65px); }
.doctor-signoff { margin-top: 65px; display: inline-flex; align-items: center; gap: 18px; text-align: left; }
.doctor-avatars { display: flex; }
.doctor-avatars img { width: 54px; height: 54px; object-fit: cover; border: 3px solid var(--cream); border-radius: 50%; }
.doctor-avatars img + img { margin-left: -15px; }
.doctor-signoff strong, .doctor-signoff span { display: block; }
.doctor-signoff strong { font: 600 14px var(--heading); }
.doctor-signoff span { margin-top: 4px; color: rgba(6,28,18,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.patient-words { background: var(--light-sage); }
.patient-heading { margin-bottom: 70px; }
.patient-heading h2 { font-size: clamp(56px, 8vw, 112px); }
.patient-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.patient-stack { --scroll-rotate: 0deg; width: min(100%, 510px); aspect-ratio: 1; position: relative; margin: auto; transform: rotate(var(--scroll-rotate)); }
.stack-card, .patient-stack figure { position: absolute; inset: 7%; border-radius: 32px; }
.stack-lime { background: var(--lime); transform: rotate(-8deg); }
.stack-sage { background: var(--sage); transform: rotate(7deg); }
.patient-stack figure { margin: 0; overflow: hidden; box-shadow: var(--shadow); transform: rotate(-1deg); }
.patient-stack img { height: 100%; object-fit: cover; }
.patient-story blockquote { margin: 0; }
.patient-story blockquote > span { color: var(--green); font: 120px/.5 var(--accent); }
.patient-story blockquote p { margin: 35px 0; font: 400 clamp(28px, 3.3vw, 47px)/1.15 var(--accent); }
.patient-story blockquote cite { color: var(--green); font: 700 10px var(--body); font-style: normal; letter-spacing: .14em; text-transform: uppercase; }
.about-approach { background: var(--cream); }
.approach-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 65px; }
.approach-heading h2 { font-size: clamp(52px, 7vw, 100px); }
.approach-banner { margin: 0 0 22px; padding: clamp(30px, 5vw, 70px); border-radius: 30px; background: var(--lime); color: var(--deep); font: 470 clamp(28px, 4vw, 57px)/1.1 var(--heading); letter-spacing: -.04em; }
.approach-image { height: min(62vw, 680px); margin: 0; overflow: hidden; border-radius: 30px; }
.approach-image img { height: 100%; object-fit: cover; }
.approach-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 130px); align-items: center; padding-top: 55px; }
.approach-detail > p { max-width: 610px; margin: 0; font: 480 clamp(24px, 3vw, 40px)/1.25 var(--heading); letter-spacing: -.03em; }
.approach-doctors { margin: 0; display: flex; align-items: center; gap: 18px; }
.approach-doctors > div { display: flex; }
.approach-doctors img { width: 90px; height: 105px; object-fit: cover; border: 4px solid var(--cream); border-radius: 18px; }
.approach-doctors img + img { margin-left: -18px; }
.approach-doctors figcaption { font: 600 15px var(--heading); }
.approach-doctors figcaption span { display: block; margin-top: 5px; color: rgba(6,28,18,.5); font: 10px var(--body); text-transform: uppercase; letter-spacing: .08em; }
.about-stats { padding: 0 0 clamp(90px, 10vw, 160px); background: var(--cream); }
.stats-shell { min-height: 430px; padding: clamp(35px, 6vw, 80px); display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: center; border-radius: 38px; background: var(--deep); color: white; }
.stat-lead strong { display: block; font: 480 clamp(65px, 9vw, 130px)/.8 var(--heading); letter-spacing: -.06em; }
.stat-lead strong em { color: var(--lime); font: italic 400 .75em var(--accent); }
.stat-lead p { max-width: 430px; margin: 34px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.stat-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-items > div { min-height: 180px; padding: 20px 25px; display: flex; flex-direction: column; justify-content: flex-end; border-left: 1px solid rgba(255,255,255,.2); }
.stat-items strong { font: 500 clamp(28px, 3vw, 45px) var(--heading); }
.stat-items span { margin-top: 10px; color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .09em; }
.centre-environment { background: var(--light-sage); }
.centre-image { height: min(63vw, 720px); margin: 0; overflow: hidden; border-radius: 34px; }
.centre-image img { height: 100%; object-fit: cover; }
.centre-copy { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(55px, 9vw, 130px); padding-top: 65px; }
.centre-copy h2 { font-size: clamp(48px, 6vw, 86px); }
.centre-copy > div:last-child { align-self: end; }
.centre-copy > div:last-child p { color: rgba(6,28,18,.62); font-size: 14px; line-height: 1.8; }
.centre-copy .button { margin-top: 22px; }
.care-philosophy { background: var(--deep); color: white; }
.about-section-title { margin-bottom: 70px; }
.about-section-title h2 { font-size: clamp(54px, 7vw, 100px); }
.care-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.care-card { padding: 14px; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 390px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.05); transition: transform .4s, background .4s; }
.care-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.care-card figure { margin: 0; overflow: hidden; border-radius: 20px; }
.care-card img { height: 100%; object-fit: cover; transition: transform .55s; }
.care-card:hover img { transform: scale(1.045); }
.care-card > div { padding: 22px; align-self: end; }
.care-card > div > span { color: var(--lime); font: 15px var(--accent); }
.care-card h3 { margin: 35px 0 14px; font-size: clamp(29px, 3vw, 43px); line-height: 1; font-weight: 470; }
.care-card p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; line-height: 1.7; }
.about-doctors { border-top: 1px solid var(--line); }
.about-ready { padding-top: 0; background: var(--light-sage); }
.about-ready-shell { min-height: 610px; padding: clamp(42px, 8vw, 110px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-radius: 42px; background: var(--deep); color: white; }
.about-ready-shell h2 { font-size: clamp(54px, 7vw, 100px); }
.about-ready-shell > p:not(.eyebrow) { max-width: 720px; margin: 36px 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.75; }
.about-ready-shell > div { display: flex; flex-wrap: wrap; gap: 12px; }

/* Services page */
[data-page="services"] .menu-inner nav a.is-current,
[data-page="services"] .footer-links a.is-current { color: var(--lime); }
[data-page="hair-transplant"] .menu-inner nav a.is-current,
[data-page="hair-transplant"] .footer-links a.is-current { color: var(--lime); }
[data-page="dental-implants"] .menu-inner nav a.is-current,
[data-page="dental-implants"] .footer-links a.is-current { color: var(--lime); }
[data-page="dental-care"] .menu-inner nav a.is-current,
[data-page="dental-care"] .footer-links a.is-current { color: var(--lime); }
[data-page="cosmetic-dentistry"] .menu-inner nav a.is-current,
[data-page="cosmetic-dentistry"] .footer-links a.is-current { color: var(--lime); }
[data-page="facial-esthetics"] .menu-inner nav a.is-current,
[data-page="facial-esthetics"] .footer-links a.is-current { color: var(--lime); }
[data-page="skin-laser-treatments"] .menu-inner nav a.is-current,
[data-page="skin-laser-treatments"] .footer-links a.is-current { color: var(--lime); }
[data-page="root-canal-treatment"] .menu-inner nav a.is-current,
[data-page="root-canal-treatment"] .footer-links a.is-current { color: var(--lime); }
[data-page="teeth-whitening"] .menu-inner nav a.is-current,
[data-page="teeth-whitening"] .footer-links a.is-current { color: var(--lime); }
[data-page="laser-hair-reduction"] .menu-inner nav a.is-current,
[data-page="laser-hair-reduction"] .footer-links a.is-current { color: var(--lime); }
.services-hero { min-height: 900px; padding: 150px 0 80px; display: flex; align-items: center; overflow: hidden; background: var(--deep); color: white; }
.services-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.services-hero-copy { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 58px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.breadcrumbs a { color: rgba(255,255,255,.78); }
.services-hero-copy .eyebrow { color: var(--lime); }
.services-hero h1 { max-width: 970px; margin: 0; font-size: clamp(54px, 7.25vw, 108px); line-height: .88; font-weight: 470; }
.services-hero h1 em { display: block; color: var(--lime); font: italic 400 .78em var(--accent); letter-spacing: -.025em; }
.services-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 36px 0 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; }
.services-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.services-hero-visual { min-height: 590px; position: relative; }
.services-hero-visual::before { content: ""; position: absolute; width: min(390px, 100%); height: 390px; right: 0; top: 20px; border: 1px solid rgba(201,255,90,.25); border-radius: 50%; }
.services-hero-visual figure { position: absolute; margin: 0; overflow: hidden; border: 7px solid var(--deep); box-shadow: 0 25px 60px rgba(0,0,0,.24); }
.services-hero-visual img { height: 100%; object-fit: cover; }
.services-hero-main { width: min(100%, 450px); height: 500px; right: 0; top: 0; border-radius: 190px 190px 28px 28px; }
.services-hero-small { width: 240px; height: 230px; left: -55px; bottom: 0; border-radius: 28px; }
.services-hero-chip { position: absolute; right: 0; bottom: 28px; padding: 13px 19px; border-radius: 999px; background: var(--lime); color: var(--deep); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-directory { background: var(--cream); }
.service-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-hub-card { min-width: 0; padding: 13px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.58); transition: transform .4s, box-shadow .4s, background .4s; }
.service-hub-card:hover { transform: translateY(-7px); background: white; box-shadow: var(--shadow); }
.service-hub-card figure { height: 310px; position: relative; margin: 0; overflow: hidden; border-radius: 20px; background: var(--sage); }
.service-hub-card figure img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.service-hub-card:hover figure img { transform: scale(1.045); }
.service-hub-card figure > span { position: absolute; left: 14px; top: 14px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.88); font: 12px var(--accent); }
.service-hub-card > div { min-height: 240px; position: relative; padding: 27px 70px 22px 13px; }
.service-hub-card h3 { margin: 0 0 15px; font-size: clamp(28px, 2.6vw, 40px); line-height: .98; font-weight: 480; }
.service-hub-card p { margin: 0; color: rgba(6,28,18,.58); font-size: 12px; line-height: 1.7; }
.card-arrow { position: absolute; right: 10px; top: 26px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; transition: transform .3s, background .3s; }
.service-hub-card:hover .card-arrow { transform: rotate(45deg); background: var(--lime); }
.same-day { background: var(--green); color: white; }
.same-day-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.same-day-copy h2 { font-size: clamp(55px, 7vw, 100px); }
.same-day-copy > p:not(.eyebrow) { max-width: 590px; margin: 34px 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.8; }
.same-day-copy small { max-width: 520px; margin-top: 24px; display: block; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.6; }
.same-day-list { border-bottom: 1px solid rgba(255,255,255,.22); }
.same-day-list article { padding: 28px 0; display: grid; grid-template-columns: 58px 1fr; gap: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.same-day-list article > span { color: var(--lime); font: 16px var(--accent); }
.same-day-list h3 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 36px); font-weight: 470; }
.same-day-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.65; }
.doctor-pathway { background: var(--light-sage); }
.pathway-heading { display: grid; grid-template-columns: 1fr 1.6fr .8fr; gap: 50px; align-items: end; margin-bottom: 70px; }
.pathway-heading .eyebrow { align-self: start; }
.pathway-heading h2 { font-size: clamp(50px, 6vw, 86px); }
.pathway-heading > p { margin: 0; color: rgba(6,28,18,.58); font-size: 13px; line-height: 1.75; }
.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pathway-card { min-height: 500px; padding: clamp(30px, 5vw, 65px); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.68); }
.pathway-card.pathway-primary { background: var(--deep); color: white; }
.pathway-label { margin-bottom: auto; padding: 10px 14px; border: 1px solid currentColor; border-radius: 999px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.pathway-primary .pathway-label { color: var(--lime); }
.pathway-card h3 { margin: 75px 0 18px; font-size: clamp(34px, 4vw, 58px); line-height: 1; font-weight: 470; }
.pathway-card > p { max-width: 600px; color: rgba(6,28,18,.6); font-size: 13px; line-height: 1.75; }
.pathway-primary > p { color: rgba(255,255,255,.62); }
.pathway-card ul { width: 100%; margin: 22px 0 0; padding: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--line); list-style: none; }
.pathway-primary ul { border-color: rgba(255,255,255,.17); }
.pathway-card li { font-size: 11px; }
.pathway-card li::before { content: "↗"; margin-right: 9px; color: var(--green); }
.pathway-primary li::before { color: var(--lime); }
.why-services { background: var(--deep); color: white; }
.why-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.why-service-card { min-height: 340px; padding: 35px 28px; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.18); }
.why-service-card:first-child { border-left: 0; }
.why-service-card > span { color: var(--lime); font: 16px var(--accent); }
.why-service-card h3 { margin: auto 0 18px; font-size: clamp(27px, 2.7vw, 39px); line-height: 1; font-weight: 470; }
.why-service-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.7; }
.dental-services-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.dental-services-grid .why-service-card:nth-child(5) { border-left: 0; }
.cosmetic-services-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.cosmetic-services-grid .why-service-card:nth-child(5) { border-left: 0; }
.facial-services-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.facial-services-grid .why-service-card:nth-child(5) { border-left: 0; }
.skin-services-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.skin-services-grid .why-service-card:nth-child(5) { border-left: 0; }
.rct-process-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.rct-process-grid .why-service-card:nth-child(5) { border-left: 0; }
.whitening-process-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.whitening-process-grid .why-service-card:nth-child(5) { border-left: 0; }
.laser-process-grid .why-service-card:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.18); }
.laser-process-grid .why-service-card:nth-child(5) { border-left: 0; }
.service-directory .why-services-grid { border-color: var(--line); }
.service-directory .why-service-card { border-color: var(--line); }
.service-directory .why-service-card:nth-child(n+5) { border-top: 1px solid var(--line); }
.service-directory .why-service-card:nth-child(5) { border-left: 0; }
.service-directory .why-service-card > span { color: var(--green); }
.service-directory .why-service-card p { color: rgba(6,28,18,.58); }
.local-services { background: var(--cream); }
.local-services-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.local-services-heading { position: sticky; top: 120px; align-self: start; }
.local-services-heading h2 { font-size: clamp(50px, 6vw, 84px); }
.local-services-copy { columns: 2; column-gap: 42px; }
.local-services-copy p { break-inside: avoid; margin: 0 0 22px; color: rgba(6,28,18,.66); font-size: 14px; line-height: 1.85; }
.areas-served { background: var(--light-sage); }
.areas-served-shell { padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(35px, 7vw, 100px); align-items: center; border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.6); }
.areas-served-copy h2 { margin-bottom: 20px; font-size: clamp(42px, 5vw, 70px); }
.areas-served-copy > p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(6,28,18,.64); font-size: 13px; line-height: 1.8; }
.area-chip-list { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.area-chip-list li { padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); color: var(--deep); font-size: 10px; font-weight: 700; letter-spacing: .03em; }
.related-services { background: var(--light-sage); }
.related-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-link-card { min-height: 190px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.68); transition: transform .3s, border-color .3s, background .3s; }
.related-link-card:hover { transform: translateY(-4px); border-color: var(--green); background: white; }
.related-link-card > span { color: var(--green); font: 14px var(--accent); }
.related-link-card h3 { margin: auto 0 0; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.05; font-weight: 480; }
.related-link-card h3::after { content: "↗"; margin-left: 10px; color: var(--green); font-size: .65em; }
.related-link-card small { margin-top: 10px; color: rgba(6,28,18,.58); font-size: 10px; line-height: 1.5; }
.services-ready { background: var(--light-sage); }

@media (max-width: 1000px) {
  .container { width: min(100% - 34px, 900px); }
  .hero { min-height: 820px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .section-intro { grid-template-columns: 1fr; gap: 20px; }
  .about-grid, .form-grid { grid-template-columns: 1fr; }
  .about-image img { height: 600px; }
  .service-row { grid-template-columns: 52px minmax(260px, .85fr) 1.15fr; gap: 24px; }
  .service-row figure { height: 290px; }
  .service-copy { padding-right: 0; }
  .circle-link { position: relative; margin-top: 24px; }
  .cta-shell { grid-template-columns: 1fr 1fr; min-height: 600px; }
  .cta-copy { padding-right: 20px; }
  .gallery-heading { grid-template-columns: 1fr 2fr; }
  .gallery-heading > p:last-child { grid-column: 2; }
  .doctor-card figure { height: 450px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2; }
  .collage-dental, .collage-aesthetic { width: 210px; height: 175px; }
  .collage-smile, .collage-hair { width: 185px; height: 220px; }
  .collage-doctor, .collage-clinic { display: none; }
  .patient-story { gap: 45px; }
  .approach-detail, .centre-copy { grid-template-columns: 1fr; }
  .stats-shell { grid-template-columns: 1fr; }
  .care-card { grid-template-columns: 1fr; }
  .care-card figure { min-height: 250px; }
  .services-hero-grid { grid-template-columns: 1fr .65fr; gap: 25px; }
  .services-hero-visual { min-height: 500px; }
  .services-hero-small { width: 190px; height: 185px; left: -25px; }
  .service-hub-grid { grid-template-columns: 1fr 1fr; }
  .same-day-grid, .local-services-grid, .areas-served-shell { grid-template-columns: 1fr; }
  .pathway-heading { grid-template-columns: 1fr 2fr; }
  .pathway-heading > p { grid-column: 2; }
  .why-services-grid { grid-template-columns: 1fr 1fr; }
  .why-service-card:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .why-service-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .dental-services-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .dental-services-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .cosmetic-services-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .cosmetic-services-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .facial-services-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .facial-services-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .skin-services-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .skin-services-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .rct-process-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .rct-process-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .whitening-process-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .whitening-process-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .laser-process-grid .why-service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .laser-process-grid .why-service-card:nth-child(odd) { border-left: 0; }
  .local-services-heading { position: static; }
  .related-links-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 620px); }
  .section-pad { padding: 90px 0; }
  .site-header { width: calc(100% - 20px); top: 10px; height: 62px; border-radius: 999px; }
  .site-header.is-scrolled { top: 8px; height: 60px; padding-block: 6px; }
  .brand img { width: 42px; height: 42px; }
  .is-scrolled .brand img { width: 40px; height: 40px; }
  .brand { font-size: 13px; }
  .brand em { font-size: 8px; }
  .menu-toggle, .site-header.is-scrolled .menu-toggle { width: 42px; height: 42px; border-radius: 50%; }
  .menu-panel { top: 82px; bottom: 10px; width: calc(100% - 20px); border-radius: 22px; clip-path: inset(0 0 100% 0 round 22px); }
  .menu-panel.is-open { clip-path: inset(0 0 0 0 round 22px); }
  .menu-inner { width: calc(100% - 24px); padding: 18px 0; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; gap: 12px; }
  .menu-inner nav { align-self: center; width: 100%; }
  .menu-inner nav .menu-link { min-height: 44px; padding: 7px 15px; font-size: clamp(22px, 7vw, 28px); }
  .menu-inner > .button { grid-column: 1; align-self: end; justify-self: stretch; width: 100%; }
  .menu-contact { display: none; }
  .hero { height: auto; min-height: 820px; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(1,20,11,.87), rgba(1,20,11,.38)), linear-gradient(0deg, rgba(1,18,10,.6), transparent 60%); }
  .hero-content { padding-top: 150px; padding-bottom: 80px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(47px, 13.4vw, 65px); }
  h2,
  .gallery-heading h2,
  .cta-copy h2,
  .faq-intro h2,
  .journal-heading h2,
  .collage-heading h2,
  .form-intro h2 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy { line-height: 1.6; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-badge { border-radius: 18px; flex-wrap: wrap; gap: 8px; }
  .trust-badge i { display: none; }
  .trust-badge span { width: calc(50% - 8px); }
  .trust-badge .trust-dot { width: 8px; }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .word-reveal { font-size: 31px; }
  .about-image img { height: 430px; }
  .heading-row { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; }
  .service-row { grid-template-columns: 42px 1fr; padding: 32px 0; }
  .service-row figure { grid-column: 2; height: 290px; }
  .service-copy { grid-column: 2; }
  .service-copy ul { grid-template-columns: 1fr; }
  .service-note { border-radius: 18px; line-height: 1.5; }
  .cta-shell { grid-template-columns: 1fr; padding: 14px; border-radius: 28px; }
  .cta-shell figure { height: 340px; border-radius: 20px; }
  .cta-copy { padding: 20px 10px 30px; }
  .top-button { right: 22px; top: 22px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 25px; }
  .gallery-heading > p:last-child { grid-column: auto; }
  .comparison { height: 500px; }
  .doctor-grid, .blog-grid { grid-template-columns: 1fr; }
  .doctor-card figure { height: 440px; }
  .doctor-info > div:first-child { align-items: start; flex-direction: column; gap: 6px; }
  .appointment-form { grid-template-columns: 1fr; border-radius: 25px; }
  .field-wide { grid-column: auto; }
  .form-contact { margin-top: 40px; }
  .marquee-track figure { height: 380px; }
  .journal-heading { align-items: start; flex-direction: column; gap: 25px; }
  .blog-card figure { height: 390px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
  .footer-statement { font-size: 16vw; }
  .footer-bottom { gap: 20px; flex-direction: column; }
  .whatsapp-fab b { display: none; }
  .whatsapp-fab { padding-right: 7px; }
  .about-collage-hero { min-height: 1230px; }
  .about-collage-content { min-height: 500px; padding-top: 145px; justify-content: flex-start; }
  .about-collage-content::before { display: none; }
  .about-collage-content h1 { font-size: clamp(82px, 27vw, 108px); }
  .about-collage-content > p:not(.eyebrow) { margin: 28px 0 24px; font-size: 13px; line-height: 1.65; }
  .about-collage-content .button { width: 100%; }
  .about-collage-field { top: 610px; height: 585px; }
  .collage-float { display: block; border-width: 5px; border-radius: 19px; }
  .collage-dental { width: 47%; height: 170px; left: 1%; top: 2%; }
  .collage-aesthetic { width: 43%; height: 165px; right: 1%; top: 6%; }
  .collage-doctor { width: 34%; height: 170px; left: 4%; top: 36%; }
  .collage-clinic { width: 48%; height: 180px; right: 3%; top: 37%; }
  .collage-smile { width: 43%; height: 178px; left: 2%; bottom: 1%; }
  .collage-hair { width: 45%; height: 190px; right: 2%; bottom: 0; }
  .collage-chip { padding: 9px 12px; font-size: 8px; }
  .chip-dental { left: 37%; top: 31%; }.chip-esthetics { right: 7%; top: 31%; }
  .chip-hair { right: 34%; bottom: 30%; }.chip-experience { left: 7%; bottom: 30%; }
  .about-hero-scroll { display: none; }
  .about-intro .word-reveal { font-size: 31px; }
  .doctor-signoff { margin-top: 45px; align-items: flex-start; }
  .patient-heading h2,
  .approach-heading h2,
  .centre-copy h2,
  .about-section-title h2,
  .about-ready-shell h2 { font-size: clamp(42px, 12vw, 58px); }
  .patient-story, .approach-detail, .centre-copy { grid-template-columns: 1fr; }
  .patient-stack { width: 100%; }
  .patient-story blockquote p { font-size: 31px; }
  .approach-heading { align-items: flex-start; flex-direction: column; }
  .approach-image, .centre-image { height: 430px; }
  .approach-banner { padding: 28px 22px; border-radius: 22px; font-size: 29px; }
  .approach-detail { gap: 45px; padding-top: 40px; }
  .approach-doctors { align-items: flex-start; flex-direction: column; }
  .stats-shell { min-height: 650px; padding: 42px 24px; grid-template-columns: 1fr; gap: 40px; border-radius: 28px; }
  .stat-items { grid-template-columns: 1fr; }
  .stat-items > div { min-height: 100px; padding: 18px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .centre-copy { gap: 35px; padding-top: 45px; }
  .care-card-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 520px; grid-template-columns: 1fr; }
  .care-card figure { min-height: 290px; }
  .care-card h3 { font-size: 34px; }
  .about-ready-shell { min-height: 590px; padding: 42px 24px; border-radius: 28px; }
  .about-ready-shell > div { width: 100%; flex-direction: column; }
  .about-ready-shell .button { width: 100%; }
  .services-hero { min-height: 920px; padding: 120px 0 50px; align-items: flex-start; }
  .services-hero-grid { grid-template-columns: 1fr; }
  .breadcrumbs { margin-bottom: 42px; }
  .services-hero h1 { font-size: clamp(45px, 12.3vw, 62px); line-height: .92; }
  .services-hero h1 em { margin-top: 8px; font-size: .82em; }
  .services-hero-actions { width: 100%; flex-direction: column; }
  .services-hero-actions .button { width: 100%; }
  .services-hero-visual { min-height: 400px; margin-top: 35px; }
  .services-hero-visual::before { right: 0; width: 100%; height: auto; aspect-ratio: 1; }
  .services-hero-main { width: 78%; height: 365px; }
  .services-hero-small { width: 43%; height: 165px; left: 0; bottom: -8px; }
  .services-hero-chip { right: 0; bottom: 5px; }
  .service-hub-grid { grid-template-columns: 1fr; }
  .service-hub-card figure { height: 300px; }
  .service-hub-card > div { min-height: 210px; }
  .same-day-grid { gap: 60px; }
  .same-day-copy h2,
  .pathway-heading h2,
  .local-services-heading h2 { font-size: clamp(42px, 12vw, 58px); }
  .same-day-copy .button { width: 100%; }
  .same-day-list article { grid-template-columns: 42px 1fr; gap: 14px; }
  .pathway-heading { grid-template-columns: 1fr; gap: 25px; }
  .pathway-heading > p { grid-column: auto; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 520px; padding: 32px 24px; }
  .pathway-card ul { grid-template-columns: 1fr; }
  .why-services-grid { grid-template-columns: 1fr; }
  .why-service-card { min-height: 280px; padding: 30px 20px; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .why-service-card:first-child { border-top: 0; }
  .local-services-copy { columns: auto; }
  .related-links-grid { grid-template-columns: 1fr; }
  .related-link-card { min-height: 150px; }
  .premium-card.premium-card:hover { transform: none; }
}

@media (hover: none), (pointer: coarse) {
  .premium-card.premium-card:active { transform: scale(.995); box-shadow: 0 12px 30px rgba(3,34,20,.1); transition-duration: 180ms; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-up, .reveal-scale, .reveal-blur, .reveal-left, .reveal-right, .stagger-item, .animate-in { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-media, .services-hero-visual { opacity: 1; filter: none; transform: none; translate: none; }
  .button:hover, .button:active, .premium-card.premium-card:hover, .premium-card.premium-card:active, .menu-toggle:hover { transform: none !important; }
  .button:hover span,
  .premium-card.premium-card:hover figure img,
  .image-frame:hover img,
  .approach-image:hover img,
  .centre-image:hover img,
  .cta-shell figure:hover img,
  .marquee-track figure:hover img,
  .patient-stack figure:hover img { transform: none !important; filter: none !important; }
  .premium-card figure::after,
  .image-frame::after,
  .approach-image::after,
  .centre-image::after,
  .cta-shell figure::after,
  .marquee-track figure::after,
  .patient-stack figure::after { opacity: 0 !important; }
}

.service-directory .why-services-grid,
.service-directory .why-service-card { border-color: var(--line); }

/* Long-form patient education articles */
.article-wrap { background: var(--cream); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(48px, 8vw, 120px); align-items: start; }
.article-body { min-width: 0; }
.article-section { padding: 0 0 52px; margin: 0 0 52px; border-bottom: 1px solid var(--line); }
.article-section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.article-section h2 { max-width: 760px; margin: 0 0 24px; font-size: clamp(32px, 4vw, 54px); line-height: 1.02; font-weight: 480; }
.article-section h3 { margin: 30px 0 12px; font-size: clamp(22px, 2.4vw, 31px); line-height: 1.15; font-weight: 540; }
.article-section p { max-width: 780px; margin: 0 0 19px; color: rgba(6,28,18,.68); font-size: 15px; line-height: 1.9; }
.article-section p:last-child { margin-bottom: 0; }
.article-points { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.article-points li { position: relative; padding: 17px 20px 17px 49px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.52); color: rgba(6,28,18,.7); font-size: 13px; line-height: 1.65; }
.article-points li::before { content: "•"; position: absolute; left: 22px; top: 13px; color: var(--green); font-size: 23px; }
.article-note { padding: 27px; margin: 30px 0; border-left: 3px solid var(--lime); border-radius: 0 18px 18px 0; background: var(--deep); color: white; }
.article-note p { margin: 0; color: rgba(255,255,255,.7); }
.article-aside { position: sticky; top: 110px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.62); }
.article-aside h2 { margin: 0 0 20px; font-size: 25px; font-weight: 520; }
.article-aside nav { display: grid; }
.article-aside nav a { padding: 12px 0; border-top: 1px solid var(--line); color: rgba(6,28,18,.7); font-size: 12px; line-height: 1.45; }
.article-aside nav a:hover { color: var(--green); }
.article-clinic-card { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-clinic-card p { margin: 0 0 12px; color: rgba(6,28,18,.62); font-size: 11px; line-height: 1.7; }
.article-clinic-card .button { width: 100%; min-height: 48px; margin-top: 7px; }

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; order: -1; }
  .article-aside nav { grid-template-columns: 1fr 1fr; column-gap: 24px; }
}

@media (max-width: 620px) {
  .article-section { padding-bottom: 38px; margin-bottom: 38px; }
  .article-section p { font-size: 14px; line-height: 1.82; }
  .article-aside { padding: 22px; }
  .article-aside nav { grid-template-columns: 1fr; }
}
