:root {
    --navy:        #16243C;
    --navy-raise:  #20304E;
    --plum:        #39022E;
    --lavender:    #B3A6D3;
    --mist:        #ABB3C5;
    --paper:       #F8F7FB;
    --paper-deep:  #EFEDF6;
    --ink:         #191735;
    --ink-soft:    #4C4A66;
    --violet:      #5D4E92;
    --on-dark:     rgba(248, 247, 251, 0.94);
    --on-dark-soft:rgba(248, 247, 251, 0.72);
    --line-light:  rgba(25, 23, 53, 0.14);
    --line-dark:   rgba(179, 166, 211, 0.28);
    --serif: "Newsreader", Georgia, serif;
    --sans: "Public Sans", -apple-system, "Helvetica Neue", sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; }
  .wrap { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }

  h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; text-wrap: balance; }

  /* ── Top bar ─────────────────────────── */
  .topbar { background: var(--navy); color: var(--on-dark-soft); font-size: 0.82rem; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; gap: 1rem; }
  .topbar a { color: var(--on-dark); text-decoration: none; }
  .topbar a:hover { color: var(--lavender); }
  .topbar .addr { letter-spacing: 0.02em; }

  /* ── Nav ─────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(248, 247, 251, 0.9); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-light);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.05rem 0; }
  .brand { font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; text-decoration: none; }
  .brand small { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.2rem; }
  .brand .amp { font-style: italic; color: var(--violet); }
  .nav-links { display: flex; gap: 1.9rem; list-style: none; }
  .nav-links a {
    font-size: 0.9rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
    padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s;
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--navy); border-color: var(--lavender); }
  .menu-btn { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 0.4rem; }
  .mobile-menu {
    display: none; overflow: hidden; border-top: 1px solid var(--line-light);
    background: var(--paper); padding: 1.2rem 1.5rem 1.6rem;
  }
  .mobile-menu ul { list-style: none; display: grid; gap: 0.4rem; margin-bottom: 1.2rem; }
  .mobile-menu a:not(.btn) {
    display: block; padding: 0.65rem 0; text-decoration: none;
    font-family: var(--serif); font-size: 1.25rem; color: var(--ink);
    border-bottom: 1px solid var(--line-light);
  }
  .mobile-menu .btn { width: 100%; }
  .nav.menu-open .mobile-menu { display: block; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
    background: var(--navy); color: #fff; text-decoration: none;
    padding: 0.85rem 1.6rem; border-radius: 999px; border: 1px solid var(--navy);
    transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
    cursor: pointer;
  }
  .btn:hover { background: var(--plum); border-color: var(--plum); transform: translateY(-1px); }
  .btn.on-navy { background: var(--lavender); border-color: var(--lavender); color: var(--navy); }
  .btn.on-navy:hover { background: #c6bbdf; border-color: #c6bbdf; }

  /* ── Mega menu / dropdowns ───────────── */
  .nav-links { align-items: center; }
  .nav-item { display: flex; align-items: center; }
  .nav-item.has-drop { position: relative; }
  .nav-trigger {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
    padding: 0 0 4px; border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
  }
  .nav-trigger svg { transition: transform 0.3s var(--ease); }
  .nav-trigger:hover, .nav-trigger:focus-visible,
  .nav-item.open .nav-trigger { color: var(--navy); border-color: var(--lavender); }
  .nav-item.open .nav-trigger svg { transform: rotate(180deg); }
  .mega, .drop {
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0.25s;
  }
  .nav-item.open > .mega, .nav-item.open > .drop { opacity: 1; visibility: visible; transform: none; }
  .mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 28px 56px -30px rgba(22, 36, 60, 0.4);
  }
  .mega-inner { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); padding: 2.4rem 0 2.6rem; }
  .mega-col h3 {
    font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--violet); margin-bottom: 1.1rem;
  }
  .mega-col ul { list-style: none; display: grid; gap: 0.15rem; }
  .mega-col a {
    display: block; text-decoration: none; padding: 0.5rem 0.7rem; border-radius: 8px;
    font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
    transition: background 0.25s, transform 0.3s var(--ease);
  }
  .mega-col a small {
    display: block; font-family: var(--sans); font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.1rem;
  }
  .mega-col a:hover, .mega-col a:focus-visible { background: var(--paper-deep); transform: translateX(3px); }
  .mega-cta { background: var(--paper-deep); border-radius: 14px; padding: 1.6rem 1.7rem; align-self: start; }
  .mega-cta p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.35; color: var(--ink); margin-bottom: 0.5rem; }
  .mega-cta p em { font-style: italic; color: var(--violet); }
  .mega-cta .sub { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
  .drop {
    position: absolute; top: calc(100% + 0.6rem); left: 50%; margin-left: -130px; width: 260px;
    background: #fff; border: 1px solid var(--line-light); border-radius: 14px; padding: 0.6rem;
    box-shadow: 0 24px 50px -26px rgba(22, 36, 60, 0.4);
  }
  .drop ul { list-style: none; display: grid; gap: 0.1rem; }
  .drop a {
    display: block; text-decoration: none; padding: 0.7rem 0.85rem; border-radius: 9px;
    font-family: var(--serif); font-size: 1.05rem; color: var(--ink); transition: background 0.25s;
  }
  .drop a small { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.1rem; }
  .drop a:hover, .drop a:focus-visible { background: var(--paper); }
  /* Invisible bridge so the pointer never leaves the item crossing the gap */
  .mega::before, .drop::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 26px;
  }
  .drop::before { left: -20px; right: -20px; }
  .mega-col a, .drop a, .mega-cta .btn { border-bottom: none; }
  .mega-col a:hover, .drop a:hover { border-color: transparent; }
  .mega-cta .btn { color: #fff; }
  .mega-cta .btn:hover { color: #fff; }
  .mobile-menu .m-group { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet); margin: 1.1rem 0 0.3rem; }
  .mobile-menu .m-group:first-child { margin-top: 0; }


  /* ── Resolution section ──────────────── */
  .resolution { background: var(--paper-deep); }
  .resolution-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
  .resolution h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.15; margin-bottom: 1.3rem; }
  .resolution h2 em { font-style: italic; color: var(--violet); }
  .resolution p { font-size: 1.02rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 1rem; }
  .resolution p strong { color: var(--ink); font-weight: 600; }
  .resolution-figure { border-radius: 14px; overflow: hidden; }
  .resolution-figure img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
  @media (max-width: 960px) { .resolution-grid { grid-template-columns: 1fr; } .resolution-figure { order: -1; } }
  /* ── Section scaffolding ─────────────── */
  section { padding: clamp(4.5rem, 10vh, 7.5rem) 0; }
  .sec-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
  .sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; max-width: none; }
  .sec-head .aside { font-size: 0.95rem; color: var(--ink-soft); max-width: 46ch; padding-bottom: 0.4rem; }

  /* ── Page hero (inner-page pattern) ──── */
  .page-hero { padding: clamp(2.8rem, 6vh, 4.5rem) 0 clamp(3.5rem, 7vh, 5rem); }
  .crumbs { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
  .crumbs a { text-decoration: none; color: var(--violet); }
  .crumbs a:hover { text-decoration: underline; }
  .crumbs .sep { margin-inline: 0.5rem; color: var(--mist); }
  .page-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
  .page-hero h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -0.015em; margin-bottom: 0.9rem; }
  .page-hero .sub-line { font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.3; margin-bottom: 1.3rem; }
  .page-hero .sub-line em { font-style: italic; color: var(--violet); }
  .page-hero .lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; margin-bottom: 1rem; }
  .page-hero .lede:last-of-type { margin-bottom: 2.2rem; }
  .hero-cta-row { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
  .hero-cta-row .phone { font-size: 0.95rem; color: var(--ink-soft); text-decoration: none; white-space: nowrap; transition: color 0.25s; }
  .hero-cta-row .phone:hover { color: var(--navy); }
  .hero-cards { display: grid; gap: 1.2rem; }
  .hero-card {
    border-radius: 16px; overflow: hidden; border: 1px solid var(--line-light);
    background: #fff;
    box-shadow: 0 18px 44px -26px rgba(22, 36, 60, 0.3);
  }
  .hero-card.quote { background: var(--paper-deep); padding: 1.6rem 1.7rem 1.5rem; }
  .hero-card.quote .mark { font-family: var(--serif); font-size: 2.4rem; line-height: 0.4; color: var(--violet); display: block; margin-bottom: 0.9rem; }
  .hero-card.quote blockquote { font-family: var(--serif); font-size: 1.06rem; line-height: 1.5; color: var(--ink); }
  .hero-card.quote .quote-src { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-soft); white-space: nowrap; }
  .hero-card.quote cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 0.6rem; }
  .hero-card.quote cite::before { content: ""; width: 24px; height: 1px; background: var(--lavender); }
  .hero-card.media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

  /* ── Fork section ────────────────────── */
  .fork { background: #fff; border-block: 1px solid var(--line-light); }
  .fork-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
  .fork h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; margin-bottom: 1.1rem; }
  .fork h2 em { font-style: italic; color: var(--violet); }
  .fork .sub { font-size: 1rem; color: var(--ink-soft); max-width: 44ch; margin-bottom: 2rem; }
  .fork-figure { border-radius: 14px; overflow: hidden; }
  .fork-figure img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
  .fork-blocks { display: grid; gap: 0; }
  .fork-block { border-top: 1px solid var(--line-light); padding: 1.9rem 0.2rem 2rem; }
  .fork-block:last-child { border-bottom: 1px solid var(--line-light); }
  .fork-block h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
  .fork-block p { font-size: 0.98rem; color: var(--ink-soft); max-width: 58ch; margin-bottom: 1.2rem; }
  .arrow-link {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.92rem; font-weight: 600; color: var(--violet); text-decoration: none;
  }
  .arrow-link .go {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-light);
    display: grid; place-items: center; color: var(--violet);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease);
  }
  .arrow-link:hover .go { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateX(4px); }
  .fork-band { background: var(--navy); }
  .fork-band-inner { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.5rem); padding: 2.4rem 0; }
  .fork-band .strip-copy { font-size: 0.98rem; color: var(--mist); }
  .fork-band .strip-copy strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
  .fork-band .strip-copy strong em { font-style: italic; color: var(--mist); }
  .fork-band .strip-sub { font-size: 0.9rem; color: var(--on-dark-soft); margin-top: 0.45rem; }
  .fork-band-inner .btn { margin-left: auto; flex: none; }
  .fork-band .btn.on-navy { background: var(--mist); border-color: var(--mist); color: var(--navy); }
  .fork-band .btn.on-navy:hover { background: #C2C9D6; border-color: #C2C9D6; }

  /* ── Process (sticky + numbered cards) ─ */
  .process { position: relative; background: var(--paper); }
  .process::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 800'%3E%3Cg fill='%23ABB3C5'%3E%3Cellipse cx='240' cy='660' rx='460' ry='250' fill-opacity='.13' transform='rotate(-20 240 660)'/%3E%3Ccircle cx='640' cy='330' r='330' fill-opacity='.09'/%3E%3Ccircle cx='1560' cy='190' r='300' fill-opacity='.08'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ABB3C5' stroke-opacity='.45'%3E%3Ccircle cx='430' cy='110' r='100'/%3E%3Ccircle cx='430' cy='110' r='114'/%3E%3Ccircle cx='430' cy='110' r='128'/%3E%3Ccircle cx='430' cy='110' r='142'/%3E%3Ccircle cx='430' cy='110' r='156'/%3E%3Ccircle cx='430' cy='110' r='170'/%3E%3Ccircle cx='430' cy='110' r='184'/%3E%3Ccircle cx='430' cy='110' r='198'/%3E%3Ccircle cx='430' cy='110' r='212'/%3E%3Ccircle cx='430' cy='110' r='226'/%3E%3Ccircle cx='1080' cy='80' r='90'/%3E%3Ccircle cx='1080' cy='80' r='104'/%3E%3Ccircle cx='1080' cy='80' r='118'/%3E%3Ccircle cx='1080' cy='80' r='132'/%3E%3Ccircle cx='1080' cy='80' r='146'/%3E%3Ccircle cx='1080' cy='80' r='160'/%3E%3Ccircle cx='1080' cy='80' r='174'/%3E%3Ccircle cx='1080' cy='80' r='188'/%3E%3Ccircle cx='1430' cy='400' r='140'/%3E%3Ccircle cx='1430' cy='400' r='156'/%3E%3Ccircle cx='1430' cy='400' r='172'/%3E%3Ccircle cx='1430' cy='400' r='188'/%3E%3Ccircle cx='1430' cy='400' r='204'/%3E%3Ccircle cx='1430' cy='400' r='220'/%3E%3Ccircle cx='1430' cy='400' r='236'/%3E%3Ccircle cx='1430' cy='400' r='252'/%3E%3Ccircle cx='1430' cy='400' r='268'/%3E%3C/g%3E%3C/svg%3E") top center / max(100%, 1100px) auto no-repeat;
    opacity: 0.38;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, rgba(0,0,0,.8) 55%, rgba(0,0,0,.55) 68%, rgba(0,0,0,.3) 80%, rgba(0,0,0,.12) 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 35%, rgba(0,0,0,.8) 55%, rgba(0,0,0,.55) 68%, rgba(0,0,0,.3) 80%, rgba(0,0,0,.12) 90%, transparent 100%);
  }
  .process > .wrap { position: relative; }
  .process-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
  .process-left { position: sticky; top: 110px; }
  .process-left h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; margin-bottom: 1.2rem; }
  .process-left h2 em { font-style: italic; color: var(--violet); }
  .process-left p { font-size: 1rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.4rem; }
  .step-cards { display: grid; gap: 1.1rem; }
  .step-card {
    background: #fff; border: 1px solid var(--line-light); border-radius: 16px;
    padding: 1.7rem 1.8rem 1.8rem; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  }
  .step-card .num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--mist); line-height: 1.3; }
  .step-card h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
  .step-card p { font-size: 0.95rem; color: var(--ink-soft); }
  .process-close { margin-top: 2rem; font-size: 0.98rem; color: var(--ink-soft); max-width: 60ch; }

  /* ── Pull quote ──────────────────────── */
  .pull { padding: clamp(3.5rem, 8vh, 5.5rem) 0; background: var(--paper); }
  .pull-inner { max-width: 820px; margin-inline: auto; text-align: center; }
  .pull .mark { font-family: var(--serif); font-size: 3rem; line-height: 0; color: var(--lavender); }
  .pull blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.3; margin: 1.6rem 0 1.6rem; }
  .pull blockquote em { font-style: italic; color: var(--violet); }
  .pull cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

  /* ── Alternating rows ────────────────── */
  .rows { background: #fff; border-block: 1px solid var(--line-light); }
  .row-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center; padding: clamp(2.6rem, 6vh, 4rem) 0;
  }
  .row-item + .row-item { border-top: 1px solid var(--line-light); }
  .row-media { border-radius: 14px; overflow: hidden; }
  .row-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .row-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.2; margin-bottom: 1rem; }
  .row-copy h3 { font-size: 1.15rem; margin: 1.2rem 0 0.4rem; }
  .row-copy p { font-size: 0.98rem; color: var(--ink-soft); max-width: 58ch; margin-bottom: 0.9rem; }
  .row-copy .arrow-link { margin-top: 0.5rem; }
  @media (min-width: 961px) {
    .row-item:nth-child(even) .row-media { order: 2; }
  }

  /* ── Partners ────────────────────────── */
  .partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
  .partner-card {
    background: #fff; border: 1px solid var(--line-light); border-radius: 16px; overflow: hidden;
    text-decoration: none; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .partner-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(22, 36, 60, 0.35); }
  .partner-card .photo { aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--paper-deep); }
  .partner-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.6s var(--ease); }
  .partner-card .photo img.crop-high { object-position: center 8%; }
  .partner-card:hover .photo img { transform: scale(1.03); }
  .partner-card .meta { padding: 1.5rem 1.7rem 1.7rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .partner-card h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
  .partner-card .role { font-size: 0.88rem; color: var(--ink-soft); }
  .partner-card .go { color: var(--violet); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
  .why-body { font-size: 1rem; color: var(--ink-soft); max-width: 68ch; margin-bottom: 1.1rem; }
  .why-body:last-of-type { margin-bottom: 2.4rem; }
  .why-body strong { color: var(--ink); font-weight: 600; }

  /* ── FAQ ─────────────────────────────── */
  .faq-list { border-top: 1px solid var(--line-light); }
  .faq-item { border-bottom: 1px solid var(--line-light); }
  .faq-q {
    width: 100%; background: none; border: none; text-align: left;
    font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
    padding: 1.5rem 3rem 1.5rem 0.4rem; cursor: pointer; position: relative;
  }
  .faq-q::after {
    content: "+"; position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%);
    font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--violet);
    transition: transform 0.35s var(--ease);
  }
  .faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
  .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
  .faq-a p { padding: 0 0.4rem 1.6rem; color: var(--ink-soft); font-size: 0.98rem; max-width: 65ch; }
  .faq-note { margin-top: 1.8rem; font-size: 0.85rem; color: var(--ink-soft); font-style: italic; max-width: 65ch; }

  /* ── Contact CTA + form ──────────────── */
  .contact { background: var(--navy); color: var(--on-dark); }
  .contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
  .contact h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 1.2rem; }
  .contact h2 em { font-style: italic; color: var(--lavender); }
  .contact .body { color: var(--on-dark-soft); font-weight: 300; max-width: 46ch; margin-bottom: 2.2rem; }
  .contact-phone { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; text-decoration: none; display: inline-block; margin-bottom: 0.4rem; }
  .contact-phone:hover { color: var(--lavender); }
  .contact .hours { font-size: 0.85rem; color: var(--on-dark-soft); }
  .lead-form {
    background: var(--navy-raise); border: 1px solid var(--line-dark); border-radius: 16px;
    padding: 2.5rem 2.4rem 2.6rem; display: grid; gap: 1.35rem;
  }
  .lead-form form { display: grid; gap: 1.35rem; }
  .lead-form label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-soft); display: grid; gap: 0.6rem; }
  .lead-form input, .lead-form textarea {
    width: 100%; background: rgba(248, 247, 251, 0.06); border: 1px solid var(--line-dark);
    border-radius: 12px; padding: 1.1rem 1.25rem; color: var(--on-dark);
    font-family: var(--sans); font-size: 1rem; letter-spacing: normal; text-transform: none;
  }
  .lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--lavender); outline-offset: 1px; border-color: transparent; }
  .lead-form textarea { resize: vertical; min-height: 110px; }
  .lead-form .btn { justify-self: start; margin-top: 0.5rem; padding: 1.05rem 2.2rem; }
  .lead-form .fine { font-size: 0.78rem; color: var(--on-dark-soft); letter-spacing: normal; text-transform: none; }
  .form-done { display: none; font-size: 1rem; color: var(--on-dark); padding: 0.6rem 0; }
  .lead-form.sent form { display: none; }
  .lead-form.sent .form-done { display: block; }
  .lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .form-error { display: none; font-size: 0.95rem; color: var(--on-dark); padding: 0.6rem 0; }
  .form-error a { color: var(--lavender); }
  .lead-form.failed .form-error { display: block; }
  .lead-form form[aria-busy="true"] { opacity: 0.6; pointer-events: none; }

  /* ── Footer ──────────────────────────── */
  footer { background: var(--navy); color: var(--on-dark-soft); border-top: 1px solid var(--line-dark); font-size: 0.88rem; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: 3.5rem 0 2.5rem; }
  footer .brand { color: var(--on-dark); }
  footer .brand small { color: var(--on-dark-soft); }
  footer .brand .amp { color: var(--lavender); }
  .foot-col h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lavender); margin-bottom: 1rem; }
  .foot-col ul { list-style: none; display: grid; gap: 0.55rem; }
  .foot-col a { text-decoration: none; }
  .foot-col a:hover { color: var(--lavender); }
  .foot-legal { border-top: 1px solid var(--line-dark); padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; }

  .rv { will-change: transform, opacity; }

  /* ── Responsive ──────────────────────── */
  @media (max-width: 960px) {
    .page-hero-grid, .fork-grid, .process-grid, .contact-grid, .row-item { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: clamp(2.1rem, 8.5vw, 2.6rem); }
    .hero-cards { grid-template-columns: 1fr; }
    .hero-card.media { display: block; }
    .fork-figure { margin-bottom: 0.4rem; }
    .fork-band-inner { flex-wrap: wrap; row-gap: 1rem; padding: 1.4rem 0; }
    .fork-band-inner .btn { margin-left: 0; }
    .process-left { position: static; }
    .row-item { padding: 2.4rem 0; gap: 1.6rem; }
    .row-media { order: -1; }
    .partners-grid { grid-template-columns: 1fr; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .menu-btn { display: grid; place-items: center; }
    .brand { white-space: nowrap; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .topbar .addr { display: none; }
    .topbar-inner { justify-content: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  }
