/* ============================================================
   ART OF WONDER — BOB BONIS EXHIBITION
   Master Brand Stylesheet v2.0  |  Jul 2026

   SINGLE SOURCE OF TRUTH
   This is the one canonical stylesheet for every Bob Bonis
   Experience / Art of Wonder site build in this project. All
   build sites load a copy of this exact file. Do not fork it
   per-site — edit here, then redeploy to every copy.

   BRAND RULES (v2.0)
   - Display / H1 / H2 / H3 and the wordmark: Archivo Medium 500.
     Body, ledes, captions, eyebrows and stats: Archivo (400/500/700).
     Archivo Black 900 and Anton are NOT used.
   - No italics in any heading. Italic is reserved for ledes,
     pull quotes, captions and editorial voice lines only.
   - Headings are factual labels, not prose sentences.
   - One accent (letterpress red #A8190E) per surface.

   USAGE
   Link this file in any new Bob Bonis project site:
     <link rel="stylesheet" href="../../aow-brand.css">
   Adjust the relative path as needed.

   For page-specific overrides, add a <style> block after this
   link in <head>. Do not edit this file per-project.

   GOOGLE FONTS (include in every page <head>)
     <link rel="preconnect" href="https://fonts.googleapis.com">
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
     <link href="https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,700;0,800;1,400;1,500&display=swap" rel="stylesheet">
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  /* Surfaces */
  --paper:        #FAFAFA;   /* page background */
  --inset:        #F1F1F1;   /* alternate section bg */

  /* Text */
  --ink:          #0A0A0A;   /* primary text */
  --mid:          #4A4A4A;   /* secondary text */
  --faint:        #8A8A8A;   /* captions, meta */
  --pure:         #000000;

  /* Rules */
  --rule:         #1A1A1A;   /* hard border (nav, section dividers) */
  --rule-soft:    #E5E5E5;   /* soft border (internal section borders) */

  /* Brand accent */
  --accent:       #A8190E;   /* Art of Wonder red */
  --accent-soft:  #F4B7B1;   /* red on dark backgrounds */

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;  /* wordmark, display, H1-H3 — Archivo Medium 500 */
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-wide:     1180px;

  /* Sponsorship-site token aliases (kept so legacy class names resolve) */
  --ink-soft:     #4A4A4A;   /* alias for --mid */
  --ink-faint:    #8A8A8A;   /* alias for --faint */
  --dark:         #0A0A0A;   /* alias for --ink, used on dark sections */
}

/* ============================================================
   RESET + BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ============================================================
   NAV
   Sticky horizontal bar. Brand mark left, links right.
   Add class .is-active to the current page link.
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}

/* Red stop/dot in brand mark: <span class="stop">.</span> */
.nav__brand .stop { color: var(--accent); }

/*
  TWO-LINE BRAND BLOCK
  Use .brand-block instead of .nav__brand when a subtitle line is needed.
  Structure:
    <div class="brand-block">
      <div class="brand-block__wordmark">Art <span class="brand-block__of">of</span> Wonder</div>
      <div class="brand-block__line">The Bob Bonis Experience · [Context]</div>
    </div>
*/

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand-block__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

/* The word "of" in accent red */
.brand-block__of { color: var(--accent); }

.brand-block__line {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav__links a.is-active { color: var(--ink); border-bottom-color: var(--ink); }

/* Dropdown nav items
   Parent label is a real link (.nav__dropdown-toggle = <a>), chevron is a separate
   button (.nav__dropdown-chevron-btn). Clicking the label navigates; clicking the
   chevron opens the submenu. Hovering the wrapper also opens the submenu via CSS. */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown.is-open .nav__dropdown-toggle { color: var(--accent); border-bottom-color: var(--accent); }
.nav__dropdown-toggle.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.nav__dropdown-chevron-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px 2px 2px;
  cursor: pointer;
  color: var(--mid);
  transition: color 0.2s ease;
}
.nav__dropdown:hover .nav__dropdown-chevron-btn,
.nav__dropdown.is-open .nav__dropdown-chevron-btn { color: var(--accent); }
.nav__dropdown-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav__dropdown.is-open .nav__dropdown-chevron { transform: rotate(-135deg) translateY(-2px); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--border, #D8D8D8);
  border-top: 2px solid var(--accent);
  min-width: 200px;
  display: none;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { color: var(--accent); background: rgba(168,25,14,0.04); }
.nav__dropdown-menu a.is-active { color: var(--ink); font-weight: 600; }

/* ============================================================
   TWO-TIER NAV (2026-05-30) — single standard across all sites
   Tier 1 (.nav__sections): section bar, row 1, right of the brand block.
     Active section bold + red underline. Hidden in standalone single-section
     builds (build emits no .nav__sections when there is only one section).
   Tier 2 (.nav__pages): the page row for the ACTIVE section, forced onto its
     own full-width row beneath tier 1. "Overview" first, then sub-pages.
   .nav is already flex-wrap:wrap, so flex-basis:100% drops the page row to its
   own line cleanly.
   ============================================================ */
.nav__sections {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;            /* push to the right of the brand block */
}
.nav__sections a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__sections a:hover { color: var(--accent); }
.nav__sections a.is-active { color: var(--accent); font-weight: 700; }
.nav__sections a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--accent);
}
.nav__pages {
  flex-basis: 100%;             /* own full-width row beneath the section bar */
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
}
.nav__pages a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s ease;
}
.nav__pages a:hover { color: var(--ink); }
.nav__pages a.is-active { color: var(--accent); }
.nav__pages a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
/* Standalone single-section build: no section bar. The page row sits inline to
   the right of the brand, no top rule. */
.nav:not(:has(.nav__sections)) .nav__pages {
  flex-basis: auto;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-left: auto;
}
@media (max-width: 720px) {
  .nav__sections { gap: 14px; }
  .nav__pages { gap: 14px; }
}

/* ============================================================
   SUBNAV
   Secondary nav bar for section pages with sub-pages.
   ============================================================ */

.subnav {
  background: var(--inset);
  border-bottom: 1px solid var(--rule-soft);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.subnav__section {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.subnav__section::after { content: ' ›'; color: var(--accent); margin-left: 10px; }

.subnav__links { display: flex; flex-wrap: wrap; gap: 18px; }

.subnav__links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.subnav__links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.subnav__links a.is-active { color: var(--ink); border-bottom-color: var(--ink); }

/* ============================================================
   HERO
   Full-bleed image header for homepage / signpost pages.
   Set background-image inline or via JS.
   ============================================================ */

.hero {
  position: relative;
  min-height: 75vh;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.15) 30%,
    rgba(0,0,0,0.20) 60%,
    rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.hero__top,
.hero__bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
}

.hero__top  { padding-top: 56px; }
.hero__bottom { padding-bottom: 72px; }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

/* Display wordmark — hero headline, consistent across all section overviews */
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}

.hero__h1 .sub {
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* Accent italic span within hero headline */
.hero__h1 .italic { font-style: normal; color: var(--accent-soft); font-weight: 500; }

.hero__lede {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
  max-width: 24ch;
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
}

.hero__lede em { font-style: italic; color: var(--accent-soft); font-weight: 400; }

.hero__strip {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__strip .dot { color: var(--accent); margin: 0 4px; }

/* Hero label lines (investor "Investor Information" + meta line).
   Shared so investor/exhibition can drop their local hero copies. */
.hero__investor {
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
  font-weight: 500;
}
.hero__meta {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
  font-weight: 500;
}
/* Bare <h1> inside a hero inherits the shared display headline,
   so pages using <h1> rather than .hero__h1 stay consistent.
   .fin-hero included so the financials page matches exactly. */
.hero h1,
.fin-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
}
.hero h1 .sub,
.fin-hero h1 .sub {
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}
/* Headline accent line: normal case, italic, sits under the uppercase title */
.hero h1 .accent-line {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  max-width: 22ch;
}
.hero__credits {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* ============================================================
   PAGE HEAD
   Subpage header — eyebrow + H1 + red rule + lede.
   Max H1 size is capped at 36px per project standard.
   ============================================================ */

.page-head {
  padding: 36px 32px 44px;
  border-bottom: 1px solid var(--rule);
}

/* Auto-constrain direct children of .page-head so the header renders
   correctly whether or not the author wrapped them in .page-head__inner. */
.page-head > *:not(.page-head__inner):not(hr) {
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
}

/* Optional inner wrapper, kept so existing pages with explicit wrappers
   continue to work. */
.page-head__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
}

.page-head__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-head__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  white-space: nowrap;
}

.page-head__h1 em { font-style: normal; color: var(--accent); font-weight: 400; }

.page-head__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 22px;
  border: 0;
}

.page-head__lede {
  font-size: 17px;
  line-height: 1.5;
  max-width: 60ch;
  color: var(--ink);
  font-weight: 500;
}

.page-head__lede em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ============================================================
   SECTION
   Standard content section. Modifiers: --dark (inset bg),
   --ink (dark bg white text), --split (two-column layout).
   ============================================================ */

.section {
  padding: 40px 32px;
  border-bottom: 1px solid var(--rule-soft);
}

/* Auto-constrain direct children of .section so pages render correctly
   whether or not the author wrapped them in .section__inner.
   Skip element types that handle their own width (component-specific
   __inner wrappers, grids, splits, images, etc.) — listed below. */
.section > *:not(.section__inner):not([class*="__inner"]):not(.split):not(.split__grid):not(.scen-grid):not(.stat-band):not(.stat-band__inner):not(.three-card-head):not(.three-card-grid):not(.split-image):not(.figure):not(figure):not(img):not(picture):not(video):not(hr) {
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
}

/* Inner content wrapper — constrains width and centres on wide viewports.
   Optional now that .section auto-constrains its children, but kept so
   existing pages with explicit wrappers continue to work. */
.section__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
}

.section--dark  { background: var(--inset); border-bottom-color: var(--rule); }
.section--ink   { background: var(--ink); color: var(--paper); border-bottom-color: #1A1A1A; }

/* Text colour overrides on dark sections */
.section--ink .section__eyebrow { color: var(--accent-soft); }
.section--ink .section__h2      { color: var(--paper); }
.section--ink .section__h2 em   { color: var(--accent-soft); }
.section--ink .section__lede    { color: rgba(250, 250, 250, 0.92); }
.section--ink .section__rule    { background: var(--accent-soft); }
.section--ink p                 { color: rgba(250, 250, 250, 0.88); }

.section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* H2 — section heading, accent red, capped at 32px */
.section__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__h2 em { font-style: normal; color: var(--accent); font-weight: 400; }

.section__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 22px;
  border: 0;
}

.section__lede {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
  margin-bottom: 16px;
  font-weight: 500;
}

.section__lede em { font-style: italic; color: var(--accent); font-weight: 400; }

.section p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
  margin-bottom: 14px;
}

.section p:last-child { margin-bottom: 0; }

/* ============================================================
   DARK-PANEL TEXT GUARD — DO NOT REMOVE
   ------------------------------------------------------------
   .section p forces color: var(--ink) on every paragraph inside
   a section. When a panel inside the section has a dark
   background (black/--ink/--accent), that inherited dark text
   becomes invisible (the "black-on-black" bug).
   This block forces light text on every known dark-panel utility,
   plus a generic .ink-panel hook for any future component.
   Any new dark-background panel inside a .section MUST either:
     (a) use the class .ink-panel (or one already listed below), or
     (b) be added to this selector list.
   Source-order: this block comes AFTER `.section p`, so its
   single-class selectors still win. Keep it after that rule.
   ============================================================ */
.section .ink-panel,
.section .ink-panel *,
.section .stb-note,
.section .stb-note *,
.section .stb-panel,
.section .stb-panel *,
.section .book-panel,
.section .book-panel *,
.section .warning-banner,
.section .warning-banner *,
.section .dark-panel,
.section .dark-panel *,
.section .slam,
.section .slam *,
.section .audience-stat,
.section .audience-stat *,
.section .closing-stat,
.section .closing-stat *,
.section .fever-section,
.section .fever-section *,
.section [class*="--dark"],
.section [class*="--dark"] *,
.section [class*="-panel"][class*="--dark"],
.section [class*="-panel"][class*="--dark"] *,
.section [data-panel="dark"],
.section [data-panel="dark"] * {
  color: var(--paper);
}
/* Accent strongs inside dark panels stay accent-red (not paper). */
.section .ink-panel strong,
.section .stb-note strong,
.section .stb-panel strong,
.section .book-panel strong,
.section .warning-banner strong,
.section .dark-panel strong,
.section [data-panel="dark"] strong {
  color: var(--accent);
}

/* Two-column split: text + image */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ============================================================
   THREE-CARD ROW
   Eyebrow + H2 left, intro text right, 3 cards below.
   H2 capped at 26px per project standard.
   ============================================================ */

.three-card { padding: 40px 32px; background: var(--paper); }

.three-card__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

@media (min-width: 880px) { .three-card__head { grid-template-columns: 1fr 1fr; gap: 48px; } }

.three-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.three-card__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--accent);
  margin-bottom: 14px;
  max-width: 16ch;
}

.three-card__h2 em { font-style: normal; color: var(--accent); font-weight: 400; }

.three-card__rule { width: 40px; height: 2px; background: var(--accent); margin: 0; border: 0; }

.three-card__intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
  margin: 0;
}

.card-row { display: grid; grid-template-columns: 1fr; gap: 28px; }

@media (min-width: 880px) { .card-row { grid-template-columns: repeat(3, 1fr); } }

.card figure { margin: 0 0 14px; padding: 0; }
.card figure img { display: block; width: 100%; height: 240px; object-fit: cover; border-radius: 2px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 8px;
}

.card h3 em { font-style: normal; color: var(--accent); font-weight: 400; }
.card p { font-size: 13px; line-height: 1.55; color: var(--mid); margin: 0; }

.card-caption {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ============================================================
   FIGURES + IMAGES
   Never full-width portrait images. Portraits pair with text
   inside .section--split. Landscapes may run full-width.
   ============================================================ */

.figure {
  display: block;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
}

.figure__img { display: block; width: 100%; height: auto; border-radius: 2px; }

.figure__caption {
  padding: 14px 32px 22px;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Aside figure — inside split section, no border */
.figure--aside { background: transparent; border-bottom: none; margin: 0; }
.figure--aside .figure__caption { padding: 10px 0 0; font-size: 10px; letter-spacing: 0.22em; }

/* Split image column — portrait beside text */
.split-image { margin: 0; padding: 0; }
.split-image img { display: block; width: 100%; height: auto; border-radius: 2px; }
.split-image figcaption {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Stacked image pair */
.split-image.image-stack { display: grid; grid-template-columns: 1fr; gap: 12px; }
.split-image.image-stack figure { margin: 0; }

/* Lead image + side-by-side pair */
.split-image.image-trio { display: flex; flex-direction: column; gap: 12px; }
.split-image.image-trio > figure { margin: 0; }
.split-image.image-trio .image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split-image.image-trio .image-pair figure { margin: 0; }
.split-image.image-trio .image-pair figure img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ============================================================
   STAT / NUMBER BLOCKS
   ============================================================ */

.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  margin-top: 28px;
}

.num {
  padding: 28px 22px;
  border-right: 1px solid var(--rule-soft);
  border-left: 2px solid var(--accent);
  background: var(--paper);
}

.num:not(:first-child) { border-left: 0; }
.num:last-child { border-right: none; }

.num__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.num__value .stop { color: var(--accent); }

.num__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.4;
}

/* Inline stat trio (inside split section) */
.inline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 0;
  max-width: 56ch;
}

.inline-stat { border-top: 1px solid var(--rule); padding-top: 12px; }

.inline-stat__num {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.inline-stat__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.3;
}

.section--ink .inline-stat { border-top-color: rgba(250, 250, 250, 0.3); }
.section--ink .inline-stat__num { color: var(--paper); }
.section--ink .inline-stat__label { color: rgba(250, 250, 250, 0.65); }

/* ============================================================
   PILLARS
   Equal-column grid with rules, for 3–4 feature points.
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  margin-top: 32px;
}

.pillar {
  padding: 24px 22px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--paper);
}

.pillar:last-child { border-right: none; }

.pillar__num {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 10px;
}

.pillar__title em { font-style: normal; color: var(--accent); font-weight: 400; }
.pillar__body { font-size: 14px; line-height: 1.55; color: var(--mid); }

/* ============================================================
   STEP GRID
   Numbered red-rule cards, typically 3 across.
   ============================================================ */

.step-grid { max-width: var(--max-wide); margin: 40px auto 0; display: grid; grid-template-columns: 1fr; gap: 28px; }

@media (min-width: 720px) { .step-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.step { border-top: 2px solid var(--accent); padding-top: 16px; }

.step__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 8px;
}

.step h3 em { font-style: normal; color: var(--accent); font-weight: 400; }
.step p { font-size: 14px; line-height: 1.55; color: var(--mid); max-width: none; margin: 0; }

/* ============================================================
   CHAPTER MARK
   Thin inline section divider with label + italic heading.
   ============================================================ */

.chapter-mark {
  padding: 14px 32px;
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.chapter-mark__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-right: 16px;
}

.chapter-mark__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: inline-block;
  margin: 0;
}

.chapter-mark__title em { font-style: normal; color: var(--accent); font-weight: 500; }

/* ============================================================
   PULL QUOTE
   Centred italic large quote. No attribution line.
   ============================================================ */

.pull { padding: 16px 32px 28px; background: var(--paper); text-align: center; }

.pull blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 0;
}

.pull blockquote::before { content: "\201C"; color: var(--accent); margin-right: 4px; }
.pull blockquote::after  { content: "\201D"; color: var(--accent); margin-left: 4px; }

/* ============================================================
   QUOTE BAND
   Full-width dark band with large italic quote + attribution.
   ============================================================ */

.quote { padding: 48px 32px; background: var(--ink); color: var(--paper); text-align: center; }

.quote__text {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 900px;
  margin: 0 auto;
  color: var(--paper);
}

.quote__text::before { content: "\201C"; color: var(--accent); margin-right: 4px; }
.quote__text::after  { content: "\201D"; color: var(--accent); margin-left: 4px; }

.quote__attr {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 28px;
}

/* ============================================================
   BUTTONS + CTA
   ============================================================ */

.btn {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent:hover { background: transparent; color: var(--paper); }

/* ============================================================
   ROW — spec sheet definition row
   ============================================================ */

.row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}

.row:last-child { border-bottom: 1px solid var(--rule-soft); }

.row__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.4;
}

.row__value { font-size: 15px; line-height: 1.6; color: var(--ink); }
.row__value em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ============================================================
   CONFIDENTIAL STRAP
   Sits at the bottom of every page.
   ============================================================ */

.confidential {
  padding: 20px 32px;
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--rule-soft);
  padding: 48px 32px 40px;
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.footer__wordmark .stop { color: var(--accent); }

.footer__contact {
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 18px;
  color: var(--mid);
}

.footer__contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.footer__contact a:hover { border-bottom-color: var(--accent); }

.footer__meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
  margin-top: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SIGNPOST PAGE
   Full-bleed image with text + CTA at bottom. Used to link out
   to satellite sites (exhibition-magic, partner-archive-preview).
   ============================================================ */

.signpost {
  position: relative;
  min-height: calc(100vh - 64px);
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.signpost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 35%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.88) 100%);
  pointer-events: none;
}

.signpost__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 56px;
}

.signpost__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.signpost__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 22px;
  max-width: 18ch;
}

.signpost__h1 em { font-style: normal; color: var(--accent); font-weight: 400; }

.signpost__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 24px;
  border: none;
}

.signpost__body {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.signpost__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: background 160ms ease, color 160ms ease;
}

.signpost__cta:hover { background: transparent; color: var(--paper); }
.signpost__cta .arrow { font-size: 14px; line-height: 1; }

/* ============================================================
   FILMSTRIP
   Powered by js/filmstrip.js. 8 frames, never wraps.
   ============================================================ */

.filmstrip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  position: relative;
  background: #0A0A0A;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.filmstrip::before,
.filmstrip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 22px;
  pointer-events: none;
  background-color: #0A0A0A;
  background-image: radial-gradient(ellipse 9px 5px at center, #E8E2D4 0%, #E8E2D4 65%, transparent 67%);
  background-size: 28px 22px;
  background-repeat: repeat-x;
  z-index: 5;
}

.filmstrip::before { top: 0; border-bottom: 1px solid #1A1A1A; }
.filmstrip::after  { bottom: 0; border-top: 1px solid #1A1A1A; }

.filmstrip__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0; margin: 0;
  border: none;
  border-right: 1px solid #1A1A1A;
  background: #000;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  font: inherit; color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.35s ease;
}

.filmstrip__frame:last-child { border-right: none; }

.filmstrip__frame::after {
  content: 'Hover to reveal';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #6A6A6A;
  text-transform: uppercase;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
  pointer-events: none;
  text-align: center;
  padding: 0 8px;
  z-index: 3;
}

.filmstrip__frame:hover::after,
.filmstrip__frame.is-active::after { color: var(--accent); letter-spacing: 0.28em; }
.filmstrip__frame:focus-visible { outline: 1px solid var(--accent); outline-offset: -2px; }

@media (hover: none) { .filmstrip__frame::after { content: 'Tap to reveal'; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 720px) {
  .nav { padding: 12px 20px; }
  .nav__links { gap: 14px; }

  .subnav { padding: 10px 20px; gap: 14px; }
  .subnav__links { gap: 12px; }

  .hero__top  { padding-top: 36px; }
  .hero__bottom { padding-bottom: 48px; }
  .hero__top, .hero__bottom { padding-left: 20px; padding-right: 20px; }
  .hero-top  { padding-top: 36px; }
  .hero-bottom { padding-bottom: 48px; }
  .hero-top, .hero-bottom { padding-left: 20px; padding-right: 20px; }

  .page-head { padding: 32px 20px 36px; }
  .page-head__h1 { white-space: normal; }

  .section,
  .three-card,
  .pull,
  .quote,
  .chapter-mark { padding-left: 20px; padding-right: 20px; }

  .section--split { grid-template-columns: 1fr; gap: 20px; }

  .chapter-mark { padding-top: 16px; padding-bottom: 16px; }
  .chapter-mark__label { display: block; margin-right: 0; margin-bottom: 6px; }

  .inline-stats { grid-template-columns: 1fr; gap: 14px; }

  .row { grid-template-columns: 1fr; gap: 8px; }

  .confidential { padding: 16px 20px; }

  .signpost__inner { padding: 0 20px 40px; }
  .signpost__body  { font-size: 15px; }

  .filmstrip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .section--split { gap: 28px; }
}

/* ============================================================
   BAND-PAGE ALIAS
   .page-head__title is the legacy band-page name for .page-head__h1.
   Kept here so investor + sponsorship band pages render correctly
   against the universal stylesheet.
   ============================================================ */

.page-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: none;
  white-space: nowrap;
}
.page-head__title em { font-style: normal; color: var(--accent); font-weight: 400; }
.page-head__title .stop { color: var(--accent); }

@media (max-width: 720px) {
  .page-head__title { white-space: normal; }
}

/* ============================================================
   SPONSORSHIP-SITE COMPONENT LIBRARY
   Ported May 2026 from sponsorship-site-v5/css/shared.css.
   Cleaned 2026-05-28: collisions with the universal vocabulary
   (.nav, .brand-block, .hero, .chapter-mark, .confidential, the
   sponsorship .page-header block) were removed so the sponsorship
   pages render in the investor v3 register. What remains is
   strictly additive: sponsorship-only components that don't
   collide with universal class names, plus two .page-head__*
   additives (__sub, __strip) that the sponsorship inner pages
   carry on top of the universal .page-head block.
   ============================================================ */

/* PAGE-HEAD ADDITIVES — sponsorship inner pages only.
   Sit on top of the universal .page-head / .page-head__h1 /
   __eyebrow / __rule / __lede block. The investor register has
   no equivalent for __sub or __strip. */
.page-head__sub {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 10px;
  color: var(--accent);
  font-style: normal;
  text-transform: none;
}
.page-head__strip {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  border-top: 1px solid var(--rule-soft);
  padding-top: 20px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-head__strip .dot { color: var(--accent); }

/* STAT BAND */
.stat-band { background: var(--dark); color: #FAFAFA; padding: 64px 32px; }
.stat-band__inner { max-width: var(--max-wide); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 48px; }
.stat-band__label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(250,250,250,0.6); margin: 0 0 28px; font-weight: 500; grid-column: 1/-1; }
.stat-item { border-left: 2px solid var(--accent); padding-left: 24px; }
.stat-item__num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(40px,5.5vw,72px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 10px; color: #FAFAFA; }
.stat-item__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,250,250,0.78); font-weight: 500; line-height: 1.4; }
@media (max-width: 720px) { .stat-band { padding: 48px 20px; } .stat-band__inner { gap: 32px; } }

/* BANNER */
.banner { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 28px 32px; text-align: center; font-size: clamp(11px,1.3vw,13px); letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.banner .dot { color: var(--accent); margin: 0 12px; }

/* SPLIT */
.split { padding: 88px 32px; background: var(--paper); }
.split-grid {
  max-width: var(--max-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 880px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
  section.split.image-left .split-image { order: 1; }
  section.split.image-left .split-text { order: 2; }
  section.split.image-right .split-image { order: 2; }
  section.split.image-right .split-text { order: 1; }
}
.split.split--dark { background: var(--dark); color: #FAFAFA; }
.split.split--inset { background: var(--inset); }
.split__grid { max-width: var(--max-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 880px) { .split__grid { grid-template-columns: 1fr 1fr; gap: 72px; } .split.image-left .split__image { order: 1; } .split.image-left .split__text { order: 2; } .split.image-right .split__image { order: 2; } .split.image-right .split__text { order: 1; } }
.split__text .eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; font-weight: 700; }
.split--dark .split__text .eyebrow { color: var(--accent-soft); }
.split__text h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,32px); line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.02em; color: var(--accent); }
.split--dark .split__text h2 { color: var(--accent-soft); }
.split__text hr.rule { width: 40px; height: 2px; background: var(--accent); margin: 0 0 28px; border: 0; }
.split__text p { font-size: 15px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; max-width: 56ch; }
.split--dark .split__text p { color: rgba(250,250,250,0.9); }
.split__text p.lede { font-size: 17px; line-height: 1.5; font-weight: 500; }
.split--dark .split__text p.lede { color: #FAFAFA; }
.split__text p:last-child { margin-bottom: 0; }
.split__image img { width: 100%; height: auto; display: block; }
.split__image figcaption { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; font-style: italic; }
@media (max-width: 720px) { .split { padding: 56px 20px; } }

/* PROSE SECTION */
.prose { padding: 88px 32px; background: var(--paper); }
.prose.prose--dark { background: var(--dark); color: #FAFAFA; }
.prose.prose--inset { background: var(--inset); }
.prose__inner { max-width: var(--max-wide); margin: 0 auto; }
.prose__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 16px; }
.prose--dark .prose__eyebrow { color: var(--accent-soft); }
.prose__h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,32px); line-height: 1.15; letter-spacing: -0.02em; color: var(--accent); margin: 0 0 8px; max-width: 22ch; }
.prose--dark .prose__h2 { color: var(--accent-soft); }
.prose__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 0 32px; }
.prose__body { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 880px) { .prose__body { grid-template-columns: 1fr 1fr; gap: 72px; } }
.prose__col p { font-size: 15px; line-height: 1.65; color: var(--ink); margin: 0 0 18px; max-width: 60ch; }
.prose--dark .prose__col p { color: rgba(250,250,250,0.9); }
.prose__col p.lede { font-size: 17px; line-height: 1.5; font-weight: 500; }
.prose__col p:last-child { margin-bottom: 0; }
@media (max-width: 720px) { .prose { padding: 56px 20px; } }

/* PILLARS SECTION (sponsorship register) */
.pillars-section { padding: 88px 32px; background: var(--inset); }
.pillars-section__inner { max-width: var(--max-wide); margin: 0 auto; }
.pillars-section__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 16px; }
.pillars-section__h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,32px); line-height: 1.15; letter-spacing: -0.02em; color: var(--accent); margin: 0 0 8px; }
.pillars-section__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 0 48px; }
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pillars-grid { grid-template-columns: repeat(3,1fr); } }
.pillars-section .pillar { border-top: 2px solid var(--accent); padding-top: 24px; }
.pillars-section .pillar__num { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 12px; }
.pillars-section .pillar__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(17px,1.8vw,20px); line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.01em; color: var(--ink); }
.pillars-section .pillar__body { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .pillars-section { padding: 56px 20px; } }

/* ROLES GRID */
.roles-section { padding: 88px 32px; background: var(--dark); color: #FAFAFA; }
.roles-section__inner { max-width: var(--max-wide); margin: 0 auto; }
.roles-section__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-soft); font-weight: 700; margin: 0 0 16px; }
.roles-section__h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,36px); line-height: 1.1; letter-spacing: -0.02em; color: #FAFAFA; margin: 0 0 8px; max-width: 20ch; }
.roles-section__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 0 16px; }
.roles-section__lede { font-size: 15px; line-height: 1.65; color: rgba(250,250,250,0.85); max-width: 68ch; margin: 0 0 56px; }
.roles-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 640px) { .roles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .roles-grid { grid-template-columns: repeat(4,1fr); } }
.role-card { background: #141414; padding: 28px 28px 32px; border: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.role-card:hover { background: #1c1c1c; }
.role-card--title { background: var(--accent); grid-column: 1/-1; display: grid; gap: 32px; }
@media (min-width: 640px) { .role-card--title { grid-template-columns: 1fr 1fr; grid-column: span 2; } }
@media (min-width: 960px) { .role-card--title { grid-column: span 4; grid-template-columns: 1fr 1fr 1fr 1fr; } }
.role-card__cat { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(250,250,250,0.6); font-weight: 700; margin: 0 0 10px; }
.role-card--title .role-card__cat { color: rgba(255,255,255,0.75); }
.role-card__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(16px,1.6vw,20px); line-height: 1.1; color: #FAFAFA; margin: 0 0 14px; letter-spacing: -0.01em; }
.role-card__desc { font-size: 13px; line-height: 1.6; color: rgba(250,250,250,0.75); margin: 0 0 18px; }
.role-card--title .role-card__desc { color: rgba(255,255,255,0.9); }
.role-card__nda { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,250,0.45); font-weight: 500; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.role-card--title .role-card__nda { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.2); }
@media (max-width: 720px) { .roles-section { padding: 56px 20px; } }

/* CITY TABLE */
.cities-section { padding: 88px 32px; background: var(--paper); }
.cities-section__inner { max-width: var(--max-wide); margin: 0 auto; }
.cities-section__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 16px; }
.cities-section__h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,32px); line-height: 1.15; letter-spacing: -0.02em; color: var(--accent); margin: 0 0 8px; }
.cities-section__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 0 48px; }
.city-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.city-table thead th { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; text-align: left; padding: 0 0 14px; border-bottom: 1px solid var(--rule); }
.city-table tbody tr { border-bottom: 1px solid var(--rule-soft); }
.city-table tbody tr:last-child { border-bottom: none; }
.city-table tbody td { padding: 18px 0; vertical-align: top; color: var(--ink); }
.city-table tbody td:first-child { font-weight: 600; font-size: 15px; white-space: nowrap; padding-right: 32px; }
.city-table .premiere-row td:first-child { color: var(--accent); }
.city-table .tag { display: inline-block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 3px 8px; background: var(--inset); color: var(--ink-soft); font-weight: 600; margin-right: 6px; }
.city-table .tag--premiere { background: var(--accent); color: #FAFAFA; }
@media (max-width: 720px) { .cities-section { padding: 56px 20px; } .city-table thead th:nth-child(3), .city-table tbody td:nth-child(3) { display: none; } }

/* QUOTE BAND */
.quote-band { padding: 80px 32px; background: var(--dark); color: #FAFAFA; text-align: center; }
.quote-band__inner { max-width: 820px; margin: 0 auto; }
.quote-band__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 auto 40px; }
.quote-band blockquote { font-family: 'Archivo', sans-serif; font-weight: 400; font-style: italic; font-size: clamp(22px,3vw,36px); line-height: 1.3; letter-spacing: -0.01em; color: #FAFAFA; margin: 0 0 28px; }
.quote-band blockquote em { color: var(--accent-soft); font-style: italic; }
.quote-band cite { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(250,250,250,0.55); font-style: normal; font-weight: 500; }

/* CONTACT */
.contact-section { padding: 88px 32px; background: var(--paper); }
.contact-section__inner { max-width: var(--max-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 880px) { .contact-section__inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-section__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 16px; }
.contact-section__h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.8vw,36px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px; }
.contact-section__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 0 28px; }
.contact-section p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 20px; }
.contact-section__email { font-family: 'Archivo', sans-serif; font-size: clamp(18px,2vw,26px); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; border-bottom: 2px solid var(--accent); padding-bottom: 4px; display: inline-block; transition: color 0.2s; }
.contact-section__email:hover { color: var(--accent); }
.contact-section__subject { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; display: block; }
.steps-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.steps-list li { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--rule-soft); }
.steps-list li:first-child { border-top: 1px solid var(--rule-soft); }
.steps-list__num { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; color: var(--accent); text-transform: uppercase; white-space: nowrap; padding-top: 3px; min-width: 28px; }
.steps-list__text strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.steps-list__text p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .contact-section { padding: 56px 20px; } }

/* ============================================================
   INVESTOR SITE — unique components
   ============================================================ */

/* Data grids that sit outside .section wrappers — constrain to match content width */
.market-stats,
.closing-stats {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero wordmark — large uppercase display */
.hero__wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 32px;
}
.hero__wordmark .line { display: block; }
.hero__wordmark .stop { color: var(--accent); }
.hero__wordmark .italic { font-style: normal; color: var(--accent); font-weight: 500; }
.hero__lede {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45; max-width: 54ch;
  color: var(--ink); font-weight: 500; letter-spacing: -0.005em;
}
.hero__lede em { font-style: italic; color: var(--accent); font-weight: 400; }

/* Show lockup — title hierarchy block */
.show { padding: 88px 32px; background: var(--inset); }
.show__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.show__title--lg {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; color: var(--ink);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 16px;
}
.show__title--lg .italic { font-style: normal; color: var(--accent); font-weight: 500; }
.show__title--md {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2; letter-spacing: -0.005em; margin-bottom: 16px;
}
.show__title--md em { font-style: normal; color: var(--accent); font-weight: 400; }
.show__title--sm {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; color: var(--mid);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2; letter-spacing: 0.22em;
}
.show__rule { width: 40px; height: 2px; background: var(--accent); margin: 28px 0; border: 0; }
.show__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; margin-top: 36px;
}
.show__meta-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 8px;
}
.show__meta-value { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; }

/* Contents navigation grid */
.contents__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0; border-top: 1px solid var(--rule-soft); margin-top: 28px;
}
.contents__item {
  display: block; padding: 24px 22px;
  border-bottom: 1px solid var(--rule-soft); border-right: 1px solid var(--rule-soft);
  background: var(--paper); transition: background 0.2s ease;
}
.contents__item:hover { background: var(--inset); }
.contents__num {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.contents__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.2; letter-spacing: -0.005em;
  color: var(--ink); margin-bottom: 8px;
}
.contents__title em { font-style: normal; color: var(--accent); font-weight: 400; }
.contents__sub { font-size: 13px; line-height: 1.5; color: var(--mid); }
.contents__arrow {
  display: inline-block; color: var(--accent); font-weight: 500;
  margin-top: 14px; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}

/* Figure / image blocks */
.figure { display: block; background: var(--paper); border-bottom: 1px solid var(--rule-soft); }
.figure--dark { background: var(--inset); }
.figure--ink  { background: var(--ink); }
.figure__img--16x9, .figure__img--3x2, .figure__img--4x3 {}
.figure__caption {
  padding: 14px 32px 22px;
  font-family: 'Archivo', sans-serif; font-style: normal;
  font-size: 11px; line-height: 1.4; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
}
.figure__caption .accent { color: var(--accent); font-weight: 600; }
.figure--ink .figure__caption { color: rgba(250,250,250,0.55); }
.figure--ink .figure__caption .accent { color: var(--accent-soft); }
.figure--aside { background: transparent; border-bottom: none; margin: 0; }
.figure--aside .figure__img { width: 100%; height: auto; }

/* Figure grid — side-by-side images with rules */
.figure-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft);
}
.figure-grid .figure { border-bottom: none; border-right: 1px solid var(--rule-soft); }
.figure-grid .figure:last-child { border-right: none; }
.figure-grid .figure__caption { padding: 12px 18px 20px; font-size: 10px; letter-spacing: 0.22em; }
@media (max-width: 720px) { .figure__caption { padding: 12px 20px 20px; } }

/* Section split — text + image two-column */
.section--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.section--split.image-left .section--split__image,
.section--split.image-left .figure--aside { order: 1; }
.section--split.image-left .section--split__text { order: 2; }
@media (max-width: 900px) { }
@media (max-width: 720px) { }

/* Split-image patterns */
.split-image { margin: 0; padding: 0; }
.section--ink .split-image figcaption { color: rgba(250,250,250,0.55); }
.split-image.image-stack { display: grid; grid-template-columns: 1fr; gap: 12px; }
.split-image.image-stack figure img { display: block; width: 100%; height: auto; border-radius: 2px; }
.split-image.image-trio { display: flex; flex-direction: column; gap: 12px; }
.split-image.image-trio > figure img { display: block; width: 100%; height: auto; border-radius: 2px; }
.split-image.image-trio .image-pair figure img {
  display: block; width: 100%; height: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px;
}

/* Quote band */
.quote { padding: 48px 32px; background: var(--ink); color: var(--paper); text-align: center; }
.quote__text .stop   { color: var(--accent); }

/* Row — labelled definition row */
.row {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px;
  padding: 18px 0; border-top: 1px solid var(--rule-soft);
}
.row__value em { font-style: italic; color: var(--accent); }
.row__value code {
  font-family: 'Courier New', monospace; font-size: 13px;
  background: var(--inset); padding: 2px 6px; border-radius: 2px;
}

/* ============================================================
   ARCHIVE PREVIEW — unique components
   ============================================================ */

/* Confidential strap */
.confidential-strap {
  padding: 20px 32px; background: var(--paper); border-top: 1px solid var(--rule-soft);
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint); text-align: center;
}

/* Archive hero variant — typography aligned to canonical .hero family */
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 72px;
  color: var(--paper);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.78); margin-bottom: 14px;
}
/* Bare h1 already inherits .hero h1. Bare sub-line <p> matches .hero__lede. */
.hero-content p {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
  max-width: 24ch;
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
}
.hero-content p em { font-style: italic; color: var(--accent-soft); font-weight: 400; }

/* Intro — centred editorial block */
.intro { max-width: 760px; margin: 72px auto 56px; padding: 0 32px; text-align: center; }
.intro-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.intro h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px); letter-spacing: -0.02em; line-height: 1.15;
  color: var(--accent); margin-bottom: 18px;
}
.intro p { font-size: 15px; color: var(--mid); font-weight: 400; line-height: 1.65; }

/* Section cards (archive index) */
.section-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule);
}
.section-card {
  position: relative; aspect-ratio: 3/4; background-color: var(--ink);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  cursor: pointer; overflow: hidden; transition: transform 0.5s;
}
.section-card:hover { transform: scale(1.01); }
.section-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.72) 100%); z-index: 1;
}
.section-card-content {
  position: absolute; inset: 0; z-index: 2; padding: 40px; color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.section-card-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 10px;
}
.section-card-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.8vw, 34px); letter-spacing: -0.01em; line-height: 1;
  margin-bottom: 10px; color: var(--paper);
}
.section-card-meta {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}

/* Editorial image grid */
.grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 10px; padding: 0 24px 80px; max-width: 1500px; margin: 0 auto;
}
.tile { position: relative; background-color: #0F0F0F; background-size: contain; background-position: center; background-repeat: no-repeat; overflow: hidden; }
.tile.p      { grid-column: span 4;  aspect-ratio: 4/5; }
.tile.l      { grid-column: span 6;  aspect-ratio: 3/2; }
.tile.l-wide { grid-column: span 12; aspect-ratio: 21/9; }
.tile.p-tall { grid-column: span 4;  aspect-ratio: 2/3; }

/* Image caption */
.caption {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint); text-align: center;
  padding: 14px 0 0; grid-column: span 12;
}

/* Continue navigation */
.continue {
  border-top: 1px solid var(--rule-soft); margin-top: 40px;
  padding: 56px 32px 24px; max-width: 1500px; margin-left: auto; margin-right: auto;
}
.continue-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent); text-align: center; margin-bottom: 28px;
}
.continue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.continue-card {
  position: relative; aspect-ratio: 4/3; background-color: var(--ink);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; cursor: pointer; transition: transform 0.4s;
}
.continue-card:hover { transform: translateY(-2px); }
.continue-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.75) 100%); z-index: 1;
}
.continue-card-content {
  position: absolute; inset: 0; z-index: 2; padding: 24px 26px; color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.continue-card-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 6px;
}
.continue-card-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -0.005em; line-height: 1.1; color: var(--paper);
}

/* Site footer */
.site-footer { border-top: 1px solid var(--rule-soft); padding: 48px 32px 40px; text-align: center; color: var(--mid); }
.footer-wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px;
}
.footer-wordmark .stop { color: var(--accent); }
.footer-contact {
  font-size: 13px; letter-spacing: 0.02em; line-height: 1.6;
  max-width: 540px; margin: 0 auto 18px; color: var(--mid);
}
.footer-contact a { color: var(--ink); border-bottom: 1px solid var(--rule-soft); padding-bottom: 1px; transition: border-color 0.2s ease; }
.footer-contact a:hover { border-bottom-color: var(--accent); }
.footer-meta {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint);
  padding-top: 18px; border-top: 1px solid var(--rule-soft); margin-top: 24px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* Anti-download */
img, .tile, .hero, .section-card, .continue-card {
  -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none;
  -o-user-drag: none; user-drag: none;
}

@media (max-width: 900px) {
  .section-cards { grid-template-columns: 1fr; }
  .section-card { aspect-ratio: 4/3; }
  .grid { padding: 0 12px 60px; gap: 6px; }
  .tile.p { grid-column: span 6; }
  .tile.l, .tile.l-wide { grid-column: span 12; }
  .intro { margin: 48px auto 36px; }
  .continue { padding: 40px 20px 16px; }
  .continue-grid { grid-template-columns: 1fr; gap: 12px; }
  .confidential-strap { padding: 16px 20px; }
}

/* ============================================================
   EXHIBITION MAGIC — unique components
   ============================================================ */

/* Nav inner wrapper (exhibition uses nav-inner instead of direct nav padding) */
.nav-inner {
  width: 100%; padding: 14px 32px;
  display: flex; align-items: center; justify-content: flex-start; gap: 28px;
}
.nav-brand {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 700; white-space: nowrap;
}

/* Nav toggle button */
.nav-toggle {
  appearance: none; background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
  font-family: inherit; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 500; transition: color 0.2s ease;
}
.nav-toggle:hover { color: var(--accent); }
.nav-toggle:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

/* Nav drawer */
.nav-scrim {
  position: fixed; inset: 0; background: rgba(10,10,10,0);
  pointer-events: none; transition: background 0.3s ease; z-index: 60;
}
.nav-scrim.is-open { background: rgba(10,10,10,0.45); pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; left: 0; height: 100vh; width: min(360px, 84vw);
  background: var(--paper); border-right: 1px solid var(--rule);
  transform: translateX(-100%); transition: transform 0.32s ease;
  z-index: 70; display: flex; flex-direction: column; overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid var(--rule);
}
.nav-drawer-brand {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); font-weight: 700;
}
.nav-drawer-close {
  appearance: none; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mid); font-weight: 500;
}
.nav-drawer-close:hover { color: var(--accent); }
.nav-drawer-list { padding: 14px 0 32px; display: flex; flex-direction: column; }
.nav-drawer-list a {
  padding: 14px 28px; color: var(--ink); text-decoration: none;
  font-size: 14px; letter-spacing: 0.04em; font-weight: 500;
  border-bottom: 1px solid rgba(10,10,10,0.05); transition: color 0.2s ease, background 0.2s ease;
}
.nav-drawer-list a:hover { color: var(--accent); background: rgba(168,25,14,0.04); }
.nav-drawer-list .nav-group {
  padding: 22px 28px 8px; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint);
}

/* =========================================================
   PROOF BAND  (canonical headline-figure / stat-block, May 2026)
   Left-hand editorial lead sentence + right-hand 2 or 3-column grid
   of red figures with short body labels. Used wherever the page
   needs to anchor a thesis with numbers — hero strips, audience
   pages, market context, investor hubs. Promoted from sponsorship/
   the-audience.html .proof-band pattern after Emma's stat-block
   consistency pass.
   ---
   Markup template:
     <section class="proof-band">
       <div class="proof-band__inner">
         <p class="proof-band__lead">Editorial sentence with
            <em>italic accent that carries the thesis</em>, closer.</p>
         <div class="proof-band__list">
           <div>
             <div class="proof-band__item-num">9&ndash;99</div>
             <p class="proof-band__item-text">
               <strong>Age range</strong> &middot; short context.</p>
           </div>
           ...repeat 2-4 times...
         </div>
       </div>
     </section>
   ========================================================= */
.proof-band {
  background: var(--inset);
  border-bottom: 1px solid var(--rule);
  padding: 56px 32px;
}
.proof-band__inner {
  max-width: var(--max-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center;
}
.proof-band__lead {
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px); line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink); margin: 0;
}
.proof-band__lead em { font-style: italic; color: var(--accent); }
.proof-band__list {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px 32px;
}
.proof-band__item-num {
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: clamp(24px, 3vw, 38px); letter-spacing: -0.02em;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.proof-band__item-text {
  font-size: 13px; line-height: 1.5; color: var(--ink); margin: 0;
}
.proof-band__item-text strong { font-weight: 600; }
@media (max-width: 880px) {
  .proof-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .proof-band__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .proof-band { padding: 36px 22px; }
  .proof-band__list { grid-template-columns: 1fr; }
}

/* Variant: --hero — figure grid stretches to 4 columns to suit the
   wider strips that anchor a page directly under the hero image. */
.proof-band--hero .proof-band__list { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .proof-band--hero .proof-band__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .proof-band--hero .proof-band__list { grid-template-columns: 1fr; }
}

/* Hero layout wrappers (exhibition single-dash family — mirrors .hero__top/__bottom) */
.hero-top, .hero-bottom {
  position: relative; z-index: 2; max-width: var(--max-wide);
  margin: 0 auto; width: 100%; padding: 0 32px;
}
.hero-top { padding-top: 56px; }
.hero-bottom { padding-bottom: 72px; }
.hero-meta {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); margin: 0 0 14px; font-weight: 500;
}

/* Hero strip (exhibition hero meta bar) */
.hero-strip {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.25); border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 14px 0; display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-strip span { display: inline-block; }
.hero-strip .dot { color: var(--accent); margin: 0 4px; }
.hero-lede {
  font-size: clamp(20px, 2.4vw, 30px); line-height: 1.2; margin: 0;
  max-width: 24ch; color: #FAFAFA; font-weight: 500; letter-spacing: -0.005em;
}
.hero-lede em { font-style: italic; color: #F4B7B1; font-weight: 400; }
.hero-credits {
  margin-top: 18px; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.72); font-weight: 500;
}

/* Section divider */
.divider { border: 0; height: 1px; background: var(--rule); margin: 0 auto; max-width: var(--max-wide); }
.divider-wrap { padding: 0 32px; background: var(--paper); }

/* Chapter marker */
section.chapter-mark {
  padding: 22px 32px; background: var(--paper); text-align: center;
  border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft);
}
.chapter-mark .chapter-label {
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); margin: 0 16px 6px 0; font-weight: 700; display: inline-block;
}
.chapter-mark h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.2; margin: 0;
  letter-spacing: -0.005em; display: inline-block; font-style: normal; color: var(--ink);
}
.chapter-mark h2 em { font-style: normal; color: var(--accent); font-weight: 500; }
@media (max-width: 720px) {
  section.chapter-mark { padding: 18px 20px; }
  .chapter-mark .chapter-label { display: block; margin-right: 0; margin-bottom: 6px; }
}

/* Act parent header */
section.act-parent { padding: 88px 32px 32px; background: var(--paper); }
.act-parent-inner { max-width: var(--max-wide); margin: 0 auto; }
.act-parent .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px; font-weight: 700;
}
.act-parent h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px); line-height: 1.15; margin: 0 0 22px;
  letter-spacing: -0.02em; max-width: 22ch; color: var(--accent);
}
.act-parent h2 em { font-style: normal; color: var(--accent); font-weight: 400; }
.act-parent hr.rule { width: 40px; height: 2px; background: var(--accent); margin: 0 0 22px; border: 0; }
.act-parent .lede {
  font-size: 17px; line-height: 1.5; color: var(--ink); max-width: 60ch; margin: 0 0 22px; font-weight: 500;
}
.act-parent p { font-size: 15px; line-height: 1.65; color: var(--ink); max-width: 60ch; margin: 0 0 16px; }
.act-parent .act-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 56ch; margin: 24px 0 0;
}
@media (max-width: 720px) { .act-parent .act-stats { grid-template-columns: 1fr; gap: 18px; } }

/* Three-card row */
section.three-card { padding: 64px 32px; background: var(--paper); }
.three-card-head {
  max-width: var(--max-wide); margin: 0 auto 32px;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end;
}
@media (min-width: 880px) { .three-card-head { grid-template-columns: 1fr 1fr; gap: 56px; } }
.three-card-head .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; font-weight: 700;
}
.three-card-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; margin: 0 0 16px;
  letter-spacing: -0.005em; max-width: 16ch; color: var(--accent);
}
.three-card-head h2 em { font-style: normal; color: var(--accent); font-weight: 400; }
.three-card-head hr.rule { width: 40px; height: 2px; background: var(--accent); margin: 0; border: 0; }
.three-card-head p { font-size: 15px; line-height: 1.55; color: var(--ink); max-width: 56ch; margin: 0; }
.card-row {
  max-width: var(--max-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 880px) { .card-row { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.card figure { margin: 0 0 16px; padding: 0; }
.card figure img { display: block; width: 100%; height: 280px; object-fit: cover; border-radius: 2px; }
.card h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.2;
  margin: 0 0 10px; color: var(--ink); letter-spacing: -0.005em;
}
.card p { font-size: 14px; line-height: 1.55; color: var(--mid); margin: 0; }
.card .card-caption { margin-top: 8px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

/* Credits section */
section.credits { padding: 80px 32px 96px; background: #F4F4F4; }
.credits-inner { max-width: var(--max-wide); margin: 0 auto; }
.credits-head { margin-bottom: 40px; }
.credits-head .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; font-weight: 700;
}
.credits-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px); line-height: 1.15; margin: 0 0 22px;
  letter-spacing: -0.02em; color: var(--accent);
}
.credits-head h2 em { font-style: normal; color: var(--accent); font-weight: 400; }
.credits-head hr.rule { width: 40px; height: 2px; background: var(--accent); margin: 0; border: 0; }
.credits-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .credits-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.credit-block h3 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 10px; font-weight: 600;
}
.credit-block p { font-size: 14px; line-height: 1.6; color: var(--ink); margin: 0; }

/* Design principles grid */
section.design { padding: 80px 32px 96px; background: var(--paper); border-top: 1px solid var(--rule-soft); }
.design-inner { max-width: var(--max-wide); margin: 0 auto; }
.design-head { margin-bottom: 48px; max-width: 760px; }
.design-head .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; font-weight: 700;
}
.design-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px); line-height: 1.15; margin: 0 0 22px;
  letter-spacing: -0.02em; color: var(--accent);
}
.design-head h2 em { font-style: normal; color: var(--accent); font-weight: 400; }
.design-head hr.rule { width: 40px; height: 2px; background: var(--accent); margin: 0; border: 0; }
.design-grid { display: grid; grid-template-columns: 1fr; gap: 32px 48px; }
@media (min-width: 720px) { .design-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 56px; } }
.design-item { padding-top: 22px; border-top: 1px solid var(--rule-soft); }
.design-item h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1.25;
  margin: 0 0 12px; letter-spacing: -0.005em; color: var(--ink);
}
.design-item p { font-size: 15px; line-height: 1.6; color: var(--mid); margin: 0; }
.design-item p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 720px) {
  .nav-inner { padding: 12px 20px; }
  .banner { padding-left: 20px; padding-right: 20px; }
  section.credits { padding: 56px 20px 72px; }
  .divider-wrap { padding: 0 20px; }
}

/* =========================================================
   MANIFESTO  (canonical editorial principle list, May 2026 v2)
   Numbered red eyebrow above each row, calm 15px body paragraph,
   thin rules between rows. Used for any "principles / rules /
   what we believe / how this works" list across the site.
   Promoted from sponsorship/the-partnership.html .manifesto-block
   pattern after Emma's consistency pass.
   ========================================================= */
.manifesto { max-width: var(--max-wide); margin: 0 auto; }
.manifesto__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.manifesto__row:first-child { border-top: 0; padding-top: 0; }
.manifesto__row:last-child { border-bottom: 1px solid var(--rule-soft); }
.manifesto__no {
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin: 0;
}
.manifesto__line {
  font-family: 'Archivo', sans-serif; font-weight: 400;
  font-size: 15px; line-height: 1.55; letter-spacing: 0;
  color: var(--ink); margin: 0;
}
.manifesto__line em { font-style: italic; color: var(--accent); }
@media (max-width: 720px) {
  .manifesto__row { padding: 16px 0; }
}

/* =========================================================
   CHAPTER-SUMMARY  (parent-page editorial teasers to sub-pages)
   Four cards, no buttons, accent rule, editorial type.
   ========================================================= */
.chapter-summary { max-width: var(--max-wide); margin: 0 auto; }
.chapter-summary__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.chapter-summary__card {
  padding: 36px 28px;
  border-right: 1px solid var(--rule-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.chapter-summary__card:last-child { border-right: none; }
.chapter-summary__no {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--faint); font-weight: 500;
}
.chapter-summary__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink); margin: 0;
}
.chapter-summary__body {
  font-size: 15px; line-height: 1.55; color: var(--mid); margin: 0;
}
.chapter-summary__link {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  align-self: flex-start; margin-top: auto;
}
@media (max-width: 720px) {
  .chapter-summary__card { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .chapter-summary__card:last-child { border-bottom: none; }
}

/* =========================================================
   INVITATION  (parent-page editorial propositions, May 2026)
   Three stacked rows. No images. Manifesto rhythm, prose-led.
   ========================================================= */
.invitation { max-width: 880px; margin: 0 auto; }
.invitation__row {
  padding: 40px 0;
  border-top: 1px solid var(--rule-soft);
}
.invitation__row:last-child { border-bottom: 1px solid var(--rule-soft); }
.invitation__no {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin: 0 0 12px;
}
.invitation__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2;
  letter-spacing: -0.015em; color: var(--ink); margin: 0 0 6px;
}
.invitation__kicker {
  font-family: 'Archivo', sans-serif; font-style: normal; font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.35;
  color: var(--accent); margin: 0 0 18px;
}
.invitation__body {
  font-size: 16px; line-height: 1.6; color: var(--mid); margin: 0 0 20px;
}
.invitation__link {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
@media (max-width: 720px) {
  .invitation__row { padding: 32px 0; }
}

/* =========================================================
   CLOSER  (single-line end-of-page beat, May 2026)
   Dark band, italic line, accent rule above, link beneath.
   ========================================================= */
.closer { background: var(--dark); color: #FAFAFA; padding: 96px 32px; text-align: center; }
.closer__inner { max-width: 720px; margin: 0 auto; }
.closer__rule { width: 40px; height: 2px; background: var(--accent); border: 0; margin: 0 auto 32px; }
.closer__line {
  font-family: 'Archivo', sans-serif; font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px); line-height: 1.35;
  letter-spacing: -0.01em; color: #FAFAFA; margin: 0 0 28px;
}
.closer__line em { color: var(--accent-soft); font-style: italic; }
.closer__link {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--accent-soft); padding-bottom: 3px;
}
@media (max-width: 720px) {
  .closer { padding: 64px 20px; }
}

/* =========================================================
   INVITATION ROLES LIST  (slim 5-row list inside Invitation block)
   Role name + single-line position. No NDA line here.
   ========================================================= */
.invitation__roles {
  margin: 6px 0 22px;
  border-top: 1px solid var(--rule-soft);
}
.invitation__role {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.invitation__role-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.02em; color: var(--ink); margin: 0;
}
.invitation__role-pos {
  font-size: 14px; line-height: 1.5; color: var(--mid); margin: 0;
}
.invitation__role-pos em { font-style: italic; color: var(--accent); }
@media (max-width: 680px) {
  .invitation__role { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}

/* =========================================================
   ROLES-SPLIT  (2-col layout: left = role list, right = reserved)
   Right column intentionally empty for later detail.
   ========================================================= */
.roles-split { max-width: var(--max-wide); margin: 0 auto; }
.roles-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.roles-split__left { display: flex; flex-direction: column; gap: 28px; }
.roles-split__right { min-height: 200px; }
.roles-split__row {
  border-top: 1px solid var(--rule-soft);
  padding: 22px 0 4px;
}
.roles-split__row:last-child {
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 22px;
}
.roles-split__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.roles-split__pos {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mid);
  margin: 0;
}
.roles-split__pos em { font-style: italic; color: var(--accent); }
@media (max-width: 860px) {
  .roles-split__grid { grid-template-columns: 1fr; gap: 0; }
  .roles-split__right { display: none; }
}

/* PREV/NEXT PAGER
   Injected at build time before the footer on each section sub-page. Deploy-
   aware: the builder only emits links to pages actually present in that deploy,
   so a page excluded from a build is never referenced here. */
.pager { max-width: var(--max-wide); margin: 0 auto; padding: 40px 24px 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--rule); }
.pager__link { display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: var(--ink); transition: color .15s ease; }
.pager__link:hover { color: var(--accent); }
.pager__link--prev { align-items: flex-start; text-align: left; }
.pager__link--next { align-items: flex-end; text-align: right; grid-column: 2; }
.pager__dir { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.pager__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1.2; letter-spacing: -0.01em; }
@media (max-width: 600px) { .pager { grid-template-columns: 1fr; } .pager__link--next { grid-column: 1; align-items: flex-start; text-align: left; } }

/* ============================================================
   MOBILE SCREEN GATE
   Shown on screens narrower than 768px (phones). Tablets and
   above see the full site. The overlay sits above everything
   and cannot be dismissed — it is purely informational.
   ============================================================ */
.mobile-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}
.mobile-gate__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 40px;
  opacity: 0.5;
}
.mobile-gate__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 20px;
}
.mobile-gate__heading em {
  font-style: normal;
  color: var(--accent-soft);
}
.mobile-gate__rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}
.mobile-gate__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,250,250,0.72);
  max-width: 34ch;
}
@media (max-width: 767px) {
  .mobile-gate { display: flex; }
}

/* ============================================================
   65% BASELINE HIGHLIGHT
   Marks the chosen modelling occupancy so it reads, at a glance,
   as THE number the projections are built on. Two forms:

   .baseline-hl   — inline highlighter band. Wrap "65%" or
                    "65% baseline" inside running text or a label.
                      <span class="baseline-hl">65%</span>

   .is-baseline   — block modifier for a scenario/occupancy tile.
                    Tints the whole tile and adds a left accent bar
                    so the baseline column stands apart from the
                    75% / 100% scenarios.
                      <div class="occ-tile is-baseline"> … </div>
   ============================================================ */

.baseline-hl {
  background: rgba(168, 25, 14, 0.12);   /* soft --accent tint */
  color: var(--accent);
  font-weight: 700;
  padding: 0.04em 0.34em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

/* Block-level baseline tile */
.is-baseline {
  position: relative;
  background: rgba(168, 25, 14, 0.07);
  border-color: var(--accent) !important;
}

.is-baseline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

/* Small "BASELINE" tag — optional companion to the highlight,
   for stat subs where the band alone is ambiguous. */
.baseline-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(168, 25, 14, 0.12);
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
}

