/* ---------- Tokens ---------- */
  :root {
    --navy-950: #050f2c;
    --navy-900: #0a1f4d;
    --navy-800: #112a63;
    --navy-700: #1a3a85;
    --navy-600: #2452b0;
    --blue-500: #3b6cd6;
    --blue-400: #6a8fe0;
    --mist-50:  #f7f9fc;
    --mist-100: #eef2f9;
    --mist-200: #dde5f2;
    --ink-900:  #0c1830;
    --ink-700:  #2a3756;
    --ink-500:  #5b6580;
    --ink-300:  #8a92a8;
    --white:    #ffffff;
    --shadow-sm: 0 1px 2px rgba(10,31,77,.04), 0 2px 8px rgba(10,31,77,.04);
    --shadow-md: 0 10px 30px -10px rgba(10,31,77,.18), 0 4px 12px rgba(10,31,77,.06);
    --shadow-lg: 0 30px 60px -20px rgba(10,31,77,.25), 0 10px 24px rgba(10,31,77,.10);
    --shadow-xl: 0 50px 100px -30px rgba(10,31,77,.40), 0 20px 50px rgba(10,31,77,.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
    --container: 1240px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
  }

  /* ---------- Reset ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }
  ::selection { background: var(--navy-900); color: var(--white); }

  /* ---------- Layout ---------- */
  .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
  section { position: relative; }

  /* ---------- Typography ---------- */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy-600);
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55;
  }
  h1, h2, h3, h4 { font-family: 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.08; margin: 0; color: var(--ink-900); }
  h1 { font-size: clamp(2.5rem, 5.4vw, 4.5rem); font-weight: 700; }
  h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); font-weight: 600; letter-spacing: -.025em; }
  h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); font-weight: 600; }
  p  { margin: 0; color: var(--ink-700); }
  .lead { font-size: clamp(1.05rem, 1.2vw, 1.18rem); color: var(--ink-700); max-width: 58ch; }
  .accent-serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

  /* ---------- Buttons ---------- */
  .btn {
    --bg: var(--navy-900);
    --fg: var(--white);
    --ring: rgba(10, 31, 77, .15);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.6rem;
    background: var(--bg);
    color: var(--fg);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: -0.005em;
    border-radius: 999px;
    transition: transform .5s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo), background .3s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 20px -8px var(--ring);
    overflow: hidden;
    isolation: isolate;
  }
  .btn::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,.25), transparent 50%);
    opacity: 0;
    transition: opacity .5s var(--ease-out-expo);
    z-index: -1;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(10,31,77,.45); }
  .btn:hover::before { opacity: 1; }
  .btn .arrow { transition: transform .5s var(--ease-out-expo); }
  .btn:hover .arrow { transform: translateX(4px); }

  .btn--ghost { --bg: rgba(255,255,255,.10); --fg: var(--white); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.20); }
  .btn--ghost:hover { background: rgba(255,255,255,.18); }
  .btn--light { --bg: var(--white); --fg: var(--navy-900); }
  .btn--outline { --bg: transparent; --fg: var(--navy-900); border: 1px solid var(--navy-900); box-shadow: none; }
  .btn--outline:hover { background: var(--navy-900); color: var(--white); }

  /* ---------- Nav ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: padding .4s var(--ease-out-expo), background .4s ease, box-shadow .4s ease;
  }
  .nav.is-stuck {
    padding: .65rem 0;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    box-shadow: 0 1px 0 rgba(10,31,77,.06);
  }
  .nav__inner {
    display: flex; align-items: center; gap: 2rem;
    justify-content: space-between;
  }
  .logo {
    position: relative;
    display: inline-block;
    height: 112px;
    aspect-ratio: 320 / 400;
    transition: height .4s var(--ease-out-expo);
  }
  .nav.is-stuck .logo { height: 95px; }
  .logo__img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: opacity .45s var(--ease-out-expo);
  }
  .logo__img--white { opacity: 1; }
  .logo__img--navy  { opacity: 0; }
  .nav.is-stuck .logo__img--white { opacity: 0; }
  .nav.is-stuck .logo__img--navy  { opacity: 1; }
  .footer__brand .logo { height: 124px; }
  .footer__brand .logo__img--navy { display: none; }

  .nav__links { display: flex; gap: 2rem; align-items: center; }
  .nav__links a {
    position: relative;
    font-size: .9rem; font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color .3s ease;
  }
  .nav.is-stuck .nav__links a { color: var(--ink-700); }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    height: 1px; width: 100%; background: currentColor;
    transform: scaleX(0); transform-origin: right;
    transition: transform .5s var(--ease-out-expo);
  }
  .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav__cta { display: flex; align-items: center; gap: .75rem; }

  /* Dropdown */
  .nav__item { position: relative; }
  .nav__item > a { display: inline-flex; align-items: center; gap: .35rem; }
  .nav__item .caret { width: 11px; height: 11px; transition: transform .4s var(--ease-out-expo); opacity: .7; }
  .nav__item:hover .caret,
  .nav__item:focus-within .caret { transform: rotate(180deg); opacity: 1; }
  .nav__item:hover > a::after,
  .nav__item:focus-within > a::after { transform: scaleX(1); transform-origin: left; }

  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    margin-top: .75rem;
    padding: .55rem;
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border: 1px solid var(--mist-100);
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(10,31,77,.30), 0 8px 24px -6px rgba(10,31,77,.10);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease-out-expo), transform .35s var(--ease-out-expo);
    z-index: 10;
  }
  /* Hover-bridge so the cursor doesn't dead-zone between link and panel */
  .nav__dropdown::before {
    content: ""; position: absolute;
    top: -.85rem; left: 0; right: 0; height: .85rem;
  }
  .nav__item:hover .nav__dropdown,
  .nav__item:focus-within .nav__dropdown {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav__links .nav__dropdown a {
    display: flex; align-items: center; gap: .8rem;
    padding: .75rem .85rem;
    font-size: .92rem; font-weight: 500;
    color: var(--ink-700);
    border-radius: 12px;
    white-space: nowrap;
    transition: background .3s ease, color .3s ease, transform .4s var(--ease-out-expo);
  }
  .nav__links .nav__dropdown a::after { display: none; }
  .nav__links .nav__dropdown a:hover {
    background: var(--mist-50);
    color: var(--navy-900);
    transform: translateX(2px);
  }
  .nav__dropdown a .dd-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--blue-500), var(--navy-900));
    color: var(--white);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .nav__dropdown a .dd-icon svg { width: 16px; height: 16px; }
  .nav__dropdown a .dd-text { display: flex; flex-direction: column; gap: 2px; }
  .nav__dropdown a .dd-sub { font-size: .76rem; font-weight: 400; color: var(--ink-500); letter-spacing: 0; }

  /* ---------- Nested sub-dropdown (e.g. Suboxone) ----------
     Visually merges with the parent .nav__dropdown — no gap, shared
     background, single 1px divider line between left and right columns. */
  .nav__subitem > a { padding-right: 1.6rem !important; position: relative; }
  .nav__subitem > a .sub-caret {
    position: absolute;
    right: .65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px;
    color: var(--ink-500);
    transition: transform .35s var(--ease-out-expo), color .25s ease;
  }
  .nav__subitem:hover > a .sub-caret { color: var(--navy-900); transform: translateY(-50%) translateX(2px); }

  .nav__subdropdown {
    position: absolute;
    /* Stretch to match the parent panel's height — top + bottom anchored, no fixed height */
    top: -1px;
    bottom: -1px;
    left: 100%;
    min-width: 280px;
    padding: .55rem;
    /* Stack items at the top using the parent's natural spacing — empty space at the bottom is fine */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Match the parent panel's background + blur exactly so they read as one surface */
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border: 1px solid var(--mist-100);
    border-left: 0;
    /* Rounded only on the right side — left side is flush with main panel */
    border-radius: 0 18px 18px 0;
    /* Continue the parent panel's shadow on the outside edges only */
    box-shadow: 18px 24px 50px -20px rgba(10,31,77,.28), 6px 8px 20px -6px rgba(10,31,77,.10);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-out-expo);
    z-index: 9;
  }
  /* Hover-bridge invisible strip covering the seam */
  .nav__subdropdown::before {
    content: ""; position: absolute;
    top: 0; bottom: 0;
    left: -8px; width: 8px;
  }
  .nav__subitem:hover > .nav__subdropdown,
  .nav__subitem:focus-within > .nav__subdropdown {
    opacity: 1;
    pointer-events: auto;
  }
  /* When the sub-panel is open, flatten the parent panel's right corners AND
     hide its right border so the two panels read as one continuous surface */
  .nav__dropdown:has(.nav__subitem:hover) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-color: transparent;
  }

  /* Match the left column's item styling exactly so both columns read identically */
  .nav__links .nav__subdropdown a {
    display: flex; align-items: center; gap: .8rem;
    padding: .75rem .85rem;
    font-size: .92rem; font-weight: 500;
    border-radius: 12px;
    color: var(--ink-700);
    transition: background .25s ease, color .25s ease, transform .35s var(--ease-out-expo);
    white-space: nowrap;
  }
  .nav__links .nav__subdropdown a:hover {
    background: var(--mist-50);
    color: var(--navy-900);
    transform: translateX(2px);
  }
  .nav__subdropdown a .dd-icon { width: 36px; height: 36px; border-radius: 10px; }
  .nav__subdropdown a .dd-icon svg { width: 16px; height: 16px; }

  /* Mega menu (2-column dropdown) */
  .nav__dropdown--mega {
    min-width: 700px;
    max-width: calc(100vw - 2rem);
    padding: 1.25rem;
    left: 0;
    transform: translateX(0) translateY(-6px);
  }
  .nav__item:hover .nav__dropdown--mega,
  .nav__item:focus-within .nav__dropdown--mega {
    transform: translateX(0) translateY(0);
  }
  .nav__dropdown--mega .mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 720px) {
    .nav__dropdown--mega { min-width: 320px; }
    .nav__dropdown--mega .mega-grid { grid-template-columns: 1fr; gap: 1rem; }
  }
  .mega-col h5 {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-500);
    padding: .35rem .85rem .55rem;
    margin: 0 0 .25rem;
    border-bottom: 1px solid var(--mist-100);
  }
  .nav__dropdown--mega a { padding: .6rem .75rem; }
  .nav__dropdown--mega .dd-icon { width: 32px; height: 32px; border-radius: 8px; }
  .nav__dropdown--mega .dd-icon svg { width: 15px; height: 15px; }
  .nav__dropdown--mega .dd-text { font-size: .88rem; }
  .nav__dropdown--mega .dd-sub { font-size: .72rem; }

  .nav__toggle {
    display: none;
    position: relative;
    z-index: 102;
  }
  @media (max-width: 980px) {
    .nav__toggle {
      display: inline-grid; place-items: center;
      width: 44px; height: 44px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      color: var(--white);
      border: 1px solid rgba(255,255,255,.20);
      transition: background .3s, color .3s, border-color .3s;
    }
    .nav.is-stuck .nav__toggle,
    .nav.is-open .nav__toggle {
      color: var(--navy-900);
      background: var(--mist-100);
      border-color: transparent;
    }

    /* Mobile menu panel — explicit viewport dimensions so backdrop-filter on .nav doesn't constrain us */
    .nav__links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      max-width: 100vw;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 6rem 1.75rem 3rem;
      background: rgba(255,255,255,.98);
      backdrop-filter: saturate(140%) blur(18px);
      -webkit-backdrop-filter: saturate(140%) blur(18px);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform .5s var(--ease-out-expo), opacity .35s ease;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      z-index: 99;
    }
    .nav.is-open .nav__links {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    /* Direct anchor links in the mobile panel */
    .nav__links > a {
      display: block;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--ink-900) !important;
      padding: .9rem 0;
      border-bottom: 1px solid var(--mist-100);
    }
    .nav__links > a::after { display: none; }

    /* Dropdown trigger row */
    .nav__item {
      border-bottom: 1px solid var(--mist-100);
    }
    .nav__item > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--ink-900) !important;
      padding: .9rem 0;
    }
    .nav__item > a::after { display: none; }
    .nav__item .caret { transform: rotate(0); opacity: 1; }
    .nav__item:hover .caret { transform: rotate(0); }

    /* Accordion dropdowns on mobile: hidden by default, shown when .is-expanded */
    .nav__dropdown,
    .nav__dropdown--mega {
      position: static !important;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      min-width: 0 !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 0 .85rem .25rem !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      display: none;
    }
    .nav__item.is-expanded > .nav__dropdown,
    .nav__item.is-expanded > .nav__dropdown--mega {
      display: block;
    }

    /* Mobile nested sub-dropdown — accordion inside accordion */
    .nav__subdropdown {
      position: static !important;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      min-width: 0 !important;
      margin: 0 !important;
      padding: .25rem 0 .35rem .75rem !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      display: none;
      border-left: 1px solid var(--mist-200);
    }
    .nav__subdropdown::before { display: none !important; }
    .nav__subitem.is-sub-expanded > .nav__subdropdown { display: block; }
    .nav__subitem > a .sub-caret { transition: transform .3s var(--ease-out-expo); }
    .nav__subitem.is-sub-expanded > a .sub-caret { transform: translateY(-50%) rotate(90deg); }
    .nav__dropdown::before { display: none !important; }
    .nav__dropdown--mega .mega-grid {
      grid-template-columns: 1fr;
      gap: .75rem;
    }
    .mega-col h5 {
      padding: 1rem 0 .5rem;
      margin: 0;
      border-bottom: 0;
      border-top: 1px solid var(--mist-100);
    }
    .mega-col:first-child h5 { border-top: 0; padding-top: .25rem; }
    .nav__links .nav__dropdown a,
    .nav__links .nav__dropdown--mega a {
      padding: .55rem .25rem;
      font-size: .96rem;
    }

    /* Kill all the desktop hover transforms so taps don't shove items around */
    .nav__item:hover .caret,
    .nav__item:focus-within .caret {
      transform: none;
    }
    .nav__item.is-expanded > a .caret {
      transform: rotate(180deg);
    }
    .nav__item > a::after,
    .nav__item:hover > a::after,
    .nav__item:focus-within > a::after,
    .nav__links a::after,
    .nav__links a:hover::after {
      display: none !important;
    }
    .nav__links .nav__dropdown a:hover,
    .nav__links .nav__dropdown--mega a:hover {
      transform: none !important;
      background: var(--mist-50);
    }

    /* Lock page scroll while menu open */
    body.nav-open { overflow: hidden; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 7.5rem;
    color: var(--white);
    overflow: hidden;
    background: var(--navy-950);
    isolation: isolate;
  }
  .hero__media {
    position: absolute; inset: 0;
    z-index: -2;
  }
  .hero__media img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 14s var(--ease-out-soft) forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(5,15,44,.55) 0%, rgba(5,15,44,.45) 40%, rgba(5,15,44,.85) 100%),
      radial-gradient(80% 60% at 20% 30%, rgba(36,82,176,.35), transparent 60%);
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem 6rem;
    min-height: calc(100vh - 7.5rem);
    align-content: end;
  }
  .hero__content { max-width: 720px; }
  .hero__eyebrow { color: rgba(255,255,255,.7); }
  .hero__eyebrow::before { background: rgba(255,255,255,.7); }
  .hero__title {
    font-size: clamp(2.8rem, 6.2vw, 5.4rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.02;
    color: var(--white);
    margin: 1.2rem 0 1.4rem;
  }
  .hero__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; }
  .hero__title .word > span {
    display: inline-block;
    transform: translateY(110%);
    animation: rise .9s var(--ease-out-expo) forwards;
  }
  .hero__title .word:nth-child(1) > span { animation-delay: .15s; }
  .hero__title .word:nth-child(2) > span { animation-delay: .25s; }
  .hero__title .word:nth-child(3) > span { animation-delay: .35s; }
  .hero__title .word:nth-child(4) > span { animation-delay: .45s; }
  .hero__title .word:nth-child(5) > span { animation-delay: .55s; }
  @keyframes rise { to { transform: translateY(0); } }

  .hero__sub {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    color: rgba(255,255,255,.85);
    max-width: 56ch;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .9s var(--ease-out-expo) .8s forwards;
  }
  .hero__sub .accent-serif { color: var(--blue-400); }

  .hero__cta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-top: 2.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .9s var(--ease-out-expo) 1s forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  .hero__rating {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 2.2rem;
    padding: .65rem 1.1rem .65rem .85rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out-expo) 1.2s forwards;
  }
  .hero__rating-score { font-weight: 700; color: var(--white); font-size: 1rem; }
  .hero__rating-stars { color: #ffd166; letter-spacing: .15em; font-size: .95rem; }
  .hero__rating-meta { color: rgba(255,255,255,.7); font-size: .82rem; }

  .hero__scroll {
    position: absolute;
    left: 50%; bottom: 2rem;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .55rem;
    color: rgba(255,255,255,.6);
    font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out-expo) 1.6s forwards;
  }
  .hero__scroll .line {
    width: 1px; height: 50px; background: linear-gradient(transparent, rgba(255,255,255,.7));
    position: relative; overflow: hidden;
  }
  .hero__scroll .line::after {
    content: ""; position: absolute; inset-inline: 0; top: 0;
    height: 30%; background: var(--white);
    animation: scrollDot 2.2s var(--ease-in-out) infinite;
  }
  @keyframes scrollDot { 0% { transform: translateY(-100%); } 100% { transform: translateY(400%); } }

  /* ---------- Contact strip ---------- */
  .strip {
    background: var(--navy-900);
    color: var(--white);
    position: relative;
    margin-top: -1px;
    overflow: hidden;
  }
  .strip::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(80% 100% at 50% 0%, rgba(106,143,224,.22), transparent 60%);
    pointer-events: none;
  }
  .strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-block: 2.2rem;
    align-items: center;
    position: relative;
  }
  .strip__item { display: flex; gap: 1rem; align-items: center; }
  .strip__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .strip__label { font-size: .78rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
  .strip__value { font-size: 1rem; font-weight: 500; color: var(--white); margin-top: .15rem; }
  .strip__grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
  @media (max-width: 1020px) {
    .strip__grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  }
  @media (max-width: 820px) {
    .strip__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .strip__grid--4 { grid-template-columns: 1fr; gap: 1.25rem; }
  }

  /* ---------- About / split ---------- */
  .split { padding-block: clamp(5rem, 10vw, 8rem); }
  .split__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  @media (max-width: 900px) { .split__grid { grid-template-columns: 1fr; } }

  .split__media {
    position: relative;
    aspect-ratio: 5 / 4;
  }
  .split__media .frame {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .split__media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out-expo); }
  .split__media:hover .frame img { transform: scale(1.06); }
  .frame--a { top: 0; left: 0; width: 58%; aspect-ratio: 3/4; }
  .frame--b { bottom: 0; right: 0; width: 64%; aspect-ratio: 4/3; }
  /* Single-photo variant — fills the entire media area */
  .frame--solo { inset: 0; }
  .split__media .ring {
    position: absolute;
    top: 8%; right: 12%;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--blue-500), var(--navy-900));
    color: var(--white);
    display: grid; place-items: center;
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
    text-align: center;
    padding: 1rem;
    line-height: 1.2;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes float { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }

  .split__content h2 { margin-top: 1rem; }
  .split__list {
    list-style: none; padding: 0; margin: 2rem 0;
    display: grid; gap: .85rem;
  }
  .split__list li {
    display: flex; align-items: center; gap: .85rem;
    padding: .85rem 1rem;
    background: var(--mist-50);
    border: 1px solid var(--mist-100);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--ink-900);
    transition: transform .5s var(--ease-out-expo), border-color .3s ease, background .3s ease;
  }
  .split__list li:hover { transform: translateX(6px); border-color: var(--blue-400); background: var(--white); }
  .split__list li a { color: inherit; transition: color .25s ease; flex: 1; }
  .split__list li:hover a { color: var(--navy-900); }
  .split__list .dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(140deg, var(--blue-500), var(--navy-900));
    color: var(--white);
    display: grid; place-items: center;
    flex-shrink: 0;
  }

  /* ---------- Services ---------- */
  .services {
    background: var(--mist-50);
    padding-block: clamp(5rem, 10vw, 8rem);
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: ""; position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(36,82,176,.08), transparent 60%);
    top: -200px; right: -200px;
    pointer-events: none;
  }
  .services__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
  }
  .services__head h2 { margin: 1rem 0; }

  .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    position: relative;
    padding: 2.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-100);
    overflow: hidden;
    transition: transform .7s var(--ease-out-expo), box-shadow .6s ease, border-color .4s ease;
    isolation: isolate;
  }
  .service-card::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
    opacity: 0; transition: opacity .6s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
  }
  .service-card:hover::after { opacity: 1; }
  .service-card:hover h3,
  .service-card:hover p { color: var(--white); }
  .service-card:hover .service-card__icon { background: rgba(255,255,255,.15); }
  .service-card:hover .service-card__icon svg { color: var(--white); }
  .service-card:hover .service-card__cta { background: var(--white); color: var(--navy-900); }

  .service-card__icon {
    width: 60px; height: 60px;
    background: var(--mist-100);
    border-radius: 18px;
    display: grid; place-items: center;
    transition: background .4s ease;
    margin-bottom: 1.5rem;
  }
  .service-card__icon svg { color: var(--navy-900); transition: color .4s ease; }
  .service-card h3 { margin-bottom: .85rem; }
  .service-card p { font-size: .98rem; line-height: 1.65; }
  .service-card__cta {
    display: inline-flex; align-items: center; gap: .5rem;
    margin-top: 1.5rem;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    background: var(--mist-100);
    color: var(--navy-900);
    font-size: .85rem; font-weight: 600;
    transition: background .4s ease, color .4s ease, transform .4s var(--ease-out-expo);
  }
  .service-card__cta:hover { transform: translateX(4px); }

  /* ---------- Stats ---------- */
  .stats {
    background: var(--navy-900);
    color: var(--white);
    padding-block: clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(60% 80% at 0% 50%, rgba(36,82,176,.4), transparent 60%),
      radial-gradient(60% 80% at 100% 50%, rgba(36,82,176,.2), transparent 60%);
    pointer-events: none;
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
  }
  @media (max-width: 760px) { .stats__grid { grid-template-columns: 1fr; gap: 2rem; } }
  .stat {
    text-align: center;
    padding-block: 1rem;
    border-left: 1px solid rgba(255,255,255,.1);
  }
  .stat:first-child { border-left: 0; }
  @media (max-width: 760px) {
    .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; }
    .stat:first-child { border-top: 0; padding-top: 0; }
  }
  .stat__num {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #b0c4ec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat__num .plus { color: var(--blue-400); -webkit-text-fill-color: var(--blue-400); }
  .stat__label {
    margin-top: .8rem;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    font-weight: 500;
  }

  /* ---------- Why us ---------- */
  .why { padding-block: clamp(5rem, 10vw, 8rem); }
  .why__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  @media (max-width: 900px) { .why__grid { grid-template-columns: 1fr; } }
  .why__list {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--mist-200);
    border-bottom: 1px solid var(--mist-200);
    display: grid;
    gap: 1rem;
  }
  .why__list li {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--ink-700);
  }
  .why__list li strong { color: var(--ink-900); }
  .why__list .check {
    color: var(--navy-900);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .why__media {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  .why__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-out-expo); }
  .why__media:hover img { transform: scale(1.05); }
  .why__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(170deg, transparent 50%, rgba(5,15,44,.6));
  }
  .why__media-caption {
    position: absolute;
    left: 1.5rem; bottom: 1.5rem;
    color: var(--white);
    z-index: 2;
  }
  .why__media-caption strong { display: block; font-size: 1.1rem; font-weight: 600; }
  .why__media-caption span { font-size: .85rem; opacity: .85; }

  /* ---------- Testimonials ---------- */
  .testi {
    background: var(--mist-50);
    padding-block: clamp(5rem, 10vw, 8rem);
    position: relative;
    overflow: hidden;
  }
  .testi__head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
  }
  .testi__head h2 { max-width: 18ch; }
  .testi__nav { display: flex; gap: .75rem; }
  .testi__btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--mist-200);
    color: var(--navy-900);
    display: grid; place-items: center;
    transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s var(--ease-out-expo);
  }
  .testi__btn:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); transform: translateY(-2px); }
  .testi__btn:disabled { opacity: .35; cursor: not-allowed; }

  .testi__viewport { overflow: hidden; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .testi__track {
    display: flex;
    gap: 1.5rem;
    transition: transform .9s var(--ease-out-expo);
    will-change: transform;
  }
  .testi-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-100);
    display: flex; flex-direction: column;
    transition: transform .5s var(--ease-out-expo), box-shadow .5s ease;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  @media (max-width: 900px) { .testi-card { flex-basis: calc((100% - 1.5rem) / 2); } }
  @media (max-width: 640px) { .testi-card { flex-basis: 100%; } }

  .testi-card__stars { color: #ffb84d; letter-spacing: .1em; font-size: .9rem; margin-bottom: 1.25rem; }
  .testi-card__quote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-700);
    margin-bottom: 2rem;
    flex: 1;
  }
  .testi-card__quote::before { content: "“"; font-family: 'Fraunces', serif; font-size: 3rem; line-height: 0; vertical-align: -1rem; color: var(--blue-500); margin-right: .25rem; }
  .testi-card__author { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
  .testi-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--blue-500), var(--navy-900));
    color: var(--white);
    display: grid; place-items: center;
    font-weight: 600; font-size: .95rem;
  }
  .testi-card__name { font-weight: 600; color: var(--ink-900); font-size: .95rem; }
  .testi-card__role { font-size: .82rem; color: var(--ink-500); }

  .testi__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
  .testi__dots button {
    width: 32px; height: 4px; border-radius: 2px;
    background: var(--mist-200);
    transition: background .3s ease, width .5s var(--ease-out-expo);
  }
  .testi__dots button.is-active { background: var(--navy-900); width: 48px; }

  /* ---------- Specialties strip (under Book Appointment) ---------- */
  .hero__specialties {
    margin-top: 1.25rem;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .04em;
    line-height: 1.6;
  }
  .hero__specialties strong {
    color: var(--white);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .7rem;
    display: block;
    margin-bottom: .4rem;
  }
  .hero__specialties a {
    color: rgba(255,255,255,.85);
    border-bottom: 1px dotted rgba(255,255,255,.4);
    transition: color .25s ease, border-color .25s ease;
  }
  .hero__specialties a:hover { color: var(--white); border-bottom-color: var(--white); }

  /* ---------- Insurances section ---------- */
  .insurances {
    padding-block: clamp(4rem, 8vw, 6rem);
    background: var(--mist-50);
    position: relative;
    overflow: hidden;
  }
  .insurances::before {
    content: ""; position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(36,82,176,.06), transparent 60%);
    top: -200px; right: -200px;
    pointer-events: none;
  }
  .insurances__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; position: relative; }
  .insurances__head h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-top: 1rem;
    letter-spacing: -.025em;
    line-height: 1.1;
  }
  .insurances__head h2 .accent-serif { color: var(--blue-500); }
  .insurances__head p { margin-top: 1rem; color: var(--ink-700); line-height: 1.7; }
  .insurances__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .85rem;
    position: relative;
    max-width: 920px;
    margin: 0 auto;
  }
  /* Categorized insurance groups (Commercial / Medicare / Medicaid) */
  .insurances__group { max-width: 920px; margin: 0 auto 2.5rem; position: relative; }
  .insurances__group:last-of-type { margin-bottom: 0; }
  .insurances__group-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue-500);
    text-align: center;
    margin-bottom: 1.1rem;
  }
  .insurance-pill {
    background: var(--white);
    border: 1px solid var(--mist-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink-900);
    transition: border-color .3s ease, transform .4s var(--ease-out-expo);
  }
  .insurance-pill:hover { border-color: var(--blue-400); transform: translateY(-2px); }
  .insurances__note {
    text-align: center;
    margin-top: 2rem;
    font-size: .9rem;
    color: var(--ink-700);
    position: relative;
  }
  .insurances__note strong { color: var(--ink-900); font-weight: 600; }

  /* ---------- Final CTA ---------- */
  .cta {
    background: var(--navy-900);
    color: var(--white);
    padding-block: clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(50% 80% at 80% 50%, rgba(106,143,224,.25), transparent 60%),
      radial-gradient(40% 70% at 20% 30%, rgba(36,82,176,.3), transparent 60%);
    pointer-events: none;
  }
  .cta__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    position: relative;
  }
  .cta__inner h2 { color: var(--white); max-width: 22ch; }
  .cta__inner p { color: rgba(255,255,255,.75); margin-top: .85rem; max-width: 44ch; }

  /* ---------- Map section (shared, above footer) ---------- */
  .map-section {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: var(--mist-50);
    position: relative;
  }
  .map-section__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
  }
  .map-section__head h2 { margin-top: 1rem; letter-spacing: -.025em; }
  .map-section__head h2 .accent-serif { color: var(--blue-500); }
  .map-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: clamp(360px, 50vw, 520px);
    background: var(--mist-100);
  }
  .map-wrap iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: saturate(1.08) contrast(.98);
  }
  .map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    padding: 1.35rem 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -20px rgba(10,31,77,.30), 0 6px 18px rgba(10,31,77,.08);
    max-width: 320px;
  }
  @media (max-width: 540px) {
    .map-overlay { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  }
  .map-overlay__title {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: .3rem;
  }
  .map-overlay__title svg { width: 18px; height: 18px; color: var(--blue-500); }
  .map-overlay__addr { font-size: .9rem; color: var(--ink-500); }
  .map-overlay__cta {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1rem;
    padding: .55rem .9rem;
    background: var(--navy-900);
    color: var(--white);
    font-size: .82rem; font-weight: 600;
    border-radius: 999px;
    transition: background .3s ease, transform .4s var(--ease-out-expo);
  }
  .map-overlay__cta:hover { background: var(--navy-700); transform: translateX(2px); }

  /* ---------- Footer ---------- */
  footer {
    background: var(--navy-950);
    color: rgba(255,255,255,.7);
    padding-block: 4rem 2rem;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  @media (max-width: 1100px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px)  { .footer__grid { grid-template-columns: 1fr; } }
  .footer__brand .logo { color: var(--white); margin-bottom: 1.5rem; }
  .footer__brand p { color: rgba(255,255,255,.6); max-width: 38ch; font-size: .95rem; }
  .footer__col h4 { font-size: .85rem; color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; }
  .footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
  .footer__col li { font-size: .95rem; color: rgba(255,255,255,.7); }
  .footer__col a { transition: color .3s ease; }
  .footer__col a:hover { color: var(--white); }
  .footer__areas {
    padding-block: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer__areas h4 {
    font-size: .85rem; color: var(--white); margin-bottom: .85rem;
    text-transform: uppercase; letter-spacing: .15em; font-weight: 600;
  }
  .footer__areas p {
    font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.85;
    max-width: 880px;
  }
  .footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
    font-size: .82rem; color: rgba(255,255,255,.5);
    flex-wrap: wrap; gap: 1rem;
  }
  .socials { display: flex; gap: .65rem; }
  .socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
    transition: background .3s ease, transform .4s var(--ease-out-expo);
    color: rgba(255,255,255,.75);
  }
  .socials a:hover { background: var(--blue-500); color: var(--white); transform: translateY(-2px); }

  /* ---------- Reveal animations ---------- */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal--delay-1 { transition-delay: .1s; }
  .reveal--delay-2 { transition-delay: .2s; }
  .reveal--delay-3 { transition-delay: .3s; }
  .reveal--delay-4 { transition-delay: .4s; }
  .reveal--right { transform: translateX(40px); }
  .reveal--right.is-visible { transform: translateX(0); }
  .reveal--left { transform: translateX(-40px); }
  .reveal--left.is-visible { transform: translateX(0); }
  .reveal--scale { transform: scale(.95) translateY(20px); }
  .reveal--scale.is-visible { transform: scale(1) translateY(0); }

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

  /* ---------- Global fix: white icons centered inside gradient strip containers ---------- */
  /* Quick-fact / strip / stat icon containers (any *quick__icon, *strip__icon, *stat__icon) */
  [class*="quick__icon"],
  [class*="strip__icon"],
  [class*="stat__icon"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
  }
  /* SVG inside: forced white, consistently sized, centered as a block */
  [class*="quick__icon"] > svg,
  [class*="strip__icon"] > svg,
  [class*="stat__icon"] > svg {
    color: var(--white) !important;
    stroke: var(--white) !important;
    fill: none;
    display: block !important;
    width: 55% !important;
    height: 55% !important;
    margin: 0 !important;
    flex-shrink: 0;
  }

  /* SVG icons */
  .icon-sm { width: 18px; height: 18px; }
  .icon { width: 22px; height: 22px; }
  .icon-md { width: 28px; height: 28px; }
