:root {
  --blue: #1f4f9d;
  --blue-strong: #142858;
  --blue-soft: #f0f3f9;
  --navy: #142858;
  --ink: #0d1731;
  --muted: #59647a;
  --line: #d9e1ed;
  --white: #ffffff;
  --yellow: #fccc0c;
  --blue-rgb: 31, 79, 157;
  --navy-rgb: 20, 40, 88;
  --gold-rgb: 252, 204, 12;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow-soft: 0 18px 60px rgba(var(--navy-rgb), .11);
  --container: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f2f5fa;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
::selection { background: var(--yellow); color: var(--navy); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 190;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 28px), var(--container));
  margin: 14px auto;
  background: var(--white);
  border: 1px solid rgba(var(--navy-rgb), .1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.site-header {
  position: relative;
  z-index: 80;
  display: grid;
  grid-template-columns: 300px 1fr 260px;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 14px 42px;
  background: rgba(255,255,255,.94);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: var(--navy); }
.brand-mark { position: relative; display: block; width: 82px; height: 72px; flex: 0 0 auto; overflow: hidden; }
.brand-mark img { position: absolute; top: 0; left: 0; width: 91px; max-width: none; height: auto; }
.brand-mark::after { content: ""; position: absolute; left: 0; bottom: 0; width: 33px; height: 18px; background: #fff; }
.brand-copy { display: grid; gap: 4px; line-height: 1; }
.brand-copy strong { font-size: 13px; font-weight: 850; letter-spacing: .01em; }
.brand-copy small { font-size: 6.5px; font-weight: 700; line-height: 1.15; letter-spacing: .025em; }
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(var(--navy-rgb), .06);
}
.desktop-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: #313744;
  font-size: 13px;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease, transform .2s var(--ease-out);
}
.desktop-nav a.is-active { background: var(--navy); color: #fff; box-shadow: 0 7px 18px rgba(var(--navy-rgb), .24); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  transition: background-color .2s ease, color .2s ease, transform .2s var(--ease-out);
}
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform .16s var(--ease-out), box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.28), transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out-expo);
}
.button:active { transform: scale(.97); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--dark { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(var(--navy-rgb), .18); }
.button--primary { background: var(--blue); color: #fff; box-shadow: 0 12px 28px rgba(var(--blue-rgb), .24); }
.button--ghost { border-color: var(--line); background: #fff; color: #596274; }
.button--white { background: #fff; color: var(--navy); box-shadow: 0 12px 30px rgba(var(--navy-rgb), .2); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: #fff; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.2px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 770px;
  background: #fff;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 52px 44px 42px 78px;
}
.hero-context {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1;
  transition: opacity .55s var(--ease-out-expo), transform .55s var(--ease-out-expo);
}
.hero-context span { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(var(--gold-rgb), .18); }
.hero-context strong { font-weight: 780; }
.hero-context small { color: var(--muted); font-size: inherit; }
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(68px, 6.7vw, 96px);
  font-weight: 750;
  line-height: .87;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--blue); }
.hero h1 span { transition: opacity .72s var(--ease-out-expo), transform .72s var(--ease-out-expo), clip-path .8s var(--ease-out-expo); }
.hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: #303b52;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
  letter-spacing: -.025em;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 27px; }
.hero-actions .button { min-width: 215px; }
.hero-proof {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  width: min(100%, 495px);
  min-height: 92px;
  margin-top: auto;
  padding: 14px;
  border-radius: 14px;
  background: var(--blue-soft);
  transition: opacity .65s var(--ease-out-expo), transform .65s var(--ease-out-expo);
}
.proof-visual { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 14px; background: var(--navy); }
.care-mark { position: relative; top: -1px; color: #fff; font-size: 40px; font-weight: 300; line-height: 1; }
.hero-proof strong { font-size: 15px; }
.hero-proof p { margin: 7px 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.42; }

.hero-media { position: relative; min-width: 0; isolation: isolate; }
.hero-blue {
  position: absolute;
  inset: 0;
  z-index: -3;
  border-radius: 16px 0 0 0;
  background:
    radial-gradient(circle at 67% 19%, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(145deg, var(--blue) 0%, var(--blue-strong) 100%);
  transition: clip-path 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.hero-scan {
  position: absolute;
  z-index: -1;
  top: 72px;
  right: 4%;
  width: min(76%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)) center / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.12)) center / 100% 1px no-repeat;
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.hero-scan::before, .hero-scan::after, .hero-scan span { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.hero-scan::before { inset: 13%; }
.hero-scan::after { inset: 29%; }
.hero-scan span { top: 6%; left: 50%; width: 10px; height: 10px; border: 2px solid var(--navy); background: var(--yellow); transform: translateX(-50%); }
.doctor-cutout {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: -2%;
  width: min(84%, 630px);
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(var(--navy-rgb), .22));
  transform-origin: center bottom;
  transition: opacity .95s var(--ease-out-expo), transform .95s var(--ease-out-expo), translate .1s linear;
}
.hero-note {
  position: absolute;
  z-index: 5;
  top: 44px;
  left: clamp(28px, 3.2vw, 44px);
  right: auto;
  display: flex;
  max-width: 218px;
  gap: 12px;
  color: #fff;
}
.hero-note span { width: 3px; min-height: 78px; background: var(--yellow); }
.hero-note p { margin: 4px 0 0; font-size: clamp(16px,1.25vw,19px); line-height: 1.25; letter-spacing: -.015em; }
.expertise-tag {
  position: absolute;
  z-index: 5;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0,28,83,.12);
}
.tag-one { top: 43%; left: 8%; }
.tag-two { top: 59%; right: 4%; }
.location-mark { position: absolute; z-index: 5; left: 28px; bottom: 22px; display: flex; align-items: center; gap: 8px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.location-mark span { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(var(--gold-rgb), .18); }

.motion-ready .site-header { opacity: 0; transform: translateY(-18px); }
.motion-ready .hero-context,
.motion-ready .hero-lead,
.motion-ready .hero-actions,
.motion-ready .hero-proof { opacity: 0; transform: translateY(18px); }
.motion-ready .hero h1 span { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(30px); }
.motion-ready .hero-blue { clip-path: inset(0 0 0 100%); transform: scale(1.025); }
.motion-ready .hero-scan { opacity: 0; transform: scale(.9); }
.motion-ready .doctor-cutout { opacity: 0; transform: translateY(72px) scale(.97); }
.motion-ready.page-ready .site-header,
.motion-ready.page-ready .hero-context,
.motion-ready.page-ready .hero-lead,
.motion-ready.page-ready .hero-actions,
.motion-ready.page-ready .hero-proof,
.motion-ready.page-ready .hero h1 span,
.motion-ready.page-ready .hero-blue,
.motion-ready.page-ready .hero-scan,
.motion-ready.page-ready .doctor-cutout { opacity: 1; clip-path: inset(0); transform: none; }
.motion-ready.page-ready .hero-context { transition-delay: .08s; }
.motion-ready.page-ready .hero h1 span:nth-child(1) { transition-delay: .12s; }
.motion-ready.page-ready .hero h1 span:nth-child(2) { transition-delay: .19s; }
.motion-ready.page-ready .hero h1 span:nth-child(3) { transition-delay: .26s; }
.motion-ready.page-ready .hero-lead { transition: opacity .65s .34s var(--ease-out-expo), transform .65s .34s var(--ease-out-expo); }
.motion-ready.page-ready .hero-actions { transition: opacity .65s .4s var(--ease-out-expo), transform .65s .4s var(--ease-out-expo); }
.motion-ready.page-ready .hero-proof { transition-delay: .48s; }
.motion-ready.page-ready .hero-blue { transition-delay: .06s; }
.motion-ready.page-ready .hero-scan { transition-delay: .24s; }
.motion-ready.page-ready .doctor-cutout { transition-delay: .18s; }

.section-pad { padding: 100px 72px; }
.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement p { max-width: 1120px; margin: 0; font-size: clamp(31px, 4.5vw, 68px); line-height: 1.03; letter-spacing: -.04em; }
.statement-word {
  display: inline-block;
  will-change: opacity, transform, filter;
  transform-origin: 50% 70%;
}
.circle-link { display: grid; place-items: center; width: 72px; height: 72px; flex: 0 0 auto; border-radius: 50%; background: var(--navy); color: #fff; box-shadow: 0 16px 32px rgba(var(--navy-rgb), .2); transition: transform .2s var(--ease-out), background-color .2s ease; }
.circle-link svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .locations h2, .doctor-copy h2, .social-heading h2 { margin: 0; font-size: clamp(48px, 6vw, 88px); font-weight: 740; line-height: .94; letter-spacing: -.04em; }
.section-heading p { max-width: 530px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 6px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: 14px; font-weight: 700; }
.text-link span { font-size: 20px; transition: transform .2s var(--ease-out); }

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 14px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .68fr) minmax(0, 1.32fr);
  grid-template-rows: auto 1fr;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform .35s var(--ease-out-expo), border-color .25s ease, background-color .25s ease;
}
.service-card--soft { background: var(--blue-soft); }
.service-category {
  z-index: 3;
  grid-column: 2;
  justify-self: end;
  align-self: start;
  color: #5d6f91;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .01em;
}
.service-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 100%;
  color: var(--blue);
}
.service-icon::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(var(--blue-rgb), .2);
  border-radius: 50%;
  background: var(--blue-soft);
}
.service-orbit {
  position: absolute;
  z-index: -1;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(var(--blue-rgb), .13);
  border-radius: 50%;
  transition: transform .4s var(--ease-out-expo), border-color .25s ease;
}
.service-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 1px;
  background: rgba(var(--blue-rgb), .1);
  transform: translate(-50%,-50%);
}
.service-orbit::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
}
.service-icon svg {
  z-index: 2;
  width: 66px;
  height: 66px;
  fill: currentColor;
  transition: transform .35s var(--ease-out-expo);
}
.service-card:nth-child(3) { grid-template-columns: minmax(0, 1.32fr) minmax(150px, .68fr); }
.service-card:nth-child(3) .service-category { grid-column: 1; justify-self: start; }
.service-card:nth-child(3) .service-icon { grid-column: 2; }
.service-card:nth-child(3) .service-copy { grid-column: 1; }
.service-card:nth-child(3) .service-icon svg { width: 72px; height: 72px; }
.service-copy { position: relative; grid-column: 2; grid-row: 2; align-self: end; padding-top: 17px; }
.service-copy::before { content: ""; position: absolute; top: 0; left: 0; width: 42px; height: 3px; border-radius: 999px; background: var(--yellow); }
.service-copy h3 { margin: 0; font-size: clamp(26px,2.3vw,36px); line-height: 1; letter-spacing: -.035em; text-wrap: balance; }
.service-copy p { max-width: 49ch; margin: 13px 0 15px; color: var(--muted); font-size: 14px; line-height: 1.5; text-wrap: pretty; }
.service-scope { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; padding: 0; list-style: none; }
.service-scope li { padding: 6px 9px; border: 1px solid #cbd6e7; border-radius: 999px; color: #506280; font-size: 10px; font-weight: 700; }
.service-copy a { display: inline-flex; align-items: center; gap: 12px; color: var(--blue); font-size: 13px; font-weight: 750; }
.service-copy a span { transition: transform .22s var(--ease-out); }
.service-card--featured {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: 614px;
  padding: 38px;
  border: 0;
  color: #fff;
  background: var(--navy);
}
.service-card--featured::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  pointer-events: none;
}
.service-card--featured .service-category { align-self: flex-start; color: rgba(255,255,255,.68); }
.service-card--featured .service-icon {
  flex: 1;
  width: 100%;
  min-height: 300px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)) center / 1px 260px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.1)) center / 260px 1px no-repeat;
}
.service-card--featured .service-icon::before { width: 190px; height: 190px; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.service-card--featured .service-orbit { width: 240px; height: 240px; border-color: rgba(255,255,255,.17); }
.service-card--featured .service-orbit::before { width: 280px; background: rgba(255,255,255,.1); }
.service-card--featured .service-icon svg { width: 116px; height: 116px; }
.service-card--featured .service-copy { z-index: 2; align-self: stretch; padding-top: 22px; }
.service-card--featured .service-copy h3 { max-width: 520px; font-size: clamp(38px,4vw,58px); }
.service-card--featured .service-copy p { max-width: 54ch; color: rgba(255,255,255,.76); font-size: 15px; }
.service-card--featured .service-scope li { border-color: rgba(255,255,255,.24); color: rgba(255,255,255,.82); }
.service-card--featured .service-copy a { color: #fff; }
.service-icon { perspective: 900px; }
.service-icon::before,
.service-orbit,
.service-icon > svg { display: none; }
.service-card--featured .service-icon { background: none; }
.service-anatomy {
  position: relative;
  z-index: 2;
  display: block;
  width: min(116%, 178px);
  max-width: none;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 15px 11px rgba(var(--navy-rgb), .16));
  scale: 1;
  transform-origin: 50% 58%;
  backface-visibility: hidden;
  will-change: transform;
  animation: anatomy-float 7s ease-in-out infinite;
  transition: scale .4s var(--ease-out-expo), filter .35s ease;
}
.service-card:nth-child(2) .service-anatomy { width: min(148%, 230px); height: 225px; animation-duration: 6.4s; animation-delay: -1.7s; }
.service-card:nth-child(3) .service-anatomy { width: min(120%, 188px); animation-duration: 7.8s; animation-delay: -3.1s; }
.service-card--featured .service-anatomy {
  width: min(78%, 390px);
  height: 340px;
  filter: drop-shadow(0 24px 18px rgba(0,0,0,.25));
  animation-duration: 7.4s;
  animation-delay: -.8s;
}
@keyframes anatomy-float {
  0%, 100% { transform: translate3d(0, 4px, 0) rotate(-.55deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(.7deg); }
}

.process { display: grid; grid-template-columns: 52% 48%; min-height: 830px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-copy { display: flex; flex-direction: column; justify-content: center; }
.process-copy h2 { margin: 0; font-size: clamp(58px,6.2vw,96px); font-weight: 740; line-height: .9; letter-spacing: -.04em; }
.process-copy > p { max-width: 560px; margin: 28px 0 42px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.process-list { position: relative; display: grid; gap: 23px; max-width: 585px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 27px; bottom: 27px; left: 25px; width: 1px; background: #b9c7df; transform-origin: top; }
.process-list li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start; }
.process-list li > span { position: relative; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 18px; font-weight: 700; box-shadow: 0 0 0 8px #fff; }
.process-list strong { display: block; margin-top: 3px; font-size: 18px; }
.process-list p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.process-media {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  background: var(--blue-strong);
  overflow: hidden;
}
.process-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3,24,65,.02) 38%, rgba(3,24,65,.2) 64%, rgba(3,24,65,.86) 100%);
  pointer-events: none;
}
.process-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 14px;
  pointer-events: none;
}
.process-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 42%;
  filter: saturate(.96) contrast(1.03);
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .7s ease;
}
.process-note { position: absolute; z-index: 4; left: 40px; bottom: 42px; display: flex; align-items: stretch; max-width: 360px; gap: 15px; color: #fff; }
.process-note span { width: 3px; flex: 0 0 3px; background: var(--yellow); }
.process-note p { margin: 0; font-size: clamp(19px,1.55vw,24px); font-weight: 620; line-height: 1.22; letter-spacing: -.02em; text-wrap: balance; }

.doctor-section { display: grid; grid-template-columns: minmax(320px, .85fr) 1.15fr; gap: clamp(50px,7vw,110px); align-items: center; }
.doctor-photo { position: relative; min-height: 610px; border-radius: 16px; background: var(--blue-soft); overflow: hidden; }
.doctor-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(to top, rgba(6,29,76,.7), transparent); pointer-events: none; }
.doctor-photo img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: 50% 18%; }
.doctor-photo a { position: absolute; z-index: 3; left: 26px; bottom: 25px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--navy); font-size: 13px; font-weight: 700; backdrop-filter: blur(10px); }
.doctor-photo a svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.doctor-copy h2 { max-width: 760px; }
.doctor-copy > p { max-width: 680px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.doctor-principles { display: grid; gap: 0; margin-bottom: 34px; border-top: 1px solid var(--line); }
.doctor-principles div { display: grid; grid-template-columns: 55px 1fr; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.doctor-principles span { color: var(--blue); font-size: 12px; font-weight: 800; }
.doctor-principles strong { font-size: 17px; }

.locations { display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; color: #fff; background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 82%); }
.locations-intro { display: flex; flex-direction: column; align-items: flex-start; }
.locations-intro p { max-width: 390px; margin: 25px 0 40px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.5; }
.text-link--light { margin-top: auto; color: #fff; }
.location-panels { display: grid; grid-template-columns: 1fr 1.15fr; gap: 12px; }
.location-card { display: flex; flex-direction: column; min-height: 520px; padding: 28px; border: 0; border-radius: 16px; background: #fff; color: var(--ink); box-shadow: 0 8px 24px rgba(var(--navy-rgb), .16); transition: transform .3s var(--ease-out-expo), box-shadow .3s ease; }
.location-card-top { display: flex; align-items: center; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.location-card-top--hospital { gap: 14px; padding-bottom: 20px; }
.hospital-logo-wrap { display: grid; place-items: center; width: 132px; height: 68px; flex: 0 0 auto; padding: 0; background: transparent; }
.hospital-logo-wrap--hema { background: transparent; }
.hospital-logo { width: 100%; max-height: 48px; object-fit: contain; }
.hospital-logo--hema { max-height: 43px; }
.location-card-top--hospital h3 { font-size: 20px; }
.location-icon { display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 auto; border-radius: 16px; background: var(--blue-soft); color: var(--blue); }
.location-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.location-card small { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-card h3 { margin: 3px 0 0; font-size: 24px; line-height: 1.08; letter-spacing: -.035em; }
.location-detail { display: flex; align-items: end; justify-content: space-between; margin-top: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.location-detail span, .schedule-row span { color: var(--muted); font-size: 13px; }
.location-detail strong { color: var(--blue); font-size: 42px; line-height: 1; }
.location-card > p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.schedule-row { display: grid; gap: 8px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.schedule-row strong { font-size: 17px; }
.location-link { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; color: var(--blue); font-size: 14px; font-weight: 800; }
.location-card--accent .location-card-top { border-bottom-color: #e4c13a; }
.location-card--accent { background: #fffbed; }

.social-section { display: grid; grid-template-columns: .58fr 1.42fr; gap: 64px; align-items: end; }
.social-heading p { max-width: 420px; margin: 24px 0 30px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.social-rail { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 12px; }
.social-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 25px; border-radius: 16px; overflow: hidden; transition: transform .35s var(--ease-out-expo); }
.social-card--photo { justify-content: flex-end; padding: 0; color: #fff; background: #cfd7e3; }
.social-card--photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(to top, rgba(7,26,59,.8), transparent); }
.social-card--photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out-expo); }
.social-card-label { position: absolute; z-index: 2; left: 24px; bottom: 25px; font-size: 15px; font-weight: 700; }
.social-arrow { position: absolute; z-index: 3; right: 20px; bottom: 20px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-size: 20px; }
.social-index { font-size: 42px; font-weight: 300; opacity: .45; }
.social-card strong { margin-top: auto; padding-right: 25px; font-size: 22px; line-height: 1.15; letter-spacing: -.035em; }
.social-card--education { color: #fff; background: var(--navy); }
.social-card--education > svg { position: absolute; top: 65px; right: 18px; width: 75%; fill: none; stroke: rgba(255,255,255,.25); stroke-width: 2; }
  .social-card--yellow { background: var(--yellow); color: var(--navy); }
.motion-rings { position: absolute; right: -70px; bottom: -70px; width: 250px; height: 250px; }
.motion-rings i { position: absolute; inset: calc(var(--i, 0) * 26px); border: 2px solid rgba(11,40,95,.18); border-radius: 50%; }
.motion-rings i:nth-child(2) { --i: 1; }
.motion-rings i:nth-child(3) { --i: 2; }

.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(42px, 5vw, 86px);
  min-height: 690px;
  margin: 0 18px 18px;
  padding: clamp(72px, 7vw, 104px) clamp(52px, 6vw, 92px);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(80,132,224,.25), transparent 29%),
    linear-gradient(125deg, var(--blue) 0%, var(--navy) 70%);
  isolation: isolate;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -11%;
  bottom: -48%;
  width: min(58vw, 790px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(255,255,255,.035), 0 0 0 176px rgba(255,255,255,.025);
}
.booking-copy { position: relative; z-index: 3; align-self: center; }
.booking-context { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.booking-context span { width: 24px; height: 2px; flex: 0 0 auto; background: var(--yellow); }
.booking h2 { max-width: 820px; margin: 0; font-size: clamp(52px,6vw,88px); line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
.booking-copy > p { max-width: 590px; margin: 28px 0 34px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.55; }
.booking-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.booking-actions .button { min-height: 58px; padding-inline: 28px; }
.booking-phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.booking-phone > svg { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: var(--yellow); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.booking-phone > span { display: grid; gap: 3px; }
.booking-phone small { color: rgba(255,255,255,.6); font-size: 11px; font-weight: 650; }
.booking-phone strong { font-size: 17px; letter-spacing: -.01em; transition: color .2s ease; }
.booking-assurances { display: flex; flex-wrap: wrap; gap: 12px 22px; max-width: 680px; margin: 36px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.booking-assurances li { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 650; }
.booking-assurances li span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: var(--navy); background: var(--yellow); font-size: 11px; font-weight: 900; }
.booking-brand { position: relative; z-index: 2; min-height: 480px; align-self: center; }
.booking-orbit { position: absolute; inset: 3% -8% 4% 2%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.booking-orbit::before,
.booking-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.booking-orbit::before { inset: 13%; }
.booking-orbit::after { inset: 30%; }
.booking-anatomy { position: absolute; z-index: 1; top: -2%; right: -5%; width: min(70%, 370px); max-width: none; height: auto; filter: drop-shadow(0 28px 24px rgba(2,15,43,.34)); animation: anatomy-float 8.4s ease-in-out infinite; }
.booking-identity { position: absolute; z-index: 2; left: 0; bottom: 2%; display: grid; width: min(68%, 360px); padding: 28px 30px 24px; border: 1px solid rgba(var(--navy-rgb), .09); border-radius: 16px; color: var(--navy); background: #f8f9fc; box-shadow: 0 24px 60px rgba(2,16,47,.23); transition: transform .35s var(--ease-out-expo), box-shadow .35s ease; }
.booking-identity > img { width: 210px; height: 214px; margin: 0 auto 20px; object-fit: contain; }
.booking-location { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); text-align: left; }
.booking-location-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: var(--blue); background: #e9eef8; }
.booking-location-mark svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.booking-location > span:last-child { display: grid; gap: 4px; }
.booking-location strong { font-size: 12px; }
.booking-location small { color: var(--muted); font-size: 11px; line-height: 1.4; }

.site-footer { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 30px; align-items: center; padding: 30px 42px 34px; color: #747d8e; font-size: 12px; }
.site-footer p { margin: 0; }
.site-footer__brand { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 650; }
.site-footer__brand > span:first-child { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(var(--gold-rgb),.18); }
.site-footer__note { justify-self: center; text-align: center; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer a { display: inline-flex; gap: 6px; color: var(--navy); font-weight: 750; }
.site-footer a span { color: var(--blue); transition: transform .2s var(--ease-out); }
.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 7px 18px 7px 8px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  background: #128c4c;
  box-shadow: 0 15px 34px rgba(12,91,46,.28), inset 0 1px rgba(255,255,255,.18);
  cursor: pointer;
  transition: opacity .18s ease, translate .25s var(--ease-out), transform .18s var(--ease-out), background-color .18s ease, box-shadow .2s ease;
}
.whatsapp-float__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.14); }
.whatsapp-float__label { font-size: 14px; font-weight: 760; letter-spacing: -.01em; white-space: nowrap; }
.whatsapp-float:active { transform: scale(.96); }
.menu-open .whatsapp-float,
.dialog-open .whatsapp-float,
.whatsapp-float.is-suppressed { opacity: 0; pointer-events: none; transform: scale(.94); }
.whatsapp-float svg,
.patient-dialog__mark svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.patient-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: min(88dvh, 760px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 18px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 28px 80px rgba(8,24,55,.3);
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .18s ease, transform .24s var(--ease-out), overlay .2s allow-discrete, display .2s allow-discrete;
}
.patient-dialog[open] { opacity: 1; transform: none; }
@starting-style {
  .patient-dialog[open] { opacity: 0; transform: translateY(16px) scale(.985); }
}
.patient-dialog::backdrop { background: rgba(8,21,48,.64); backdrop-filter: blur(7px); }
.patient-dialog__surface { padding: 30px; }
.patient-dialog__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
.patient-dialog__heading { display: flex; align-items: center; gap: 15px; }
.patient-dialog__mark { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto; border-radius: 14px; color: #fff; background: var(--blue); box-shadow: 0 10px 22px rgba(var(--blue-rgb),.2); }
.patient-dialog__eyebrow { display: block; margin-bottom: 4px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.patient-dialog h2 { margin: 0; font-size: clamp(27px,4vw,36px); line-height: 1; letter-spacing: -.035em; }
.patient-dialog__close { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; cursor: pointer; transition: color .18s ease, background-color .18s ease, transform .18s var(--ease-out); }
.patient-dialog__close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.patient-dialog__intro { max-width: 515px; margin: 22px 0 25px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.patient-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px 14px; }
.patient-field { display: grid; gap: 8px; }
.patient-field--wide { grid-column: 1 / -1; }
.patient-field > span { font-size: 13px; font-weight: 760; }
.patient-field input { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid #cbd5e5; border-radius: 10px; outline: 0; color: var(--navy); background: #fbfcfe; font: inherit; font-size: 16px; transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease; }
.patient-field input::placeholder { color: #929caf; }
.patient-field input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(var(--blue-rgb),.11); }
.patient-field input:user-invalid { border-color: #c84444; box-shadow: 0 0 0 3px rgba(200,68,68,.08); }
.patient-form__privacy { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 9px; margin: 1px 0 0; color: #6d778a; font-size: 12px; line-height: 1.45; }
.patient-form__privacy svg { width: 16px; flex: 0 0 auto; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.patient-form__submit { grid-column: 1 / -1; justify-content: center; min-height: 55px; margin-top: 2px; border: 0; cursor: pointer; }
.dialog-open { overflow: hidden; }

.reveal, .stagger-group > * { opacity: 1; transform: none; }

.motion-ready [data-reveal="statement"] > .circle-link,
.motion-ready [data-reveal="heading"] > *,
.motion-ready [data-reveal="copy"] > *,
.motion-ready [data-reveal="copy-light"] > *,
.motion-ready [data-reveal="booking"] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .68s var(--ease-out-expo), transform .68s var(--ease-out-expo);
}
.motion-ready [data-reveal="statement"] > .circle-link { transform: translateY(18px) scale(.94); }
.motion-ready [data-reveal="media-right"],
.motion-ready [data-reveal="media-left"] {
  opacity: .35;
  transform: scale(.985);
  transition: opacity .75s var(--ease-out-expo), transform .8s var(--ease-out-expo), clip-path .85s var(--ease-out-expo);
}
.motion-ready [data-reveal="media-right"] { clip-path: inset(0 0 0 14%); }
.motion-ready [data-reveal="media-left"] { clip-path: inset(0 14% 0 0); }
.motion-ready [data-reveal="booking"] { clip-path: inset(0 0 12% 0); transition: clip-path .8s var(--ease-out-expo); }
.motion-ready [data-stagger] > * {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .62s var(--ease-out-expo), transform .62s var(--ease-out-expo);
}
.motion-ready [data-reveal="statement"].is-visible > .circle-link,
.motion-ready [data-reveal="heading"].is-visible > *,
.motion-ready [data-reveal="copy"].is-visible > *,
.motion-ready [data-reveal="copy-light"].is-visible > *,
.motion-ready [data-reveal="booking"].is-visible > *,
.motion-ready [data-reveal="media-right"].is-visible,
.motion-ready [data-reveal="media-left"].is-visible,
.motion-ready [data-reveal="booking"].is-visible,
.motion-ready [data-stagger].is-visible > * {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}
.motion-ready [data-reveal="heading"].is-visible > *:nth-child(2),
.motion-ready [data-reveal="copy"].is-visible > *:nth-child(2),
.motion-ready [data-reveal="copy-light"].is-visible > *:nth-child(2),
.motion-ready [data-reveal="booking"].is-visible > *:nth-child(2) { transition-delay: .08s; }
.motion-ready [data-reveal="copy"].is-visible > *:nth-child(3),
.motion-ready [data-reveal="copy-light"].is-visible > *:nth-child(3) { transition-delay: .14s; }
.motion-ready [data-stagger].is-visible > *:nth-child(2) { transition-delay: .07s; }
.motion-ready [data-stagger].is-visible > *:nth-child(3) { transition-delay: .14s; }
.motion-ready .process-copy .process-list::before { transform: scaleY(0); transition: transform .7s .18s var(--ease-out-expo); }
.motion-ready .process-copy.is-visible .process-list::before { transform: scaleY(1); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.circle-link:active { transform: scale(.95); }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover { background: var(--blue-soft); color: var(--blue); transform: translateY(-1px); }
  .icon-button:hover { background: var(--navy); color: #fff; transform: rotate(-7deg); }
  .button:hover::after { transform: translateX(120%); }
  .button:hover { transform: translateY(-2px); }
  .button--primary:hover { background: var(--navy); box-shadow: 0 14px 30px rgba(var(--navy-rgb), .24); }
  .button--ghost:hover { color: var(--blue); border-color: #9eb4d8; }
  .circle-link:hover { background: var(--blue); transform: translateY(-3px); }
  .text-link:hover span { transform: translate(3px, 3px); }
  .service-card:hover { transform: translateY(-6px); border-color: #9eb4d8; background: #f9fbfe; }
  .service-card:hover .service-icon svg { transform: translateY(-4px) scale(1.04); }
  .service-card:hover .service-anatomy { scale: 1.045; filter: drop-shadow(0 19px 14px rgba(var(--navy-rgb), .2)); }
  .service-card--featured:hover .service-anatomy { filter: drop-shadow(0 28px 21px rgba(0,0,0,.3)); }
  .service-card:hover .service-orbit { transform: scale(.96); border-color: rgba(var(--blue-rgb), .28); }
  .service-card:hover .service-copy a span { transform: translate(3px,-3px); }
  .service-card--featured:hover { background: #102247; }
  .service-card--featured:hover .service-orbit { border-color: rgba(255,255,255,.36); }
  .process-media:hover img { filter: saturate(1) contrast(1.04); transform: scale(1.035); }
  .location-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(var(--navy-rgb), .2); }
  .social-card:hover { transform: translateY(-7px); }
  .social-card--photo:hover img { transform: scale(1.045); }
  .whatsapp-float:hover { transform: translateY(-3px); background: #0f7c43; box-shadow: 0 18px 38px rgba(12,91,46,.34); }
  .booking-phone:hover strong { color: var(--yellow); }
  .booking-identity:hover { transform: translateY(-5px); box-shadow: 0 30px 68px rgba(2,16,47,.28); }
  .site-footer a:hover span { transform: translate(2px,-2px); }
  .patient-dialog__close:hover { color: #fff; background: var(--navy); transform: rotate(5deg); }
}

@media (max-width: 1200px) {
  .site-header { grid-template-columns: 220px 1fr auto; padding-inline: 28px; }
  .brand-copy { display: none; }
  .desktop-nav a { padding-inline: 13px; }
  .header-cta { display: none; }
  .hero-copy { padding-left: 54px; }
  .hero h1 { font-size: clamp(62px,7.2vw,88px); }
  .hero-note { display: none; }
  .section-pad { padding: 82px 50px; }
  .service-card { min-height: 300px; }
  .service-card--featured { min-height: 614px; }
  .social-section { grid-template-columns: 1fr; }
  .social-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; align-items: end; }
  .social-heading .button { width: max-content; }
  .booking { grid-template-columns: minmax(0, 1fr) minmax(370px, .8fr); }
}

@media (max-width: 960px) {
  .site-shell { width: min(calc(100% - 16px), var(--container)); margin: 8px auto; border-radius: 24px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 92px; padding: 10px 20px; }
  .brand-mark { width: 76px; height: 66px; }
  .brand-mark img { width: 84px; }
  .desktop-nav, .icon-button { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 8px; z-index: 70; display: flex; flex-direction: column; justify-content: center; padding: 35px; border-radius: 24px; background: #fff; opacity: 0; visibility: hidden; transform: scale(.97); transition: opacity .18s ease, transform .22s var(--ease-out), visibility 0s linear .22s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: scale(1); transition: opacity .22s ease, transform .3s var(--ease-out), visibility 0s; }
  .mobile-menu nav { display: grid; margin-bottom: 35px; }
  .mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: clamp(34px,8vw,55px); font-weight: 700; letter-spacing: -.04em; }
  .mobile-menu .button { width: max-content; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 650px; padding: 44px 32px 38px; }
  .hero-context { margin-bottom: 25px; }
  .hero h1 { font-size: clamp(60px,11vw,88px); }
  .hero-lead { max-width: 590px; }
  .hero-proof { margin-top: 38px; }
  .hero-media { min-height: clamp(700px, 90vw, 760px); }
  .hero-blue { border-radius: 16px 16px 0 0; }
  .hero-scan { top: 72px; right: 8%; width: min(70%, 500px); }
  .doctor-cutout {
    left: 50%;
    right: auto;
    bottom: -80px;
    width: auto;
    height: calc(100% + 80px);
    max-width: none;
    translate: -50% 0;
  }
  .hero-note { top: 42px; left: 32px; }
  .expertise-tag, .location-mark { display: none; }
  .section-pad { padding: 74px 32px; }
  .service-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-card--featured { grid-row: auto; min-height: 580px; }
  .service-card:not(.service-card--featured) { min-height: 310px; }
  .process { grid-template-columns: 1fr; }
  .process-media { min-height: clamp(620px, 82vw, 720px); }
  .process-media img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 48% 38%;
    transform: scale(1.01);
  }
  .process-note { display: flex; left: 32px; bottom: 34px; max-width: 330px; }
  .doctor-section { grid-template-columns: 1fr; }
  .doctor-photo { min-height: 520px; }
  .doctor-photo img { min-height: 520px; }
  .locations { grid-template-columns: 1fr; }
  .locations-intro { min-height: 350px; }
  .location-panels { grid-template-columns: 1fr 1fr; }
  .social-heading { grid-template-columns: 1fr; }
  .social-rail { overflow-x: auto; grid-template-columns: repeat(3, minmax(280px, 1fr)); margin-right: -32px; padding-right: 32px; scrollbar-width: none; }
  .social-rail::-webkit-scrollbar { display: none; }
  .booking { grid-template-columns: 1fr; gap: 46px; min-height: 0; }
  .booking::before { display: none; }
  .booking-copy { max-width: 720px; }
  .booking-brand { width: min(100%, 620px); min-height: 500px; justify-self: center; }
  .booking-anatomy { top: -2%; right: 0; width: min(58%, 350px); }
  .booking-identity { left: 4%; bottom: 2%; width: min(62%, 370px); }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer__note { justify-self: start; text-align: left; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 24px; }
  .site-header { min-height: 78px; }
  .brand-mark { width: 68px; height: 58px; }
  .brand-mark img { width: 75px; }
  .hero-copy { min-height: 600px; padding: 38px 21px 28px; }
  .hero-context { gap: 6px; margin-bottom: 24px; font-size: 13px; }
  .hero h1 { font-size: clamp(54px,15vw,70px); line-height: .9; letter-spacing: -.04em; }
  .hero-lead { margin-top: 24px; font-size: 18px; }
  .hero-actions { display: grid; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 58px 1fr; min-height: 88px; padding: 12px; }
  .proof-visual { width: 58px; height: 58px; }
  .care-mark { font-size: 36px; }
  .hero-media {
    /* Align the blue plane with the first visible pixels of the portrait. */
    --mobile-blue-inset: clamp(56px, 14vw, 68px);
    min-height: clamp(590px, 135vw, 700px);
    margin-top: -32px;
  }
  .hero-blue {
    inset: var(--mobile-blue-inset) 12px 12px;
    border-radius: 16px;
  }
  .hero-scan {
    top: calc(var(--mobile-blue-inset) + 28px);
    right: -7%;
    width: 96%;
  }
  .doctor-cutout {
    bottom: -40px;
    height: calc(100% + 40px);
    filter: drop-shadow(0 20px 18px rgba(1,33,99,.2));
  }
  .hero-note { display: none; }
  .expertise-tag { font-size: 9px; }
  .tag-one { left: 4%; top: 48%; }
  .tag-two { right: 3%; top: 67%; }
  .section-pad { padding: 64px 21px; }
  .statement { grid-template-columns: 1fr; align-items: start; gap: 32px; }
  .statement p { font-size: clamp(29px, 8.2vw, 34px); line-height: 1.08; }
  .motion-ready .statement.has-word-reveal .statement-word {
    opacity: .08;
    filter: blur(2px);
    transform: translate3d(0, 13px, 0);
    transition: opacity .5s var(--ease-out-expo), transform .56s var(--ease-out-expo), filter .48s ease;
    transition-delay: calc(var(--word-index) * 24ms);
  }
  .motion-ready .statement.has-word-reveal.is-word-visible .statement-word {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: none !important;
  }
  .circle-link { width: 62px; height: 62px; }
  .section-heading { display: grid; }
  .section-heading h2, .locations h2, .doctor-copy h2, .social-heading h2 {
    font-size: clamp(38px, 10.6vw, 46px);
    overflow-wrap: anywhere;
  }
  .service-card { padding: 24px; }
  .service-card--featured { min-height: 520px; padding: 26px; }
  .service-card:not(.service-card--featured),
  .service-card:nth-child(3) {
    grid-template-columns: 1fr;
    grid-template-rows: auto 175px 1fr;
    min-height: 430px;
  }
  .service-card:not(.service-card--featured) .service-category,
  .service-card:nth-child(3) .service-category { grid-column: 1; grid-row: 1; justify-self: end; }
  .service-card:not(.service-card--featured) .service-icon,
  .service-card:nth-child(3) .service-icon { grid-column: 1; grid-row: 2; min-height: 175px; }
  .service-card:not(.service-card--featured) .service-copy,
  .service-card:nth-child(3) .service-copy { grid-column: 1; grid-row: 3; }
  .service-card--featured .service-icon { min-height: 245px; }
  .service-card--featured .service-icon::before { width: 150px; height: 150px; }
  .service-card--featured .service-orbit { width: 190px; height: 190px; }
  .service-card--featured .service-icon svg { width: 92px; height: 92px; }
  .service-card:not(.service-card--featured) .service-anatomy { width: min(70vw, 205px); height: 205px; }
  .service-card--featured .service-anatomy { width: min(88%, 310px); height: 255px; }
  .service-card--featured .service-copy h3 { font-size: clamp(36px,10.5vw,48px); }
  .service-copy p { min-height: 0; }
  .process-copy h2 { font-size: clamp(47px, 13vw, 55px); }
  .process-list li { grid-template-columns: 44px 1fr; gap: 15px; }
  .process-list li > span { width: 44px; height: 44px; box-shadow: 0 0 0 6px #fff; }
  .process-list::before { left: 21px; }
  .process-copy { padding-bottom: 44px; }
  .process-media { min-height: clamp(500px, 128vw, 590px); }
  .process-media::after { inset: 12px; border-radius: 12px; }
  .process-media img { inset: 0; width: 100%; height: 100%; object-position: 47% 35%; transform: scale(1.01); }
  .process-note { left: 24px; right: 24px; bottom: 27px; max-width: 300px; gap: 12px; }
  .process-note p { font-size: clamp(17px,5vw,20px); line-height: 1.24; }
  .doctor-photo, .doctor-photo img { min-height: 430px; }
  .doctor-copy > p { font-size: 16px; }
  .locations-intro { min-height: 305px; }
  .location-panels { grid-template-columns: 1fr; }
  .location-card { min-height: 420px; }
  .location-card-top--hospital { gap: 12px; }
  .hospital-logo-wrap { width: 110px; height: 60px; padding: 0; }
  .location-card-top--hospital h3 { font-size: 18px; letter-spacing: -.04em; }
  .social-rail { grid-template-columns: repeat(3, 82vw); margin-right: -21px; padding-right: 21px; }
  .social-card { min-height: 410px; }
  .booking { gap: 32px; margin: 0 8px 8px; padding: 52px 22px 28px; }
  .booking-context { align-items: flex-start; margin-bottom: 23px; font-size: 10px; line-height: 1.4; }
  .booking-context span { margin-top: 6px; }
  .booking h2 { font-size: clamp(40px, 10.8vw, 46px); }
  .booking-copy > p { margin: 22px 0 27px; font-size: 15px; }
  .booking-actions { align-items: flex-start; flex-direction: column; }
  .booking-actions .button { width: 100%; min-height: 56px; }
  .booking-phone strong { font-size: 16px; }
  .booking-assurances { display: grid; gap: 11px; margin-top: 28px; padding-top: 22px; }
  .booking-brand { width: 100%; min-height: 430px; }
  .booking-orbit { inset: 1% -26% 5% 4%; }
  .booking-anatomy { top: 1%; right: -8%; width: min(68%, 265px); }
  .booking-identity { left: 0; bottom: 0; width: min(74%, 275px); padding: 22px 20px 19px; border-radius: 14px; }
  .booking-identity > img { width: 165px; height: 170px; margin-bottom: 15px; }
  .booking-location { grid-template-columns: 36px 1fr; gap: 10px; padding-top: 15px; }
  .booking-location-mark { width: 36px; height: 36px; border-radius: 10px; }
  .site-footer { gap: 18px; padding: 28px 22px 38px; }
  .site-footer nav { flex-wrap: wrap; gap: 18px 24px; }
  .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 56px; min-height: 56px; padding: 6px; justify-content: center; }
  .whatsapp-float__icon { width: 44px; height: 44px; background: transparent; }
  .whatsapp-float__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .patient-dialog { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 15px; }
  .patient-dialog__surface { padding: 22px 18px 18px; }
  .patient-dialog__header { gap: 12px; }
  .patient-dialog__heading { gap: 11px; }
  .patient-dialog__mark { width: 46px; height: 46px; border-radius: 12px; }
  .patient-dialog h2 { font-size: clamp(25px,7.6vw,31px); }
  .patient-dialog__intro { margin: 18px 0 21px; font-size: 14px; }
  .patient-form { grid-template-columns: 1fr; gap: 15px; }
  .patient-field, .patient-field--wide, .patient-form__privacy, .patient-form__submit { grid-column: 1; }
  .patient-field input { min-height: 50px; }
}

/* Desktop hero art direction: the portrait bridges the white and blue planes. */
@media (min-width: 961px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    grid-template-columns: 160px auto 1fr;
    min-height: 132px;
    padding: 18px 32px;
    background: transparent;
  }
  .site-header .header-actions { display: none; }
  .desktop-nav { justify-self: start; }

  .hero {
    grid-template-columns: 59.5% 40.5%;
    min-height: 850px;
  }
  .hero-copy {
    padding: 210px 44px 42px 78px;
  }
  .hero-context { display: none; }
  .hero h1 {
    max-width: 680px;
    font-size: clamp(76px, 7.2vw, 96px);
    font-weight: 800;
    line-height: .84;
  }
  .hero h1 span:last-child { color: var(--navy); }
  .hero-lead { max-width: 500px; margin-top: 24px; }
  .hero-actions { margin-top: 22px; }
  .hero-proof {
    width: min(100%, 470px);
    min-height: 104px;
    background: var(--blue-soft);
  }

  .hero-media {
    overflow: visible;
    isolation: isolate;
  }
  .hero-blue {
    border-radius: 16px 0 0 16px;
    background:
      radial-gradient(circle at 58% 18%, rgba(255,255,255,.13), transparent 31%),
      linear-gradient(145deg, var(--blue) 0%, var(--navy) 100%);
  }
  .hero-scan {
    top: 170px;
    right: -5%;
    width: min(94%, 530px);
    opacity: .72;
  }
  .doctor-cutout {
    right: 18%;
    bottom: -26%;
    width: min(135%, 720px);
    filter: drop-shadow(0 24px 18px rgba(var(--navy-rgb), .18));
  }
  .hero-note {
    top: 78px;
    right: clamp(24px, 2.4vw, 36px);
    left: auto;
    max-width: 210px;
  }
  .expertise-tag,
  .location-mark { display: none; }
}

@media (min-width: 1201px) {
  .site-header {
    grid-template-columns: 300px auto 1fr;
    min-height: 174px;
    padding: 46px 68px 24px;
  }
  .brand-mark { width: 102px; height: 88px; }
  .brand-mark img { width: 112px; }
  .brand-copy { display: grid; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 7px; }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .doctor-cutout {
    right: 0;
    bottom: -8%;
  }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  .doctor-cutout {
    right: 15%;
    bottom: -16%;
  }
}

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