:root {
      --background: #ffffff;
      --foreground: #0a0a0a;
      --brand: #2563c9;
      --brand-deep: #0f2f63;
      --brand-light: #5790e6;
      --accent-teal: #0b6e97;
      --surface: #f4f4f4;
      --surface-card: #ffffff;
      --ink: #0a0a0a;
      --ink-soft: #717784;
      --ghost: #d7dae1;
      --hairline: #e6e8ec;
      --on-brand: #ffffff;
      --radius-card: 1.5rem;
      --radius-card-lg: 2rem;
      --radius-pill: 62.5rem;
      --radius-xl: 0.75rem;
    }

    *, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; }
    html { font-size: 16px; }
    @media (max-width: 1920px) { html { font-size: 0.833333vw; } }
    @media (max-width: 1440px) { html { font-size: 1.111111vw; } }
    @media (max-width: 1024px) { html { font-size: 1.5625vw; } }
    @media (max-width: 640px)  { html { font-size: 4.444444vw; } }

    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-stopped { overflow: hidden; }

    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: inherit; border: 0; background: none; color: inherit; }
    a { color: inherit; text-decoration: none; }
    :focus-visible { outline: 2px solid var(--brand-light); outline-offset: 2px; }

    body {
      min-height: 100vh;
      background: var(--background);
      color: var(--foreground);
      font-family: "Onest", system-ui, sans-serif;
      font-weight: 400;
      line-height: 1.5;
    }

    main {
      width: 100%;
      overflow-x: clip;
      padding: 0.5rem;
    }
    @media (min-width: 640px) { main { padding: 0.75rem; } }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .font-medium { font-weight: 500; }
    .uppercase { text-transform: uppercase; }

    /* Shared: eyebrow */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.22em;
    }
    .eyebrow .dot {
      width: 0.375rem;
      height: 0.375rem;
      border-radius: var(--radius-pill);
      background: var(--brand);
      flex-shrink: 0;
    }
    .eyebrow.is-dark { color: var(--ink-soft); }
    .eyebrow.is-light { color: rgba(255, 255, 255, 0.7); }
    .eyebrow.is-light .dot { background: var(--brand-light); }

    /* Clip-mask reveals */
    .clip {
      display: block;
      overflow: hidden;
      padding-bottom: 0.14em;
    }
    .clip-word { display: inline-block; overflow: hidden; padding-bottom: 0.12em; vertical-align: top; }
    .clip > span, .clip-word > span {
      display: block;
      transform: translateY(115%);
      opacity: 0;
      will-change: transform, opacity;
    }
    .is-on > .clip > span,
    .clip.is-on > span,
    .clip-word.is-on > span {
      animation: clipIn var(--d, 950ms) cubic-bezier(0.19, 1, 0.22, 1) var(--delay, 0ms) forwards;
    }
    @keyframes clipIn {
      from { transform: translateY(115%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .word-fade { display: block; }
    .word-fade .wf {
      display: inline-block;
      transform: translateY(18px);
      opacity: 0;
    }
    .word-fade.is-on .wf {
      animation: wordFade 700ms cubic-bezier(0.25, 1, 0.5, 1) var(--delay, 0ms) forwards;
    }
    @keyframes wordFade {
      from { transform: translateY(18px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Pill / arrow / dots */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: var(--radius-pill);
      padding: 0.875rem 1.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .pill.is-light { background: #fff; color: var(--brand-deep); }
    .pill.is-light:hover { background: var(--brand-light); color: #fff; }
    .pill.is-solid { background: var(--ink); color: #fff; }
    .pill.is-solid:hover { background: var(--brand-deep); }
    .pill.is-outline { border: 1px solid currentColor; color: var(--ink); }
    .pill.is-outline:hover { background: var(--ink); color: #fff; }
    .pill svg { width: 1rem; height: 1rem; display: block; }

    .arrow-btn {
      width: 3rem;
      height: 3rem;
      display: grid;
      place-items: center;
      border-radius: var(--radius-pill);
      border: 1px solid var(--hairline);
    }
    @media (min-width: 640px) { .arrow-btn { width: 3.5rem; height: 3.5rem; } }
    .arrow-btn.is-outline { background: transparent; color: var(--ink); border-color: var(--hairline); }
    .arrow-btn.is-outline:hover { border-color: var(--ink); }
    .arrow-btn.is-solid { background: var(--ink); border-color: var(--ink); color: #fff; }
    .arrow-btn.is-solid:hover { background: var(--brand-deep); }
    .arrow-btn svg { width: 1.25rem; height: 1.25rem; display: block; }
    .arrow-btn.is-prev svg { transform: scaleX(-1); }

    .dots { display: flex; gap: 0.5rem; align-items: center; }
    .dots button { padding: 0.375rem; }
    .dot-pill {
      height: 0.375rem;
      width: 0.375rem;
      border-radius: var(--radius-pill);
      display: block;
      transition: width 220ms ease;
    }
    .dots.is-dark .dot-pill { background: var(--ghost); }
    .dots.is-dark button[aria-current="true"] .dot-pill { width: 1.25rem; background: var(--ink); }
    .dots.is-light .dot-pill { background: rgba(255, 255, 255, 0.4); }
    .dots.is-light button[aria-current="true"] .dot-pill { width: 1.25rem; background: #fff; }

    .icon-btn {
      width: 2.5rem;
      height: 2.5rem;
      display: grid;
      place-items: center;
      border-radius: var(--radius-pill);
    }
    .icon-btn svg { width: 1.125rem; height: 1.125rem; display: block; }

    /* ===== LOADER ===== */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--brand-deep);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .loader-mark { display: flex; align-items: center; gap: 0.5rem; }
    .loader-mark svg { width: 1.75rem; height: 1.75rem; }
    .loader-mark span {
      font-size: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .loader-track {
      width: 10rem;
      height: 1px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.2);
      overflow: hidden;
    }
    .loader-fill {
      height: 100%;
      width: 100%;
      background: #fff;
      transform: scaleX(0);
      transform-origin: left center;
      animation: loadFill 1280ms 120ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
    }
    @keyframes loadFill { to { transform: scaleX(1); } }
    .loader.is-exit {
      transform: translateY(-105%);
      transition: transform 850ms cubic-bezier(0.65, 0, 0.35, 1);
    }
    @media (prefers-reduced-motion: reduce) {
      .loader-fill { animation-duration: 80ms; animation-delay: 0ms; }
      .loader.is-exit { transition-duration: 1ms; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: var(--brand-deep);
      color: #fff;
      border-radius: var(--radius-card-lg);
      height: calc(100svh - 1rem);
      min-height: 36rem;
      display: flex;
      flex-direction: column;
    }
    @media (min-width: 640px) { .hero { height: calc(100svh - 1.5rem); } }
    .hero-plate {
      position: absolute;
      inset: 0;
      z-index: -10;
    }
    .hero-plate-inner {
      position: absolute;
      left: 0;
      right: 0;
      top: -16%;
      height: 132%;
      width: 100%;
    }
    .hero-plate-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-plate::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(15, 47, 99, 0.65), rgba(15, 47, 99, 0.35), rgba(15, 47, 99, 0.75));
    }

    html, body { overflow-x: clip; }
    .site-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.5rem 1.5rem 0;
      font-size: 0.75rem;
      color: #fff;
      position: relative;
      z-index: 2;
      min-width: 0;
      max-width: 100%;
      overflow: hidden;
    }
    @media (min-width: 640px) { .site-header { padding: 2rem 2.5rem 0; } }
    .header-left, .header-brand, .header-right { flex: 1 1 0; min-width: 0; }
    .header-left {
      display: none;
      gap: 1.25rem;
      white-space: nowrap;
    }
    @media (min-width: 1100px) { .header-left { display: flex; } }
    .header-left a { color: rgba(255, 255, 255, 0.9); }
    .header-left a:hover { color: #fff; }
    .header-brand {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.4rem;
      font-size: clamp(0.72rem, 2.1vw, 1rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
      overflow: hidden;
    }
    @media (min-width: 1100px) { .header-brand { justify-content: center; } }
    .header-brand svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
    .header-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 0.65rem;
      flex: 0 0 auto;
    }
    @media (min-width: 640px) { .header-right { gap: 1rem; } }
    .header-phone, .header-quote {
      display: none;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .header-quote { text-decoration: underline; text-underline-offset: 0.2em; }
    .header-quote:hover, .header-phone:hover { opacity: 0.85; }
    @media (min-width: 768px) {
      .header-quote { display: inline; }
    }
    @media (min-width: 1100px) {
      .header-phone { display: inline; }
    }
    .burger {
      width: 2.5rem;
      height: 2.5rem;
      display: grid;
      place-items: center;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
    }
    .burger:hover { background: rgba(255, 255, 255, 0.25); }
    .burger-bars { display: flex; flex-direction: column; gap: 5px; }
    .burger-bars span { display: block; width: 1rem; height: 1px; background: #fff; }

    .hero-title-wrap {
      padding: 1rem 1.5rem 0;
    }
    @media (min-width: 640px) { .hero-title-wrap { padding: 1rem 2.5rem 0; } }
    .hero-title-wrap { max-width: 100%; overflow: hidden; }
    #hero-title {
      font-size: clamp(2.15rem, 7.6vw, 7.25rem);
      font-weight: 500;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.03em;
      white-space: normal;
      max-width: 100%;
      overflow: hidden;
    }
    @media (min-width: 900px) {
      #hero-title {
        white-space: nowrap;
        font-size: min(7.6vw, 7.4rem);
      }
    }
    #hero-title .clip-word { margin-right: 0.18em; }
    #hero-title .clip-word:last-child { margin-right: 0; }

    .hero-bottom {
      margin-top: auto;
      padding: 0 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    @media (min-width: 640px) {
      .hero-bottom {
        padding: 0 2.5rem 2.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
      }
    }
    .hero-tagline {
      font-size: 2.4rem;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: rgba(255, 255, 255, 0.85);
    }
    .hero-right { display: flex; align-items: flex-end; gap: 1rem; }

    .glass {
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-card);
      padding: 0.75rem;
      box-shadow: 0 1rem 2rem rgba(15, 47, 99, 0.2);
      backdrop-filter: blur(16px);
    }

    .collection {
      display: none;
      width: 16rem;
      flex-direction: column;
      gap: 0.75rem;
    }
    @media (min-width: 768px) { .collection { display: flex; } }
    .collection-card { display: flex; gap: 0.75rem; align-items: center; }
    .collection-card img {
      width: 3.5rem;
      height: 3.5rem;
      object-fit: cover;
      border-radius: var(--radius-xl);
      flex-shrink: 0;
    }
    .collection-brand { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
    .collection-title { font-size: 0.7rem; text-transform: uppercase; opacity: 0.8; }
    .collection-cta { font-size: 0.65rem; text-decoration: underline; text-underline-offset: 0.15em; }

    .member-card {
      width: 100%;
      max-width: 20rem;
      display: flex;
      gap: 0.75rem;
      align-items: stretch;
    }
    @media (min-width: 640px) { .member-card { max-width: 15rem; } }
    .member-left { display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
    .member-value { font-size: 1.875rem; font-weight: 500; line-height: 1; }
    .avatars { display: flex; }
    .avatars span {
      width: 1.25rem;
      height: 1.25rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(15, 47, 99, 0.4);
      margin-left: -0.5rem;
    }
    .avatars span:first-child { margin-left: 0; }
    .member-cap { font-size: 0.65rem; opacity: 0.8; }
    .member-card img {
      width: 4rem;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: var(--radius-xl);
      flex-shrink: 0;
    }

    /* ===== TRUST ===== */
    .trust {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: var(--background);
      padding: 4rem 1.5rem;
    }
    @media (min-width: 640px) {
      .trust { padding: 5rem 2.5rem; }
    }
    .trust-badges {
      position: relative;
      z-index: 20;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    @media (min-width: 640px) {
      .trust-badges { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    }
    .pct-badge {
      width: 7rem;
      height: 7rem;
      border-radius: var(--radius-pill);
      background: var(--surface);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 0.75rem;
    }
    @media (min-width: 640px) { .pct-badge { width: 8rem; height: 8rem; } }
    .pct-badge strong { display: block; font-size: 1.5rem; font-weight: 500; }
    .pct-badge small { display: block; font-size: 0.6rem; color: var(--ink-soft); max-width: 7em; margin-inline: auto; }
    .badge-card {
      max-width: 28rem;
      display: flex;
      gap: 1rem;
      border-radius: var(--radius-card);
      background: var(--surface);
      padding: 1.25rem;
    }
    @media (min-width: 640px) { .badge-card { gap: 1.25rem; padding: 1.5rem; } }
    .badge-chip {
      border-radius: var(--radius-xl);
      background: var(--background);
      padding: 0.5rem 1rem;
      font-size: 1.25rem;
      font-weight: 500;
      height: fit-content;
      flex-shrink: 0;
    }
    .badge-card h3 { font-size: 1.125rem; font-weight: 500; }
    .badge-card p { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.625; margin-top: 0.35rem; }

    .trust-stage {
      display: grid;
      gap: 2rem;
      align-items: center;
      max-width: 88rem;
      margin: 2.5rem auto 0;
    }
    @media (min-width: 900px) {
      .trust-stage {
        grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.7fr);
        gap: 3rem;
        margin-top: 3.5rem;
      }
    }
    #trust-title {
      margin: 0;
      font-size: clamp(2.5rem, 7vw, 5.75rem);
      font-weight: 500;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.03em;
      text-align: left;
    }
    .ghost-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }
    .ghost-word { color: var(--ghost); }
    .ghost-word.is-ink { color: var(--ink); }

    .trust-coach {
      position: relative;
      z-index: 1;
      margin: 0;
      width: 100%;
      display: flex;
      justify-content: center;
    }
    @media (min-width: 900px) {
      .trust-coach { justify-content: flex-end; }
    }
    .trust-coach figure {
      width: min(100%, 22rem);
      aspect-ratio: 3 / 4;
      border-radius: var(--radius-card);
      background: var(--brand-deep);
      overflow: hidden;
      position: relative;
      box-shadow: 0 1.5rem 3rem rgba(15, 47, 99, 0.18);
    }
    .trust-coach img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .glass-cap {
      position: absolute;
      left: 0.75rem;
      right: 0.75rem;
      bottom: 0.75rem;
      border-radius: var(--radius-xl);
      background: rgba(15, 47, 99, 0.4);
      color: #fff;
      backdrop-filter: blur(12px);
      padding: 0.5rem 0.75rem;
    }
    .glass-cap .name { font-size: 0.875rem; font-weight: 500; }
    .glass-cap .role { font-size: 0.65rem; opacity: 0.8; }

    .trust-controls {
      position: relative;
      z-index: 20;
      margin-top: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    @media (min-width: 640px) { .trust-controls { margin-top: 2.5rem; } }

    /* ===== SERVICES ===== */
    .services {
      background: var(--surface);
      padding: 6rem 1.5rem;
    }
    @media (min-width: 640px) { .services { padding: 6rem 2.5rem; } }
    .section-h2 {
      font-size: 3rem;
      font-weight: 500;
      line-height: 0.95;
      letter-spacing: -0.02em;
      margin-top: 1rem;
      color: var(--ink);
    }
    .program-list { margin-top: 3.5rem; list-style: none; }
    .program-list a {
      display: block;
      border-top: 1px solid var(--hairline);
    }
    .program-list li:last-child a { border-bottom: 1px solid var(--hairline); }
    .program-list a:focus { background: var(--background); }
    .program-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.75rem 0;
    }
    .program-idx { width: 2.5rem; font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); flex-shrink: 0; }
    .program-copy { flex: 1; }
    .program-copy h3 {
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    @media (min-width: 640px) { .program-copy h3 { font-size: 1.875rem; } }
    .program-copy p { font-size: 0.875rem; color: var(--ink-soft); margin-top: 0.25rem; }
    .program-arrow {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: var(--radius-pill);
      border: 1px solid var(--hairline);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .program-arrow svg { width: 1.125rem; height: 1.125rem; }

    /* ===== COVERAGE ===== */
    .coverage {
      background: var(--background);
      border-radius: var(--radius-card-lg);
      margin-top: -2.5rem;
      padding: 4rem 1.5rem 5rem;
    }
    @media (min-width: 640px) { .coverage { padding: 4rem 2.5rem 5rem; } }
    .coverage-grid {
      display: grid;
      gap: 2.5rem;
      align-items: end;
    }
    @media (min-width: 768px) { .coverage-grid { grid-template-columns: 1fr 1fr; } }
    .coverage-intro { max-width: 24rem; }
    .coverage-intro .section-h2 { margin-top: 0; }
    .coverage-body {
      font-size: 0.875rem;
      color: var(--ink-soft);
      max-width: 20rem;
      margin-top: 1.5rem;
    }
    .court-cards { display: flex; align-items: flex-end; gap: 1.25rem; }
    .court-tile {
      flex: 1;
      aspect-ratio: 3 / 4;
      border-radius: var(--radius-card);
      overflow: hidden;
      background: var(--surface);
      position: relative;
    }
    .court-tile:nth-child(2) { margin-bottom: 2rem; }
    .court-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .court-split {
      display: grid;
      grid-template-rows: 1fr 1fr;
      height: 100%;
    }
    .court-split img { height: 100%; }
    .court-cap {
      position: absolute;
      left: 0.75rem;
      right: 0.75rem;
      bottom: 0.75rem;
      border-radius: var(--radius-xl);
      backdrop-filter: blur(12px);
      color: #fff;
      padding: 0.75rem 1rem;
    }
    .court-cap.is-clay { background: rgba(15, 47, 99, 0.4); }
    .court-cap.is-blue { background: rgba(11, 110, 151, 0.55); }
    .court-cap .name { font-size: 0.875rem; font-weight: 500; }
    .court-cap .desc { font-size: 0.65rem; opacity: 0.85; }

    /* ===== STATS ===== */
    .stats {
      background: var(--brand-deep);
      color: #fff;
      border-radius: var(--radius-card-lg);
      margin-top: 0.75rem;
      padding: 5rem 1.5rem;
    }
    @media (min-width: 640px) { .stats { padding: 5rem 2.5rem; } }
    .stats .section-h2 { color: #fff; }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 2rem;
      row-gap: 3rem;
      margin-top: 4rem;
    }
    @media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
    .stat-cell { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 1.25rem; }
    .stat-value {
      font-size: 3.75rem;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    @media (min-width: 640px) { .stat-value { font-size: 4.5rem; } }
    .stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.75rem; }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      background: var(--background);
      padding: 5rem 1.5rem;
    }
    @media (min-width: 640px) { .testimonials { padding: 6rem 2.5rem; } }
    .testi-grid {
      list-style: none;
      display: grid;
      gap: 1.25rem;
      margin-top: 3.5rem;
    }
    @media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
    .testi-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      border-radius: var(--radius-card);
      background: var(--surface);
      padding: 1.75rem;
    }
    .quote-glyph { font-size: 2.25rem; color: var(--brand); line-height: 1; }
    .testi-card blockquote {
      font-size: 1.125rem;
      line-height: 1.625;
      color: var(--ink);
      margin-top: 1rem;
    }
    .testi-card figcaption {
      border-top: 1px solid var(--hairline);
      padding-top: 1rem;
      margin-top: 1.5rem;
    }
    .testi-card figcaption .who { font-weight: 500; }
    .testi-card figcaption .role { font-size: 0.875rem; color: var(--ink-soft); }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--brand-deep);
      color: #fff;
      border-radius: var(--radius-card-lg);
      margin-top: 0.75rem;
      padding: 3.5rem 1.5rem;
    }
    @media (min-width: 640px) { .site-footer { padding: 4rem 2.5rem; } }
    .footer-cta {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 3.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    @media (min-width: 640px) {
      .footer-cta { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    }
    .footer-cta p {
      font-size: 3.75rem;
      font-weight: 500;
      line-height: 0.92;
      letter-spacing: -0.03em;
      margin-top: 1rem;
    }
    .footer-cols {
      display: grid;
      gap: 2.5rem;
      padding: 3.5rem 0;
    }
    @media (min-width: 768px) {
      .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    }
    .footer-brand { max-width: 20rem; }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.125rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .footer-logo svg { width: 1.25rem; height: 1.25rem; }
    .footer-blurb { font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); margin-top: 1rem; }
    .footer-address {
      font-style: normal;
      margin-top: 1.5rem;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .footer-address .muted { color: rgba(255, 255, 255, 0.55); }
    .footer-nav h4 {
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.5);
    }
    .footer-nav ul { list-style: none; font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); margin-top: 1rem; }
    .footer-nav li + li { margin-top: 0.75rem; }
    .footer-nav a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 2rem;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    @media (min-width: 640px) {
      .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    }
    .footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
    .footer-bottom a:hover { color: #fff; }

    /* ===== MENU ===== */
    .menu, .modal {
      position: fixed;
      inset: 0;
      pointer-events: none;
    }
    .menu { z-index: 70; display: flex; flex-direction: column; }
    .menu.is-open, .modal.is-open { pointer-events: auto; }
    .menu-backdrop {
      position: absolute;
      inset: 0;
      background: var(--brand-deep);
      opacity: 0;
    }
    .menu-panel {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 0.5rem;
      opacity: 0;
      color: #fff;
    }
    @media (min-width: 640px) { .menu-panel { padding: 0.75rem; } }
    .menu-inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
    }
    @media (min-width: 640px) { .menu-inner { padding: 2.5rem; } }
    .menu-top, .menu-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .menu-close {
      background: rgba(255, 255, 255, 0.15);
    }
    .menu-close:hover { background: rgba(255, 255, 255, 0.25); }
    .menu-nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.5rem;
    }
    .menu-nav a {
      display: block;
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.05;
    }
    @media (min-width: 640px) { .menu-nav a { font-size: 4.5rem; } }
    .menu-nav a:hover { color: var(--brand-light); }
    .menu-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 2rem;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
    }
    @media (min-width: 640px) {
      .menu-bottom { flex-direction: row; align-items: center; }
    }
    .menu-social { display: flex; gap: 1.25rem; color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
    .menu-social a:hover { color: #fff; }

    /* ===== MODAL ===== */
    .modal {
      z-index: 90;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0.75rem;
    }
    @media (min-width: 640px) {
      .modal { align-items: center; padding: 1.5rem; }
    }
    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 47, 99, 0.4);
      backdrop-filter: blur(8px);
      opacity: 0;
    }
    .modal-panel {
      position: relative;
      z-index: 1;
      max-height: 92svh;
      overflow-y: auto;
      border-radius: var(--radius-card-lg);
      background: var(--surface-card);
      padding: 1.5rem;
      color: var(--ink);
      width: 100%;
      box-shadow: 0 2rem 4rem rgba(15, 47, 99, 0.35);
      opacity: 0;
    }
    @media (min-width: 640px) {
      .modal-panel { padding: 2rem; max-width: 32rem; }
    }
    .modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
    .modal-head h2 {
      font-size: 2.25rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 0.95;
      margin-top: 0.75rem;
    }
    @media (min-width: 640px) { .modal-head h2 { font-size: 3rem; } }
    .modal-x { background: var(--surface); }
    .modal-x:hover { background: var(--hairline); }
    .quote-form {
      margin-top: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .quote-form label {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--ink-soft);
      margin-bottom: 0.4rem;
    }
    .quote-form input, .quote-form textarea {
      width: 100%;
      border-radius: var(--radius-xl);
      border: 1px solid var(--hairline);
      background: var(--background);
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--ink);
    }
    .quote-form input:focus, .quote-form textarea:focus {
      outline: none;
      border-color: var(--brand-light);
      box-shadow: 0 0 0 3px rgba(87, 144, 230, 0.25);
    }
    .quote-form button[type="submit"] {
      border-radius: var(--radius-pill);
      background: var(--ink);
      color: #fff;
      padding: 0.875rem 1.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      align-self: flex-start;
    }
    .quote-form button[type="submit"]:hover { background: var(--brand-deep); }
    .quote-form button[type="submit"]:disabled { opacity: 0.55; cursor: not-allowed; }
    .form-error {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      color: #9b2c2c;
      line-height: 1.5;
    }
    .success {
      display: none;
      margin-top: 2rem;
      border-radius: var(--radius-card);
      background: var(--surface);
      padding: 1.5rem;
      text-align: center;
    }
    .success.is-on { display: block; }
    .success-check {
      width: 3rem;
      height: 3rem;
      border-radius: var(--radius-pill);
      background: var(--brand);
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
    }
    .success-check svg { width: 1.25rem; height: 1.25rem; color: #fff; }
    .success h3 { font-size: 1.125rem; font-weight: 500; }
    .success p { font-size: 0.875rem; color: var(--ink-soft); margin: 0.5rem 0 1.25rem; }

    .page-hero {
      height: auto;
      min-height: 22rem;
      padding-bottom: 2.5rem;
    }
    @media (min-width: 640px) {
      .page-hero { min-height: 26rem; height: auto; padding-bottom: 3.5rem; }
    }
    .page-hero #hero-title {
      white-space: normal;
      font-size: clamp(2.2rem, 6.4vw, 5.4rem);
      max-width: 16ch;
    }
    .page-section {
      background: #fff;
      border-radius: var(--radius-card-lg);
      margin-top: 0.5rem;
      padding: 2.75rem 1.5rem 3.5rem;
      color: var(--ink);
    }
    @media (min-width: 640px) {
      .page-section { padding: 4.25rem 2.5rem 5rem; }
    }
    .page-wrap { max-width: 72rem; margin: 0 auto; }
    .prose {
      max-width: 44rem;
      font-size: 1.05rem;
      color: #3a4150;
      line-height: 1.65;
    }
    .prose p { margin: 0 0 1.15rem; }
    .prose h2 {
      font-size: clamp(1.5rem, 3vw, 2.35rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 2.4rem 0 0.9rem;
      line-height: 1.05;
    }
    .prose ul { margin: 0 0 1.25rem 1.15rem; }
    .prose li { margin: 0.35rem 0; }
    .feature-grid {
      display: grid;
      gap: 1.15rem;
      margin: 2rem 0 0.5rem;
    }
    @media (min-width: 768px) {
      .feature-grid { grid-template-columns: 1fr 1fr; }
    }
    .feature-card {
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 1.4rem 1.5rem 1.55rem;
    }
    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.45rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .feature-card p { font-size: 0.95rem; color: #3a4150; margin: 0; }
    .page-media {
      border-radius: var(--radius-card);
      overflow: hidden;
      margin: 1.75rem 0 0.5rem;
      background: var(--surface);
    }
    .page-media img {
      width: 100%;
      height: 20rem;
      object-fit: cover;
      object-position: center;
    }
    @media (min-width: 768px) {
      .page-media img { height: 26rem; }
    }
    .split {
      display: grid;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    @media (min-width: 900px) {
      .split { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
    }
    .page-list { list-style: none; padding: 0; margin: 0; }
    .page-list li {
      border-top: 1px solid var(--hairline);
      padding: 1.05rem 0;
    }
    .page-list strong { display: block; font-weight: 500; margin-bottom: 0.2rem; }
    .page-list span { color: #3a4150; font-size: 0.95rem; }
    .area-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.45rem 1.25rem;
      margin: 1.25rem 0 0;
      font-size: 0.95rem;
    }
    @media (min-width: 768px) {
      .area-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    .contact-panel {
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 1.5rem;
    }
    .contact-panel a { color: var(--brand-deep); font-weight: 500; }
    .contact-panel button.link-like {
      background: none;
      border: 0;
      padding: 0;
      font: inherit;
      color: var(--brand-deep);
      font-weight: 500;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }
    .contact-panel p { margin: 0 0 0.7rem; color: #3a4150; }
    .page-section .muted { color: var(--ink-soft); }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }
    .pill.is-navy {
      background: var(--brand-deep);
      color: #fff;
    }
