  /* ==========================================================================
   Safe Harbor — shared design system
   Brands: [data-brand="mt"] Medical Transport · [data-brand="hh"] Home Health
   Palette taken from the logos: deep navy, royal blue, magenta. No gradients.
   ========================================================================== */

  /* ---------- Fonts (self-hosted) -------------------------------------------
   PP Neue Montreal — interface, UI and body.  Weight map:
     300 Light · 400 Text Book (reading) · 500 Regular (UI) · 600 Semibold
   PP Right Serif — occasional large headlines and display numerals only.
   NOTE: shipped here as the Free-for-Personal-Use cut. A commercial licence
   from Pangram Pangram is required before this goes live. See
   assets/fonts/PangramPangram-EULA-FreeForPersonalUse.pdf
   ------------------------------------------------------------------------ */
  @font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontrealText-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Right Serif';
    src: url('../fonts/RightSerif-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Right Serif';
    src: url('../fonts/RightSerif-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Right Serif';
    src: url('../fonts/RightSerif-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  :root {
    /* Brand core */
    --ui: 'Neue Montreal', 'Helvetica Neue', Arial, sans-serif;
    --display: 'Right Serif', Georgia, 'Times New Roman', serif;

    --navy-900: #060d22;
    --navy-800: #0b1638;
    --navy-700: #152451;
    --navy-600: #22346b;

    --blue: #2b5bd7;
    --blue-600: #1e44b0;
    --blue-soft: #e7edfb;

    --pink: #ec1b79;
    --pink-600: #c40f62;
    --pink-400: #ff4da2;
    --pink-soft: #fdecf4;

    --ink: #0b1638;
    --ink-2: #233052;
    --muted: #5c688a;
    --muted-2: #8b95af;

    --white: #fff;
    --paper: #f4f7fd;
    --ice: #e8effa;
    --line: rgba(11, 22, 56, 0.1);
    --line-2: rgba(11, 22, 56, 0.06);
    --line-dark: rgba(255, 255, 255, 0.13);

    /* Per-brand hooks (overridden below) */
    --surface: var(--paper);
    --surface-2: var(--ice);
    --accent: var(--pink);
    --accent-soft: var(--pink-soft);
    --support: var(--blue);
    --support-soft: var(--blue-soft);

    --r-2xl: 34px;
    --r-xl: 24px;
    --r-lg: 18px;
    --r-md: 12px;

    --shadow-1: 0 1px 2px rgba(11, 22, 56, 0.05), 0 12px 28px -16px rgba(11, 22, 56, 0.22);
    --shadow-2: 0 2px 6px rgba(11, 22, 56, 0.04), 0 34px 70px -34px rgba(11, 22, 56, 0.38);
    --shadow-pink: 0 18px 40px -20px rgba(236, 27, 121, 0.55);

    --ease: cubic-bezier(0.22, 0.7, 0.16, 1);
    --ease-out: cubic-bezier(0.32, 0.72, 0, 1);

    --maxw: 1240px;
    --gutter: clamp(20px, 4vw, 48px);
    --section: clamp(76px, 9.5vw, 140px);
  }

  /* Home Health leans warm; Transport stays cool. Same family, different room. */
  [data-brand='hh'] {
    --surface: #fbf6f2;
    --surface-2: #f6eae3;
    --support: var(--pink-600);
    --support-soft: #fbede5;
    --line: rgba(11, 22, 56, 0.09);
  }

  /* ---------- Reset ---------- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
  }
  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
  body {
    background: var(--surface);
    color: var(--ink);
    font-family: var(--ui);
    font-size: 17px;
    line-height: 1.62;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img,
  svg,
  video {
    display: block;
    max-width: 100%;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  button {
    background: none;
    border: 0;
    cursor: pointer;
  }
  ul {
    list-style: none;
  }
  ::selection {
    background: var(--pink);
    color: #fff;
  }
  :focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .skip {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 200;
    background: var(--navy-800);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
  }
  .skip:focus {
    left: 16px;
  }

  /* ---------- Type ---------- */
  h1,
  h2,
  h3,
  h4 {
    font-family: var(--ui);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: balance;
  }
  .h-display,
  .h1,
  .h2,
  .menu__links a,
  .hero__float b,
  .board__stat b,
  .stat b {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.028em;
  }
  .h-display .accent,
  .h1 .accent,
  .h2 .accent {
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.015em;
  }
  .h-display {
    font-size: clamp(38px, 5.1vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .h1 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.03em;
  }
  .h2 {
    font-size: clamp(29px, 3.9vw, 50px);
    letter-spacing: -0.028em;
  }
  .h3 {
    font-size: clamp(21px, 2.2vw, 29px);
    line-height: 1.14;
  }
  .h4 {
    font-size: clamp(18px, 1.6vw, 21px);
    line-height: 1.24;
  }
  .accent {
    color: var(--pink);
  }
  .lede {
    font-size: clamp(16.5px, 1.5vw, 19.5px);
    line-height: 1.62;
    color: var(--muted);
    max-width: 58ch;
    text-wrap: pretty;
  }
  p {
    text-wrap: pretty;
  }
  .muted {
    color: var(--muted);
  }

  .mono {
    font-family: var(--ui);
    font-variant-numeric: tabular-nums;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ui);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-600);
    background: var(--pink-soft);
    border: 1px solid rgba(236, 27, 121, 0.16);
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    flex: none;
  }
  .eyebrow.on-dark {
    color: #fff;
    background: rgba(236, 27, 121, 0.2);
    border-color: rgba(255, 255, 255, 0.16);
  }

  /* ---------- Layout ---------- */
  .wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gutter);
  }
  .section {
    padding-block: var(--section);
    position: relative;
  }
  .section--tight {
    padding-block: clamp(56px, 6.5vw, 92px);
  }
  .band-navy {
    background: var(--navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .band-surface {
    background: var(--surface);
  }
  .band-soft {
    background: var(--surface-2);
  }
  .band-white {
    background: var(--white);
  }
  .band-navy h1,
  .band-navy h2,
  .band-navy h3,
  .band-navy h4 {
    color: #fff;
  }
  .band-navy .lede,
  .band-navy .muted {
    color: rgba(255, 255, 255, 0.66);
  }

  .sec-head {
    max-width: 680px;
    margin-bottom: clamp(40px, 4.6vw, 66px);
  }
  .sec-head--split {
    max-width: none;
    display: grid;
    gap: 26px 60px;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: end;
  }

  /* Lighthouse beam — a solid, low-opacity shard, not a gradient */
  .beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .beam::before,
  .beam::after {
    content: '';
    position: absolute;
    top: -38%;
    left: -6%;
    width: 56%;
    height: 170%;
    background: rgba(255, 255, 255, 0.045);
    transform: rotate(19deg);
    transform-origin: top left;
  }
  .beam::after {
    left: 2%;
    width: 22%;
    background: rgba(43, 91, 215, 0.13);
    transform: rotate(25deg);
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 12px 12px 25px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.005em;
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition:
      background 0.45s var(--ease-out),
      color 0.45s var(--ease-out),
      border-color 0.45s var(--ease-out),
      transform 0.3s var(--ease-out),
      box-shadow 0.45s var(--ease-out);
  }
  .btn:active {
    transform: scale(0.975);
  }
  .btn__ico {
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition:
      transform 0.5s var(--ease-out),
      background 0.45s var(--ease-out);
  }
  .btn__ico svg {
    width: 13px;
    height: 13px;
  }
  .btn:hover .btn__ico {
    transform: translate(3px, -2px);
  }

  .btn--pink {
    background: var(--pink);
    color: #fff;
    box-shadow: var(--shadow-pink);
  }
  .btn--pink .btn__ico {
    background: rgba(255, 255, 255, 0.2);
  }
  .btn--pink:hover {
    background: var(--pink-600);
  }
  .btn--pink:hover .btn__ico {
    background: #fff;
    color: var(--pink);
  }

  .btn--navy {
    background: var(--navy-800);
    color: #fff;
  }
  .btn--navy .btn__ico {
    background: rgba(255, 255, 255, 0.16);
  }
  .btn--navy:hover {
    background: var(--navy-900);
  }
  .btn--navy:hover .btn__ico {
    background: var(--pink);
  }

  .btn--ghost {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--ghost .btn__ico {
    background: var(--surface-2);
  }
  .btn--ghost:hover {
    border-color: var(--ink);
  }

  .btn--light {
    background: #fff;
    color: var(--navy-900);
  }
  .btn--light .btn__ico {
    background: var(--pink-soft);
    color: var(--pink-600);
  }
  .btn--light:hover {
    background: var(--pink);
    color: #fff;
  }
  .btn--light:hover .btn__ico {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  .btn--outline {
    border-color: var(--line-dark);
    color: #fff;
  }
  .btn--outline .btn__ico {
    background: rgba(255, 255, 255, 0.1);
  }
  .btn--outline:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.34);
  }

  .btn--sm {
    padding: 9px 9px 9px 19px;
    font-size: 14px;
  }
  .btn--sm .btn__ico {
    width: 26px;
    height: 26px;
  }

  .tlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pink-600);
    transition: gap 0.4s var(--ease-out);
  }
  .tlink svg {
    width: 14px;
    height: 14px;
  }
  .tlink:hover {
    gap: 13px;
  }
  .band-navy .tlink {
    color: var(--pink-400);
  }

  /* ---------- Photo frame ---------- */
  .ph {
    position: relative;
    overflow: hidden;
    background: var(--surface-2);
    border-radius: var(--r-xl);
  }
  .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ease-out);
  }
  .ph--empty::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 24 24' fill='none' stroke='%23EC1B79' stroke-opacity='.35' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.4 8.6h5.2l1.6 12.2H7.8z'/%3E%3Cpath d='M9.9 4.8h4.2v3.8H9.9zM12 1.6v3.2M6.5 20.8h11'/%3E%3C/svg%3E") center/64px no-repeat;
  }
  .ph--16x9 {
    aspect-ratio: 16/9;
  }
  .ph--4x3 {
    aspect-ratio: 4/3;
  }
  .ph--1x1 {
    aspect-ratio: 1/1;
  }
  .ph--3x4 {
    aspect-ratio: 3/4;
  }
  .ph--tall {
    aspect-ratio: 9/13;
  }

  .ph__tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--ink);
    padding: 8px 15px;
    border-radius: 999px;
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .ph__tag i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    flex: none;
  }

  /* ---------- Nav ---------- */
  .nav-shell {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    padding: 14px var(--gutter) 0;
    pointer-events: none;
  }
  .nav {
    pointer-events: auto;
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: saturate(1.7) blur(22px);
    backdrop-filter: saturate(1.7) blur(22px);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 8px 8px 8px 18px;
    box-shadow: var(--shadow-1);
    transition:
      background 0.5s var(--ease-out),
      box-shadow 0.5s var(--ease-out);
  }
  .nav-shell.is-stuck .nav {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-2);
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: none;
  }
  .brand__mark {
    width: 36px;
    height: 36px;
    flex: none;
    background-color: var(--ink);
    border-radius: 5px;
  }
  .brand__name {
    font-family: var(--ui);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
  }
  .brand__sub {
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-2);
    display: block;
    margin-top: 4px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
  }
  .nav__links a {
    font-size: 15px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--ink-2);
    transition:
      color 0.35s var(--ease-out),
      background 0.35s var(--ease-out);
  }
  .nav__links a:hover {
    background: var(--surface-2);
  }
  .nav__links a[aria-current='page'] {
    color: var(--pink-600);
    background: var(--pink-soft);
  }

  .nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
  }
  .sibling {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    transition:
      color 0.4s var(--ease-out),
      border-color 0.4s var(--ease-out),
      background 0.4s var(--ease-out);
  }
  .sibling svg.sib {
    width: 15px;
    height: 15px;
    color: var(--pink);
    flex: none;
  }
  .sibling:hover {
    color: var(--ink);
    border-color: var(--ink);
    background: var(--white);
  }
  .sibling svg {
    width: 10px;
    height: 10px;
  }

  .nav__tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ui);
    font-size: 12.5px;
    font-weight: 500;
    padding-right: 2px;
  }
  .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    flex: none;
    box-shadow: 0 0 0 0 rgba(236, 27, 121, 0.75);
    animation: pulse 2.4s var(--ease) infinite;
  }
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(236, 27, 121, 0.7);
    }
    70% {
      box-shadow: 0 0 0 9px rgba(236, 27, 121, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(236, 27, 121, 0);
    }
  }

  .burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-800);
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .burger span {
    display: block;
    width: 16px;
    height: 1.6px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.55s var(--ease-out);
  }
  .burger span + span {
    margin-top: 4.4px;
  }
  body.menu-open .burger span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  body.menu-open .burger span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .menu {
    position: fixed;
    inset: 0;
    z-index: 85;
    background: var(--navy-900);
    padding: 110px var(--gutter) 32px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.5s var(--ease-out),
      transform 0.5s var(--ease-out),
      visibility 0.5s;
  }
  body.menu-open .menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .menu__links {
    display: flex;
    flex-direction: column;
  }
  .menu__links a {
    font-family: var(--ui);
    font-size: clamp(31px, 8.6vw, 46px);
    font-weight: 600;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s var(--ease-out),
      transform 0.55s var(--ease-out);
  }
  body.menu-open .menu__links a {
    opacity: 1;
    transform: none;
  }
  body.menu-open .menu__links a:nth-child(1) {
    transition-delay: 0.08s;
  }
  body.menu-open .menu__links a:nth-child(2) {
    transition-delay: 0.14s;
  }
  body.menu-open .menu__links a:nth-child(3) {
    transition-delay: 0.2s;
  }
  body.menu-open .menu__links a:nth-child(4) {
    transition-delay: 0.26s;
  }
  .menu__foot {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out) 0.32s;
  }
  body.menu-open .menu__foot {
    opacity: 1;
  }
  .menu__foot a {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
  }
  .menu .sibling {
    color: rgba(255, 255, 255, 0.75);
    border-color: var(--line-dark);
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background: var(--navy-900);
    color: #fff;
    overflow: visible;
    padding-top: clamp(120px, 13vw, 168px);
  }
  .hero > .beam {
    overflow: hidden;
  }
  .hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(34px, 4vw, 60px);
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: center;
  }
  .hero h1 {
    color: #fff;
    margin-bottom: 22px;
  }
  .hero .lede {
    color: rgba(255, 255, 255, 0.72);
  }
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 32px;
  }
  .hero__pad {
    padding-bottom: clamp(60px, 7vw, 104px);
  }
  .hero__media {
    position: relative;
  }
  .hero__media .ph {
    border-radius: var(--r-2xl);
    background: rgba(255, 255, 255, 0.06);
  }
  .hero__float {
    position: absolute;
    left: -26px;
    bottom: -42px;
    z-index: 3;
    background: #fff;
    color: var(--ink);
    border-radius: var(--r-xl);
    padding: 20px 26px;
    box-shadow: var(--shadow-2);
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .hero__float b {
    font-family: var(--ui);
    font-size: 30px;
    font-weight: 600;
    display: block;
    line-height: 1;
  }
  .hero__float div > span {
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .hero__float i {
    width: 1px;
    height: 42px;
    background: var(--line);
    display: block;
  }

  .hero__trust {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    padding: 22px 0 0;
    margin-top: 34px;
    border-top: 1px solid var(--line-dark);
  }
  .hero__trust div {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .hero__trust svg {
    width: 16px;
    height: 16px;
    color: var(--pink-400);
    flex: none;
  }
  .hero__trust div > span {
    font-family: var(--ui);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
  }

  /* ---------- Dispatch board ---------- */
  .board {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-2xl);
    padding: 7px;
  }
  .board__core {
    background: var(--navy-800);
    border-radius: calc(var(--r-2xl) - 7px);
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .board__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-dark);
  }
  .board__top .mono {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
  }
  .board__clock {
    font-family: var(--ui);
    font-feature-settings: 'tnum' 1;
    font-size: 12px;
    color: var(--pink-400);
    font-variant-numeric: tabular-nums;
  }
  .unit {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 5px 13px;
    align-items: center;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .unit__no {
    font-family: var(--ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--pink-400);
    border: 1px solid rgba(255, 77, 162, 0.35);
    border-radius: 6px;
    padding: 3px 8px;
  }
  .unit__type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
  }
  .unit__eta {
    font-family: var(--ui);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
  .unit__bar {
    grid-column: 1/-1;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 2px;
  }
  .unit__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--pink);
    border-radius: 2px;
    transition: width 1s var(--ease-out);
  }
  .board__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
  }
  .board__stat b {
    font-family: var(--ui);
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
    display: block;
    color: #fff;
  }
  .board__stat > span {
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }

  /* ---------- Marquee ---------- */
  .strip {
    background: var(--pink);
    color: #fff;
    overflow: hidden;
    padding: 14px 0;
  }
  .strip__track {
    display: flex;
    width: max-content;
    animation: slide 40s linear infinite;
  }
  .strip:hover .strip__track {
    animation-play-state: paused;
  }
  .strip__group {
    display: flex;
    align-items: center;
    flex: none;
  }
  .strip__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.94);
  }
  .strip__item i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.7;
    flex: none;
  }
  @keyframes slide {
    to {
      transform: translateX(-50%);
    }
  }

  /* ---------- Grid / cards ---------- */
  .grid {
    display: grid;
    gap: 16px;
  }
  .g-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .g-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .bento {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
  }
  .c3 {
    grid-column: span 3;
  }
  .c4 {
    grid-column: span 4;
  }
  .c5 {
    grid-column: span 5;
  }
  .c6 {
    grid-column: span 6;
  }
  .c7 {
    grid-column: span 7;
  }
  .c8 {
    grid-column: span 8;
  }
  .c12 {
    grid-column: span 12;
  }

  .card {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition:
      transform 0.6s var(--ease-out),
      box-shadow 0.6s var(--ease-out),
      border-color 0.6s var(--ease-out);
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
    border-color: var(--line);
  }
  .card h3 {
    margin-bottom: 9px;
  }
  .card p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.58;
  }
  .card__foot {
    margin-top: auto;
    padding-top: 20px;
  }
  .card__n {
    font-family: var(--display);
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    color: var(--pink);
    letter-spacing: -0.03em;
    display: block;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    transition: color 0.5s var(--ease-out);
  }
  .card--navy .card__n {
    color: var(--pink-400);
    border-color: var(--line-dark);
  }
  .card--soft .card__n {
    border-color: rgba(11, 22, 56, 0.12);
  }
  .card__ico {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--pink-soft);
    color: var(--pink-600);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    flex: none;
    transition:
      background 0.5s var(--ease-out),
      color 0.5s var(--ease-out);
  }
  .card__ico svg {
    width: 21px;
    height: 21px;
  }
  .card:hover .card__ico {
    background: var(--pink);
    color: #fff;
  }
  .card--navy {
    background: var(--navy-900);
    border-color: transparent;
    color: #fff;
  }
  .card--navy h3 {
    color: #fff;
  }
  .card--navy p {
    color: rgba(255, 255, 255, 0.68);
  }
  .card--navy .card__ico {
    background: rgba(236, 27, 121, 0.22);
    color: var(--pink-400);
  }
  .card--navy:hover .card__ico {
    background: var(--pink);
    color: #fff;
  }
  .card--soft {
    background: var(--surface-2);
    border-color: transparent;
  }

  /* Photo card — image on top, content beneath, corner action */
  .pcard {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
      transform 0.6s var(--ease-out),
      box-shadow 0.6s var(--ease-out);
  }
  .pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
  }
  .pcard:hover .ph img {
    transform: scale(1.05);
  }
  .pcard .ph {
    border-radius: 0;
  }
  .pcard__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .pcard__body h3 {
    margin-bottom: 8px;
  }
  .pcard__body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.56;
  }
  .pcard__arrow {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    transition:
      background 0.45s var(--ease-out),
      color 0.45s var(--ease-out),
      transform 0.45s var(--ease-out);
  }
  .pcard__arrow svg {
    width: 14px;
    height: 14px;
  }
  .pcard:hover .pcard__arrow {
    background: var(--pink);
    color: #fff;
    transform: translate(2px, -2px);
  }

  /* ---------- Split ---------- */
  .split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 4.5vw, 74px);
    align-items: center;
  }
  .split--top {
    align-items: start;
  }
  .split--rev .split__media {
    order: -1;
  }

  .stack {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stack .ph:first-child {
    grid-column: span 2;
  }

  .checks {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }
  .checks li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: var(--ink-2);
  }
  .checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 16px;
    height: 1.5px;
    background: var(--pink);
    border-radius: 2px;
  }
  .band-navy .checks li {
    color: rgba(255, 255, 255, 0.84);
  }

  /* ---------- Steps ---------- */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition:
      transform 0.6s var(--ease-out),
      box-shadow 0.6s var(--ease-out);
  }
  .step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
  }
  .step__body {
    padding: 24px;
  }
  .step__n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .step h4 {
    margin-bottom: 8px;
  }
  .step p {
    color: var(--muted);
    font-size: 15px;
  }

  /* ---------- Stats ---------- */
  .statbar {
    background: var(--navy-900);
    border-radius: var(--r-2xl);
    padding: clamp(28px, 3.6vw, 48px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    overflow: hidden;
  }
  .statbar .stat {
    position: relative;
    z-index: 2;
  }
  .stat b {
    font-family: var(--ui);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 600;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.03em;
  }
  .stat > span {
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  /* ---------- Coverage ---------- */
  .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 14.5px;
    color: var(--ink-2);
    transition:
      background 0.45s var(--ease-out),
      color 0.45s var(--ease-out),
      border-color 0.45s var(--ease-out);
  }
  .pill::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    flex: none;
  }
  .pill:hover {
    background: var(--navy-900);
    color: #fff;
    border-color: var(--navy-900);
  }
  .band-navy .pill {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-dark);
    color: rgba(255, 255, 255, 0.85);
  }
  .band-navy .pill:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
  }

  /* ---------- Quote ---------- */
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .quote {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
  }
  .quote blockquote {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-2);
  }
  .quote figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line-2);
  }
  .quote figcaption .ph {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex: none;
  }
  .quote cite {
    font-style: normal;
    font-weight: 600;
    font-size: 14.5px;
    display: block;
  }
  .quote small {
    color: var(--muted);
    font-size: 12.5px;
  }
  .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }
  .stars svg {
    width: 15px;
    height: 15px;
    color: var(--pink);
  }

  /* ---------- Accordion ---------- */
  .acc {
    border-top: 1px solid var(--line);
  }
  .acc__item {
    border-bottom: 1px solid var(--line);
  }
  .acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0;
    text-align: left;
    font-family: var(--ui);
    font-weight: 600;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.4s var(--ease-out);
  }
  .acc__btn:hover {
    color: var(--pink-600);
  }
  .acc__sign {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex: none;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition:
      transform 0.55s var(--ease-out),
      background 0.45s,
      border-color 0.45s,
      color 0.45s;
  }
  .acc__sign svg {
    width: 12px;
    height: 12px;
  }
  .acc__item.is-open .acc__sign {
    transform: rotate(45deg);
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
  }
  .acc__panel {
    overflow: hidden;
    height: 0;
    transition: height 0.5s var(--ease-out);
  }
  .acc__panel > div {
    padding-bottom: 26px;
    max-width: 74ch;
    color: var(--muted);
    font-size: 16px;
  }

  /* ---------- Table ---------- */
  .tablewrap {
    overflow-x: auto;
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    background: var(--white);
  }
  table.cmp {
    width: 100%;
    border-collapse: collapse;
    min-width: 660px;
  }
  table.cmp th,
  table.cmp td {
    padding: 19px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line-2);
    vertical-align: top;
  }
  table.cmp thead th {
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    background: var(--surface);
  }
  table.cmp tbody th {
    font-family: var(--ui);
    font-size: 17px;
    font-weight: 600;
    width: 24%;
  }
  table.cmp td {
    font-size: 15px;
    color: var(--muted);
  }
  table.cmp tbody tr:last-child th,
  table.cmp tbody tr:last-child td {
    border-bottom: 0;
  }
  table.cmp tbody tr {
    transition: background 0.35s var(--ease-out);
  }
  table.cmp tbody tr:hover {
    background: var(--pink-soft);
  }

  /* ---------- Contact / form ---------- */
  .cinfo__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .cinfo__row:first-child {
    border-top: 1px solid var(--line);
  }
  .cinfo__ico {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--pink-soft);
    color: var(--pink-600);
    display: grid;
    place-items: center;
    flex: none;
  }
  .cinfo__ico svg {
    width: 19px;
    height: 19px;
  }
  .cinfo__label {
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
  }
  .cinfo__val {
    font-family: var(--ui);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: block;
  }
  .cinfo__val small {
    display: block;
    font-family: var(--ui);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0;
    margin-top: 4px;
  }

  .formcard {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-2xl);
    padding: clamp(24px, 3.2vw, 40px);
    box-shadow: var(--shadow-1);
  }
  .fgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .field {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .field--full {
    grid-column: 1/-1;
  }
  .field label {
    font-family: var(--ui);
    font-size: 9.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .field input,
  .field select,
  .field textarea {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 13px 15px;
    font-size: 15.5px;
    width: 100%;
    transition:
      border-color 0.35s var(--ease-out),
      box-shadow 0.35s var(--ease-out),
      background 0.35s;
  }
  .field textarea {
    resize: vertical;
    min-height: 110px;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(236, 27, 121, 0.12);
  }
  .field.has-error input,
  .field.has-error select {
    border-color: var(--pink-600);
  }
  .field__err {
    font-size: 12.5px;
    color: var(--pink-600);
    display: none;
  }
  .field.has-error .field__err {
    display: block;
  }
  .field select {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%235C688A' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
  }
  .form__note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.55;
  }
  .form__ok {
    display: none;
    align-items: flex-start;
    gap: 13px;
    background: var(--pink-soft);
    border: 1px solid rgba(236, 27, 121, 0.18);
    border-radius: var(--r-lg);
    padding: 18px;
    margin-bottom: 20px;
  }
  .form__ok.is-visible {
    display: flex;
  }
  .form__ok svg {
    width: 21px;
    height: 21px;
    color: var(--pink-600);
    flex: none;
    margin-top: 2px;
  }
  .form__ok p {
    font-size: 15px;
    color: var(--ink-2);
  }

  /* ---------- CTA ---------- */
  .cta {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--r-2xl);
    padding: clamp(34px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta > * {
    position: relative;
    z-index: 2;
  }
  .cta h2 {
    color: #fff;
  }
  .cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 14px;
    max-width: 48ch;
  }
  .cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: flex-end;
  }

  /* Sister-brand card */
  .sister {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-2xl);
    padding: clamp(24px, 3vw, 38px);
    box-shadow: var(--shadow-1);
  }
  .sister__logo {
    width: clamp(90px, 11vw, 132px);
    flex: none;
    background: var(--navy-900);
    border-radius: var(--r-lg);
    padding: 12px;
  }
  .sister h3 {
    margin-bottom: 7px;
  }
  .sister p {
    color: var(--muted);
    font-size: 15.5px;
    max-width: 52ch;
  }

  /* ---------- Page hero ---------- */
  .phero {
    background: var(--navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: clamp(126px, 13vw, 172px);
    padding-bottom: clamp(46px, 5.5vw, 78px);
  }
  .phero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: clamp(26px, 4vw, 64px);
    align-items: end;
  }
  .phero h1 {
    color: #fff;
  }
  .phero .lede {
    color: rgba(255, 255, 255, 0.7);
  }
  .crumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  .crumbs a:hover {
    color: #fff;
  }
  .crumbs i {
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
  }

  /* ---------- Footer ---------- */
  .footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.62);
    padding-top: clamp(56px, 6.5vw, 88px);
    position: relative;
    overflow: hidden;
  }
  .footer > * {
    position: relative;
    z-index: 2;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 40px 30px;
    padding-bottom: 48px;
  }
  .footer__logo {
    width: 186px;
    margin-bottom: 20px;
  }
  .footer p {
    font-size: 15px;
    max-width: 36ch;
    line-height: 1.6;
  }
  .footer h5 {
    font-family: var(--ui);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 17px;
  }
  .footer ul {
    display: grid;
    gap: 10px;
  }
  .footer ul a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.35s var(--ease-out);
  }
  .footer ul a:hover {
    color: var(--pink-400);
  }
  .footer__sister {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 8px 16px 8px 8px;
    transition:
      border-color 0.4s var(--ease-out),
      background 0.4s var(--ease-out);
  }
  .footer__sister:hover {
    border-color: var(--pink);
    background: rgba(236, 27, 121, 0.12);
  }
  .footer__sister img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .footer__sister span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: flex;
    gap: 10px;
  }
  .footer__sister span svg {
    width: 20px;
  }
  .footer__bar {
    border-top: 1px solid var(--line-dark);
    padding: 20px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    justify-content: space-between;
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ---------- Mobile call bar ---------- */
  .callbar {
    display: none;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    background: var(--navy-900);
    color: #fff;
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--shadow-2);
  }
  .callbar__label {
    display: block;
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }
  .callbar__num {
    display: block;
    font-size: 15.5px;
    font-weight: 600;
  }

  /* ---------- Reveal ---------- */
  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    .hero__grid,
    .split,
    .phero__grid,
    .cta,
    .sec-head--split {
      grid-template-columns: 1fr;
    }
    .split--rev .split__media {
      order: 0;
    }
    .cta__actions {
      justify-content: flex-start;
    }
    .g-4,
    .statbar {
      grid-template-columns: repeat(2, 1fr);
    }
    .g-3,
    .steps,
    .quotes {
      grid-template-columns: repeat(2, 1fr);
    }
    .c3,
    .c4,
    .c5,
    .c7,
    .c8 {
      grid-column: span 6;
    }
    .bento .c3 {
      grid-column: span 6;
    }
    .footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .sister {
      grid-template-columns: auto minmax(0, 1fr);
    }
    .sister .btn {
      grid-column: 2;
      justify-self: start;
    }
  }
  @media (max-width: 860px) {
    .nav__links,
    .nav__tel,
    .sibling {
      display: none;
    }
    .burger {
      display: flex;
    }
    .nav__right {
      margin-left: auto;
    }
    .nav__right .btn {
      display: none;
    }
    .callbar {
      display: flex;
    }
    body {
      padding-bottom: 72px;
    }
    .g-2,
    .g-3,
    .g-4,
    .steps,
    .quotes,
    .statbar,
    .bento {
      grid-template-columns: 1fr;
    }
    .c3,
    .c4,
    .c5,
    .c6,
    .c7,
    .c8,
    .c12 {
      grid-column: span 1;
    }
    .fgrid {
      grid-template-columns: 1fr;
    }
    .hero__float {
      position: static;
      margin-top: 14px;
    }
    .sister {
      grid-template-columns: 1fr;
      text-align: left;
    }
    .sister__logo {
      width: 100px;
    }
  }
  @media (max-width: 520px) {
    body {
      font-size: 16px;
    }
    .card,
    .formcard {
      padding: 22px;
    }
    .stack {
      grid-template-columns: 1fr;
    }
    .stack .ph:first-child {
      grid-column: span 1;
    }
  }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .js .reveal {
      opacity: 1;
      transform: none;
    }
  }
  @media print {
    .nav-shell,
    .callbar,
    .menu,
    .strip {
      display: none !important;
    }
    body {
      padding: 0;
    }
  }

  /* ---------- Footer legal row ---------- */
  .footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .footer__legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.35s var(--ease-out);
  }
  .footer__legal a:hover {
    color: var(--pink-400);
  }

  /* ---------- Legal / long-form document pages ---------- */
  .doc {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
  }
  .doc__toc {
    position: sticky;
    top: 104px;
  }
  .doc__toc h5 {
    font-family: var(--ui);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .doc__toc ol {
    list-style: none;
    display: grid;
    gap: 2px;
    counter-reset: toc;
  }
  .doc__toc a {
    display: block;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 14.5px;
    color: var(--muted);
    transition:
      background 0.35s var(--ease-out),
      color 0.35s var(--ease-out);
  }
  .doc__toc a:hover {
    background: var(--surface-2);
    color: var(--ink);
  }
  .doc__body {
    max-width: 74ch;
  }
  .doc__body section {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
  }
  .doc__body section:last-child {
    border-bottom: 0;
  }
  .doc__body h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 14px;
    scroll-margin-top: 110px;
  }
  .doc__body h3 {
    font-size: 18px;
    margin: 22px 0 8px;
  }
  .doc__body p {
    color: var(--muted);
    margin-bottom: 14px;
    font-size: 16px;
  }
  .doc__body ul {
    display: grid;
    gap: 9px;
    margin: 0 0 16px;
  }
  .doc__body ul li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    font-size: 16px;
  }
  .doc__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.74em;
    width: 13px;
    height: 1.5px;
    background: var(--pink);
    border-radius: 2px;
  }
  .doc__body a {
    color: var(--pink-600);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .notice {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--pink);
    border-radius: var(--r-lg);
    padding: 20px 22px;
    margin-bottom: 30px;
  }
  .notice p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-2);
  }
  .notice strong {
    color: var(--ink);
  }
  .doc__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-bottom: 28px;
    font-family: var(--ui);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  @media (max-width: 1080px) {
    .doc {
      grid-template-columns: 1fr;
    }
    .doc__toc {
      position: static;
    }
  }