@charset "UTF-8";
/* ==========================================================================
   Diwa Top — site.css  (v2, rebuilt from scratch)

   Design dials: VARIANCE 8 · MOTION 6 · DENSITY 4

   Layout personality: a printed sports almanac. Hanging headings in a narrow
   left column, prose in a wide right column, organised by hairline rules
   rather than boxes. Asymmetric fractional grids — never equal-column card rows.

   Hard constraints:
   - ONE shared content rail: 1200px max-width, 1.5rem side padding.
     Nothing is narrower or wider.
   - Exactly 50px between sections.
   - No sequential 01/02/03 numbering anywhere.
   - Single accent colour, saturation < 80%. No glows. No gradient text.
   ========================================================================== */

/* ----- 1. Tokens ------------------------------------------------------- */
:root {
  /* Single accent — desaturated saffron from the logo wordmark.
     sat 70%; white text on it clears AA at 5.23:1. */
  --accent:       #A5581D;
  --accent-deep:  #7A3F13;   /* accent as ink on light surfaces */
  --accent-tint:  #F5EBE0;
  --accent-line:  #DFC7AC;

  /* Warm neutral base — one temperature throughout, no cool/warm drift. */
  --canvas:       #FAF7F2;
  --surface:      #FFFFFF;
  --surface-sunk: #F3EFE8;
  --ink-panel:    #17130F;   /* off-black, never #000 */

  /* Ink */
  --ink:          #191512;
  --ink-muted:    #5E564E;
  --ink-dim:      #756C63;   /* 4.81:1 on canvas — crumbs/byline are small text */
  --ink-on-dark:  #F7F2EA;
  --ink-on-dark-2: rgba(247, 242, 234, .64);

  /* Hairlines — the primary structural device */
  --rule:         #E5DFD5;
  --rule-strong:  #D3CABD;
  --rule-faint:   #EFEAE2;
  --rule-dark:    rgba(247, 242, 234, .14);

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Outfit', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Diffusion shadows — wide, faint, tinted to the canvas. Never glows. */
  --shade-1: 0 1px 2px rgba(60, 42, 24, .04);
  --shade-2: 0 20px 40px -18px rgba(60, 42, 24, .10), 0 2px 6px rgba(60, 42, 24, .03);
  --shade-3: 0 32px 64px -24px rgba(60, 42, 24, .16), 0 3px 8px rgba(60, 42, 24, .04);

  /* The one shared rail */
  --rail:   1200px;
  --gutter: 1.5rem;

  /* Exactly 50px between sections */
  --gap-section: 50px;

  --header-strip: 2rem;
  --header-main:  4.25rem;
  --header-h:     calc(var(--header-strip) + var(--header-main));

  --ease: cubic-bezier(.16, 1, .3, 1);

  --z-nav: 50;
  --z-overlay: 60;
}

/* ----- 2. Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0; }
p + p { margin-top: .9rem; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: 'wdth' 92;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--ink-panel); color: var(--ink-on-dark);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: .85rem; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ----- 3. THE SHARED RAIL --------------------------------------------- */
.rail,
.container {
  width: 100%;
  max-width: var(--rail);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Every bounded block fills its rail. No typographic comfort widths. */
.editorial-block, .spec-list, .asym-grid, .split-feature, .check-band,
.figure-band, .faq-list, .lede-block, .stat-band, .deco-band,
.hero-grid, .bento, .panel, .index-grid, .page-hero-grid, .section-head {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* ----- 4. Sections — exactly 50px apart ------------------------------- */
.section { padding: 0; }
.section + .section,
.section + .figure-band-wrap,
.figure-band-wrap + .section,
.figure-band-wrap + .figure-band-wrap { margin-top: var(--gap-section); }
main > *:first-child:not(.hero):not(.page-hero) { margin-top: var(--gap-section); }
main > .section:last-child { margin-bottom: var(--gap-section); }

/* ----- 5. Type scale -------------------------------------------------- */
/* Hierarchy from weight and colour, not runaway scale. */
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); font-variation-settings: 'wdth' 88; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
h3 { font-size: clamp(1.05rem, 1.35vw, 1.22rem); letter-spacing: -.012em; }
h4 { font-size: .95rem; letter-spacing: -.005em; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow + h1, .eyebrow + h2 { margin-top: .55rem; }

/* Accent word — a flat rule under the text, no marker blob, no gradient. */
.mark {
  color: var(--accent);
  box-shadow: inset 0 -.13em 0 var(--accent-line);
}

.lede {
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  color: var(--ink-muted);
  line-height: 1.6;
}
.prose { color: var(--ink-muted); }
.prose > * + * { margin-top: .9rem; }

/* ----- 6. Buttons — three variants, no glows ------------------------- */
.btn-primary, .btn-secondary, .btn-quiet {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px; padding: .75rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: .92rem; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .18s var(--ease);
}
.btn-primary {
  background: var(--accent); color: #FFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), var(--shade-1);
}
.btn-primary:hover { background: var(--accent-deep); color: #FFF; }
.btn-secondary {
  background: transparent; color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-secondary:hover { color: var(--accent-deep); border-color: var(--accent); }
.btn-quiet {
  background: var(--surface); color: var(--ink);
  border-color: var(--rule); box-shadow: var(--shade-1);
}
.btn-quiet:hover { color: var(--accent-deep); border-color: var(--rule-strong); }
.btn-primary:active, .btn-secondary:active, .btn-quiet:active { transform: scale(.98); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary:active, .btn-secondary:active, .btn-quiet:active { transform: none; }
}
.on-dark .btn-secondary { color: var(--ink-on-dark); border-color: var(--rule-dark); }
.on-dark .btn-secondary:hover { color: #FFF; border-color: var(--ink-on-dark); }

/* ----- 7. Header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(250, 247, 242, .9);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

/* Slim charcoal trust strip; collapses on scroll. */
.header-strip {
  background: var(--ink-panel);
  color: var(--ink-on-dark-2);
  overflow: hidden;
  height: var(--header-strip);
  transition: height .35s var(--ease), opacity .25s var(--ease);
}
.site-header.is-scrolled .header-strip { height: 0; opacity: 0; }
.header-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: var(--header-strip);
  font-size: .72rem; letter-spacing: .02em;
}
.trust-line { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--accent);
  animation: breathe 2.8s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .45; transform: scale(.82); } 50% { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; opacity: 1; } }

.util-nav { display: flex; align-items: center; gap: 1.1rem; list-style: none; }
.util-nav a { color: var(--ink-on-dark-2); font-size: .72rem; font-weight: 500; }
.util-nav a:hover { color: var(--ink-on-dark); }

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.5rem;
  height: var(--header-main);
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .header-bar { height: 3.65rem; }

/* The logo is a square black tile: it keeps its aspect and sits beside a real
   text wordmark. object-fit: contain, never cropped, never filtered. */
.brand { display: inline-flex; align-items: center; gap: .65rem; flex: none; }
.brand-tile {
  width: 38px; height: 38px; object-fit: contain;
  border-radius: 9px; flex: none;
}
.brand-word {
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600;
  line-height: 1; letter-spacing: -.03em; color: var(--ink);
  font-variation-settings: 'wdth' 88;
  white-space: nowrap;
}
.brand-word b { font-weight: 600; color: var(--accent); }

.nav { justify-self: center; position: relative; }
.nav-list { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-list a {
  display: block; padding: .5rem .68rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500; color: var(--ink-muted);
  transition: color .25s var(--ease);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a.active { color: var(--ink); font-weight: 600; }
.nav-rule {
  position: absolute; bottom: .1rem; height: 2px; border-radius: 2px;
  background: var(--accent); opacity: 0;
  transition: left .4s var(--ease), width .4s var(--ease), opacity .25s var(--ease);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .nav-rule { transition: none; } }

.header-actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-actions .btn-primary { min-height: 40px; padding: .5rem 1.15rem; font-size: .86rem; }

.burger {
  display: none; width: 42px; height: 42px; flex: none;
  background: transparent; border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm); position: relative;
}
.burger i {
  position: absolute; left: 50%; width: 17px; height: 1.5px; border-radius: 2px;
  background: var(--ink); transform: translateX(-50%);
  transition: transform .35s var(--ease), opacity .2s var(--ease), top .35s var(--ease);
}
.burger i:nth-child(1) { top: 14px; }
.burger i:nth-child(2) { top: 20px; }
.burger i:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] i:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); }

.mobile-sheet {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--canvas);
  padding: calc(var(--header-h) + 1.25rem) 0 2.5rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-sheet.is-open { opacity: 1; visibility: visible; }
.mobile-sheet ul { list-style: none; }
.mobile-sheet li { border-top: 1px solid var(--rule); }
.mobile-sheet li:last-child { border-bottom: 1px solid var(--rule); }
.mobile-sheet a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem 0;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 500;
  color: var(--ink);
}
.mobile-sheet a.active { color: var(--accent); }
.mobile-sheet .sheet-actions { display: grid; gap: .6rem; margin-top: 1.5rem; }
body.nav-open { overflow: hidden; }

/* ----- 8. Hero — asymmetric, never centred --------------------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.25rem, 5vw, 4rem); }
.hero-wash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46rem 32rem at 78% 6%, rgba(165, 88, 29, .13), transparent 66%),
    radial-gradient(34rem 26rem at 4% 84%, rgba(165, 88, 29, .07), transparent 62%);
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .13; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, var(--canvas) 6%, rgba(250, 247, 242, .82) 46%, rgba(250, 247, 242, .34) 100%);
}

/* The hero's decoration layers (.hero-wash, .hero-photo) are absolutely
   positioned, so they paint above static in-flow content. Lift the whole rail
   into its own layer — otherwise the photo's left-to-right gradient washes over
   the stat band, which is static. */
.hero > .rail { position: relative; z-index: 1; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero-copy > * + * { margin-top: 1.05rem; }
.hero-copy h1 { max-width: 19ch; }
.hero-copy .lede { max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; padding-top: .35rem; }

.hero-proof {
  display: flex; align-items: center; gap: .7rem;
  padding-top: 1rem; margin-top: 1.15rem;
  border-top: 1px solid var(--rule);
  font-size: .84rem; color: var(--ink-muted);
}
.hero-proof strong { color: var(--ink); font-weight: 600; }
.hero-proof .pips { display: inline-flex; flex: none; }
.hero-proof .pips i {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--canvas); margin-left: -7px;
  background: var(--accent-line);
}
.hero-proof .pips i:first-child { margin-left: 0; background: var(--accent); }
.hero-proof .pips i:nth-child(2) { background: var(--accent-deep); }

/* Hero art — a generated still-life figure, with the bonus badge overlapping it. */
.hero-art { position: relative; }
.hero-art-media {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid var(--rule);
  box-shadow: var(--shade-3);
  aspect-ratio: 4 / 5;
}
.hero-art-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; bottom: -1.25rem; left: -1.25rem; z-index: 2;
  width: 7.6rem; height: 7.6rem; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--ink-panel);
  box-shadow: var(--shade-3);
  animation: float 7s ease-in-out infinite;
}
.hero-badge b {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 600; line-height: 1; color: #FFF;
  font-variation-settings: 'wdth' 88;
}
.hero-badge span {
  display: block; margin-top: .3rem; font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-on-dark-2);
  max-width: 5.6rem; line-height: 1.35; margin-inline: auto;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }

/* Stat band — hairline-divided, no boxed strip */
.stat-band {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}
.stat-band > div { padding: 1.15rem 1.25rem 1.15rem 0; border-left: 1px solid var(--rule); }
.stat-band > div:first-child { border-left: 0; padding-left: 0; }
.stat-band > div:not(:first-child) { padding-left: 1.25rem; }
.stat-band b {
  display: block; font-family: var(--font-display); font-size: 1.55rem;
  font-weight: 600; line-height: 1; color: var(--accent);
  font-variation-settings: 'wdth' 88;
}
.stat-band span {
  display: block; margin-top: .4rem; font-size: .76rem; line-height: 1.45;
  color: var(--ink-muted);
}

/* ----- 9. Page hero (inner pages) ------------------------------------ */
.page-hero { padding-top: clamp(1.75rem, 3.5vw, 2.75rem); }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-strong);
}
.page-hero h1 { max-width: 24ch; margin-top: .55rem; }
.page-hero .lede { max-width: 56ch; margin-top: .9rem; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; list-style: none; font-size: .76rem; color: var(--ink-dim); }
.crumbs li { display: inline-flex; align-items: center; gap: .4rem; }
.crumbs li + li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--rule-strong); }
.crumbs a { color: var(--ink-muted); font-weight: 500; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); }

.byline {
  font-size: .78rem; color: var(--ink-dim);
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
}
.byline b { font-weight: 600; color: var(--ink-muted); }
.page-hero-aside { padding-bottom: .2rem; }

/* ----- 10. Lede block ------------------------------------------------- */
.lede-block {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.lede-block .prose { font-size: 1.06rem; }

/* ----- 11. Editorial block (paragraph-only sections) ----------------- */
.editorial-block {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: 1.6rem;
  border-top: 2px solid var(--ink);
}
.editorial-block > header { position: sticky; top: calc(var(--header-h) + 1.25rem); align-self: start; }
.editorial-block h2 { max-width: 22ch; }
@media (max-width: 900px) { .editorial-block > header { position: static; } }

/* ----- 12. Section head + spec list — the workhorse ----------------- */
.section-head { padding-top: 1.6rem; border-top: 2px solid var(--ink); }
.section-head h2 { max-width: 26ch; }
.section-head .prose { max-width: 62ch; margin-top: .75rem; }
.section-head--split {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1rem, 3vw, 2.5rem); align-items: start;
}

.spec-list { margin-top: 1.75rem; }
.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(.85rem, 3vw, 2.5rem);
  padding: 1.35rem 0;
  border-top: 1px solid var(--rule);
}
.spec-row:last-child { border-bottom: 1px solid var(--rule); }
.spec-row > h3 { padding-top: .1rem; }
.spec-row .prose > p { font-size: 1rem; }

/* Nested lists: hairline rows with a short accent tick. No sub-cards. */
.items { list-style: none; margin-top: .85rem; }
.items > li {
  position: relative;
  padding: .5rem 0 .5rem 1.15rem;
  border-top: 1px solid var(--rule-faint);
  color: var(--ink-muted); font-size: .97rem;
}
.items > li:first-child { border-top: 0; padding-top: .15rem; }
.items > li::before {
  content: ""; position: absolute; left: 0; top: 1.02em;
  width: 5px; height: 1px; background: var(--accent);
}
.items > li:first-child::before { top: .68em; }

.sub-label {
  margin-top: 1.2rem; padding-top: .7rem;
  border-top: 1px solid var(--rule-strong);
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--accent-deep);
}

/* ----- 13. Asymmetric grid (short-copy sections) -------------------- */
/* Fractional, never equal. Hairline separators, no card boxes. */
.asym-grid { display: grid; gap: 0; margin-top: 1.75rem; }
.asym-grid--2 { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
.asym-grid--3 { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); }
.asym-grid > article {
  padding: 1.4rem 1.5rem 1.5rem;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.asym-grid--2 > article:nth-child(2n+1),
.asym-grid--3 > article:nth-child(3n+1) { border-left: 0; padding-left: 0; }
.asym-grid > article > h3 { margin-bottom: .55rem; }
.asym-grid > article p { color: var(--ink-muted); font-size: .97rem; }

/* ----- 14. Split feature (list + image) ----------------------------- */
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
  margin-top: 1.75rem;
}
.split-media {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid var(--rule);
  box-shadow: var(--shade-2);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ----- 15. Check band ---------------------------------------------- */
.check-band { margin-top: 1.75rem; }
.checks { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.checks > li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .95rem 1.5rem .95rem 0;
  border-top: 1px solid var(--rule);
  font-size: .99rem; color: var(--ink-muted);
}
.checks > li:nth-child(even) { padding-right: 0; padding-left: 1.5rem; border-left: 1px solid var(--rule); }
.checks > li > svg { flex: none; width: 18px; height: 18px; margin-top: .3em; color: var(--accent); }
.checks > li strong { color: var(--ink); font-weight: 600; }
.check-band > .prose { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); }

/* ----- 16. Figure band (between sections) — no numerals ------------ */
.figure-band {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
  margin: 0;
}
.figure-band-media {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid var(--rule);
  box-shadow: var(--shade-2);
  aspect-ratio: 16 / 10;
}
.figure-band-media img { width: 100%; height: 100%; object-fit: cover; }
.figure-band figcaption { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.figure-band figcaption h3 { margin-top: .55rem; font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

/* ----- 17. Dark panel ---------------------------------------------- */
.panel {
  background: var(--ink-panel); color: var(--ink-on-dark);
  border-radius: var(--r-2xl);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shade-2);
}
.panel h2, .panel h3 { color: #FFF; }
.panel .prose, .panel p { color: var(--ink-on-dark-2); }
.panel .eyebrow { color: var(--accent-line); }
.panel .section-head { border-top-color: var(--rule-dark); }

.deco-band {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0; margin-top: 1.75rem;
}
.deco-band > article {
  padding: 1.4rem 1.6rem 1.5rem;
  border-top: 1px solid var(--rule-dark);
  border-left: 1px solid var(--rule-dark);
}
.deco-band > article:nth-child(2n+1) { border-left: 0; padding-left: 0; }
.deco-band > article h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.deco-band > article p { font-size: .93rem; }

/* ----- 18. Bento (homepage signature, hand-authored) --------------- */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  box-shadow: var(--shade-2);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.card:hover { box-shadow: var(--shade-3); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card > h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-muted); font-size: .97rem; }
.card--wide { grid-column: span 2; }
.card--full { grid-column: 1 / -1; }
.card--sunk { background: var(--surface-sunk); box-shadow: none; }
.card--dark { background: var(--ink-panel); color: var(--ink-on-dark); border-color: transparent; }
.card--dark h3 { color: #FFF; }
.card--dark p { color: var(--ink-on-dark-2); }
.card--dark .items > li { border-color: var(--rule-dark); color: var(--ink-on-dark-2); }
.card--dark .sub-label { border-color: var(--rule-dark); color: var(--accent-line); }

.figure-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem; }
.figure-row b {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600; line-height: 1; color: var(--accent);
  font-variation-settings: 'wdth' 88;
}

/* ----- 19. FAQ — divided, boxless --------------------------------- */
.faq-list { margin-top: 1.75rem; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-display); font-size: 1.04rem; font-weight: 500;
  line-height: 1.35; color: var(--ink); letter-spacing: -.01em;
}
.faq-item[open] .faq-q { color: var(--accent-deep); font-weight: 600; }
.faq-sign {
  position: relative; flex: none; width: 20px; height: 20px;
  transition: transform .4s var(--ease);
}
.faq-sign::before, .faq-sign::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--ink); transform: translate(-50%, -50%);
}
.faq-sign::before { width: 13px; height: 1.5px; }
.faq-sign::after { width: 1.5px; height: 13px; transition: opacity .3s var(--ease); }
.faq-item[open] .faq-sign { transform: rotate(90deg); }
.faq-item[open] .faq-sign::after { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .faq-sign { transition: none; } }
.faq-answer {
  padding: 0 0 1.3rem;
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(.85rem, 3vw, 2.5rem);
}
.faq-answer > div { grid-column: 2; }
.faq-answer p { color: var(--ink-muted); font-size: .98rem; }

/* ----- 20. Index grid (blog listing, 404 links) ------------------- */
.index-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 0; margin-top: 1.75rem; }
.index-grid > article {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.6rem 1.6rem;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.index-grid > article:nth-child(2n+1) { border-left: 0; padding-left: 0; }
.index-grid h3 { margin-bottom: .5rem; }
.index-grid p { color: var(--ink-muted); font-size: .96rem; }
.index-grid .more {
  margin-top: auto; padding-top: 1rem;
  font-size: .86rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: .4rem;
}
.index-grid .more svg { width: 14px; height: 14px; }

/* ----- 21. Footer ------------------------------------------------- */
.site-footer { margin-top: var(--gap-section); background: var(--ink-panel); color: var(--ink-on-dark); }

.footer-cta {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule-dark);
}
.footer-cta h2 { color: #FFF; max-width: 22ch; }
.footer-cta p { color: var(--ink-on-dark-2); margin-top: .6rem; max-width: 46ch; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-self: end; }

.footer-map {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.footer-brand .brand-word { color: var(--ink-on-dark); }
.footer-brand .brand-word b { color: var(--accent-line); }
.footer-note { font-size: .88rem; color: var(--ink-on-dark-2); max-width: 34ch; margin-top: 1rem; }
.pay-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.15rem; list-style: none; }
.pay-row li {
  font-size: .66rem; font-weight: 600; letter-spacing: .06em;
  padding: .3rem .6rem; border-radius: var(--r-xs);
  border: 1px solid var(--rule-dark); color: var(--ink-on-dark-2);
}
.footer-col h3 {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-line);
  padding-bottom: .8rem; border-bottom: 1px solid var(--rule-dark);
}
.footer-col ul { list-style: none; }
.footer-col li { border-bottom: 1px solid rgba(247, 242, 234, .07); }
.footer-col a { display: block; padding: .5rem 0; font-size: .89rem; color: var(--ink-on-dark-2); }
.footer-col a:hover { color: #FFF; }

.footer-trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none;
  padding-block: 1.1rem; border-top: 1px solid var(--rule-dark);
  font-size: .72rem; color: var(--ink-on-dark-2);
}
.footer-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.footer-trust svg { width: 13px; height: 13px; color: var(--accent-line); flex: none; }

.footer-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .7rem; padding-block: 1.1rem 1.6rem;
  border-top: 1px solid var(--rule-dark);
  font-size: .75rem; color: rgba(247, 242, 234, .5);
}

/* ----- 22. 404 ---------------------------------------------------- */
.err {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.25rem, 3vw, 3rem); align-items: center;
}
.err-code {
  font-family: var(--font-display); font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 600; line-height: .9; color: var(--accent);
  font-variation-settings: 'wdth' 82;
}
.err h1 { margin-top: .5rem; }
.err .lede { margin-top: .9rem; max-width: 46ch; }
.err-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

/* ----- 23. Reveal — fails safe ------------------------------------ */
/* Gated on .js-ready, which only site.js sets. No script means the content
   renders visible; a failed script must never blank the page. */
.js-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- 24. Responsive — asymmetry collapses hard on mobile -------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-art { display: none; }
  .hero-copy h1, .hero-copy .lede { max-width: 32ch; }
  .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-band > div:nth-child(3) { border-left: 0; padding-left: 0 !important; }
  .stat-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .footer-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .asym-grid--3 { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
  .asym-grid--3 > article:nth-child(3n+1) { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
  .asym-grid--3 > article:nth-child(2n+1) { border-left: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .nav, .header-actions .btn-primary { display: none; }
  .burger { display: block; }
  .util-nav { display: none; }
  .header-strip-inner { justify-content: center; }
  .page-hero-grid, .lede-block, .editorial-block, .spec-row,
  .split-feature, .figure-band, .footer-cta, .err, .faq-answer,
  .section-head--split { grid-template-columns: minmax(0, 1fr); }
  .faq-answer > div { grid-column: 1; }
  .editorial-block > header { border-bottom: 1px solid var(--rule); padding-bottom: 1rem; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--wide, .card--full { grid-column: span 2; }
  .index-grid { grid-template-columns: minmax(0, 1fr); }
  .index-grid > article { border-left: 0; padding-left: 0; }
  .footer-cta-actions { justify-self: start; }
}

@media (max-width: 700px) {
  body { font-size: 1rem; }
  .checks { grid-template-columns: minmax(0, 1fr); }
  .checks > li:nth-child(even) { padding-left: 0; border-left: 0; }
  .footer-cta-actions > * { flex: 1 1 12rem; }
}

@media (max-width: 560px) {
  :root { --gutter: 1.15rem; }
  .asym-grid--2, .asym-grid--3, .deco-band, .bento, .stat-band,
  .footer-map { grid-template-columns: minmax(0, 1fr); }
  .asym-grid > article, .deco-band > article {
    border-left: 0; padding-left: 0; padding-right: 0;
  }
  .asym-grid--3 > article:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  .card--wide, .card--full { grid-column: span 1; }
  .stat-band > div { border-left: 0; padding-left: 0 !important; border-bottom: 1px solid var(--rule); }
  .stat-band > div:last-child { border-bottom: 0; }
  .hero-cta > *, .err-actions > * { flex: 1 1 100%; }
  .spec-row { padding-block: 1.1rem; }
}

/* ----- 25. Print -------------------------------------------------- */
@media print {
  .site-header, .site-footer, .hero-art, .mobile-sheet, .hero-photo, .hero-wash { display: none !important; }
  body { background: #FFF; color: #000; }
  .faq-answer { display: block !important; }
}
