/* ==========================================================================
   FRC.com - "Civic Standard" design system (ported from concepts/civic-standard)
   Archetype: Immersive federal editorial (deep navy / bone / single aged-brass accent)
   Display: Schibsted Grotesk (grotesque, tight tracking)   Body/UI: Inter
   Accent: aged brass #B08D57 as hairlines, card-top rules, small marks AND the
   single primary CTA fill. Dark hero/bands alternate with lighter reading sections.
   Legacy class + token NAMES are kept so every generator page inherits the new
   skin; their VALUES now carry the Civic Standard palette. Source of truth,
   never hand-edit design/. Rebuild: node build/build.mjs
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette (named) */
  --abyss:       #0A1526;   /* deepest navy: footer floor, deep bands, hero base */
  --navy:        #0B1F3A;   /* Federal Navy: structure, hero, dark bands, header */
  --navy-deep:   #0A1526;   /* alias of abyss (legacy) */
  --navy-panel:  #13294A;   /* slate: panels/cards on navy */
  --slate-navy:  #13294A;
  --parchment:   #F4F6F9;   /* light canvas: body + base reading sections */
  --paper:       #FFFFFF;   /* white: cards, inputs */
  --card:        #FFFFFF;
  --sand:        #E9EDF2;   /* deeper light alt band */
  --sand-soft:   #F0F3F7;
  --fog-2:       #F3F5F8;
  --ink:         #141922;   /* near-black text on light */
  --slate:       #5B6472;   /* muted secondary text on light */
  --brass:       #B08D57;   /* Aged Brass: hairlines, rules, numerals, CTA fill */
  --brass-lt:    #C6A06A;   /* lighter brass: on-navy kickers, accent word, hover */
  --brass-dp:    #9A7B45;   /* readable brass text on light */
  --gold:        #B08D57;   /* legacy alias -> brass */
  --gold-lt:     #C6A06A;   /* legacy alias -> brass-lt */
  --gold-deep:   #9A7B45;   /* legacy alias -> brass-dp */
  --ember:       #B08D57;   /* legacy CTA alias -> brass (ONE accent) */
  --ember-dk:    #C6A06A;   /* CTA hover -> brass-lt */
  --fog:         #D8DEE6;   /* dividers on light */
  --hairline:    #D8DEE6;
  --line:        #D8DEE6;
  --line-2:      #C9D2DD;
  --bone:        #ECE7DD;   /* warm bone text on navy */
  --bone-mut:    #AEB6C2;   /* muted text on navy */
  --navy-line:   rgba(236,231,221,.14);  /* bone hairline on navy */
  --navy-line-2: rgba(236,231,221,.22);
  --brass-line-navy: rgba(176,141,87,.42); /* brass hairline on navy */
  /* legacy aliases still referenced by inline styles */
  --clay:        #9A7B45;
  --frc-navy:    #0B1F3A;
  --frc-gold:    #C6A06A;
  --green-lite:  #C6A06A;

  /* type */
  --f-display: "Schibsted Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-hero: clamp(2.5rem, 1.05rem + 5.5vw, 4.6rem);
  --fs-h1:   clamp(2rem, 1.2rem + 3vw, 3.15rem);
  --fs-h2:   clamp(1.7rem, 1.1rem + 2vw, 2.55rem);
  --fs-h3:   clamp(1.15rem, 1rem + 0.55vw, 1.35rem);
  --fs-lead: clamp(1.06rem, 1rem + 0.35vw, 1.2rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-small: 0.9rem;
  --fs-kicker: 0.75rem;

  /* spacing */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:24px; --s6:32px;
  --s7:48px; --s8:64px; --s9:96px; --s10:128px;

  /* radius (editorial, near-sharp) */
  --r1:6px; --r2:8px; --r3:10px; --r-pill:999px;
  --r-sm:8px; --r-md:12px; --r-lg:14px;

  /* shadow (navy-tinted) */
  --sh1: 0 1px 2px rgba(10,21,38,.06), 0 6px 20px rgba(10,21,38,.08);
  --sh2: 0 2px 6px rgba(10,21,38,.10), 0 16px 40px rgba(10,21,38,.14);
  --sh-glass: 0 4px 12px rgba(10,21,38,.14), 0 24px 56px rgba(10,21,38,.20);

  /* motion */
  --t-fast: 150ms; --t-base: 240ms; --t-slow: 520ms;
  --ease: cubic-bezier(.22,.61,.36,1);

  --wrap: 1220px;
}

/* ---------- 2. Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,svg,video { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
svg:not([class]) { width: 1.15em; height: 1.15em; }
a { color: inherit; text-decoration: none; }
strong,b { font-weight: 700; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance; color: var(--ink); }
h1 em, h2 em, h3 em { font-style: normal; color: var(--brass-dp); }
p { text-wrap: pretty; }
sup.sm, .sm { font-size: .5em; vertical-align: .72em; letter-spacing: 0; font-weight: 600; }
:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--brass-lt); color: var(--navy); }

/* ---------- 3. Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
.wrap-narrow { max-width: 820px; }
.section { padding-block: clamp(66px, 8vw, 116px); }
.section--tight { padding-block: clamp(44px, 3vw + 28px, 72px); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--bone); }
.section--navy.deep { background: var(--abyss); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--bone); }
.section--navy p { color: var(--bone-mut); }
.measure { max-width: 68ch; }
.center { text-align: center; }

.kicker, .eyebrow {
  display: inline-block;
  font-family: var(--f-body); font-weight: 600;
  font-size: var(--fs-kicker); letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-dp); margin-bottom: 14px;
}
.section--navy .kicker, .frc-band .kicker, .cta-band .kicker, .setpiece .kicker, .on-navy .kicker,
.pgh--navy .kicker, .standard .kicker { color: var(--brass-lt); }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--slate); }
.section--navy .lead, .on-navy .lead { color: var(--bone-mut); }
.tnum { font-variant-numeric: tabular-nums; }

/* brass rule (the civic hairline mark under a kicker) */
.rule { height: 1px; background: var(--brass); opacity: .6; width: 56px; margin: 0 0 26px; border: 0; }
.center .rule { margin-inline: auto; }

/* ==========================================================================
   4. HEADER  (single-row navy masthead; transparent over the home hero)
   ========================================================================== */
/* Utility top bar: trust line (left) + phone & verify (right), above the masthead. */
.topbar { background: var(--navy-deep); border-bottom: 1px solid var(--navy-line); font-size: .78rem; }
.topbar > .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); min-height: 36px; }
.topbar__trust { display: inline-flex; align-items: center; gap: 10px; color: var(--bone-mut); letter-spacing: .01em; margin: 0; }
.topbar__trust .topbar__sys { color: var(--brass-lt); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.topbar__sep { color: var(--navy-line-2); }
.topbar__end { display: inline-flex; align-items: center; gap: 22px; }
.topbar__tel { display: inline-flex; align-items: center; gap: 6px; color: var(--bone); font-weight: 600; font-variant-numeric: tabular-nums; }
.topbar__tel svg { width: 13px; height: 13px; color: var(--brass-lt); }
.topbar__verify { display: inline-flex; align-items: center; gap: 5px; color: var(--bone-mut); font-weight: 500; transition: color var(--t-fast) var(--ease); }
.topbar__verify svg { width: 13px; height: 13px; transition: transform var(--t-fast) var(--ease); }
.topbar__verify:hover { color: var(--brass-lt); }
.topbar__verify:hover svg { transform: translateX(3px); }
.topbar__pro { display: inline-flex; align-items: center; color: var(--bone-mut); font-weight: 500; transition: color var(--t-fast) var(--ease); }
.topbar__pro:hover { color: var(--brass-lt); }
.topbar__cta { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 999px; background: var(--brass); color: var(--abyss); font-weight: 700; font-size: .76rem; letter-spacing: .01em; white-space: nowrap; transition: background var(--t-fast) var(--ease); }
.topbar__cta svg { width: 13px; height: 13px; transition: transform var(--t-fast) var(--ease); }
.topbar__cta:hover { background: var(--brass-lt); }
.topbar__cta:hover svg { transform: translateX(3px); }
/* homepage: topbar sits in normal flow (transparent over the hero) and SCROLLS AWAY; only the masthead sticks */
.navytop .topbar { position: relative; z-index: 99; background: transparent; border-bottom-color: transparent; }
@media (max-width: 640px) {
  .topbar { display: none; }
  .navytop .hero { margin-top: -68px; }
}

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid var(--navy-line);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.masthead.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
.masthead__row { display: flex; align-items: center; gap: var(--s5); min-height: 74px; }
/* homepage: transparent header floating over the full-bleed hero, solidifies on scroll */
.navytop .masthead { background: transparent; border-bottom-color: transparent; box-shadow: none; }
.navytop .hero { margin-top: -112px; }
.navytop .masthead.is-scrolled { background: rgba(8,17,32,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--navy-line); }
/* Belt-and-suspenders against a light sliver at the very top: the hero pull below
   must cover the full header height (topbar 37 + masthead 75 = 112px). */

/* Real logo (white on navy): full wordmark at top, collapses to the FRC mark on scroll.
   Both SVGs stack absolutely inside .logo; scroll cross-fades opacity while the container
   width animates from wordmark to mark so the nav row re-tightens. */
.logo { position: relative; display: inline-block; height: 56px; width: 178px; flex-shrink: 0; transition: width .35s var(--ease); }
.logo__full, .logo__mark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: block; width: auto; transition: opacity .3s var(--ease); }
.logo__full { height: 48px; opacity: 1; }
.logo__mark { height: 38px; opacity: 0; }
.masthead.is-scrolled .logo { width: 42px; }
.masthead.is-scrolled .logo__full { opacity: 0; }
.masthead.is-scrolled .logo__mark { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .logo, .logo__full, .logo__mark { transition: none; } }
/* Text wordmark (footer): brass-outlined FRC mono square + stacked lockup */
.brand-mono { width: 42px; height: 42px; border: 1px solid var(--brass); border-radius: 5px; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: .92rem; letter-spacing: .02em; color: var(--brass-lt); flex-shrink: 0; }
.brand-wm { display: flex; flex-direction: column; line-height: 1.12; }
.brand-wm b { font-family: var(--f-display); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); }
.brand-wm span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-mut); }

.mainnav { margin-left: auto; }
.mainnav__list { display: flex; align-items: center; gap: 2px; list-style: none; }
.mainnav__item { display: flex; }
.mainnav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 8px 10px;
  font-family: var(--f-body); font-size: .855rem; font-weight: 500; color: var(--bone-mut);
  background: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.mainnav__link::after { content: ""; position: absolute; left: 12px; right: 100%; bottom: 2px; height: 2px; background: var(--brass-lt); transition: right var(--t-base) var(--ease); }
.mainnav__link:hover::after, .mainnav__item.is-active > .mainnav__link::after { right: 12px; }
.mainnav__link:hover, .mainnav__item.is-active > .mainnav__link { color: var(--bone); }
.mega__chev { display: inline-flex; }
.mega__chev svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease); }
.has-mega.is-open > .mainnav__link .mega__chev svg { transform: rotate(180deg); }

.masthead__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: 14px; }
.hdr-tel { display: inline-flex; align-items: center; gap: 7px; font-size: .855rem; color: var(--bone); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hdr-tel svg { width: 15px; height: 15px; color: var(--brass-lt); }

/* Mega panel (kept for parity; current IA renders flat links) */
.mega__panel {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 60;
  background: var(--navy); border-top: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line);
  box-shadow: var(--sh2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-mega.is-open > .mega__panel { opacity: 1; visibility: visible; transform: none; }
.mega__btn { position: relative; }
.has-mega.is-open > .mega__btn::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 30px; }
.mega__inner { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 48px; padding-block: 44px 46px; align-items: start; }
.mega__col { min-width: 0; }
.mega__col--lead { padding-right: 48px; border-right: 1px solid var(--navy-line); }
.mega__eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: var(--s4); line-height: 1; }
.mega__lead { display: inline-block; font-family: var(--f-display); font-size: 1.24rem; font-weight: 600; color: var(--bone); line-height: 1.2; letter-spacing: -.01em; }
.mega__lead svg { display: inline-block; vertical-align: -2px; width: 17px; height: 17px; margin-left: 6px; color: var(--brass-lt); }
.mega__desc { color: var(--bone-mut); font-size: .92rem; line-height: 1.6; margin-top: var(--s3); }
.mega__leadlinks { list-style: none; padding: 0; margin: var(--s5) 0 0; display: flex; flex-direction: column; gap: 12px; }
.mega__leadlinks a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .95rem; color: var(--bone); }
.mega__leadlinks a svg { width: 15px; height: 15px; color: var(--brass-lt); }
.mega__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mega__links a { display: block; padding: 9px 10px; margin: 0 -10px; border-radius: var(--r1); color: var(--bone-mut); font-weight: 500; font-size: .95rem; line-height: 1.35; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.mega__links a:hover { background: rgba(255,255,255,.05); color: var(--bone); }

.burger { display: none; }
.mobile { display: none; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r1); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--brass); color: #1a1206; box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 8px 22px rgba(176,141,87,.24); }
.btn--primary:hover { background: var(--brass-lt); color: #1a1206; transform: translateY(-2px); }
.btn--dark { background: var(--navy); color: var(--bone); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-panel); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; padding-inline: 6px; }
.btn--ghost:hover { color: var(--brass-dp); }
.btn--ghost-navy, .btn--navy-out, .btn--light-out { background: transparent; color: var(--bone); border-color: var(--navy-line-2); }
.btn--ghost-navy:hover, .btn--navy-out:hover, .btn--light-out:hover { border-color: var(--bone); color: var(--bone); transform: translateY(-2px); }
.btn--gold, .btn--yellow { background: var(--brass); color: #1a1206; border-color: var(--brass); box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 8px 22px rgba(176,141,87,.24); }
.btn--gold:hover, .btn--yellow:hover { background: var(--brass-lt); color: #1a1206; }
.btn--sm { padding: 11px 18px; font-size: .88rem; }
.btn--pill { border-radius: var(--r1); }
.btn--pill.btn--sm { padding: 10px 16px; font-size: .86rem; }
.btn--block { width: 100%; }
/* on-light ghost-navy variant reads as outline */
.section:not(.section--navy) .btn--ghost-navy { color: var(--ink); border-color: var(--line-2); }
.section:not(.section--navy) .btn--ghost-navy:hover { border-color: var(--ink); color: var(--ink); }

.link-arrow, .linkarrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-body); font-weight: 600; font-size: .95rem; color: var(--brass-dp); }
.link-arrow svg, .linkarrow svg { width: 17px; height: 17px; color: var(--brass); transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg, .linkarrow:hover svg { transform: translateX(4px); }
.section--navy .link-arrow, .section--navy .linkarrow, .setpiece .link-arrow, .on-navy .link-arrow { color: var(--brass-lt); }
.section--navy .link-arrow svg, .on-navy .link-arrow svg { color: var(--brass-lt); }

/* ==========================================================================
   6a. CIVIC HERO (homepage full-bleed photographic scrim hero)
   ========================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; padding: 156px 0 88px; overflow: hidden; background: var(--navy); color: var(--bone); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .hero-still, .hero-bg .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
/* The still is the poster/LCP paint (and the reduced-motion fallback); the Veo
   loop plays on top of it once buffered. */
.hero-bg .hero-video { z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero-bg .hero-video { display: none; } }
/* Legacy crossfade carousel (retired in favour of the video loop; kept for any
   page still using .hero-carousel). */
.hero-carousel .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; will-change: opacity; }
.hero-carousel .hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-carousel .hero-slide { transition: none; } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, var(--abyss) 0%, rgba(10,21,38,.90) 34%, rgba(10,21,38,.42) 66%, rgba(11,31,58,.15) 100%),
  linear-gradient(0deg, var(--abyss) 2%, rgba(10,21,38,.35) 40%, rgba(10,21,38,.55) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero-in { max-width: 780px; }
.hero h1 { font-size: var(--fs-hero); letter-spacing: -.025em; font-weight: 700; color: var(--bone); }
.hero h1 em { font-style: normal; color: var(--brass-lt); }
.hero .lead { margin: 24px 0 0; color: #D5DAE2; max-width: 56ch; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 22px; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--brass-lt); }
.hero-tags b { color: var(--bone-mut); font-weight: 600; }
.hero-tags .sep { color: var(--navy-line-2); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.microtrust { display: flex; align-items: flex-start; gap: 10px; margin-top: 26px; font-size: .86rem; color: var(--bone-mut); max-width: 54ch; }
.microtrust svg { width: 17px; height: 17px; color: var(--brass-lt); flex-shrink: 0; margin-top: 3px; }

/* ---- 6b. Legacy HERO B (framed inset) - restyled civic, used by inner/company pages ---- */
.herob { position: relative; background: var(--navy); color: var(--bone); overflow: hidden; }
.herob::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 92% at 88% 6%, rgba(19,41,74,.6) 0%, rgba(10,21,38,0) 56%); pointer-events: none; }
.herob__grid { position: relative; display: grid; grid-template-columns: 1.04fr .82fr; gap: 64px; align-items: center; padding: 120px 0 98px; }
.navytop .herob__grid { padding-top: 186px; }
.herob__copy { max-width: 620px; }
.hero__eyebrow { color: var(--brass-lt); }
.hero__title { font-size: var(--fs-hero); font-weight: 700; color: var(--bone); line-height: 1.05; letter-spacing: -.025em; }
.hero__title em { font-style: normal; color: var(--brass-lt); }
.hero__lead { margin-top: 24px; font-size: var(--fs-lead); color: #C6CFDE; max-width: 56ch; }
.hero__cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--bone); font-weight: 600; }
.hero__phone svg { width: 19px; height: 19px; color: var(--brass-lt); }
.hero__phone b { font-variant-numeric: tabular-nums; }
.herob__media { position: relative; }
.herob__frame { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--navy-line); box-shadow: 0 2px 8px rgba(0,0,0,.35), 0 34px 72px rgba(0,0,0,.5); }
.herob__frame::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px rgba(176,141,87,.18); pointer-events: none; }
.herob__img { display: block; width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; }
.herob__chip { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px; border-radius: 11px; background: rgba(10,21,38,.86); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border: 1px solid var(--navy-line); color: var(--bone); font-size: .94rem; line-height: 1.4; }
.herob__chip svg { width: 20px; height: 20px; color: var(--brass-lt); flex-shrink: 0; margin-top: 1px; }
.herob__chip b { font-weight: 700; color: #fff; }

.statrail { background: var(--navy); }
.statrail__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--navy-line); }
.statrail__cell { padding: 34px 34px 36px; border-left: 1px solid var(--navy-line); }
.statrail__cell:first-child { border-left: 0; padding-left: 0; }
.statrail__num { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(2.7rem, 2rem + 2.6vw, 3.5rem); line-height: .95; letter-spacing: -.02em; color: var(--brass-lt); }
.statrail__cell span { display: block; margin-top: 14px; color: var(--bone-mut); font-size: .9rem; line-height: 1.5; max-width: 30ch; }

/* ==========================================================================
   6c. CIVIC HOMEPAGE MODULES (premise, review grid, steps, designation, closer)
   ========================================================================== */
/* premise (light two-column with framed figure) */
.premise-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.premise h2 { font-size: var(--fs-h2); max-width: 20ch; }
.premise p { color: var(--slate); margin-top: 22px; max-width: 54ch; }
.figure { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh2); margin: 0; }
.figure::after { content: ""; position: absolute; inset: 0; outline: 1px solid rgba(10,21,38,.14); outline-offset: -1px; border-radius: var(--r-lg); pointer-events: none; }
.figure img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.figure .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 24px 18px; background: linear-gradient(0deg, rgba(10,21,38,.82), transparent); color: var(--bone); font-size: .82rem; letter-spacing: .02em; }

/* review grid (dark) */
.rev-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.rev-head h2 { font-size: var(--fs-h2); max-width: 16ch; color: var(--bone); }
.rev-head p { color: var(--bone-mut); max-width: 40ch; }
.grid6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rcard { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r1); padding: 30px 28px 32px; position: relative; transition: transform .18s var(--ease), border-color .18s var(--ease); }
.rcard::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: var(--brass); opacity: .7; }
.rcard:hover { transform: translateY(-3px); border-color: var(--navy-line-2); }
.rcard .ic { width: 44px; height: 44px; border: 1px solid var(--navy-line-2); border-radius: 8px; display: grid; place-items: center; color: var(--brass-lt); margin-bottom: 20px; }
.rcard .ic svg { width: 23px; height: 23px; }
.rcard h3 { font-size: var(--fs-h3); color: var(--bone); margin-bottom: 10px; letter-spacing: -.01em; }
.rcard p { color: var(--bone-mut); font-size: .95rem; line-height: 1.6; }
.rcard .tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-lt); }
.rcard .tag::before { content: ""; width: 16px; height: 1px; background: var(--brass); }

/* how it works (light, numbered steps over hairline) */
.how-head { max-width: 60ch; margin-bottom: 56px; }
.how-head h2 { font-size: var(--fs-h2); max-width: 18ch; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.step .num { font-family: var(--f-display); font-weight: 700; font-size: 2.6rem; color: var(--brass); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 18px; }
.step h3 { font-size: var(--fs-h3); color: var(--ink); margin-bottom: 10px; }
.step p { color: var(--slate); font-size: .98rem; }

/* designation / trust band (photographic, dark) */
.desig { position: relative; padding: clamp(84px, 11vw, 150px) 0; overflow: hidden; text-align: center; color: var(--bone); }
.desig-bg { position: absolute; inset: 0; z-index: 0; }
.desig-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.desig-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,21,38,.93), rgba(10,21,38,.80) 50%, rgba(10,21,38,.90)); }
.desig .wrap { position: relative; z-index: 2; }
.desig-in { max-width: 760px; margin: 0 auto; }
.desig .seal-line { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 22px; }
.desig .seal-line span { width: 34px; height: 1px; background: var(--brass); opacity: .6; }
.desig h2 { font-size: var(--fs-h2); margin-bottom: 22px; color: var(--bone); }
.desig p { color: #CBD2DC; font-size: 1.06rem; margin: 0 auto 16px; max-width: 60ch; }
.desig .fine { font-size: .9rem; color: var(--bone-mut); }
.desig a.verify { display: inline-flex; align-items: center; gap: 9px; margin-top: 30px; color: var(--brass-lt); font-weight: 600; border-bottom: 1px solid var(--brass); padding-bottom: 3px; transition: gap .15s var(--ease); }
.desig a.verify:hover { gap: 14px; }
.desig a.verify svg { width: 16px; height: 16px; }

/* closer (deep navy, copy + framed portrait) */
.closer { background: var(--abyss); padding: clamp(72px, 9vw, 120px) 0; color: var(--bone); }
.closer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.closer h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem); max-width: 15ch; margin-bottom: 20px; color: var(--bone); }
.closer p { color: var(--bone-mut); max-width: 46ch; margin-bottom: 30px; }
.closer .cta-row { margin-top: 0; }
.closer .figure img { aspect-ratio: 4/3; }
.closer .figure::after { outline-color: var(--navy-line-2); }

/* ---------- home: editorial stakes statement (big type, no cards) ---------- */
.stakes-in { max-width: 920px; }
.stakes-lead { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.7rem, 1.05rem + 2.5vw, 2.9rem); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.stakes-lead em { font-style: normal; color: var(--brass-dp); border-bottom: 2px solid var(--brass); padding-bottom: 2px; }
.stakes-sub { margin-top: clamp(24px, 3vw, 34px); max-width: 62ch; color: var(--slate); font-size: var(--fs-lead); line-height: 1.62; }

/* ---------- connective narration (guide bridges between modules) ---------- */
.narr { max-width: 62ch; }
.narr .kicker { display: block; margin-bottom: 14px; }
.narr p { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.18rem, 1.02rem + .55vw, 1.5rem); line-height: 1.5; letter-spacing: -.01em; color: var(--ink); text-wrap: pretty; }
.narr p + p { margin-top: 16px; }
.narr p em { font-style: normal; color: var(--brass-dp); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.section--navy .narr p { color: var(--bone); }

/* ---------- home: decision ledger (consolidates review grid + permanent band) ---------- */
.ledger-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 48px; margin-bottom: clamp(30px, 4vw, 46px); flex-wrap: wrap; }
.ledger-head h2 { font-size: var(--fs-h2); max-width: 15ch; }
.ledger-head > p { color: var(--slate); max-width: 42ch; font-size: 1rem; line-height: 1.6; }
.ledger { border-top: 1px solid var(--ink); }
.ledger__legend { display: grid; grid-template-columns: 1fr 260px; gap: 24px; padding: 13px 0 13px 70px; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--brass-dp); border-bottom: 1px solid var(--line); }
.ledger__row { display: grid; grid-template-columns: 48px 1fr 260px; align-items: center; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); transition: background var(--t-base) var(--ease); }
.ledger__row:hover { background: var(--sand-soft); }
.ledger__ic { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: var(--r-md); border: 1px solid var(--line-2); color: var(--brass-dp); }
.ledger__ic svg { width: 24px; height: 24px; }
.ledger__body h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 5px; letter-spacing: -.01em; }
.ledger__body p { color: var(--slate); font-size: .95rem; line-height: 1.55; max-width: 54ch; }
.ledger__flag { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; line-height: 1.3; color: var(--slate); }
.ledger__flag svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--slate); }
.ledger__row.is-perm .ledger__ic { border-color: var(--brass); color: var(--brass-dp); background: rgba(176,141,87,.08); }
.ledger__row.is-perm .ledger__flag { color: var(--brass-dp); font-weight: 700; }
.ledger__row.is-perm .ledger__flag svg { color: var(--brass); }

/* ---------- home: numbers section (left copy + navy stat cards) ---------- */
.statsec-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.statsec-copy h2 { font-size: var(--fs-h2); max-width: 18ch; }
.statsec-copy p { margin-top: 18px; color: var(--slate); max-width: 48ch; }
.statsec-copy .link-arrow { margin-top: 24px; }
.statcards { display: grid; gap: 16px; }
/* numbers section, now seated on a navy band: give cards a lighter panel + brass hairline so they read as designed, not floating */
.statsec--navy .statsec-copy p { color: var(--bone-mut); }
.statsec--navy .statcard { position: relative; background: var(--navy-panel); border-color: var(--navy-line); }
.statsec--navy .statcard::before { content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 2px; background: var(--brass); opacity: .75; }
.statcard { display: grid; grid-template-columns: 82px 1fr; column-gap: 20px; align-items: start; background: var(--navy); border: 1px solid rgba(198,160,106,.20); border-radius: var(--r-lg); padding: 24px 26px 22px; }
.statcard__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.1rem, 1.5rem + 1.6vw, 2.8rem); line-height: .9; letter-spacing: -.02em; color: var(--brass-lt); }
.statcard__lab { color: var(--bone-mut); font-size: .93rem; line-height: 1.5; }
.statcard__meter { grid-column: 1 / -1; height: 8px; border-radius: var(--r-pill); background: rgba(236,231,221,.12); overflow: hidden; margin-top: 18px; }
.statcard__meter span { display: block; height: 100%; border-radius: var(--r-pill); background: var(--brass); }
.statcard__foot { grid-column: 1 / -1; margin-top: 11px; font-size: .78rem; color: var(--bone-mut); line-height: 1.45; }

/* ---------- home: permanent-decisions band (navy) ---------- */
.perm-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: end; margin-bottom: clamp(36px, 4vw, 52px); }
.perm-head h2 { font-size: var(--fs-h2); max-width: 16ch; }
.perm-head > p { color: var(--bone-mut); max-width: 42ch; }
.permgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.permcard { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r-lg); padding: 30px 28px 28px; }
.permcard__ic { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--r-md); background: rgba(198,160,106,.13); color: var(--brass-lt); margin-bottom: 18px; }
.permcard__ic svg { width: 22px; height: 22px; }
.permcard h3 { font-size: var(--fs-h3); margin-bottom: 10px; color: var(--bone); }
.permcard p { color: var(--bone-mut); font-size: .96rem; line-height: 1.55; }

/* ---------- home: who a review is for (light) ---------- */
.who-head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 48px); }
.who-head h2 { font-size: var(--fs-h2); }
.who-head p { margin-top: 16px; color: var(--slate); }
/* Bento: 6-col grid, alternating wide (span 4) + normal (span 2) so the section
   reads as a varied layout, not four identical tiles. */
.whogrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.whocard { grid-column: span 2; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 30px; transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.whocard--wide { grid-column: span 4; }
.whocard:hover { border-color: rgba(176,141,87,.4); box-shadow: 0 1px 2px rgba(11,31,58,.04), 0 18px 40px rgba(11,31,58,.07); transform: translateY(-2px); }
.whocard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.whocard__ic { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: var(--r-md); background: var(--sand-soft); color: var(--brass-dp); }
.whocard__ic svg { width: 22px; height: 22px; }
.whocard__tag { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-dp); }
.whocard h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--ink); }
.whocard--wide h3 { font-size: 1.42rem; }
.whocard p { color: var(--slate); font-size: .95rem; line-height: 1.58; }
.whocard--wide p { max-width: 62ch; }
.whocard__link { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--brass-dp); font-weight: 600; font-size: .9rem; }
.whocard__link svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease); }
.whocard__link:hover svg { transform: translateX(3px); }
/* shared closing CTA (turns "is this you?" into an action, not a dead end) */
.who-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px 44px; flex-wrap: wrap; margin-top: clamp(28px, 3.5vw, 44px); padding: clamp(30px, 3.5vw, 46px); background: var(--navy); border-radius: var(--r-lg); }
.who-cta h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); color: var(--bone); margin-bottom: 8px; max-width: 20ch; letter-spacing: -.01em; }
.who-cta p { color: var(--bone-mut); font-size: .98rem; line-height: 1.55; max-width: 48ch; }
.who-cta__act { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.who-cta .btn--ghost { color: var(--bone); }
.who-cta .btn--ghost:hover { color: var(--brass-lt); }

/* ---------- home: FAQ section ---------- */
.faq-head { margin-bottom: clamp(28px, 3.5vw, 40px); }
.faq-head h2 { font-size: var(--fs-h2); }
.faq-more { text-align: center; margin-top: 30px; }

@media (max-width: 860px) {
  .statsec-grid, .perm-head, .permgrid { grid-template-columns: 1fr; }
  .perm-head { align-items: start; gap: 14px; margin-bottom: 32px; }
  .whogrid { grid-template-columns: 1fr 1fr; }
  .whocard { grid-column: auto; }
  .whocard--wide { grid-column: 1 / -1; }
  .ledger-head { align-items: start; gap: 12px; }
  .ledger__legend { display: none; }
  .ledger__row { grid-template-columns: 46px 1fr; gap: 6px 18px; padding: 22px 0; align-items: start; }
  .ledger__ic { grid-row: 1 / span 2; }
  .ledger__flag { grid-column: 2; margin-top: 4px; }
  .who-cta { flex-direction: column; align-items: stretch; }
  .who-cta__act .btn { justify-content: center; }
}
@media (max-width: 540px) {
  .whogrid { grid-template-columns: 1fr; }
  .whocard, .whocard--wide { grid-column: auto; }
  .statcard { grid-template-columns: 64px 1fr; column-gap: 16px; padding: 22px; }
}

/* ---------- 7. Section headers ---------- */
.sec-head { max-width: 680px; margin-bottom: var(--s7); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: var(--fs-h2); }
.sec-head p { margin-top: 14px; color: var(--slate); font-size: var(--fs-lead); line-height: 1.55; }
.section--navy .sec-head p { color: var(--bone-mut); }

/* ---------- 8. Cards, grids, features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); position: relative; }
.card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: var(--brass); opacity: .7; }
.card--link { transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease); color: var(--ink); display: block; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-color: var(--line-2); }
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--s2); }
.card p { color: var(--slate); font-size: .97rem; }
.card__ico { width: 46px; height: 46px; border-radius: var(--r2); border: 1px solid var(--line); color: var(--brass-dp); display: grid; place-items: center; margin-bottom: var(--s4); }
.card__ico svg { width: 23px; height: 23px; }

.feature { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }
.feature--flip .feature__media { order: -1; }
.feature__copy .lead { margin-top: 16px; color: var(--slate); font-size: var(--fs-lead); }
.feature__media { position: relative; }
.feature__media img { border-radius: var(--r3); box-shadow: var(--sh2); width: 100%; }
.feature__cap { text-align: center; color: var(--slate); font-size: .9rem; margin-top: 16px; }

/* directory verification mock */
.verifycard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); box-shadow: var(--sh2); padding: 26px; position: relative; }
.verifycard::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--brass); border-radius: var(--r3) var(--r3) 0 0; }
.verifycard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.verifycard__head .kicker { margin: 0; }
.verifycard__ico { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brass-dp); }
.verifycard__ico svg { width: 19px; height: 19px; }
.verifycard__row { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.verifycard__body { min-width: 0; }
.verifycard__body h4 { font-size: 1.2rem; margin: 0; line-height: 1.2; }
.verifycard__cred { color: var(--brass-dp); font-weight: 600; font-size: .9rem; margin-top: 3px; letter-spacing: .02em; }
.verifycard__badge { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; background: rgba(44,94,79,.1); color: #2C5E4F; font-size: .8rem; font-weight: 700; padding: 6px 11px; border-radius: var(--r-pill); }
.verifycard__badge svg { width: 15px; height: 15px; }
.verifycard__facts { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 13px; }
.verifycard__facts li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: .94rem; }
.verifycard__facts svg { width: 19px; height: 19px; color: var(--brass); flex-shrink: 0; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--brass-lt); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; letter-spacing: .02em; }

/* ---------- 9. Breadcrumbs ---------- */
.crumbs { font-size: var(--fs-small); color: var(--slate); padding-block: var(--s5) 0; background: var(--parchment); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--brass-dp); }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* In-hero breadcrumb (sits in the photographic header band, above a brass hairline) */
.pgh-crumbs { position: relative; z-index: 2; font-size: var(--fs-small); padding-bottom: 16px; margin-bottom: clamp(20px, 2.4vw, 30px); border-bottom: 1px solid var(--brass-line-navy); }
.pgh-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pgh-crumbs a { color: var(--slate); transition: color var(--t-fast) var(--ease); }
.pgh-crumbs a:hover { color: var(--brass-dp); }
.pgh-crumbs [aria-current] { color: var(--ink); font-weight: 600; }
.pgh-crumbs__sep { display: inline-flex; }
.pgh-crumbs__sep svg { width: 13px; height: 13px; color: var(--brass-dp); opacity: .8; transform: rotate(-90deg); }
.pgh--navy .pgh-crumbs { border-bottom-color: var(--brass-line-navy); }
.pgh--navy .pgh-crumbs a { color: var(--bone-mut); }
.pgh--navy .pgh-crumbs a:hover { color: var(--brass-lt); }
.pgh--navy .pgh-crumbs [aria-current] { color: var(--bone); }
.pgh--navy .pgh-crumbs__sep svg { color: var(--brass-lt); }

/* ---------- 10. Article / guide prose ---------- */
.doc { display: grid; grid-template-columns: 250px 1fr; gap: var(--s8); align-items: start; }
.toc { position: sticky; top: 92px; font-size: .9rem; display: flex; flex-direction: column; gap: var(--s5); }
.toc__label { font-size: var(--fs-kicker); letter-spacing: .14em; text-transform: uppercase; color: var(--slate); font-weight: 700; margin-bottom: var(--s3); }
.toc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.toc ol a { display: block; padding: 8px 12px; border-left: 2px solid var(--line); color: var(--slate); }
.toc ol a:hover, .toc ol a.is-active { color: var(--navy); border-left-color: var(--brass); background: rgba(11,31,58,.04); }

.prose { max-width: 74ch; }
.prose > * + * { margin-top: var(--s5); }
.prose h2 { font-size: var(--fs-h2); margin-top: var(--s8); scroll-margin-top: 92px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-h3); margin-top: var(--s6); }
.prose p, .prose li { font-size: 1.07rem; line-height: 1.72; color: #2f343d; }
.prose ul, .prose ol { padding-left: var(--s5); display: flex; flex-direction: column; gap: var(--s2); }
.prose li::marker { color: var(--brass-dp); }
.prose a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(176,141,87,.6); text-underline-offset: 3px; font-weight: 600; }
.prose a:hover { text-decoration-color: var(--brass); }
.analogy-open {
  font-family: var(--f-display); font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
  font-weight: 500; line-height: 1.4; color: var(--navy);
  padding-left: var(--s5); border-left: 3px solid var(--brass);
}
.analogy-open em { font-style: normal; color: var(--brass-dp); }
.doc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s5); }

/* pros / cons */
.proscons { margin-block: var(--s6); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--paper); }
.proscons table { width: 100%; border-collapse: collapse; }
.proscons thead th { background: var(--navy); color: var(--bone); font-family: var(--f-display); font-weight: 600; font-size: 1rem; text-align: left; padding: 15px var(--s5); width: 50%; }
.proscons thead th + th { border-left: 1px solid var(--navy-line); }
.proscons td { padding: 12px var(--s5); font-size: .96rem; color: #2f343d; vertical-align: top; border-top: 1px solid var(--line); width: 50%; }
.proscons td + td { border-left: 1px solid var(--line); }
.proscons td span { display: inline-flex; gap: 9px; align-items: flex-start; }
.proscons td svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.proscons .pro svg { color: #2C5E4F; }
.proscons .con svg { color: #B4451F; }

/* considerations checklist */
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s4); }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.checklist svg { width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.checklist b { font-weight: 700; color: var(--navy); }
.checklist span { color: var(--ink); }
.section--navy .checklist span, .checklist--navy span { color: var(--bone); }
.section--navy .checklist b, .checklist--navy b { color: #fff; }
.section--navy .checklist svg, .checklist--navy svg { color: var(--brass-lt); }

/* ---------- rich-page helpers ---------- */
.pagehero { max-width: 900px; }
.pagehero__title { font-size: var(--fs-h1); text-wrap: balance; }
.pagehero__lead { margin-top: 16px; max-width: 68ch; }
.flowcard { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); }
.flowcard::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: var(--brass); opacity: .7; }
.flowcard__num { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--brass); margin-bottom: var(--s4); font-variant-numeric: tabular-nums; }
.flowcard h3 { font-size: var(--fs-h3); margin-bottom: var(--s2); }
.flowcard p { color: var(--slate); font-size: .97rem; line-height: 1.6; }

/* freshness stamp */
.stamp { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-small); font-weight: 500; color: var(--slate); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 14px; font-variant-numeric: tabular-nums; }
.stamp svg { width: 16px; height: 16px; color: var(--brass-dp); }
.stamp b { color: var(--ink); font-weight: 700; }

/* rates tables */
.table-scroll { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); overflow: hidden; box-shadow: var(--sh1); overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.rates { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; min-width: 560px; }
table.rates thead th { background: var(--navy); color: var(--bone); text-align: left; font-family: var(--f-body); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 15px var(--s5); white-space: nowrap; }
table.rates thead th + th { border-left: 1px solid var(--navy-line); }
table.rates tbody tr { border-bottom: 1px solid var(--line); transition: background var(--t-fast); }
table.rates tbody tr:last-child { border-bottom: none; }
table.rates tbody tr:hover { background: rgba(11,31,58,.03); }
table.rates td { padding: 16px var(--s5); font-size: .95rem; vertical-align: middle; }
table.rates .carrier { font-weight: 600; color: var(--ink); }
table.rates .carrier small { display: block; font-weight: 400; color: var(--slate); font-size: .82rem; margin-top: 2px; }
table.rates .rate { font-family: var(--f-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.ambest { display: inline-flex; align-items: center; font-size: .78rem; font-weight: 700; color: var(--navy); background: rgba(11,31,58,.06); border: 1px solid var(--line); border-radius: 5px; padding: 2px 9px; letter-spacing: .02em; }
.rates-note { font-size: var(--fs-small); color: var(--slate); margin-top: var(--s4); }
.rates-note.center { text-align: center; }
.rates-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ---------- 11. Author byline ---------- */
.byline { display: flex; flex-wrap: wrap; gap: var(--s5); align-items: center; padding-block: var(--s4); border-block: 1px solid var(--line); margin-block: var(--s6); font-size: .9rem; }
.byline__person { display: flex; align-items: center; gap: var(--s3); }
.byline__person b { display: block; color: var(--ink); }
.byline__person span { color: var(--slate); }

/* ==========================================================================
   11c. LONG-FORM GUIDE layout (editorial article shell + sticky booking rail)
   Used by how-it-works. Content column ~720px measure + right rail that sticks
   (On this page scroll-spy + persistent navy booking card). Mobile: rail moves
   above as a horizontal TOC, booking becomes a fixed bottom bar.
   ========================================================================== */
.artsec { padding-block: clamp(44px, 4.5vw, 68px); }
/* editorial rhythm tokens for the article: tighter than the page section scale */
.artmain { --art-gap: clamp(40px, 4vw, 56px); --art-mod: clamp(30px, 3.2vw, 42px); }
.artwrap { max-width: 1140px; }
.artdoc { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(44px, 5vw, 88px); align-items: start; }
.artmain { min-width: 0; max-width: 720px; }

/* intro block above the article body (sits under the dossier hero) */
.art-intro { padding-bottom: var(--s6); border-bottom: 1px solid var(--line); margin-bottom: var(--art-mod); }
.art-intro .kicker { display: block; margin-bottom: 16px; }
.art-intro__lead { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.28rem, 1.05rem + 1vw, 1.72rem); line-height: 1.42; letter-spacing: -.012em; color: var(--ink); text-wrap: pretty; }
.art-intro__lead em { font-style: normal; color: var(--navy); border-bottom: 2px solid var(--brass); padding-bottom: 1px; }
.art-meta { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; margin-top: var(--s5); }

/* prose sections: reuse .prose base; here we just tune section rhythm */
.artmain .prose > h2 { margin-top: var(--art-gap); }
.artmain .prose > h2:first-child { margin-top: 0; }
.artmain .prose .lead-p { font-size: 1.14rem; color: var(--ink); }

/* pull quote */
.artquote { margin: var(--art-mod) 0; padding-left: var(--s5); border-left: 3px solid var(--brass); }
.artquote p { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.72rem); line-height: 1.38; color: var(--navy); letter-spacing: -.015em; text-wrap: pretty; }
.artquote cite { display: block; margin-top: 14px; font-style: normal; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-dp); font-weight: 700; }

/* honest-answer callout box */
.artcall { margin: var(--art-mod) 0; background: var(--sand-soft); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: var(--r-md); padding: clamp(22px, 2.6vw, 32px); }
.artcall__tag { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--brass-dp); margin-bottom: 14px; }
.artcall__tag svg { width: 17px; height: 17px; }
.artcall p { font-size: 1.06rem; line-height: 1.66; color: var(--ink); }
.artcall p + p { margin-top: 12px; }
.artcall strong { color: var(--navy); font-weight: 700; }

/* inline stat / figure callouts (attributed federal facts) */
.artstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin: var(--art-mod) 0 var(--s5); }
.artstat { border-top: 2px solid var(--brass); padding-top: 16px; }
.artstat b { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.6rem); color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.artstat span { display: block; margin-top: 10px; font-size: .9rem; line-height: 1.48; color: var(--slate); }

/* image slab */
.artfig { margin: var(--art-mod) 0; }
.artfig img { width: 100%; display: block; border-radius: var(--r-md); box-shadow: var(--sh2); outline: 1px solid rgba(10,21,38,.08); outline-offset: -1px; aspect-ratio: 16 / 9; object-fit: cover; }
.artfig figcaption { margin-top: 12px; font-size: .82rem; color: var(--slate); line-height: 1.5; }

/* vertical timeline (process spine) */
.arttime { list-style: none; margin: var(--art-mod) 0; padding: 0; position: relative; }
.arttime::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--brass); opacity: .5; }
.arttime li { position: relative; padding: 0 0 var(--s6) 44px; }
.arttime li:last-child { padding-bottom: 0; }
.arttime li::before { content: ""; position: absolute; left: 2px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 2px solid var(--brass); }
.arttime .when { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--brass-dp); margin-bottom: 6px; }
.arttime h3 { font-family: var(--f-display); font-size: 1.18rem; color: var(--navy); margin-bottom: 6px; }
.arttime p { font-size: 1.01rem; line-height: 1.6; color: #2f343d; }

/* in-body booking nudge reuses .who-cta (navy); constrain within the column */
.artmain .who-cta { margin-block: var(--art-mod); }

/* ---------- sticky booking rail ---------- */
.artrail { position: sticky; top: 92px; display: flex; flex-direction: column; gap: var(--s5); }
.artrail .toc { position: static; top: auto; gap: var(--s4); }
.railcta { position: relative; overflow: hidden; background: var(--navy); border: 1px solid var(--navy-line-2); border-radius: var(--r-lg); padding: var(--s6) var(--s5) var(--s5); box-shadow: var(--sh1); }
.railcta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brass); }
.railcta h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.24rem; color: var(--bone); line-height: 1.22; letter-spacing: -.01em; }
.railcta p { color: var(--bone-mut); font-size: .92rem; line-height: 1.56; margin-top: 10px; }
.railcta .btn { margin-top: var(--s5); }
.railcta__tel { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; color: var(--bone); font-weight: 600; font-size: .95rem; }
.railcta__tel svg { width: 18px; height: 18px; color: var(--brass-lt); }
.railcta__tel:hover { color: var(--brass-lt); }
.railcta__verify { display: flex; gap: 9px; align-items: flex-start; margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--navy-line); font-size: .8rem; line-height: 1.5; color: var(--bone-mut); }
.railcta__verify svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--brass-lt); }
.railcta__verify a { color: var(--bone); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.railcta__verify a:hover { color: var(--brass-lt); }

/* mobile fixed bottom booking bar (article page only) */
.art-sticky { display: none; }

@media (max-width: 1000px) {
  .artdoc { grid-template-columns: 1fr; gap: var(--s6); }
  .artrail { position: static; top: auto; order: -1; }
  .artrail .railcta { display: none; }
  .artmain { max-width: none; }
  .art-sticky {
    display: flex; align-items: center; gap: 12px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--navy); border-top: 1px solid var(--brass-line-navy); padding: 12px clamp(16px, 4vw, 24px);
    box-shadow: 0 -6px 24px rgba(10,21,38,.22);
  }
  .art-sticky p { flex: 1; min-width: 0; color: var(--bone); font-family: var(--f-display); font-weight: 600; font-size: .96rem; line-height: 1.25; }
  .art-sticky .btn { flex-shrink: 0; }
  .art-sticky__tel { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; flex-shrink: 0; border: 1px solid var(--navy-line-2); border-radius: var(--r2); color: var(--bone); }
  .art-sticky__tel svg { width: 20px; height: 20px; }
  body.artpage { padding-bottom: 74px; }
}
@media (max-width: 560px) {
  .artstats { grid-template-columns: 1fr; gap: var(--s4); }
  .art-sticky p { font-size: .88rem; }
}

/* ---------- slim inline CTA (single-line link-arrow nudge in the body) ---------- */
.artinline { margin: var(--art-mod) 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.artinline p { font-size: 1.02rem; line-height: 1.55; color: var(--slate); margin: 0; }
.artinline a { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; }
.artinline a svg { width: 17px; height: 17px; color: var(--brass-dp); transition: transform 150ms ease-out; }
.artinline a:hover { color: var(--brass-dp); }
.artinline a:hover svg { transform: translateX(3px); }

/* ---------- self-assessment quiz (main mid-article conversion moment) ---------- */
.artquiz { margin-block: clamp(36px, 3.8vw, 52px); position: relative; overflow: hidden;
  background: var(--navy); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); }
.artquiz::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brass); }
.artquiz__kick { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--brass-dp); margin-bottom: 12px; }
.artquiz__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem); color: var(--navy); line-height: 1.24; letter-spacing: -.015em; text-wrap: balance; }
.artquiz__title:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; border-radius: 3px; }
.artquiz__intro { font-size: 1rem; line-height: 1.6; color: var(--slate); margin-top: 12px; max-width: 52ch; }
.artquiz__body { margin-top: var(--s5); }
.artquiz__progress { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--brass-dp); margin-bottom: 14px; }
.artq { border: 0; padding: 0; margin: 0; }
.artq__q { font-family: var(--f-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); line-height: 1.34; padding: 0; }
.artq__opts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s4); }
.artq__opt { font: inherit; font-size: .98rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r2); padding: 11px 18px; min-height: 44px; cursor: pointer; transition: border-color 150ms ease-out, background 150ms ease-out, transform 100ms ease-out; }
.artq__opt:hover { border-color: var(--brass); background: #fff; }
.artq__opt:active { transform: scale(.97); }
.artq__opt:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.artq__opt[aria-pressed="true"] { border-color: var(--brass); background: var(--navy); color: var(--bone); }
.artquiz__nav { display: flex; align-items: center; gap: 16px; margin-top: var(--s5); }
.artquiz__back { font: inherit; font-size: .9rem; font-weight: 600; color: var(--slate); background: none; border: 0; padding: 6px 4px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.artquiz__back:hover { color: var(--navy); }
.artquiz__back:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; border-radius: 3px; }
.artquiz__back svg { width: 15px; height: 15px; }
/* result state */
.artquiz__focus { list-style: none; padding: 0; margin: var(--s5) 0 0; display: flex; flex-direction: column; gap: 14px; }
.artquiz__focus li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.artquiz__focus svg { width: 21px; height: 21px; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.artquiz__note { font-size: .92rem; line-height: 1.6; color: var(--slate); margin-top: var(--s5); max-width: 56ch; }
.artquiz__act { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: var(--s5); }
.artquiz__verify { font-weight: 600; font-size: .95rem; color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.artquiz__verify:hover { color: var(--brass-dp); }
.artquiz__restart { display: block; margin-top: var(--s5); font: inherit; font-size: .88rem; font-weight: 600; color: var(--slate); background: none; border: 0; padding: 4px; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.artquiz__restart:hover { color: var(--navy); }
.artquiz__restart:focus-visible, .artquiz__verify:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; border-radius: 3px; }
/* JS enhancement toggles: fallback shown only when JS is absent */
.artquiz.is-live .artquiz__fallback { display: none; }
.artquiz.is-live .artq[hidden] { display: none; }
.artquiz__fallback { margin-top: var(--s5); display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.artquiz__fallback p { font-size: 1rem; line-height: 1.55; color: var(--ink); margin: 0; flex: 1; min-width: 220px; }
/* question enter animation (disabled under reduced-motion below) */
.artquiz.is-live .artq { animation: artqIn 260ms ease-out both; }
@keyframes artqIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .artquiz.is-live .artq { animation: none; }
  .artinline a svg, .artq__opt { transition: none; }
}

/* navy quiz variant: flip text/buttons for contrast on the navy card (matches sidebar CTA).
   NB: --bone-mut is a dark muted token (for light bg); on navy use --bone + opacity instead. */
.artquiz .artquiz__kick, .artquiz .artquiz__progress { color: var(--brass); }
.artquiz .artquiz__title, .artquiz .artq__q, .artquiz .artquiz__focus li, .artquiz .artquiz__fallback p, .artquiz .artquiz__verify { color: var(--bone); }
.artquiz .artquiz__intro, .artquiz .artquiz__note { color: var(--bone); opacity: .74; }
.artquiz .artquiz__back, .artquiz .artquiz__restart { color: var(--bone); opacity: .66; }
.artquiz .artquiz__back:hover, .artquiz .artquiz__restart:hover { opacity: 1; }
.artquiz .artquiz__verify { text-decoration-color: var(--brass); }
.artquiz .artquiz__verify:hover { color: var(--brass); }
.artquiz .artq__opt { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--bone); }
.artquiz .artq__opt:hover { background: rgba(255,255,255,.12); border-color: var(--brass); }
.artquiz .artq__opt[aria-pressed="true"] { background: var(--brass); border-color: var(--brass); color: var(--navy); }

/* ==========================================================================
   12. HOMEPAGE legacy set-pieces (premise statement, belief trio, steps, standard)
   ========================================================================== */
.v3believe__lead { max-width: 900px; margin-inline: auto; margin-bottom: clamp(38px, 4.5vw, 60px); text-align: center; }
.v3believe__lead .kicker { margin-inline: auto; }
.v3believe__statement { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.15rem); line-height: 1.34; letter-spacing: -.015em; color: var(--ink); }
.v3believe__statement em { font-style: normal; color: var(--navy); border-bottom: 2px solid var(--brass); padding-bottom: 1px; }
.v3beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v3belief { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); position: relative; }
.v3belief::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: var(--brass); opacity: .7; }
.v3belief__ico { width: 46px; height: 46px; border-radius: var(--r2); border: 1px solid var(--line); color: var(--brass-dp); display: grid; place-items: center; margin-bottom: 18px; }
.v3belief__ico svg { width: 23px; height: 23px; }
.v3belief h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.v3belief p { color: var(--slate); font-size: .98rem; line-height: 1.6; }

.v2steps { max-width: 820px; counter-reset: v2s; }
.v2srow { display: grid; grid-template-columns: 62px 1fr; gap: var(--s5); align-items: start; padding-block: 26px; border-top: 1px solid var(--line); }
.v2srow:first-child { border-top: 0; }
.v2snum { counter-increment: v2s; font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; color: var(--brass); line-height: 1; font-variant-numeric: tabular-nums; }
.v2snum::before { content: counter(v2s, decimal-leading-zero); }
.v2srow h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.v2srow p { color: var(--slate); font-size: 1rem; line-height: 1.62; max-width: 58ch; }

.how-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.how-media { border-radius: var(--r3); overflow: hidden; position: relative; box-shadow: var(--sh2); }
.how-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.how-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(10,21,38,.10); border-radius: var(--r3); }

/* navy set-piece */
.setpiece { position: relative; }
.setpiece__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.setpiece__seal { display: none; }        /* seal marks removed (banned) */
.setpiece__copy h2 { color: var(--bone); font-size: var(--fs-h2); }
.setpiece__copy p { color: var(--bone-mut); margin-top: 14px; max-width: 46ch; font-size: var(--fs-lead); }
.setpiece__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.setpiece__media { margin: 0; position: relative; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); }
.setpiece__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.setpiece__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(176,141,87,.18); border-radius: var(--r3); }

/* standard set-piece (navy, roman-numeral) */
.standard { position: relative; }
.standard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.standard__intro .standard__seal { display: none; }  /* seal removed */
.standard__intro h2 { color: var(--bone); font-size: var(--fs-h2); }
.standard__intro > p { color: var(--bone-mut); margin-top: 14px; max-width: 48ch; font-size: var(--fs-lead); }
.standard__list { list-style: none; margin: 26px 0 0; padding: 0; }
.standard__item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--navy-line); }
.standard__item:last-child { border-bottom: 1px solid var(--navy-line); }
.standard__num { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--brass-lt); line-height: 1; padding-top: 2px; font-variant-numeric: tabular-nums; }
.standard__item h3 { font-size: 1.22rem; color: var(--bone); }
.standard__item p { margin-top: 7px; color: var(--bone-mut); font-size: .98rem; }
.standard__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.standard__media { margin: 0; position: relative; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); }
.standard__media img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.standard__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(176,141,87,.18); border-radius: var(--r3); }
.standard__quote { position: absolute; left: 24px; right: 24px; bottom: 24px; background: rgba(10,21,38,.80); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); border: 1px solid var(--navy-line); border-radius: var(--r2); padding: 18px 20px; }
.standard__quote p { font-family: var(--f-display); font-weight: 500; color: var(--bone); font-size: 1.02rem; line-height: 1.4; }
@media (max-width: 860px) {
  .standard__grid { grid-template-columns: 1fr; gap: 40px; }
  .standard__media img { min-height: 340px; }
}

/* ---------- 13. FRC designation band (navy + brass, no seal) ---------- */
.frc-band { color: var(--bone); }
.frc-band__grid {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
  background: var(--navy); border: 1px solid var(--navy-line); border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px);
}
.frc-band__grid::before { content: ""; position: absolute; top: -100px; right: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(176,141,87,.14), transparent 70%); pointer-events: none; }
.frc-band__seal { display: none; }    /* seal removed (banned) */
.frc-band h2 { color: var(--bone); font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); position: relative; }
.frc-band p { color: var(--bone-mut); margin-top: var(--s3); max-width: 52ch; position: relative; }
.frc-band__actions { position: relative; display: flex; flex-direction: column; gap: var(--s3); }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; border-top: 1px solid var(--line); margin-top: var(--s5); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px var(--s1); display: flex; justify-content: space-between; align-items: center; gap: var(--s4); font-family: var(--f-display); font-size: 1.14rem; font-weight: 600; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details > div { padding: 0 var(--s1) var(--s5); color: var(--slate); font-size: 1.01rem; line-height: 1.7; max-width: 70ch; }

/* ---------- 15. CTA band (navy closer) ---------- */
.cta-band { background: var(--abyss); color: var(--bone); }
.cta-band__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta-band h2 { color: var(--bone); font-size: var(--fs-h2); }
.cta-band p { color: var(--bone-mut); margin-top: var(--s4); max-width: 46ch; }
.cta-band__box { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r-lg); padding: var(--s6); }
.close-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
.close-phone { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; color: var(--bone); font-variant-numeric: tabular-nums; }
.close-phone svg { width: 24px; height: 24px; color: var(--brass-lt); }
.close-note { font-size: var(--fs-small); color: var(--bone-mut); margin-top: var(--s3); }

/* ---------- 16. Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: var(--s6); box-shadow: var(--sh2); position: relative; }
.form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brass); border-radius: var(--r3) var(--r3) 0 0; }
.form-card.on-dark { background: transparent; border: 0; padding: 0; box-shadow: none; }
.form-card.on-dark::before { display: none; }
.form-card h3 { color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line-2); border-radius: var(--r1); padding: 12px 14px; min-height: 48px; width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast); font-variant-numeric: tabular-nums;
}
.field textarea { min-height: auto; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(176,141,87,.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.consent { font-size: .78rem; color: var(--slate); margin-top: 12px; line-height: 1.5; }
.consent code { font-family: ui-monospace, monospace; font-size: .9em; background: rgba(11,31,58,.05); padding: 1px 5px; border-radius: 4px; }
.form-msg { display: none; padding: var(--s5); background: var(--sand-soft); border: 1px solid var(--brass); border-radius: var(--r-md); text-align: center; }
.form-msg.is-visible { display: block; }
.form-msg svg { width: 40px; height: 40px; color: #2C5E4F; margin: 0 auto var(--s3); }
.form-msg b { font-family: var(--f-display); font-size: 1.2rem; color: var(--ink); display: block; }
.form-msg p { margin-top: 6px; color: var(--slate); font-size: .94rem; }
.form-msg a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.on-dark .field label { color: var(--bone); }
.on-dark .field input, .on-dark .field select { background: rgba(255,255,255,.08); border-color: var(--navy-line-2); color: #fff; }
.on-dark .consent { color: var(--bone-mut); }
.on-dark .consent code { background: rgba(255,255,255,.12); }
.form-fail { display: block; margin-top: var(--s4); padding: var(--s4); border: 1px solid #E7B4B4; background: #FBEDED; border-radius: var(--r-sm); color: #8A2A2A; font-size: .9rem; }

/* ---------- 17. Booking (Calendly-style scheduler) ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 300px) 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--sh2); overflow: hidden; }
.booking__side { padding: var(--s6); border-right: 1px solid var(--line); background: var(--sand); }
.booking__host { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s5); }
.booking__avatar { width: 48px; height: 48px; border-radius: var(--r-pill); object-fit: cover; flex: none; }
.booking__avatar--initials { display: grid; place-items: center; background: var(--navy); color: var(--brass-lt); font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; }
.booking__hostname { font-weight: 600; color: var(--ink); }
.booking__hosttitle { font-size: .85rem; color: var(--slate); }
.booking__mtitle { font-size: 1.35rem; line-height: 1.2; margin-bottom: var(--s4); color: var(--ink); }
.booking__meta { list-style: none; padding: 0; margin: 0 0 var(--s4); display: flex; flex-direction: column; gap: 8px; }
.booking__meta li { display: flex; align-items: center; gap: 8px; color: var(--slate); font-weight: 500; }
.booking__ico { width: 18px; height: 18px; color: var(--brass-dp); flex: none; display: inline-grid; place-items: center; }
.booking__ico svg { width: 18px; height: 18px; }
.booking__desc { color: var(--slate); line-height: 1.6; font-size: .95rem; margin-bottom: var(--s4); }
.booking__tz { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: .9rem; }
.booking__main { padding: var(--s6); position: relative; min-width: 0; }
.booking__step { display: none; }
.booking__step.is-active { display: block; }
.booking__calhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s4); }
.booking__month { font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.booking__navs { display: flex; gap: 6px; }
.booking__nav { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); }
.booking__nav:hover:not(:disabled) { border-color: var(--brass); color: var(--navy); }
.booking__nav:disabled { opacity: .35; cursor: not-allowed; }
.booking__navico { display: inline-flex; align-items: center; justify-content: center; }
.booking__navico svg { width: 18px; height: 18px; }
[data-cal-prev] .booking__navico svg { transform: scaleX(-1); }
.booking__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.booking__dow span { text-align: center; font-size: .72rem; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: .04em; }
.booking__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.booking__day { aspect-ratio: 1; border: 0; background: var(--sand); color: var(--ink); border-radius: var(--r-sm); font-family: var(--f-body); font-weight: 600; font-size: .95rem; cursor: pointer; transition: background var(--t-fast), color var(--t-fast); }
.booking__day:hover:not(:disabled) { background: var(--navy); color: #fff; }
.booking__day.is-selected { background: var(--navy); color: #fff; }
.booking__day:disabled { background: transparent; color: var(--line-2); cursor: default; font-weight: 400; }
.booking__day--empty { background: transparent; cursor: default; }
.booking__hint { margin-top: var(--s4); font-size: .85rem; color: var(--slate); }
.booking__daylabel, .booking__chosen { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: var(--s4); }
.booking__slots { display: flex; flex-direction: column; gap: 8px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
.booking__slot { padding: 12px; border: 1px solid var(--navy); border-radius: var(--r-sm); background: var(--paper); color: var(--navy); font-family: var(--f-body); font-weight: 600; font-size: 1rem; cursor: pointer; transition: background var(--t-fast), color var(--t-fast); }
.booking__slot:hover { background: var(--navy); color: #fff; }
.booking__back { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; color: var(--slate); font-weight: 600; cursor: pointer; padding: 0; margin-bottom: var(--s4); }
.booking__back:hover { color: var(--navy); }
.booking__back svg { width: 18px; height: 18px; transform: scaleX(-1); }
.booking__err { color: #8A2A2A; font-size: .85rem; margin-top: var(--s3); }
.booking__err a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.booking__step[data-step="done"] { text-align: center; padding: var(--s5) 0; }
.booking__doneico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: var(--r-pill); background: var(--sand-soft); color: #2C5E4F; margin-bottom: var(--s4); }
.booking__doneico svg { width: 40px; height: 40px; }
.booking__donetime { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); margin-top: 8px; }
.booking__donename { color: var(--slate); margin-top: 6px; }
.booking__donenote { color: var(--slate); max-width: 42ch; margin: var(--s4) auto 0; }
@media (max-width: 760px) {
  .booking { grid-template-columns: 1fr; }
  .booking__side { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- 18. Notices ---------- */
.notice { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: var(--r-md); padding: var(--s5); font-size: .96rem; color: #2f343d; }
.notice b { color: var(--navy); }
.notice a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.todo { background: var(--sand-soft); border: 1px dashed var(--brass); border-radius: var(--r-md); padding: var(--s5); font-size: .92rem; color: #6b5a2a; }
.todo b { color: var(--brass-dp); }
.soon-tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); background: rgba(11,31,58,.06); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 9px; margin-left: 8px; }

/* ---------- 19. Footer (deep navy, text wordmark, non-affiliation line) ---------- */
.site-footer { background: var(--abyss); color: var(--bone-mut); font-size: .92rem; }
.site-footer > .wrap { padding-top: var(--s9); }
/* Enlarged footer CTA: centered, generous vertical breathing room, its own navy band */
.footer-cta { background: var(--navy); border-bottom: 1px solid var(--navy-line); }
.footer-cta .wrap { padding-block: clamp(64px, 8vw, 104px); }
.footer-cta__in { max-width: 820px; margin: 0 auto; text-align: center; }
.footer-cta__in .kicker { color: var(--brass-lt); }
.footer-cta__in h2 { font-size: clamp(2.3rem, 1.5rem + 3vw, 3.5rem); color: var(--bone); text-wrap: balance; max-width: 26ch; margin: 0 auto; line-height: 1.08; }
.footer-cta__in p { margin: 16px auto 0; max-width: 52ch; color: var(--bone-mut); }
.footer-cta__in .cta-row { margin-top: 30px; justify-content: center; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s7); }
.brand__mark { font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; letter-spacing: .02em; color: #fff; }
.brand__mark em { font-style: normal; color: var(--brass-lt); }
.footer-brand__logo { display: none; }     /* legacy lockup image removed */
.footer-wordmark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-mark { display: inline-block; margin-bottom: var(--s3); }
.footer-mark img { height: 54px; width: auto; display: block; }
.site-footer p { margin-top: var(--s4); max-width: 40ch; line-height: 1.6; color: var(--bone-mut); }
.footer-col h4 { font-family: var(--f-body); font-size: .72rem; color: var(--brass-lt); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--bone-mut); }
.footer-col a:hover { color: var(--brass-lt); }
.footer-disclosure { margin-top: var(--s8); padding-top: var(--s6); border-top: 1px solid var(--navy-line); font-size: .78rem; color: #8b93a1; line-height: 1.7; display: flex; flex-direction: column; gap: var(--s3); }
.footer-disclosure p { max-width: none; margin: 0; }
.footer-disclosure b { color: var(--bone-mut); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s4); margin-top: var(--s5); padding-block: var(--s5) var(--s7); font-size: .82rem; color: #8b93a1; border-top: 1px solid var(--navy-line); }
.footer-bottom a { color: #8b93a1; }
.footer-bottom a:hover { color: var(--brass-lt); }
.footer-partner { background: var(--navy); border-top: 1px solid var(--navy-line); }
.footer-partner .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); padding-block: var(--s5); }
.footer-partner span { font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: #fff; }

.sticky-cta { display: none; }

/* ---------- 19b. Directory lookup (verify a FRC) ---------- */
.lookup-form .lookup-modes { display: flex; flex-direction: column; gap: var(--s4); }
.lookup-mode { border: 0; padding: 0; margin: 0; min-width: 0; }
.lookup-mode legend { font-family: var(--f-body); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); padding: 0; margin-bottom: var(--s3); }
.lookup-or { display: flex; align-items: center; text-align: center; color: var(--slate); font-size: .82rem; }
.lookup-or::before, .lookup-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.lookup-or span { padding: 0 14px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.lookup-note { display: flex; gap: 10px; align-items: flex-start; margin-top: var(--s4); font-size: .84rem; color: var(--slate); line-height: 1.55; }
.lookup-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--brass-dp); }
.lookup-note b { color: var(--navy); }

.lk-result { margin-top: var(--s6); }
.lk-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s6); box-shadow: var(--sh2); position: relative; }
.lk-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brass); border-radius: var(--r-md) var(--r-md) 0 0; }
.lk-card__head { display: flex; gap: 18px; align-items: center; }
.lk-card__avatar { width: 64px; height: 64px; font-size: 1.4rem; flex-shrink: 0; background: var(--navy); color: #fff; }
.lk-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--brass-lt); border-radius: var(--r-pill); padding: 4px 11px; }
.lk-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1f7a4d; }
.lk-card__head h3 { margin: 8px 0 2px; font-size: 1.5rem; }
.lk-card__status { color: var(--slate); font-size: .92rem; }
.lk-card__meta { margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--line); display: grid; gap: 8px; }
.lk-card__row { color: #2f343d; }
.lk-card__row b { display: inline-block; min-width: 96px; color: var(--slate); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.lk-card__note { margin-top: var(--s5); font-size: .86rem; color: var(--slate); line-height: 1.6; }
.lk-card .btn { margin-top: var(--s5); }
.lk-empty { background: var(--sand-soft); border: 1px dashed var(--brass); border-radius: var(--r-md); padding: var(--s6); }
.lk-empty h3 { color: var(--navy); font-size: 1.2rem; }
.lk-empty p { margin-top: 10px; color: #6b5a2a; line-height: 1.6; }
.lk-empty__hint { color: var(--slate); }
.lk-empty__hint a, .lk-empty p a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.lk-empty--input p { color: var(--slate); margin-top: 0; }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* reveal + skip */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.skip { position: absolute; left: -999px; top: 0; background: var(--brass); color: var(--abyss); padding: 10px 16px; border-radius: 0 0 var(--r1) 0; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* ==========================================================================
   20. Header responsive + mobile menu
   ========================================================================== */
@media (max-width: 1160px) {
  .masthead .mainnav { display: none; }
  .masthead__cta .hdr-tel { display: none; }
  .burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 44px; height: 44px; margin-left: 2px; flex-shrink: 0;
    border: 1px solid var(--navy-line-2); border-radius: 6px; background: none; cursor: pointer; padding: 0;
  }
  .burger__bar { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--bone); transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; transform: scaleX(.4); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .masthead__row { gap: var(--s4); min-height: 68px; }
  .mobile {
    display: flex; flex-direction: column; position: fixed; left: 0; right: 0;
    top: var(--mob-top, 110px); bottom: 0; z-index: 90;
    background: var(--abyss); padding: var(--s4) var(--s5) var(--s5);
    overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .32s var(--ease), transform .32s var(--ease), visibility 0s .32s;
  }
  .mobile.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .32s var(--ease), transform .32s var(--ease), visibility 0s; }
  .mobile__nav > * { opacity: 0; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .mobile.is-open .mobile__nav > * { opacity: 1; transform: none; }
  .mobile.is-open .mobile__nav > :nth-child(1) { transition-delay: .05s; }
  .mobile.is-open .mobile__nav > :nth-child(2) { transition-delay: .1s; }
  .mobile.is-open .mobile__nav > :nth-child(3) { transition-delay: .15s; }
  .mobile.is-open .mobile__nav > :nth-child(4) { transition-delay: .2s; }
  .mobile.is-open .mobile__nav > :nth-child(5) { transition-delay: .25s; }
  .mobile.is-open .mobile__nav > :nth-child(6) { transition-delay: .3s; }
  .mobile.is-open .mobile__nav > :nth-child(7) { transition-delay: .35s; }
}
@media (max-width: 560px) {
  .masthead__cta { gap: 10px; }
  .btn--pill { padding: 12px 18px; font-size: .9rem; }
  .brand-wm span { display: none; }
}
.mobile__nav { display: flex; flex-direction: column; }
.m-acc__btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 4px; font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; color: var(--bone); background: none; border: 0; border-bottom: 1px solid var(--navy-line); cursor: pointer; }
.m-acc__btn svg { width: 20px; height: 20px; color: var(--bone-mut); transition: transform var(--t-fast) var(--ease); }
.m-acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-acc__body { display: none; padding: 2px 4px 14px 14px; flex-direction: column; }
.m-acc.is-open .m-acc__body { display: flex; }
.m-acc__body a { padding: 9px 0; color: var(--bone-mut); font-weight: 500; font-size: 1rem; }
.m-acc__body a:hover { color: var(--bone); }
.m-plain, .m-link { padding: 16px 4px; font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; color: var(--bone); border-bottom: 1px solid var(--navy-line); display: block; }
.mobile__util { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 18px 4px 6px; }
.mobile__util a { color: var(--bone-mut); font-weight: 600; font-size: .95rem; }
.mobile__util a:hover { color: var(--bone); }
.mobile__cta { display: flex; flex-direction: column; gap: 12px; margin-top: var(--s5); padding-bottom: var(--s6); }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1000px) {
  .doc { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: var(--s4); flex-direction: row; flex-wrap: wrap; gap: var(--s4); }
  .toc__box { flex: 1; min-width: 260px; }
}
@media (max-width: 980px) {
  .herob__grid { grid-template-columns: 1fr; gap: 34px; padding: 110px 0 56px; }
  .herob__copy { max-width: none; }
  .herob__media { order: -1; max-width: 330px; margin: 0 auto; }
  .hero { min-height: auto; padding: 128px 0 64px; }
  .hero-bg img { object-position: 72% center; }
  .premise-grid, .closer-grid { grid-template-columns: 1fr; }
  .grid6 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 26px 0; border-top: 1px solid var(--line); }
  .closer .figure { order: -1; }
  .rev-head { margin-bottom: 38px; }
}
@media (max-width: 900px) {
  .feature, .feature--flip, .cta-band__grid, .setpiece__grid, .how-split { grid-template-columns: 1fr; gap: 40px; }
  .feature--flip .feature__media { order: 0; }
  .setpiece__media img { min-height: 320px; }
  .frc-band__grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .frc-band p { margin-inline: auto; }
  .frc-band__actions { align-items: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .v3beliefs { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
}
@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid6 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
}
@media (max-width: 600px) {
  .statrail__grid { grid-template-columns: 1fr; }
  .statrail__cell { border-left: 0; padding: 22px 0; border-top: 1px solid var(--navy-line); display: flex; align-items: baseline; gap: 18px; }
  .statrail__cell:first-child { border-top: 0; padding-top: 24px; }
  .statrail__num { flex: 0 0 auto; width: 4.6ch; font-size: 2.5rem; }
  .statrail__cell span { margin-top: 0; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .close-row { flex-direction: column; align-items: flex-start; }
  .proscons table, .proscons thead, .proscons tbody, .proscons tr, .proscons th, .proscons td { display: block; width: 100%; }
  .proscons td + td, .proscons thead th + th { border-left: 0; }
  .hero__cta .btn, .cta-row .btn { width: 100%; }
}

/* ==========================================================================
   23. LAYOUT VOCABULARY  (headers A1/A2/A3, content modules, tables)
   ========================================================================== */

/* ---- A1 photographic navy header (inner-page hero) ---- */
.pgh--navy { position: relative; overflow: hidden; background: var(--navy); color: var(--bone); padding-block: clamp(112px, 12vw, 150px) clamp(56px, 6vw, 84px); }
.pgh--navy .pgh-bg { position: absolute; inset: 0; z-index: 0; }
.pgh--navy .pgh-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.pgh--navy .pgh-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, var(--abyss) 0%, rgba(10,21,38,.92) 38%, rgba(10,21,38,.55) 70%, rgba(11,31,58,.25) 100%),
  linear-gradient(0deg, var(--abyss) 0%, rgba(10,21,38,.35) 42%, rgba(10,21,38,.5) 100%); }
.pgh--navy .wrap { position: relative; z-index: 2; }
.pgh--navy .kicker { color: var(--brass-lt); }
.pgh__body { position: relative; z-index: 2; max-width: 780px; }
.pgh__title { color: var(--bone); font-size: var(--fs-h1); max-width: 22ch; letter-spacing: -.025em; }
.pgh__title em { font-style: normal; color: var(--brass-lt); }
.pgh__lead { color: #D5DAE2; font-size: var(--fs-lead); margin-top: 18px; max-width: 62ch; }

/* ---- A2 split header (copy left + framed image right) ---- */
.splith { display: grid; grid-template-columns: 1.05fr .85fr; gap: 56px; align-items: center; }
.splith__title { font-size: var(--fs-h1); }
.splith .lead { margin-top: 16px; }
.splith__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.splith__media { margin: 0; border-radius: var(--r3); overflow: visible; box-shadow: var(--sh2); position: relative; }
.splith__glow { position: absolute; inset: -12% -10% -10% -12%; z-index: -1; pointer-events: none; border-radius: 50%;
  background: radial-gradient(60% 60% at 70% 24%, rgba(176,141,87,.16) 0%, rgba(176,141,87,0) 70%); }
.splith__media > img { border-radius: var(--r3); display: block; }
.splith__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(176,141,87,.28); border-radius: var(--r3); pointer-events: none; }
.splith__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---- A3 centered editorial header with brass rule ---- */
.cedh { text-align: center; max-width: 780px; margin-inline: auto; }
.cedh__ornament { display: none; }        /* guilloche ornament removed */
.cedh .kicker, .cedh .eyebrow { color: var(--brass-dp); }
.cedh__title { font-size: var(--fs-h1); margin-top: 4px; text-wrap: balance; }
.cedh__rule { display: block; width: 56px; height: 2px; background: var(--brass); margin: 26px auto; }
.cedh__lead { color: var(--slate); font-size: var(--fs-lead); max-width: 60ch; margin-inline: auto; }

/* ---- B3 offset editorial two column ---- */
.offcol { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.offcol__label { position: sticky; top: 92px; }
.offcol__label p { color: var(--slate); font-size: .96rem; margin-top: 6px; }
.offcol__prose h2 { margin-bottom: 20px; }
.offcol__prose p { color: #2f343d; font-size: 1.05rem; line-height: 1.7; }
.offcol__prose p + p { margin-top: 16px; }
.offcol__prose b { color: var(--navy); }

/* ---- B4 oversized pull-quote feature ---- */
.pullfeat { position: relative; max-width: 940px; margin-inline: auto; text-align: center; }
.pullfeat__mark { display: inline-flex; color: var(--brass); }
.pullfeat__mark svg { width: 44px; height: 44px; }
.pullfeat__q { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem); line-height: 1.34; letter-spacing: -.015em; color: var(--navy); margin: 18px auto 0; max-width: 26ch; }
@media (min-width: 720px) { .pullfeat__q { max-width: 46ch; } }
.pullfeat__q em { font-style: normal; color: var(--brass-dp); }
.pullfeat__cite { margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-dp); }
.pullfeat__cite::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--brass); vertical-align: middle; margin-right: 10px; }

/* ---- B7 navy inset icon grid ---- */
.igrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.igrid--navy .igrid__cell { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r3); padding: 26px 22px; }
.igrid__ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r2); border: 1px solid var(--navy-line-2); color: var(--brass-lt); margin-bottom: 16px; }
.igrid__ico svg { width: 22px; height: 22px; }
.igrid--navy h3 { font-size: 1.14rem; color: var(--bone); }
.igrid--navy p { color: var(--bone-mut); font-size: .94rem; margin-top: 8px; line-height: 1.55; }

/* ---- B9 definition and term rows ---- */
.defrows { margin: 0; border-top: 1px solid var(--line); }
.defrow { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding-block: 22px; border-bottom: 1px solid var(--line); align-items: baseline; }
.defrow__term { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.defrow__def { margin: 0; color: #2f343d; font-size: 1rem; line-height: 1.62; max-width: 64ch; }

/* ---- B10 prose with a sticky navy side note ---- */
.asidenote { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.asidenote__main h2 { margin-bottom: 18px; }
.asidenote__main p { color: #2f343d; font-size: 1.05rem; line-height: 1.7; }
.asidenote__main p + p { margin-top: 16px; }
.asidenote__main b { color: var(--navy); }
.asidenote__side { position: sticky; top: 92px; background: var(--navy); color: var(--bone); border-radius: var(--r3); padding: 28px 26px; box-shadow: var(--sh2); }
.asidenote__ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r2); border: 1px solid var(--navy-line-2); color: var(--brass-lt); margin-bottom: 16px; }
.asidenote__ico svg { width: 24px; height: 24px; }
.asidenote__note { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; line-height: 1.36; color: var(--bone); }
.asidenote__fine { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--navy-line); font-size: .82rem; color: var(--bone-mut); line-height: 1.55; }

/* ---- B11 two approaches compared ---- */
.compare2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare2__col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: 32px 28px; }
.compare2__col--fav { border-color: var(--brass); box-shadow: var(--sh1); position: relative; }
.compare2__col--fav::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brass); border-radius: var(--r3) var(--r3) 0 0; }
.compare2__tag { display: inline-flex; align-items: center; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--brass-lt); border-radius: var(--r-pill); padding: 6px 13px; }
.compare2__tag--muted { color: var(--slate); background: rgba(11,31,58,.06); }
.compare2__col h3 { font-size: 1.32rem; margin-top: 16px; margin-bottom: 18px; }
.compare2__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare2__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.compare2__list svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 1px; }
.compare2__col--fav .compare2__list svg { color: #2C5E4F; }
.compare2__col:not(.compare2__col--fav) .compare2__list svg { color: var(--brass-dp); }

/* ---- B12 vertical timeline ---- */
.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: var(--brass); opacity: .5; }
.timeline__item { position: relative; padding-block: 4px 30px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -34px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px var(--parchment); }
.timeline__when { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-dp); }
.timeline__title { font-size: 1.24rem; margin-top: 6px; }
.timeline__desc { color: var(--slate); margin-top: 6px; max-width: 60ch; font-size: 1rem; line-height: 1.62; }
.timeline-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.timeline-split__media { margin: 0; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); position: sticky; top: 92px; }
.timeline-split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.timeline-split__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(10,21,38,.10); border-radius: var(--r3); }

/* ---- C1 / C2 / C3 dense tables ---- */
.cmptable, .spectable, .chktable { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.cmptable thead th, .spectable thead th, .chktable thead th { background: var(--navy); color: var(--bone); text-align: left; font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 15px 18px; vertical-align: bottom; }
.cmptable thead th + th, .spectable thead th + th, .chktable thead th + th { border-left: 1px solid var(--navy-line); }
.cmptable tbody th[scope="row"], .spectable tbody th[scope="row"], .chktable tbody th[scope="row"] { text-align: left; font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 1rem; padding: 15px 18px; vertical-align: top; width: 22%; }
.cmptable tbody td, .spectable tbody td, .chktable tbody td { padding: 15px 18px; color: #2f343d; vertical-align: top; line-height: 1.5; border-left: 1px solid var(--line); }
.cmptable tbody tr, .spectable tbody tr, .chktable tbody tr { border-bottom: 1px solid var(--line); }
.cmptable tbody tr:nth-child(even), .spectable tbody tr:nth-child(even), .chktable tbody tr:nth-child(even) { background: rgba(11,31,58,.02); }
.cmptable__fav { background: rgba(176,141,87,.12) !important; }
.cmptable thead th.cmptable__fav { background: var(--brass) !important; color: var(--navy); }
.cmptable tbody td.cmptable__fav { color: var(--navy); font-weight: 600; box-shadow: inset 2px 0 0 var(--brass), inset -2px 0 0 var(--brass); }
.spectable tbody th[scope="row"] { width: 26%; }
.chktable tbody th[scope="row"] { width: 34%; }
.chk { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; white-space: nowrap; border-radius: var(--r-pill); padding: 5px 11px; }
.chk svg { width: 16px; height: 16px; }
.chk--ok { color: #2C5E4F; background: rgba(44,94,79,.1); }
.chk--ask { color: #B4451F; background: rgba(180,69,31,.1); }

/* ---- module responsive ---- */
@media (max-width: 940px) {
  .splith, .offcol, .asidenote, .compare2, .igrid, .timeline-split { grid-template-columns: 1fr; }
  .splith { gap: 34px; }
  .splith__media, .timeline-split__media { max-width: 400px; }
  .offcol__label, .asidenote__side, .timeline-split__media { position: static; }
  .asidenote { gap: 28px; }
  .igrid { gap: 14px; }
  .defrow { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 640px) {
  .igrid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   23. APPROVED ELEMENT SYSTEM (fg-* modules ported from the elements gallery)
   A2 dossier hero + B/C/D/E/F/G/H/I specimens Brandon signed off. Generous
   .fg-pad so the modules breathe (the "crunched" complaint fix). Tokens are the
   production Civic Standard set; no new variables needed.
   ========================================================================== */
.fg-pad { padding-block: clamp(64px, 8vw, 112px); }

/* ---------- A2 dossier header ---------- */
.fg-h2 { display: grid; grid-template-columns: .82fr 1.02fr; align-items: stretch; background: var(--parchment); }
.fg-h2__media { position: relative; margin: 0; min-height: 480px; }
.fg-h2__media img { width: 100%; height: 100%; object-fit: cover; }
.fg-h2__bracket { position: absolute; left: 22px; top: 22px; width: 54px; height: 54px; border-left: 2px solid var(--brass-lt); border-top: 2px solid var(--brass-lt); }
.fg-h2__card { position: absolute; right: -46px; bottom: 40px; width: 264px; background: var(--navy); color: var(--bone); border: 1px solid var(--brass-line-navy); border-radius: var(--r3); padding: 20px 22px; box-shadow: var(--sh2); z-index: 3; }
.fg-h2__card-ey { font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--brass-lt); }
.fg-h2__card-h { font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; line-height: 1.3; color: var(--bone); margin-top: 8px; }
.fg-h2__card-meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--navy-line); font-size: .82rem; color: var(--bone-mut); }
.fg-h2__card-meta svg { width: 17px; height: 17px; color: var(--brass-lt); flex-shrink: 0; }
.fg-h2__copy { padding: clamp(48px, 5vw, 84px) clamp(30px, 5vw, 72px) clamp(48px, 5vw, 84px) clamp(64px, 7vw, 108px); align-self: center; }
.fg-h2__crumbs { margin-bottom: 20px; }
.fg-h2__title { font-size: var(--fs-h1); margin-top: 4px; max-width: 18ch; }
.fg-h2__title em { font-style: normal; color: var(--brass-dp); }
.fg-h2__copy .lead { margin-top: 18px; max-width: 50ch; }
.fg-h2__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- B1 light ledger rail ---------- */
.fg-s1 { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--brass); }
.fg-s1__cell { padding: 30px 34px 6px; border-left: 1px solid var(--fog); }
.fg-s1__cell:first-child { border-left: 0; padding-left: 0; }
.fg-s1__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 2rem + 2.4vw, 3.6rem); line-height: .95; letter-spacing: -.02em; color: var(--navy); }
.fg-s1__u { font-size: .42em; font-weight: 600; color: var(--brass-dp); margin-left: 3px; vertical-align: .5em; }
.fg-s1__lab { display: block; margin-top: 14px; color: var(--slate); font-size: .92rem; line-height: 1.5; max-width: 30ch; }
.fg-s1__src { display: flex; gap: 10px; align-items: flex-start; margin-top: 28px; font-size: .82rem; color: var(--slate); line-height: 1.55; }
.fg-s1__src svg { width: 17px; height: 17px; color: var(--brass-dp); flex-shrink: 0; margin-top: 2px; }

/* ---------- B2 navy proof cards + meter ---------- */
.fg-s2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fg-s2__card { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r3); padding: 30px 30px 26px; }
.fg-s2__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem); line-height: 1; letter-spacing: -.02em; color: var(--brass-lt); }
.fg-s2__lab { color: var(--bone-mut); font-size: .96rem; line-height: 1.55; margin-top: 14px; max-width: 40ch; }
.fg-meter { height: 8px; border-radius: var(--r-pill); background: rgba(236,231,221,.12); overflow: hidden; margin-top: 22px; }
.fg-meter span { display: block; height: 100%; border-radius: var(--r-pill); background: var(--brass); }
.fg-s2__foot { display: block; margin-top: 12px; font-size: .8rem; letter-spacing: .01em; color: var(--bone-mut); }

/* ---------- C1 premise + navy caption slab ---------- */
.fg-f1 { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.fg-f1__copy h2 { font-size: var(--fs-h2); max-width: 18ch; }
.fg-f1__copy .lead { margin-top: 18px; color: var(--slate); }
.fg-f1__copy p + p { margin-top: 14px; color: #2f343d; }
.fg-f1__copy .link-arrow { margin-top: 22px; }
.fg-f1__media { position: relative; margin: 0 0 0 24px; }
.fg-f1__media img { width: 100%; border-radius: var(--r3); box-shadow: var(--sh2); aspect-ratio: 4/3; object-fit: cover; }
.fg-f1__slab { position: absolute; left: -24px; bottom: -22px; max-width: 230px; background: var(--navy); color: var(--bone); border-radius: var(--r2); padding: 18px 20px; box-shadow: var(--sh2); }
.fg-f1__slab-num { display: block; font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--brass-lt); line-height: 1; }
.fg-f1__slab-lab { display: block; margin-top: 8px; font-size: .84rem; color: var(--bone-mut); line-height: 1.45; }

/* ---------- C2 two-tone edge split ---------- */
.fg-f2 { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 440px; }
.fg-f2__copy { position: relative; background: var(--navy); color: var(--bone); padding: clamp(40px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.fg-f2__copy::after { content: ""; position: absolute; right: -1px; top: 14%; bottom: 14%; width: 2px; background: var(--brass); z-index: 2; }
.fg-f2__num { font-family: var(--f-display); font-weight: 800; font-size: 5rem; line-height: 1; color: rgba(198,160,106,.16); letter-spacing: -.03em; }
.fg-f2__copy h2 { color: var(--bone); font-size: var(--fs-h2); margin-top: 8px; max-width: 16ch; }
.fg-f2__copy p { color: var(--bone-mut); margin-top: 16px; max-width: 44ch; }
.fg-f2__copy .link-arrow { margin-top: 22px; color: var(--brass-lt); }
.fg-f2__media { margin: 0; }
.fg-f2__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- C3 lead statement + hairline trio ---------- */
.fg-f3__statement { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.15rem); line-height: 1.34; letter-spacing: -.015em; color: var(--ink); max-width: 26ch; }
.fg-f3__statement em { font-style: normal; color: var(--navy); border-bottom: 2px solid var(--brass); padding-bottom: 1px; }
.fg-f3__trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.fg-f3__item { border-top: 2px solid var(--brass); padding-top: 22px; }
.fg-f3__ico { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r2); border: 1px solid var(--line); color: var(--brass-dp); margin-bottom: 16px; }
.fg-f3__ico svg { width: 22px; height: 22px; }
.fg-f3__item h3 { font-size: var(--fs-h3); }
.fg-f3__item p { color: var(--slate); font-size: .96rem; margin-top: 8px; line-height: 1.55; }

/* ---------- D2 borderless peer set ---------- */
.fg-c2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fg-c2__cell { border-left: 2px solid var(--brass); padding-left: 24px; }
.fg-c2__ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r2); background: rgba(176,141,87,.1); color: var(--brass-dp); margin-bottom: 16px; }
.fg-c2__ico svg { width: 23px; height: 23px; }
.fg-c2__cell h3 { font-size: var(--fs-h3); }
.fg-c2__cell p { color: var(--slate); font-size: .96rem; margin-top: 10px; line-height: 1.6; }

/* ---------- D3 navy mullion grid ---------- */
.fg-c3 { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--brass-line-navy); border-radius: var(--r3); overflow: hidden; background: var(--navy); }
.fg-c3__pane { padding: 32px 30px; border-right: 1px solid var(--brass-line-navy); border-bottom: 1px solid var(--brass-line-navy); }
.fg-c3__pane:nth-child(2n) { border-right: 0; }
.fg-c3__pane:nth-last-child(-n+2) { border-bottom: 0; }
.fg-c3__ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r2); border: 1px solid var(--navy-line-2); color: var(--brass-lt); margin-bottom: 16px; }
.fg-c3__ico svg { width: 23px; height: 23px; }
.fg-c3__pane h3 { color: var(--bone); font-size: 1.16rem; }
.fg-c3__pane p { color: var(--bone-mut); font-size: .94rem; margin-top: 8px; line-height: 1.55; }

/* ---------- E1 horizontal numbered spine ---------- */
.fg-p1 { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.fg-p1::before { content: ""; position: absolute; left: 0; right: 0; top: 21px; height: 2px; background: var(--brass); opacity: .5; }
.fg-p1__step { position: relative; padding-top: 62px; }
.fg-p1__node { position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--brass); color: #1a1206; font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; box-shadow: 0 0 0 5px var(--paper); }
.fg-p1--sand .fg-p1__node { box-shadow: 0 0 0 5px var(--sand); }
.fg-p1--3 { grid-template-columns: repeat(3, 1fr); }
.fg-p1--2 { grid-template-columns: repeat(2, 1fr); }
.fg-p1__step h3 { font-size: 1.14rem; }
.fg-p1__step p { color: var(--slate); font-size: .93rem; margin-top: 8px; line-height: 1.55; }

/* ---------- E2 zig-zag milestone ladder ---------- */
.fg-p2 { list-style: none; margin: 0; padding: 0; position: relative; max-width: 940px; margin-inline: auto; }
.fg-p2::before { content: ""; position: absolute; left: 50%; top: 6px; bottom: 6px; width: 2px; background: var(--brass); opacity: .5; transform: translateX(-50%); }
.fg-p2__item { position: relative; width: 50%; padding: 12px 0 30px; }
.fg-p2__item.is-left { left: 0; padding-right: 46px; text-align: right; }
.fg-p2__item.is-right { left: 50%; padding-left: 46px; }
.fg-p2__dot { position: absolute; top: 20px; width: 15px; height: 15px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px var(--sand); }
.fg-p2__item.is-left .fg-p2__dot { right: -8px; }
.fg-p2__item.is-right .fg-p2__dot { left: -7px; }
.fg-p2__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); padding: 22px 24px; box-shadow: var(--sh1); }
.fg-p2__when { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-dp); }
.fg-p2__card h3 { font-size: 1.16rem; margin-top: 6px; }
.fg-p2__card p { color: var(--slate); font-size: .93rem; margin-top: 8px; line-height: 1.55; }

/* ---------- F1 coverage matrix ---------- */
.fg-matrix { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 720px; }
.fg-matrix thead th { background: var(--sand); color: var(--navy); text-align: left; font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 16px 18px; vertical-align: bottom; border-bottom: 1px solid var(--line); }
.fg-matrix thead th.fg-matrix__fav { background: var(--navy); color: var(--brass-lt); }
.fg-matrix tbody th[scope="row"] { text-align: left; font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 1rem; padding: 15px 18px; vertical-align: top; width: 20%; }
.fg-matrix tbody td { padding: 15px 18px; color: #2f343d; vertical-align: top; line-height: 1.5; }
.fg-matrix tbody tr { border-bottom: 1px solid var(--line); }
.fg-matrix tbody tr:last-child { border-bottom: 0; }
.fg-matrix__fav { background: var(--navy); }
.fg-matrix tbody td.fg-matrix__fav { color: var(--bone); font-weight: 500; position: relative; }
.fg-matrix__ck { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(198,160,106,.2); color: var(--brass-lt); margin-right: 9px; vertical-align: -4px; }
.fg-matrix__ck svg { width: 13px; height: 13px; }

/* ---------- F2 grouped checklist spec sheet ---------- */
.fg-spec { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.fg-spec thead th { background: var(--navy); color: var(--bone); text-align: left; font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 15px 18px; }
.fg-spec thead th + th { border-left: 1px solid var(--navy-line); }
.fg-spec__band th { background: var(--sand-soft); color: var(--brass-dp); font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 11px 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fg-spec tbody th[scope="row"] { text-align: left; font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 1rem; padding: 15px 18px; vertical-align: top; width: 34%; }
.fg-spec tbody td { padding: 15px 18px; color: #2f343d; vertical-align: top; line-height: 1.5; border-left: 1px solid var(--line); }
.fg-spec tbody tr { border-bottom: 1px solid var(--line); }
.chk { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; white-space: nowrap; border-radius: var(--r-pill); padding: 5px 11px; }
.chk svg { width: 16px; height: 16px; }
.chk--ok { color: #2C5E4F; background: rgba(44,94,79,.1); }
.chk--ask { color: #B4451F; background: rgba(180,69,31,.1); }

/* ---------- G1 numbered accordion ---------- */
.fg-faq1 { border-top: 1px solid var(--line); max-width: 820px; margin-inline: auto; }
.fg-faq1 details { border-bottom: 1px solid var(--line); }
.fg-faq1 summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px 2px; }
.fg-faq1 summary::-webkit-details-marker { display: none; }
.fg-faq1__no { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--brass-dp); }
.fg-faq1__q { font-family: var(--f-display); font-size: 1.14rem; font-weight: 600; color: var(--navy); }
.fg-faq1__ico { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); color: var(--brass); transition: transform var(--t-base) var(--ease), background var(--t-fast); }
.fg-faq1__ico svg { width: 18px; height: 18px; }
.fg-faq1 details[open] .fg-faq1__ico { transform: rotate(135deg); background: var(--sand); }
.fg-faq1__a { padding: 0 52px 24px; color: var(--slate); font-size: 1.01rem; line-height: 1.7; max-width: 76ch; }

/* ---------- H1 asymmetric navy pull-quote ---------- */
.fg-quote { max-width: 900px; position: relative; padding-left: 30px; border-left: 2px solid var(--brass); }
.fg-quote__mark { display: inline-flex; color: var(--brass-lt); }
.fg-quote__mark svg { width: 40px; height: 40px; }
.fg-quote__q { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.25rem); line-height: 1.34; letter-spacing: -.015em; color: var(--bone); margin-top: 16px; max-width: 30ch; }
.fg-quote__q em { font-style: normal; color: var(--brass-lt); }
.fg-quote__cite { margin-top: 22px; font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--brass-lt); display: inline-flex; align-items: center; }
.fg-quote__cite span { display: inline-block; width: 26px; height: 1px; background: var(--brass); margin-right: 12px; }

/* ---------- H2 margin-note callout ---------- */
.fg-note { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: 0 var(--r3) var(--r3) 0; padding: 26px 28px; box-shadow: var(--sh1); }
.fg-note__tag { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-dp); background: rgba(176,141,87,.1); border-radius: var(--r-pill); padding: 5px 12px; }
.fg-note__tag svg { width: 15px; height: 15px; }
.fg-note__body { margin-top: 16px; color: #2f343d; font-size: 1.04rem; line-height: 1.65; }
.fg-note__body b { color: var(--navy); }
.fg-note__fine { margin-top: 12px; font-size: .84rem; color: var(--slate); }

/* ---------- what-is-a-frc page-local composition fixes ---------- */
/* what-is-a-frc pillars: the "three things stand behind the letters" section.
   Fuller bordered cards (a takeaway fact is folded into each, replacing the old
   standalone trust strip). Page-scoped; does not touch the shared peerSet .fg-c2. */
.frc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.frc-pillar { display: flex; flex-direction: column; background: var(--sand-soft); border: 1px solid var(--line); border-top: 3px solid var(--brass); border-radius: var(--r2); padding: 30px 26px 26px; }
.frc-pillar__ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r2); background: rgba(176,141,87,.12); color: var(--brass-dp); margin-bottom: 18px; }
.frc-pillar__ico svg { width: 24px; height: 24px; }
.frc-pillar h3 { font-size: var(--fs-h3); }
.frc-pillar p { color: var(--slate); font-size: .95rem; line-height: 1.62; margin-top: 12px; }
.frc-pillar__take { margin-top: auto; display: flex; gap: 10px; align-items: flex-start; padding-top: 18px; border-top: 1px solid var(--line-2); font-weight: 600; color: var(--navy); font-size: .92rem; line-height: 1.45; }
.frc-pillar__take svg { width: 18px; height: 18px; color: var(--brass-dp); flex-shrink: 0; margin-top: 1px; }
.frc-pillar__take + .frc-pillar__take { margin-top: 0; }
.frc-pillars__src { display: flex; gap: 10px; align-items: flex-start; margin-top: 28px; font-size: .82rem; color: var(--slate); line-height: 1.55; max-width: 760px; }
.frc-pillars__src svg { width: 17px; height: 17px; color: var(--brass-dp); flex-shrink: 0; margin-top: 2px; }

/* Editorial pull-statement: an intentional centered beat, not a floating aside. */
.frc-stmt { max-width: 760px; margin-inline: auto; text-align: center; }
.frc-stmt .rule { margin-inline: auto; }
.frc-stmt__lead { margin-top: 20px; font-family: var(--f-display); font-weight: 500; font-size: clamp(1.35rem, 1.05rem + 1.3vw, 1.9rem); line-height: 1.38; letter-spacing: -.012em; color: var(--navy); }
.frc-stmt__lead b { color: var(--navy); font-weight: 700; }

/* ---------- I2 slim single-line CTA band ---------- */
.fg-cta2 { background: var(--navy); border-top: 2px solid var(--brass); color: var(--bone); }
.fg-cta2__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-block: 34px; }
.fg-cta2__copy h3 { color: var(--bone); font-size: 1.3rem; }
.fg-cta2__copy p { color: var(--bone-mut); margin-top: 6px; font-size: .96rem; }
.fg-cta2__act { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.fg-cta2__tel { display: inline-flex; align-items: center; gap: 9px; color: var(--bone); font-weight: 600; font-variant-numeric: tabular-nums; }
.fg-cta2__tel svg { width: 18px; height: 18px; color: var(--brass-lt); }

/* ---------- fg responsive ---------- */
@media (max-width: 980px) {
  .fg-h2, .fg-f1, .fg-f2, .fg-c2, .fg-f3__trio, .frc-pillars { grid-template-columns: 1fr; }
  .fg-h2__media { min-height: 420px; }
  .fg-h2__card { right: 22px; bottom: 22px; }
  .fg-h2__copy { padding: 44px 30px 52px; }
  .fg-f1__media { margin: 0; }
  .fg-f1__slab { left: 12px; bottom: -18px; }
  .fg-f2__copy::after { display: none; }
  .fg-c2 { gap: 28px; }
  .fg-f3__trio { gap: 26px; }
  .fg-p1 { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .fg-p1::before { display: none; }
}
@media (max-width: 620px) {
  .fg-s1 { grid-template-columns: 1fr; }
  .fg-s1__cell { border-left: 0; border-top: 1px solid var(--fog); padding: 22px 0 4px; }
  .fg-s1__cell:first-child { border-top: 0; }
  .fg-s2 { grid-template-columns: 1fr; }
  .fg-c3 { grid-template-columns: 1fr; }
  .fg-c3__pane { border-right: 0; }
  .fg-c3__pane:nth-last-child(2) { border-bottom: 1px solid var(--brass-line-navy); }
  .fg-p1 { grid-template-columns: 1fr; }
  .fg-p2::before { left: 7px; }
  .fg-p2__item, .fg-p2__item.is-left, .fg-p2__item.is-right { width: 100%; left: 0; padding: 12px 0 24px 34px; text-align: left; }
  .fg-p2__item.is-left .fg-p2__dot, .fg-p2__item.is-right .fg-p2__dot { left: 0; right: auto; }
  .fg-faq1__a { padding-left: 2px; }
  .fg-cta2__row { flex-direction: column; align-items: flex-start; }
}

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