@layer reset, tokens, base, components, sections, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { overflow-x: clip; scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, ol, dl, dd { margin: 0; }
  ol { padding: 0; }
  img, svg { display: block; max-width: 100%; }
  img { height: auto; }
  button, input, textarea, select { font: inherit; }
}

@layer tokens {
  :root {
    --navy-950: oklch(24% 0.106 259);
    --navy-900: oklch(29% 0.125 259);
    --navy-800: oklch(35% 0.118 258);
    --green-800: oklch(45% 0.121 158);
    --green-700: oklch(51% 0.126 158);
    --green-100: oklch(94% 0.035 158);
    --white: oklch(100% 0 0);
    --surface: oklch(97.8% 0.004 259);
    --surface-2: oklch(95.5% 0.008 259);
    --ink: oklch(24% 0.035 258);
    --muted: oklch(43% 0.025 258);
    --line: oklch(86% 0.015 258);

    --font-display: "Wix Madefor Display", "Segoe UI", sans-serif;
    --font-body: "Wix Madefor Text", "Segoe UI", sans-serif;

    --shell: 1586px;
    --gutter: clamp(1.25rem, 5.8vw, 5.75rem);
    --section-space: clamp(5rem, 9vw, 9rem);
    --radius-sm: 8px;
    --radius-md: 14px;
    --ease-out: cubic-bezier(.23, 1, .32, 1);
    --ease-in-out: cubic-bezier(.77, 0, .175, 1);
    --motion-distance: 18px;
    --z-header: 20;
    --z-menu: 30;
  }
}

@layer base {
  body {
    min-width: 0;
    overflow-x: clip;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--green-100); color: var(--navy-950); }

  a { color: inherit; text-decoration: none; }
  a, button { -webkit-tap-highlight-color: transparent; }

  :focus-visible {
    outline: 3px solid var(--green-700);
    outline-offset: 4px;
  }

  .shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--gutter); }
  .section { padding-block: var(--section-space); }
  section[id] { scroll-margin-top: 115px; }

  h1, h2, h3 {
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
    text-wrap: balance;
  }

  h1 { font-size: clamp(2.75rem, 4.55vw, 4.3rem); }
  h2 { font-size: clamp(2.25rem, 4.5vw, 4.5rem); }
  h3 { font-size: clamp(1.65rem, 2.5vw, 2.6rem); }
  h1 strong, h2 strong { font-weight: 800; }

  p { text-wrap: pretty; }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    transform: translateY(-150%);
    background: var(--white);
    color: var(--navy-950);
    border-radius: var(--radius-sm);
  }
  .skip-link:focus { transform: none; }
}

@layer components {
  .brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 0; }
  .brand__logo { width: clamp(245px, 23vw, 363px); height: auto; }

  .button {
    display: inline-flex;
    min-height: 63px;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--navy-900);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    transition: background-color 220ms ease, color 220ms ease, transform 150ms var(--ease-out);
  }
  .button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: transform .25s var(--ease-out); }
  .button:active { transform: scale(.97); }
  .button--compact { min-height: 52px; padding: .8rem 1.25rem; font-size: .98rem; }
  .button--light { background: var(--white); color: var(--navy-950); }

  .text-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--navy-900);
    font-weight: 700;
  }
  .text-link::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transform: scaleX(.28);
    transform-origin: left;
    transition: transform .3s var(--ease-out);
  }

  .site-header {
    position: sticky;
    z-index: var(--z-header);
    top: 0;
    border-bottom: 1px solid transparent;
    background: color-mix(in oklch, var(--white) 93%, transparent);
    backdrop-filter: blur(14px);
    transition: border-color 220ms ease, box-shadow 220ms ease;
  }
  .site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 8px oklch(24% .04 258 / .04); }
  .site-header__inner { display: flex; min-height: 115px; align-items: center; justify-content: space-between; gap: 1.25rem; }
  .site-header__cta { min-width: 180px; }

  .primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
  .primary-nav a { position: relative; min-width: 44px; padding: .7rem .25rem; color: var(--ink); font-size: .95rem; font-weight: 650; }
  .primary-nav a::after { position: absolute; right: 0; bottom: .25rem; left: 0; height: 2px; background: var(--navy-900); content: ""; transform: scaleX(0); transition: transform .25s var(--ease-out); }
  .primary-nav a[aria-current="true"]::after { transform: scaleX(1); }

  .menu-toggle { display: none; border: 0; background: transparent; color: var(--navy-950); cursor: pointer; }
  .menu-toggle__icon { display: grid; width: 24px; gap: 6px; }
  .menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .25s var(--ease-out); }

  .motion-enabled [data-load-reveal],
  .motion-enabled [data-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--motion-distance), 0);
    transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .motion-enabled .site-header [data-load-reveal] { transform: translate3d(0, -8px, 0); }
  .motion-enabled .hero__plane[data-load-reveal] { transform: translate3d(20px, 0, 0) scale(.992); }
  .motion-enabled .statement__graphic[data-reveal],
  .motion-enabled .approach__photo[data-reveal],
  .motion-enabled .location__visual[data-reveal] { transform: translate3d(22px, 0, 0); }
  .motion-enabled [data-load-reveal].is-visible,
  .motion-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  @media (hover: hover) and (pointer: fine) {
    .button:hover { background: var(--green-800); transform: translateY(-2px); }
    .button:hover svg { transform: translateX(3px); }
    .button--light:hover { background: var(--navy-950); color: var(--white); }
    .text-link:hover::after { transform: scaleX(1); }
    .primary-nav a:hover::after { transform: scaleX(1); }
    .site-footer nav a:hover, .site-footer__legal a:hover { color: var(--green-800); }
  }
}

@layer sections {
  .hero { overflow: visible; background: var(--white); }
  .hero__grid { display: grid; width: 100%; max-width: none; min-height: 660px; grid-template-columns: 49.3% 50.7%; align-items: stretch; padding-inline: 0; }
  .hero__content { display: flex; max-width: none; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 8.35rem 0 4rem clamp(5.75rem, 7.55vw, 7.5rem); }
  .hero__content h1 { max-width: none; font-size: clamp(3.2rem, 3.8vw, 3.75rem); line-height: .98; }
  .hero__content h1 > span, .hero__content h1 > strong { display: block; }
  .hero__content p { max-width: 490px; margin-top: 2.8rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55; }
  .hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 4rem; margin-top: 3.05rem; }

  .hero__portrait { position: relative; z-index: 21; min-height: 660px; overflow: visible; clip-path: inset(-90px 0 0); isolation: isolate; }
  .hero__plane { position: absolute; z-index: -2; inset: 0; overflow: hidden; border-radius: 128px 0 0; background: var(--navy-900); }
  .hero__green-orbit { position: absolute; z-index: -1; right: -16%; bottom: -25%; width: min(72%, 575px); aspect-ratio: 1; border-radius: 50%; background: var(--green-800); }
  .hero__pulse { display: none; }
  .hero__doctor { position: absolute; z-index: 1; top: -42px; left: 52%; width: min(88%, 575px); max-width: none; height: auto; transform: translateX(-50%); transform-origin: top center; animation: hero-arrive .9s .12s both var(--ease-out); }
  .hero__actions .button { min-width: 192px; }

  @keyframes hero-arrive { from { opacity: 0; transform: translate(-50%, 30px); } to { opacity: 1; transform: translate(-50%, 0); } }

  .statement { background: linear-gradient(90deg, var(--surface), color-mix(in oklch, var(--surface) 82%, var(--white))); }
  .statement__inner { display: grid; min-height: 220px; grid-template-columns: 430px minmax(0, 1fr); align-items: center; gap: 4.4rem; padding: 2.75rem 4rem 2.75rem 8rem; }
  .statement h2 { max-width: 430px; font-size: clamp(2rem, 2.2vw, 2.2rem); }
  .statement h2 > span, .statement h2 > strong { display: block; }
  .statement__graphic { position: relative; display: grid; min-height: 150px; align-items: center; }
  .statement__line { width: 100%; fill: none; stroke: var(--green-700); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
  .statement__line > circle { stroke: none; }
  .statement__line > circle:first-of-type { fill: var(--green-700); }
  .statement__line > circle:last-of-type { fill: var(--navy-900); }
  .statement__medallion { position: absolute; top: 50%; left: 59.55%; display: grid; width: 124px; height: 124px; padding: 22px; border: 1.5px solid color-mix(in oklch, var(--green-700) 78%, var(--white)); border-radius: 50%; place-items: center; background: var(--surface); box-shadow: 0 14px 40px oklch(24% .04 258 / .07); transform: translate(-50%, -50%); }
  .statement__medallion::after { position: absolute; inset: -11px; border: 1px solid color-mix(in oklch, var(--green-700) 38%, transparent); border-radius: inherit; content: ""; clip-path: inset(0 44% 0 0); }
  .statement__monogram { color: var(--navy-900); font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
  .statement__monogram::after { color: var(--green-700); content: "."; }

  .specialties { min-height: 487px; padding-block: 4rem 3.7rem; }
  .specialties .shell { width: min(calc(100% - 15rem), 1210px); margin-right: auto; margin-left: clamp(5.75rem, 7.55vw, 7.5rem); padding-inline: 0; }
  .specialties h2 { max-width: 680px; font-size: clamp(2.35rem, 3vw, 3rem); }
  .specialties__rail { display: grid; grid-template-columns: auto minmax(60px, 1fr) auto minmax(60px, 1fr) auto; align-items: center; gap: 1.25rem; margin-top: 2rem; color: var(--green-800); }
  .specialties__rail i { display: block; height: 1px; background: currentColor; }
  .specialties__rail b { width: 11px; height: 11px; border-radius: 50%; background: var(--navy-900); }
  .organ { display: grid; width: 86px; height: 86px; place-items: center; }
  .organ svg { width: 74px; height: 82px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
  .organ--critical { color: var(--navy-900); }
  .organ--critical svg { width: 78px; height: 84px; }
  .specialties__columns { display: grid; grid-template-columns: minmax(0, 625px) minmax(0, 1fr); margin-top: 1.6rem; }
  .specialties__columns article { padding: .75rem clamp(1.5rem, 4vw, 4rem) 0 0; }
  .specialties__columns article + article { padding-right: 0; padding-left: 6.7rem; border-left: 1px solid var(--line); }
  .specialties__columns p { max-width: 370px; margin-top: 1rem; color: var(--muted); font-size: 1.2rem; line-height: 1.58; }

  .approach { position: relative; overflow: visible; background: var(--surface); color: var(--white); }
  .approach::before { display: none; }
  .approach__grid { position: relative; display: block; width: 100%; max-width: none; min-height: 524px; padding-inline: 0; }
  .approach__content { position: relative; z-index: 2; width: 57.3%; min-height: 524px; padding: 3.4rem clamp(3rem, 7.5vw, 7.5rem); border-radius: 0 150px 0 0; background: var(--green-800); }
  .approach h2 { max-width: 590px; color: var(--white); font-size: clamp(2.5rem, 3.3vw, 3.15rem); }
  .approach__content > p { max-width: 58ch; margin-top: 1.45rem; color: oklch(96% .01 158 / .92); font-size: 1.18rem; }

  .care-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; list-style: none; }
  .care-steps li { position: relative; }
  .care-steps li:not(:last-child)::after { position: absolute; top: 20px; right: -11px; width: calc(100% - 60px); height: 1px; background: oklch(100% 0 0 / .45); content: ""; transform: translateX(50%); }
  .care-steps li > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--white); color: var(--navy-950); font-weight: 800; }
  .care-steps div { margin-top: 1rem; }
  .care-steps strong { font-family: var(--font-display); font-size: 1.24rem; }
  .care-steps p { max-width: 19ch; margin-top: .45rem; color: oklch(98% .01 158 / .84); font-size: .96rem; line-height: 1.52; }

  .approach__photo { position: absolute; z-index: 1; inset: -55px 0 0 51.7%; overflow: hidden; background: var(--surface); pointer-events: none; }
  .approach__photo img {
    position: absolute;
    right: 0;
    bottom: clamp(-90px, calc(559px - 42.5vw), 20px);
    width: min(100%, 720px);
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
  }

  .location { padding-block: 0; }
  .location__grid { display: grid; width: 100%; max-width: none; grid-template-columns: 47.6% 52.4%; padding-inline: 0; }
  .location__details { min-height: 545px; padding: 5.7rem clamp(3rem, 6.8vw, 6.8rem) 3rem; }
  .location h2 { max-width: 640px; font-size: clamp(2.35rem, 3.2vw, 3rem); font-weight: 800; }
  .location__room { margin-top: 1.25rem; color: var(--green-800); font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 800; }
  .location__facts { display: grid; min-height: 190px; grid-template-columns: 58px 1fr; gap: 1.5rem 1.5rem; margin-top: 1.75rem; padding-left: 1.2rem; border-left: 1px solid var(--green-700); }
  .location__fact-icon { width: 48px; height: 48px; fill: none; stroke: var(--green-800); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
  .schedule { display: grid; align-content: center; gap: .7rem; font-size: 1.2rem; }
  .schedule div { display: flex; gap: .45rem; }
  .schedule dt { color: var(--navy-950); font-weight: 800; }
  .schedule dd { color: var(--muted); }
  .location address { align-self: center; color: var(--muted); font-size: 1.12rem; font-style: normal; }

  .location__visual {
    position: relative;
    min-height: 545px;
    overflow: hidden;
    border-radius: 126px 0 0;
    background:
      radial-gradient(circle at 50% 48%, oklch(42% .115 255 / .42) 0, transparent 43%),
      linear-gradient(145deg, var(--navy-800), var(--navy-950) 72%);
    isolation: isolate;
  }
  .location__visual::before {
    position: absolute;
    z-index: 0;
    top: -44%;
    right: -18%;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid oklch(76% .16 145 / .18);
    border-radius: 50%;
    content: "";
  }
  .location__halo {
    position: absolute;
    z-index: 0;
    right: -15%;
    bottom: -54%;
    width: 76%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--green-700), var(--green-900) 68%);
    opacity: .34;
  }
  .location__accent {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: min(58%, 480px);
    height: 1px;
    background: linear-gradient(90deg, transparent, oklch(76% .16 145 / .42), transparent);
    transform: translate(-50%, 82px);
  }
  .location__lockup {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(64%, 500px);
    padding: clamp(1.15rem, 2vw, 1.7rem) clamp(1.35rem, 2.6vw, 2.1rem);
    border: 1px solid oklch(100% 0 0 / .72);
    border-radius: 14px;
    background: oklch(99% .004 96 / .97);
    box-shadow: 0 26px 64px oklch(12% .06 255 / .28), inset 0 -3px 0 oklch(57% .13 155 / .16);
    transform: translate(-50%, -50%);
  }
  .location__brand-logo { display: block; width: 100%; height: auto; }

  .final-cta { background: var(--green-800); color: var(--white); }
  .final-cta__inner { display: grid; min-height: 205px; grid-template-columns: 1.05fr .85fr auto; align-items: center; gap: clamp(2rem, 5vw, 6rem); padding: 2.5rem clamp(5.75rem, 6.8vw, 6.5rem); }
  .final-cta h2 { max-width: 520px; color: var(--white); font-size: clamp(2.35rem, 3.2vw, 3.1rem); }
  .final-cta p { max-width: 40ch; padding-left: clamp(1rem, 3vw, 3.5rem); border-left: 1px solid oklch(100% 0 0 / .48); color: oklch(97% .01 158 / .88); }
  .final-cta .button { min-width: 282px; min-height: 72px; }

  .site-footer { background: var(--white); }
  .site-footer__inner { display: grid; min-height: 160px; grid-template-columns: 1fr auto auto; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
  .site-footer nav { display: flex; gap: 2rem; font-size: .9rem; font-weight: 650; }
  .site-footer nav a, .site-footer__legal a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; }
  .site-footer__inner > p { color: var(--muted); font-size: .88rem; }
  .site-footer__legal { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
}

@layer responsive {
  @media (max-width: 1180px) {
    .site-header__cta { display: none; }
    .hero__grid { grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr); }
    .hero__doctor { top: -34px; width: min(86%, 520px); }
    .specialties__columns { grid-template-columns: 1fr 1fr; }
    .specialties__columns article + article { padding-left: clamp(1.5rem, 4vw, 4rem); }
    .approach__grid { display: grid; min-height: 0; grid-template-columns: 1fr; }
    .approach__content { width: 100%; min-height: auto; border-radius: 0 132px 0 0; }
    .approach__photo { position: relative; inset: auto; width: 100%; height: 570px; background: var(--surface); }
    .approach__photo img {
      right: auto;
      bottom: 0;
      left: 50%;
      width: min(100%, 640px);
      transform: translateX(-50%);
    }
    .location__grid { grid-template-columns: 1fr; }
    .location__details { min-height: auto; }
    .location__visual { min-height: 500px; }
    .final-cta__inner { grid-template-columns: 1fr auto; }
    .final-cta p { grid-row: 2; padding-left: 0; border-left: 0; }
    .final-cta .button { grid-column: 2; grid-row: 1 / span 2; }
  }

  @media (max-width: 900px) {
    :root { --section-space: clamp(4.5rem, 10vw, 7rem); }
    .site-header__inner { min-height: 76px; }
    .menu-toggle { z-index: calc(var(--z-menu) + 1); display: flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; gap: .6rem; }
    .menu-toggle__label { font-size: .82rem; font-weight: 700; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-4px) rotate(-45deg); }
    .menu-toggle[aria-expanded="true"] { position: fixed; top: 14px; right: var(--gutter); color: var(--white); }
    .primary-nav { position: fixed; z-index: var(--z-menu); inset: 0; display: flex; visibility: hidden; width: 100%; height: 100dvh; overflow-y: auto; overscroll-behavior: contain; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem; padding: 6rem var(--gutter) 3rem; background: var(--navy-950); opacity: 0; transform: translateY(-12px); transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s; -webkit-overflow-scrolling: touch; }
    .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .primary-nav a { width: 100%; color: var(--white); font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3.75rem); opacity: 0; transform: translate3d(0, 12px, 0); transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out); }
    .primary-nav.is-open a { opacity: 1; transform: translate3d(0, 0, 0); }
    .primary-nav.is-open a:nth-child(1) { transition-delay: 45ms; }
    .primary-nav.is-open a:nth-child(2) { transition-delay: 80ms; }
    .primary-nav.is-open a:nth-child(3) { transition-delay: 115ms; }
    .primary-nav.is-open a:nth-child(4) { transition-delay: 150ms; }
    .primary-nav:not(.is-open) a { transition-delay: 0ms; }
    .primary-nav.is-instant,
    .primary-nav.is-instant a { transition-duration: 0ms; transition-delay: 0ms; }

    .hero { overflow: hidden; }
    .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-inline: 0; }
    .hero__content { max-width: none; padding: clamp(3.5rem, 9vw, 5.5rem) var(--gutter) 3.2rem; }
    .hero__content h1 { max-width: 14ch; }
    .hero__portrait { z-index: 0; min-height: 650px; overflow: hidden; clip-path: none; }
    .hero__plane { inset: 34px var(--gutter) 0; border-radius: var(--radius-md); }
    .hero__doctor { top: 0; left: 50%; width: min(88%, 500px); }

    .statement__inner { min-height: 300px; grid-template-columns: 1fr; padding-inline: var(--gutter); }
    .statement__line { max-width: 660px; }
    .specialties .shell { width: auto; margin-inline: 0; padding-inline: var(--gutter); }
    .approach__content { padding-right: var(--gutter); border-radius: 0; }
    .care-steps { max-width: 650px; }
    .approach__photo { width: calc(100% - var(--gutter)); height: 570px; margin-left: auto; }

    .location__details { padding-right: var(--gutter); }
    .location__visual { min-height: 520px; }
    .location__lockup { width: min(64%, 500px); }
    .final-cta__inner { padding-inline: var(--gutter); }
    .site-footer__inner { grid-template-columns: 1fr auto; padding-block: 2.5rem; }
    .site-footer nav { grid-column: 1 / -1; grid-row: 2; }
    .site-footer__inner > p { grid-column: 2; grid-row: 1; }
  }

  @media (max-width: 640px) {
    :root { --gutter: clamp(1rem, 5vw, 1.5rem); --motion-distance: 12px; }
    .brand__logo { width: min(62vw, 235px); }
    .menu-toggle__label { display: none; }

    h1 { font-size: clamp(2.6rem, 12vw, 4rem); letter-spacing: -0.038em; }
    h2 { font-size: clamp(2.15rem, 10vw, 3.5rem); }
    .hero__content p { margin-top: 1.35rem; }
    .hero__actions { width: 100%; align-items: stretch; margin-top: 1.8rem; }
    .hero__actions .button { flex: 1 1 100%; }
    .hero__actions .text-link { flex: 0 0 auto; }
    .hero__portrait { min-height: 560px; }
    .hero__doctor { top: 0; width: min(102%, 430px); }
    .hero__green-orbit { right: -28%; width: 80%; }

    .statement__inner { gap: 1rem; }
    .specialties__rail { grid-template-columns: auto 1fr auto; }
    .specialties__rail i:last-of-type, .specialties__rail b { display: none; }
    .organ { width: 64px; height: 64px; }
    .organ svg, .organ--critical svg { width: 56px; height: 60px; }
    .statement__medallion { left: 59.5%; width: 96px; height: 96px; padding: 18px; }
    .specialties__columns { grid-template-columns: 1fr; gap: 2rem; }
    .specialties__columns article { padding: 0; }
    .specialties__columns article + article { padding: 2rem 0 0; border-top: 1px solid var(--line); border-left: 0; }

    .care-steps { grid-template-columns: 1fr; gap: 1rem; }
    .care-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; }
    .care-steps li:not(:last-child)::after { top: 40px; bottom: -1rem; left: 20px; width: 1px; height: auto; transform: none; }
    .care-steps div { margin-top: 0; }
    .care-steps p { max-width: 36ch; }
    .approach__photo { height: 420px; }
    .approach__photo img { width: min(126%, 450px); }
    .location__details { padding: 2rem var(--gutter) 4rem; }
    .location__facts { grid-template-columns: 48px minmax(0, 1fr); gap: 1.25rem 1rem; padding-left: .9rem; }
    .location__fact-icon { width: 42px; height: 42px; }
    .schedule { gap: .65rem; font-size: 1rem; }
    .schedule div { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: .35rem; }
    .location address { font-size: 1rem; }
    .location__visual { min-height: 380px; border-radius: 72px 0 0; }
    .location__visual::before { top: -22%; right: -46%; width: 104%; }
    .location__halo { right: -35%; bottom: -46%; width: 112%; opacity: .28; }
    .location__accent { width: 72%; transform: translate(-50%, 62px); }
    .location__lockup { width: min(76%, 330px); }
    .location .button { width: 100%; }

    .final-cta__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .final-cta p { grid-row: auto; }
    .final-cta .button { grid-column: auto; grid-row: auto; width: 100%; }

    .site-footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .site-footer nav { grid-column: 1; grid-row: auto; flex-wrap: wrap; gap: .75rem 1.5rem; }
    .site-footer__inner > p { grid-column: 1; grid-row: auto; }
    .site-footer__legal { flex-direction: column; align-items: flex-start; padding-block: 1.25rem; }
  }

  @media (max-width: 380px) {
    .brand__logo { width: 205px; }
    .hero__portrait { min-height: 510px; }
    .hero__doctor { top: 0; width: min(100%, 380px); }
  }

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

  @media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
    .hero__green-orbit { animation: brand-orbit-drift 12s var(--ease-in-out) infinite alternate; }
    .location__halo { animation: location-halo-drift 14s var(--ease-in-out) infinite alternate; }
  }

  @keyframes brand-orbit-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-10px, -8px, 0) scale(1.025); }
  }

  @keyframes location-halo-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-8px, -6px, 0) scale(1.018); }
  }
}
