/* =====================================================================
   Money 20/20 USA 2025 — Case Study
   Big Event Media · Editorial system
   ===================================================================== */

@font-face { font-family: 'Fatcat';    src: url('fonts/Fatcat.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Gabarito';  src: url('fonts/Gabarito.ttf') format('truetype'); font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'Secuela';   src: url('fonts/Secuela-Light.ttf')   format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Secuela';   src: url('fonts/Secuela-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Secuela';   src: url('fonts/Secuela-Bold.ttf')    format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Secuela';   src: url('fonts/Secuela-Black.ttf')   format('truetype'); font-weight: 900; font-display: swap; }

:root {
  --orange:    #FF7C24;
  --orange-2:  #FF8E40;
  --orange-3:  #E66A14;
  --ink:       #0A0A0A;
  --ink-soft:  #1F1F1F;
  --ink-mute:  #6B6B6B;
  --paper:     #FAFAF1;   /* official cream */
  --paper-2:   #EFEDDE;
  --rule:      #DCD7C2;
  --rule-soft: #E7E3D2;
  --black:     #000000;

  --gutter: clamp(20px, 4vw, 64px);
  --max:    1440px;

  --font-display: 'Fatcat', 'Bowlby One', 'Arial Black', sans-serif;
  --font-sans:    'Gabarito', system-ui, sans-serif;
  --font-serif:   'Secuela', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--orange); color: var(--paper); }

/* ───── shared utilities ───── */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
}
.kicker {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kicker b { color: var(--ink); }
.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mute);
}

/* ───── topbar ───── */
.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 50;
  scroll-padding-top: 80px;
}
html { scroll-padding-top: 80px; scroll-behavior: smooth; }
.topbar .mark img { height: 18px; opacity: 0.92; display: block; }
.topbar .crumb {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.topbar .crumb b { color: var(--ink); }
.topbar .right {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
}
.topbar .right a { text-decoration: none; transition: color 140ms ease; }
.topbar .right a:hover { color: var(--orange); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  height: min(96vh, 980px);
  min-height: 640px;
  overflow: hidden;
  background: #000;
  color: var(--paper);
}
.hero .photo {
  position: absolute; inset: 0;
  background-image: url('photos/55.jpg');
  background-size: cover;
  background-position: 50% 35%;
  filter: saturate(1.05);
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.0) 45%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.92) 100%);
}
.hero .frame {
  position: absolute; inset: 0;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 32px var(--gutter) 40px;
  gap: 16px;
  z-index: 2;
}
.hero .tape {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,250,241,0.75);
}
.hero .tape .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,124,36,0.18);
}
.hero .tape .sep { opacity: 0.45; }
.hero .center {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1320px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 14.5vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.hero h1 .slash { color: var(--orange); }
.hero .sub {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  border-top: 2px solid var(--orange);
  padding-top: 18px;
}
.hero .deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
  max-width: 720px;
  color: rgba(250,250,241,0.92);
  margin: 0;
}
.hero .deck::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 1.4em;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.hero .meta-tab {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250,250,241,0.70);
  text-align: right;
}
.hero .meta-tab b { color: var(--paper); font-size: 12px; letter-spacing: 0.22em; display: block; }
.hero .bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250,250,241,0.55);
}
.hero .bottom .scroll {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(250,250,241,0.8);
}
.hero .bottom .scroll .arr { font-family: var(--font-display); color: var(--orange); }

/* ===================================================================
   FOUNDER'S FORWARD  (magazine editor's letter)
   =================================================================== */
.forward {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.forward .forward-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) var(--gutter) clamp(80px, 9vw, 128px);
}
.forward-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 44px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.forward-head .l { color: var(--orange); }
.forward-head .l b { color: var(--ink); }
.forward-head .r { color: var(--ink-mute); }

.forward-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 22ch;
  text-wrap: balance;
}
.forward-title em {
  font-style: normal;
  color: var(--orange);
}
.forward-deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 64ch;
  margin: 0 0 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.forward-body {
  columns: 2;
  column-gap: clamp(28px, 4vw, 56px);
  column-rule: 1px solid var(--rule-soft);
}
.forward-body > p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  break-inside: avoid-column;
}
.forward-body > p:last-child { margin-bottom: 0; }
.forward-body strong {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-serif);
}
.forward-body em {
  font-style: italic;
  color: var(--ink);
}
.forward-body p .hello {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.forward-body p:first-of-type .hello + br + span,
.forward-body p:first-of-type::first-letter {
  /* drop cap only on the body paragraph that follows the hello */
}
.forward-body p.lede::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  padding: 4px 12px 0 0;
  color: var(--ink);
}

.forward-credits {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 32px;
  align-items: center;
}
.forward-credits .lab {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
}
.forward-credits .chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.forward-credits .chip {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 8px 12px;
  display: inline-flex; gap: 10px; align-items: center;
}
.forward-credits .chip .sep { color: var(--rule); }
.forward-credits .chip .who { color: var(--orange); }

.forward-sign {
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.forward-sign .mark {
  width: 80px; height: 80px; border-radius: 999px;
  background: var(--ink);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 80px;
  text-align: center;
  letter-spacing: -0.02em;
}
.forward-sign .sig { display: grid; gap: 8px; }
.forward-sign .hand {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.forward-sign .meta {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.forward-sign .meta b { color: var(--ink); }

@media (max-width: 820px) {
  .forward-body { columns: 1; }
  .forward-head { flex-direction: column; gap: 10px; align-items: flex-start; }
  .forward-sign .hand { font-size: 40px; }
  .forward-credits { grid-template-columns: 1fr; gap: 12px; }
}

/* ===================================================================
   FOUNDER FORWARD — Polaroid pile + signature
   =================================================================== */
.forward-end {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-top: 16px;
}
.forward-end .forward-credits { margin-top: 48px; }

.forward-polaroids {
  position: relative;
  width: 100%;
  height: 580px;
  pointer-events: none;
}
.forward-polaroids .pol {
  position: absolute;
  background: #FBFAF3;
  padding: 12px 12px 44px;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.24),
    0 6px 14px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 200px;
  transform-origin: center center;
}
.forward-polaroids .pol img {
  width: 100%;
  height: 222px;
  object-fit: cover;
  display: block;
  background: #111;
}
/* Smaller "supporting cast" polaroids */
.forward-polaroids .pol.sm {
  width: 124px;
  padding: 8px 8px 30px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    0 4px 10px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}
.forward-polaroids .pol.sm img {
  height: 138px;
}
.forward-polaroids .pol .lbl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #5a4f3a;
  letter-spacing: 0.02em;
}

/* === HERO polaroids (large) — back layer === */
.forward-polaroids .pol.pol-1 { left:  -1%; top: 210px; transform: rotate(-10deg); z-index: 3; }
.forward-polaroids .pol.pol-2 { left:  20%; top:  20px; transform: rotate(  7deg); z-index: 12; } /* woman in red */
.forward-polaroids .pol.pol-3 { left:  37%; top: 260px; transform: rotate( -2deg); z-index: 5; }
.forward-polaroids .pol.pol-4 { left:  56%; top:  60px; transform: rotate(  6deg) scale(0.86); z-index: 4; transform-origin: top left; }
.forward-polaroids .pol.pol-5 { left:  68%; top: 290px; transform: rotate(-13deg); z-index: 3; }

/* === SUPPORTING polaroids (small) — front layer, peeking over the heroes === */
.forward-polaroids .pol.pol-6  { left:  -3%; top:  60px; transform: rotate(-14deg); z-index: 8; } /* top-left, above pol-2 */
.forward-polaroids .pol.pol-7  { left:  16%; top: 410px; transform: rotate( 11deg); z-index: 8; } /* lower-left between 1 & 3 */
.forward-polaroids .pol.pol-8  { left:  45%; top:   0px; transform: rotate(  9deg); z-index: 8; } /* top, between 2 & 4 */
.forward-polaroids .pol.pol-9  { left:  44%; top: 440px; transform: rotate(-10deg); z-index: 8; } /* lower-center */
.forward-polaroids .pol.pol-10 { left:  88%; top:  60px; transform: rotate(-14deg); z-index: 8; } /* top-right corner */

/* Override the original .forward-sign to use signature image */
.forward-sign {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}
.forward-sign .signature {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: -6px;
}
.forward-sign .meta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.9;
}
.forward-sign .meta b { color: var(--ink); font-size: 13px; letter-spacing: 0.16em; }

@media (max-width: 900px) {
  .forward-end { grid-template-columns: 1fr; gap: 48px; }
  .forward-polaroids { height: 440px; }
}
@media (max-width: 600px) {
  .forward-polaroids { height: 380px; }
  .forward-polaroids .pol { width: 130px; padding: 7px 7px 26px; }
  .forward-polaroids .pol img { height: 150px; }
}

/* ===================================================================
   SPEED OF DELIVERY  (former Chapter 03 — now folded inside Ch 02 as a sub-section)
   =================================================================== */
.speed-delivery {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.speed-delivery .wrap.tight {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.speed-delivery .sub-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.speed-delivery .sub-head .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 6px;
}
.speed-delivery .sub-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.speed-delivery .sub-head h3 .s { color: var(--orange); }
@media (max-width: 820px) {
  .speed-delivery .sub-head { grid-template-columns: 1fr; gap: 12px; }
  .speed-delivery .sub-head .e { padding-bottom: 0; }
}

/* ===================================================================
   CLIENT GALLERY BAND  (browser-window mock around the pic-time screenshot)
   =================================================================== */
.gallery-band {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}
.gallery-wrap {
  max-width: 1320px;
  margin: 0 auto;
}
.gallery-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.gallery-head .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.gallery-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.gallery-head h2 .s { color: var(--orange); }
.gallery-head p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 58ch;
}
.gallery-head p strong { color: var(--ink); font-weight: 700; }

.browser {
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.browser .chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #161616;
  border-bottom: 1px solid #2a2a2a;
}
.browser .lights { display: flex; gap: 7px; }
.browser .lights span {
  width: 12px; height: 12px; border-radius: 999px;
  background: #2a2a2a;
  display: block;
}
.browser .lights span:nth-child(1) { background: #FF5F57; }
.browser .lights span:nth-child(2) { background: #FEBC2E; }
.browser .lights span:nth-child(3) { background: #28C840; }
.browser .url {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #0c0c0c;
  border: 1px solid #2a2a2a;
  color: rgba(250,250,241,0.78);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  max-width: 540px;
  width: 100%;
  justify-self: center;
}
.browser .url .lock {
  display: inline-block;
  width: 10px; height: 12px;
  border: 1.5px solid rgba(250,250,241,0.55);
  border-radius: 2px;
  position: relative;
  margin-right: 2px;
}
.browser .url .lock::before {
  content: '';
  position: absolute;
  inset: -5px 1px auto 1px;
  height: 7px;
  border: 1.5px solid rgba(250,250,241,0.55);
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.browser .url .host { color: var(--paper); font-weight: 700; }
.browser .url .path { color: rgba(250,250,241,0.45); }
.browser .actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250,250,241,0.55);
}
.browser .actions .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,124,36,0.2);
}
.browser .actions b { color: var(--paper); }
.browser .frame-shot {
  background: white;
  overflow: hidden;
  position: relative;
}
.browser .frame-shot img {
  width: 100%; height: auto; display: block;
}

.gallery-foot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.gallery-foot b { color: var(--ink); }
.gallery-foot .o { color: var(--orange); }

@media (max-width: 820px) {
  .gallery-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .browser .chrome { grid-template-columns: auto 1fr; gap: 10px; padding: 10px 12px; }
  .browser .url { font-size: 10px; padding: 7px 10px; }
  .browser .actions { display: none; }
}

/* ===================================================================
   STAGE-AS-CANVAS COLLAGE
   =================================================================== */
.canvas {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}
.canvas .canvas-wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.canvas .canvas-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid #232323;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.canvas .canvas-head .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.canvas .canvas-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.canvas .canvas-head h2 .s { color: var(--orange); }
.canvas .canvas-head p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250,250,241,0.78);
  margin: 0;
  max-width: 52ch;
}
.canvas .canvas-head p strong {
  color: var(--paper);
  font-weight: 700;
}

.canvas-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(80px, 9vw);
  gap: 12px;
}
.canvas-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}
.canvas-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.22,1,.36,1);
}
.canvas-grid figure:hover img { transform: scale(1.04); }

.canvas-grid .gA { grid-column: 1 / 8;  grid-row: 1 / 5; }
.canvas-grid .gB { grid-column: 8 / 13; grid-row: 1 / 9; }
.canvas-grid .gC { grid-column: 1 / 5;  grid-row: 5 / 9; }
.canvas-grid .gD { grid-column: 5 / 8;  grid-row: 5 / 7; }
.canvas-grid .gE { grid-column: 5 / 8;  grid-row: 7 / 9; }

/* fine-tune photo crops for the awkwardly-shaped tiles */
.canvas-grid .gA img { object-position: 50% 40%; }
.canvas-grid .gC img { object-position: 50% 30%; }
.canvas-grid .gD img { object-position: 60% 50%; }

.canvas-grid .tag {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
}
.canvas-grid .tag .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,124,36,0.18);
}
.canvas-grid .tag .lbl {
  color: rgba(250,250,241,0.5);
  font-size: 9px;
  letter-spacing: 0.28em;
}
.canvas-grid .tag .nm {
  color: var(--paper);
}

.canvas-foot {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,250,241,0.5);
}
.canvas-foot b { color: var(--paper); }
.canvas-foot .o { color: var(--orange); }

@media (max-width: 820px) {
  .canvas .canvas-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .canvas-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 64px; gap: 8px; }
  .canvas-grid .gA { grid-column: 1 / 7; grid-row: 1 / 4; }
  .canvas-grid .gB { grid-column: 1 / 7; grid-row: 4 / 9; }
  .canvas-grid .gC { grid-column: 1 / 4; grid-row: 9 / 12; }
  .canvas-grid .gD { grid-column: 4 / 7; grid-row: 9 / 11; }
  .canvas-grid .gE { grid-column: 4 / 7; grid-row: 11 / 12; }
  .canvas-grid .tag { left: 10px; bottom: 10px; font-size: 9px; padding: 7px 10px; }
}

/* tall, cinematic variant of .bleed for hero-scale single photos */
.bleed.cinema {
  height: clamp(620px, 96vh, 1180px);
}
.bleed.cinema img {
  object-position: center 35%;
}
.bleed.cinema .cap {
  bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
}
.bleed.cinema .kick {
  position: absolute;
  left: var(--gutter); top: 32px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: inline-flex; align-items: center; gap: 12px;
}
.bleed.cinema .kick .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,124,36,0.18);
}
.bleed.cinema .frame-num {
  position: absolute;
  right: var(--gutter); top: 32px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.12);
}

/* ===================================================================
   META RIBBON  (the dossier strip just under hero)
   =================================================================== */
.dossier {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #1A1A1A;
}
.dossier .row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dossier .cell .lbl {
  display: block;
  color: rgba(250,250,241,0.42);
  font-size: 9px;
  margin-bottom: 8px;
  letter-spacing: 0.3em;
}
.dossier .cell .val {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.dossier .cell .val b { color: var(--orange); font-weight: 700; }

/* ===================================================================
   SECTION shells
   =================================================================== */
section { position: relative; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}
.wrap.tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }

/* ===================================================================
   01 — THE OPENING (drop cap + asymmetric)
   =================================================================== */
.opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.opening .lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.opening .lead .s { color: var(--orange); }
.opening .body {
  display: grid; gap: 20px;
  max-width: 56ch;
}
.opening .body p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.opening .body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.4em;
  line-height: 0.82;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--orange);
}
.opening .body .signoff {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  margin-top: 6px;
}

/* ===================================================================
   STATS BAND (black)
   =================================================================== */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 120px) var(--gutter);
}
.stats .head {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  border-bottom: 1px solid #232323;
  padding-bottom: 28px;
}
.stats .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
}
.stats .head h2 .s { color: var(--orange); }
.stats .head .tag {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,250,241,0.5);
}
.stats .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.stats .stat {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--orange);
}
.stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.stats .stat .num em {
  font-style: normal;
  color: var(--orange);
}
.stats .stat .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,241,0.6);
}
.stats .stat .desc {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(250,250,241,0.75);
  max-width: 28ch;
}
.stats .foot {
  max-width: var(--max);
  margin: 56px auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #232323;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,250,241,0.5);
}
.stats .foot .foot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.stats .foot .foot-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.18em;
}
.stats .foot .foot-list li .b {
  width: 10px;
  height: 10px;
  background: var(--orange);
  display: block;
  flex: none;
  box-shadow: 0 0 0 4px rgba(255,124,36,0.15);
}
.stats .foot b { color: var(--paper); }

/* ===================================================================
   CHAPTER HEAD
   =================================================================== */
.chapter-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.chapter-head .num {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.chapter-head .lab {
  display: grid; gap: 14px; padding-bottom: 14px;
}
.chapter-head .lab .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute);
}
.chapter-head .lab h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.chapter-head .lab h2 .s { color: var(--orange); }

/* ===================================================================
   FULL-BLEED PHOTO BAND (used between chapters)
   =================================================================== */
.bleed {
  position: relative;
  background: #000;
  overflow: hidden;
  height: clamp(420px, 70vh, 760px);
}
.bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bleed .cap {
  position: absolute;
  left: var(--gutter); right: var(--gutter); bottom: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  pointer-events: none;
}
.bleed .cap .r { color: var(--orange); }

/* ===================================================================
   TWO-COLUMN BODY
   =================================================================== */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.twocol p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 0 1.2em;
}
.twocol p:last-child { margin-bottom: 0; }
.twocol p strong { color: var(--ink); font-weight: 700; font-family: var(--font-sans); letter-spacing: 0.02em; }

/* signature-traits — the BEM craft pillars under the twocol */
.signature-traits {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(28px, 3.5vw, 36px);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.signature-traits .lab {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 8px;
}
.signature-traits .body {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.signature-traits .body strong {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
@media (max-width: 820px) {
  .signature-traits { grid-template-columns: 1fr; gap: 14px; }
  .signature-traits .lab { padding-top: 0; }
}

/* ===================================================================
   STAGE TRIPTYCH
   =================================================================== */
.tripty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 5vw, 64px);
}
.tripty figure {
  margin: 0;
  display: grid; gap: 14px;
}
.tripty .frame {
  aspect-ratio: 4/5;
  background: #111;
  overflow: hidden;
  position: relative;
}
.tripty .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22,1,.36,1);
}
.tripty figure:hover .frame img { transform: scale(1.03); }
.tripty figcaption {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.tripty figcaption b { color: var(--ink); }
.tripty figcaption .o { color: var(--orange); }

/* ===================================================================
   DELIVERABLES SPREAD (numbered list + offset photo)
   =================================================================== */
.deliver {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.deliver .photo-stack {
  display: grid; gap: 14px;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(160px, auto);
}
.deliver .photo-stack .a { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 4/5; background-size: cover; background-position: center; }
.deliver .photo-stack .b { grid-column: 2; grid-row: 1; aspect-ratio: 4/5; background-size: cover; background-position: center; }
.deliver .photo-stack .c { grid-column: 2; grid-row: 2; aspect-ratio: 4/5; background-size: cover; background-position: center; }
.deliver .photo-stack .d { grid-column: 1; grid-row: 3; aspect-ratio: 16/9; background-size: cover; background-position: center; }
.deliver .photo-stack .e { grid-column: 2; grid-row: 3; aspect-ratio: 4/5; background-size: cover; background-position: 50% 30%; background-size: 140%; }

.deliver .list { display: grid; gap: 0; }
.deliver .item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.deliver .item:last-child { border-bottom: 1px solid var(--rule); }
.deliver .item .n {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.deliver .item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.deliver .item p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}

/* ===================================================================
   PULL QUOTE
   =================================================================== */
.pq {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pq .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.pq .mark {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 240px);
  line-height: 0.7;
  color: var(--orange);
  margin-top: -0.1em;
}
.pq blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pq blockquote .s { color: var(--orange); }
.pq cite {
  display: grid; gap: 4px;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pq cite b { color: var(--ink); font-size: 13px; letter-spacing: 0.16em; }

/* ===================================================================
   RESULTS GRID
   =================================================================== */
.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(32px, 4vw, 56px);
}
.results .r {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 24px 28px;
  display: grid; gap: 18px;
  min-height: 280px;
  align-content: space-between;
}
.results .r .n {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--orange);
}
.results .r h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.results .r p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250,250,241,0.78);
  margin: 0;
}

/* ===================================================================
   GALLERY WALL (asymmetric editorial mosaic)
   =================================================================== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 72px);
}
.mosaic .t { background: #111; overflow: hidden; position: relative; }
.mosaic .t img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.22,1,.36,1); }
.mosaic .t:hover img { transform: scale(1.04); }

/* placement — 12 col grid */
.mosaic .t1  { grid-column: 1 / 6;  grid-row: span 5; }
.mosaic .t2  { grid-column: 6 / 9;  grid-row: span 3; }
.mosaic .t3  { grid-column: 9 / 13; grid-row: span 4; }
.mosaic .t4  { grid-column: 6 / 9;  grid-row: span 2; }
.mosaic .t5  { grid-column: 9 / 13; grid-row: span 3; }
.mosaic .t6  { grid-column: 1 / 5;  grid-row: span 4; }
.mosaic .t7  { grid-column: 5 / 9;  grid-row: span 4; }
.mosaic .t8  { grid-column: 9 / 13; grid-row: span 4; }

.mosaic .cap-row {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.mosaic .cap-row b { color: var(--ink); }
.mosaic .cap-row .o { color: var(--orange); }

/* ===================================================================
   LESSONS (designer side notes)
   =================================================================== */
.lessons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(40px, 5vw, 64px);
}
.lessons .less {
  display: grid; gap: 18px;
  padding: 36px 0 0;
  border-top: 2px solid var(--ink);
}
.lessons .less .e {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
}
.lessons .less h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.lessons .less p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ===================================================================
   2026 STRIP — black with countdown vibe
   =================================================================== */
.next-up {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  border-top: 1px solid #1A1A1A;
  position: relative;
  overflow: hidden;
}
.next-up::before {
  /* subtle orange spotlight */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 110%, rgba(255,124,36,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.next-up .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.next-up .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.next-up h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--paper);
  text-wrap: balance;
}
.next-up h2 .s { color: var(--orange); }
.next-up p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250,250,241,0.82);
  margin: 0;
  max-width: 56ch;
}
.next-up .countdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.next-up .cd {
  border: 1px solid #2A2A2A;
  padding: 22px 22px 24px;
  display: grid; gap: 6px;
}
.next-up .cd .lbl {
  font-family: var(--font-sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,250,241,0.45);
}
.next-up .cd .val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.92;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.next-up .cd .val em { font-style: normal; color: var(--orange); }

/* ===================================================================
   TESTIMONIAL  (Kathryn Frankson) + team photo
   =================================================================== */
.testimonial-band {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.testimonial-band .inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.testimonial-band .e {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.testimonial-band blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 0;
  text-wrap: pretty;
}
.testimonial-band blockquote .mk {
  font-family: var(--font-display);
  font-size: 1.6em;
  font-style: normal;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.22em;
  margin-right: 0.06em;
}
.testimonial-band blockquote .s { color: var(--orange); }
.testimonial-band cite {
  display: grid; gap: 6px;
  margin-top: 36px;
  font-style: normal;
  padding-top: 22px;
  border-top: 1px solid #2a2a2a;
}
.testimonial-band cite .who {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.testimonial-band cite .role {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250,250,241,0.55);
}
.testimonial-band cite .role b { color: var(--orange); }

.testimonial-band .photo {
  position: relative;
  background: #050505;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.testimonial-band .photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.testimonial-band .photo .frame-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 14px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper);
}
.testimonial-band .photo .frame-cap .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,124,36,0.18);
}
.testimonial-band .photo .frame-cap .lbl {
  color: rgba(250,250,241,0.55);
  font-size: 9px;
}

@media (max-width: 900px) {
  .testimonial-band .inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-band .photo { aspect-ratio: 16/10; }
}

/* ===================================================================
   CTA
   =================================================================== */
.cta {
  padding: clamp(96px, 12vw, 160px) var(--gutter);
  text-align: center;
}
.cta .e { color: var(--orange); }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  margin: 24px 0 32px;
  text-wrap: balance;
}
.cta h2 .s { color: var(--orange); }
.cta p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0 auto 48px;
  max-width: 60ch;
}
.cta .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}
.cta .btn.primary { background: var(--orange); color: var(--ink); }
.cta .btn:hover { background: var(--orange-2); color: var(--ink); }
.cta .btn:active { background: var(--orange-3); transform: translateY(1px); }
.cta .btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.cta .btn.ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta .btn .arr { font-family: var(--font-display); }

/* ===================================================================
   FOOTER
   =================================================================== */
footer.foot {
  background: var(--ink);
  color: rgba(250,250,241,0.6);
  padding: 48px var(--gutter) 40px;
  border-top: 1px solid #1A1A1A;
}
footer.foot .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
footer.foot img { height: 18px; opacity: 0.75; }
footer.foot a { color: inherit; text-decoration: none; transition: color 140ms ease; }
footer.foot a:hover { color: var(--orange); }
footer.foot .links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .results { grid-template-columns: repeat(2, 1fr); }
  .dossier .row { grid-template-columns: repeat(3, 1fr); gap: 20px 24px; }
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
  .mosaic .t1 { grid-column: 1 / 7; grid-row: span 5; }
  .mosaic .t2 { grid-column: 1 / 4; grid-row: span 3; }
  .mosaic .t3 { grid-column: 4 / 7; grid-row: span 3; }
  .mosaic .t4 { grid-column: 1 / 4; grid-row: span 3; }
  .mosaic .t5 { grid-column: 4 / 7; grid-row: span 3; }
  .mosaic .t6 { grid-column: 1 / 7; grid-row: span 4; }
  .mosaic .t7 { grid-column: 1 / 4; grid-row: span 3; }
  .mosaic .t8 { grid-column: 4 / 7; grid-row: span 3; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .topbar { grid-template-columns: auto auto; }
  .topbar .crumb { display: none; }
  .hero { height: min(90vh, 720px); min-height: 540px; }
  .hero .frame { padding: 24px 20px 28px; }
  .hero .sub { grid-template-columns: 1fr; gap: 14px; }
  .hero .meta-tab { text-align: left; }
  .hero .bottom { grid-template-columns: 1fr; gap: 10px; }
  .dossier .row { grid-template-columns: repeat(2, 1fr); }
  .opening { grid-template-columns: 1fr; }
  .opening .body p:first-child::first-letter { font-size: 3.6em; padding: 4px 10px 0 0; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .stats .head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .chapter-head { grid-template-columns: 1fr; gap: 16px; }
  .chapter-head .num { font-size: 80px; }
  .twocol { grid-template-columns: 1fr; }
  .tripty { grid-template-columns: 1fr; }
  .deliver { grid-template-columns: 1fr; }
  .deliver .photo-stack { grid-template-columns: 1fr 1fr; }
  .deliver .photo-stack .a { grid-row: 1; }
  .pq .inner { grid-template-columns: 1fr; gap: 8px; }
  .pq .mark { font-size: 120px; line-height: 0.5; }
  .results { grid-template-columns: 1fr; }
  .lessons { grid-template-columns: 1fr; }
  .next-up .inner { grid-template-columns: 1fr; gap: 32px; }
  .bleed { height: 60vh; min-height: 360px; }
  footer.foot .inner { grid-template-columns: 1fr; text-align: center; }
  footer.foot .links { justify-content: center; }
}
