/* ═══════════════════════════════════════════════════════════════════════
   Westwing Case — Slide Stylesheet (16:10 · 1600×1000)
   Faithful translation of westwing-case.html into fixed slide frames.
   Tokens, typography, patterns match source.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* — Core tokens (from source) — */
  --ink: #1A1917;
  --ink-soft: #3A3732;
  --paper: #F5F0E8;
  --paper-warm: #EDE5D6;
  --paper-warm-strong: #E4D9C4;
  --bone: #E8DFD0;
  --sand: #D4C4A8;
  --white: #FDFBF7;
  --white-85: rgba(253,251,247,0.85);
  --white-65: rgba(253,251,247,0.65);
  --white-45: rgba(253,251,247,0.45);

  /* — The rust, used ONLY for strategic accents — */
  --rust: #A24020;
  --rust-soft: #D0632F;

  /* — Westwing brand secondary accents, used sparingly — */
  --sage: #8DC5B7;        /* WW turquoise — Belonging anchor */
  --sage-ink: #4F857A;    /* darker sage for text on light */
  --lilac: #BAA6E6;       /* WW purple — Belief anchor */
  --lilac-ink: #6B5A9B;   /* darker lilac for text on light */
  --brown: #6B4A32;       /* earth brown — Control anchor */
  --brown-ink: #4F3624;   /* darker brown for text on light */

  /* — Surfaces — */
  --bg-page: var(--paper);
  --bg-elev: #FAF6EE;
  --bg-warm: var(--paper-warm);

  /* — Rules & dividers — */
  --rule: rgba(26, 25, 23, 0.12);
  --rule-strong: rgba(26, 25, 23, 0.22);

  /* — Families — */
  --serif: "Newsreader", "Times New Roman", Times, serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #000;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

/* ───────────────────────────── SLIDE BASE ───────────────────────────── */
.slide {
  width: 1600px;
  height: 1000px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-page);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
}

.slide.light  { background: var(--bg-elev); }
.slide.cream  { background: var(--bg-page); }
.slide.bone   { background: var(--bone); }
.slide.sand   { background: var(--paper-warm-strong); }
.slide.dark   { background: var(--ink); color: var(--white); }
.slide.dark2  { background: #14130F; color: var(--white); }
.slide.rust   { background: var(--rust); color: var(--white); }

/* ───────────────────────────── TYPOGRAPHY ───────────────────────────── */

/* Eyebrow — caps, widely spaced, small; the ubiquitous section marker.
   Docks to the top slide frame at 32px; left aligns with the slide's
   padding-left (72px) so it sits flush with the headline below. Cover
   keeps its in-flow override, see #cover rule. */
.eyebrow {
  position: absolute;
  top: 32px;
  left: 72px;
  z-index: 5;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.42;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slide.dark .eyebrow,
.slide.dark2 .eyebrow,
.slide.rust .eyebrow { color: rgba(255,255,255,0.55); opacity: 1; }

.eyebrow .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: 0.5;
}

/* Title — Newsreader display, light weight, upright + italic mix */
.title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 1280px;
  margin: 0 0 20px;
  text-wrap: balance;
}
.slide.dark .title,
.slide.dark2 .title,
.slide.rust .title { color: var(--white); }

.title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.slide.dark .title em,
.slide.dark2 .title em { color: rgba(255,255,255,0.72); }

.title.tight { max-width: 900px; }
.title.short { max-width: 780px; }

/* Display — the largest register (cover, part-openers) */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 112px;
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.slide.dark .display,
.slide.dark2 .display,
.slide.rust .display { color: var(--white); }

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.slide.dark .display em,
.slide.dark2 .display em { color: rgba(255,255,255,0.78); }

.display.cover-tight { font-size: 140px; line-height: 0.95; max-width: 1180px; }

/* Sub — cover byline */
.sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-top: 56px;
}

/* Body — the prose workhorse */
.body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
  letter-spacing: 0;
}
.slide.dark .body,
.slide.dark2 .body,
.slide.rust .body { color: var(--white-85); }

.body p { margin: 0 0 18px; }
.body p:last-child { margin-bottom: 0; }

.body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08em;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.slide.dark .body em,
.slide.dark2 .body em { color: var(--white); }

.body.lg { font-size: 17.5px; line-height: 1.6; }
.body.wide { max-width: 1200px; }

/* Horizontal rule — rust accent, thin, strategic */
.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0 0 36px;
  width: 100%;
  max-width: 1280px;
}
.rule.rust {
  display: none;
}
.rule.sage {
  background: var(--sage-ink);
  height: 1px;
  width: 48px;
  margin-bottom: 28px;
  opacity: 0.9;
}
.rule.lilac {
  background: var(--lilac-ink);
  height: 1px;
  width: 48px;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* Page number — docks to the bottom-right slide frame at 32px inset,
   symmetrical to .eyebrow at the top-left. */
.page-n {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2em;
  color: var(--ink);
  opacity: 0.3;
}

/* Cur-label — inline small caps separator used inside body */
.cur-label {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  opacity: 0.5 !important;
  margin: 22px 0 10px !important;
  line-height: 1 !important;
}
.slide.dark .cur-label,
.slide.dark2 .cur-label { color: rgba(255,255,255,0.55) !important; opacity: 1 !important; }

/* Bracket quote — the italic pulled-out quote used in Part I and Reference Wall */
.bracket-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 1040px;
  margin: 24px 0;
  letter-spacing: -0.005em;
}

/* Pull — larger italic callout */
.pull {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  color: var(--ink);
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}
.pull em { font-style: italic; color: var(--rust); }

/* Tilt — subtle rotated italic for inflection slide */
.tilt { display: inline-block; transform: rotate(-1.5deg); }
.tilt em { color: var(--rust); font-style: italic; }

/* Roman numeral — part-opener decorative mark */
.roman {
  position: absolute;
  right: 96px;
  bottom: 120px;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: 260px;
  line-height: 1;
  color: var(--white);
  opacity: 0.14;
  letter-spacing: -0.03em;
}
.slide.rust .roman { color: var(--white); opacity: 0.22; }

/* ───────────────────────────── 01 COVER ─────────────────────────────── */
#cover {
  justify-content: center;
  padding: 96px;
}
.corner-mark {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-65);
}
/* Cover keeps its eyebrow in the centered flow (above the display title),
   instead of docking to the frame — the corner-mark already carries the
   top-left dock role on the cover. */
#cover .eyebrow {
  position: static;
  color: var(--white-85);
  opacity: 1;
  margin-bottom: 48px;
}

/* ───────────────────────────── 02 OVERVIEW ──────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  max-width: 1280px;
}
.overview-card {
  padding-top: 28px;
  border-top: 1px solid var(--rule-strong);
}
.ov-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  font-weight: 500;
}
.ov-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 96px;
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-bottom: 28px;
  color: var(--ink);
  text-wrap: balance;
}
.ov-title em { font-style: italic; color: var(--ink-soft); }
.ov-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 500px;
}

/* ───────────────────────── PART OPENER ──────────────────────────────── */
.part-opener {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.part-marker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin-bottom: 56px;
}

/* ───────────────────────── ASSESS GRID (Read) ───────────────────────── */
.assess-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
  max-width: 1280px;
}
.assess-col { border-top: 1px solid var(--rule-strong); padding-top: 20px; }
.assess-col.gap { border-top-color: var(--rust-soft); }
.assess-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  font-weight: 500;
  margin-bottom: 18px;
}
.assess-col.gap .assess-label { color: var(--rust); opacity: 1; }
.assess-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.assess-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.assess-list li:last-child { border-bottom: 0; }

/* ───────────────────────── VERDICT TABLE ────────────────────────────── */
.verdict-table {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  border-top: 1px solid var(--rule-strong);
}
.verdict-row {
  display: grid;
  grid-template-columns: 36px 180px 1fr 90px;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.verdict-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.4;
}
.verdict-campaign {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.verdict-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.verdict-body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.tag {
  justify-self: end;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.tag-keep { color: var(--sage-ink); opacity: 0.95; }
.tag-develop { color: var(--rust); }

/* ───────────────────────── GRAVITY (framework) ──────────────────────── */
.forces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 42px;
  max-width: 1280px;
}
.force {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.force-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--rust-soft);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.force-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.force-body {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--white-85);
  font-weight: 300;
}

.gravity-pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  max-width: 880px;
  margin-top: 40px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.25);
}

.credit {
  position: absolute;
  left: 96px;
  bottom: 48px;
  font-size: 11px;
  font-weight: 400;
  color: var(--white-65);
  letter-spacing: 0.01em;
}
.credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
}

/* ───────────────────────── BRAND SLIDES ─────────────────────────────── */
.brand-slide {
  /* Bottom padding reserves room for the absolute .evidence-footer so the
     main content block (brand-name, forces, angle, image row) can center
     vertically above it without colliding. */
  padding: 64px 96px 200px;
  display: flex;
  flex-direction: column;
}
.brand-tag {
  position: absolute;
  top: 32px;
  left: 96px;
  z-index: 5;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  margin: 0;
}
.slide.dark.brand-slide .brand-tag { color: var(--white-65); opacity: 1; }

.brand-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 78px;
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 12px;
}

.brand-force-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--rust-soft);
  border-radius: 999px;
  color: var(--rust);
  margin-bottom: 16px;
  white-space: nowrap;
  width: fit-content;
  line-height: 1;
}

/* Gravity framework anchors — four reusable pill colors.
   Apply as an additional class on .brand-force-tag or .tag. */
.anchor-progress  { color: var(--rust-soft);  border-color: var(--rust-soft);  }
.anchor-belonging { color: var(--sage-ink);   border-color: var(--sage-ink);   }
.anchor-belief    { color: var(--lilac-ink);  border-color: var(--lilac-ink);  }
.anchor-control   { color: var(--brown-ink);  border-color: var(--brown-ink);  }

/* On dark slides, pills use the softer (lighter) anchor variants. */
.slide.dark  .anchor-progress,  .slide.dark2 .anchor-progress,  .slide.rust .anchor-progress  { color: var(--rust-soft); border-color: var(--rust-soft); }
.slide.dark  .anchor-belonging, .slide.dark2 .anchor-belonging, .slide.rust .anchor-belonging { color: var(--sage);      border-color: var(--sage);      }
.slide.dark  .anchor-belief,    .slide.dark2 .anchor-belief,    .slide.rust .anchor-belief    { color: var(--lilac);     border-color: var(--lilac);     }
.slide.dark  .anchor-control,   .slide.dark2 .anchor-control,   .slide.rust .anchor-control   { color: #C9A784;          border-color: #C9A784;          }

/* Paired-pill container — two anchor pills side-by-side. */
.brand-forces {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.brand-forces .brand-force-tag { margin: 0; }

.brand-angle {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 1200px;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.brand-angle em {
  font-style: italic;
  color: var(--ink);
}
.slide.dark.brand-slide .brand-angle { color: rgba(255,255,255,0.92); }
.slide.dark2.brand-slide .brand-angle { color: rgba(255,255,255,0.92); }
.slide.dark.brand-slide .brand-angle em { color: var(--white); }
.slide.dark2.brand-slide .brand-angle em { color: var(--white); }

.brand-image-row {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: stretch;
  /* Locked: left edge = text-grid left (0). Right edge = ~24px from slide edge for oxygen. */
  margin-left: 0;
  margin-right: -72px;
  margin-bottom: 18px;
  height: var(--row-h, 480px);
}
.brand-image {
  aspect-ratio: var(--ar, 4/5);
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide.dark.brand-slide .brand-image {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.bi-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 6px;
}
.slide.dark.brand-slide .bi-tag { color: var(--white-65); opacity: 1; }
.bi-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
  opacity: 0.7;
}
.slide.dark.brand-slide .bi-note { color: var(--white-85); opacity: 1; }

.brand-evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  align-items: start;
}
.brand-evidence:first-of-type { margin-top: 0; }
.evidence-footer {
  position: absolute;
  left: 96px;
  right: 120px;
  bottom: 32px;
  display: grid;
  /* Arrow sits in column 3, immediately before the Westwing Takeaway column (4).
     Signals: conclusion drawn from everything to its left. */
  grid-template-columns: 1fr 1fr 24px 1fr;
  column-gap: 32px;
  row-gap: 0;
  align-items: start;
}
.evidence-footer::before {
  content: "→";
  grid-column: 3 / 4;
  grid-row: 1;
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1;
  color: var(--rust);
  letter-spacing: 0;
  /* Nudge down so the arrow sits on the label cap-height line */
  padding-top: 1px;
}
/* Force the three brand-evidence children into cols 1, 2, 4 so the arrow
   (pseudo-element in col 3) sits directly before the Westwing takeaway. */
.evidence-footer > .brand-evidence:nth-of-type(1) { grid-column: 1 / 2; grid-row: 1; }
.evidence-footer > .brand-evidence:nth-of-type(2) { grid-column: 2 / 3; grid-row: 1; }
/* Pull the Westwing takeaway tight to the arrow — the gap signals conclusion,
   not a fourth parallel column. */
.evidence-footer > .brand-evidence:nth-of-type(3) { grid-column: 4 / 5; grid-row: 1; margin-left: -20px; }
.slide.dark.brand-slide .evidence-footer::before,
.slide.dark2.brand-slide .evidence-footer::before { color: var(--rust-soft); }
.be-label.westwing { color: var(--ink); }
.slide.dark.brand-slide .be-label.westwing,
.slide.dark2.brand-slide .be-label.westwing { color: var(--white); }
/* Westwing wordmark mark used inside .be-label.westwing — inherits currentColor
   via CSS mask, so it swaps dark/light against any slide background. */
.ww-mark {
  display: inline-block;
  /* Sized to body-text cap-height (~10px for 14px Hanken Grotesk) */
  width: 77.8px;          /* 10px × (280/36) ≈ 77.8 */
  height: 10px;
  vertical-align: -0.5px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%2037%22%20role=%22img%22%20aria-label=%22Westwing%22%3E%3Cpath%20fill=%22currentColor%22%20d=%22M233.2.84v.84c1.76.45%201.76%202.28%201.76%203.95v21.23L213.8.84h-6.93l2.67%203.2v26.93c0%201.67%200%203.5-1.83%204.03v.84h6.47V35c-1.83-.53-1.83-2.36-1.83-4.03V7.07l23.06%2028.77h2.43V5.64c0-1.68%200-3.5%201.83-3.96V.84zm-51.58.84c1.75.45%201.14%202.28.69%203.95l-7.54%2023.29-9.5-27.93V.84h-3.5L153%2028.99l-7.53-23.36c-.46-1.67-1.14-3.5.6-3.95V.84h-8.97v.84c1.9.53%202.43%202.28%202.97%203.95l9.81%2030.21h3.96l8.44-27.7%209.21%2027.7h3.88l9.9-30.2c.45-1.68%201.06-3.43%202.96-3.96V.84h-6.62v.84ZM39.11.84v.84c6.62%202.13%204.41%209.2%202.97%2013.7l-4.5%2013.54L28.24.84h-3.58l-8.67%2028.15L8.37%205.33c-.53-1.6-.99-3.27.6-3.65V.84H0v.84c1.98.53%202.36%201.9%202.97%203.95l9.81%2030.21h3.96l8.52-27.7%209.13%2027.7h3.65L49.23%201.6V.84H39.1Zm69.62%204.18h.84c.53-1.75%202.36-1.75%204.1-1.75h4.95v27.78c0%201.67%200%203.5-1.83%203.95v.84h8.9V35c-1.82-.45-1.82-2.28-1.82-3.95V3.27h5.02c1.68%200%203.5%200%204.04%201.75h.83V.76h-25.03zm90.7%2026.03V5.25c0-1.52.15-3.12%201.82-3.57V.84h-8.52v.84c1.67.45%201.75%202.05%201.75%203.57v25.8c0%201.67%200%203.42-1.75%203.95v.84h8.52V35c-1.82-.53-1.82-2.28-1.82-3.95m68.3-12.9v.84c9.91%202.6%206.25%2015.1-3.9%2015.1-8.3%200-13.71-7.4-13.71-15.87%200-11.13%207.7-15.93%2013.72-15.93%202.6%200%208.92.6%2012.05%207.55h.6V3.13A26.54%2026.54%200%200%200%20263.91%200c-10.9%200-19.67%207.17-19.67%2018.22%200%2011.06%209.07%2018.3%2019.6%2018.3%207.24%200%2016.16-4.95%2016.16-17.61v-.76zM72.43%2033.33h-11.4v-14.3h8.9c1.6%200%203.42%200%204.03%201.82h.76v-6.01h-.76c-.61%201.75-2.44%201.75-4.04%201.75h-8.9V3.27h10.73c1.75%200%203.58%200%204.1%201.75h.85V.84H53.95v.84c1.82.45%201.82%202.28%201.82%203.95v25.34c0%201.67%200%203.5-1.82%204.03v.84h23.43v-4.26h-.84c-.53%201.75-2.35%201.75-4.1%201.75Zm24.13-17.77-3.66-1.37c-3.74-1.3-5.27-3.28-5.27-6.18%200-3.5%203.43-5.72%207.25-5.72%203.81%200%206.63%201.9%207.62%205.42l.08.22h.84V2.22C101.36%201%2098.84%200%2094.72%200c-6.55%200-11.74%203.28-11.74%209.54%200%204.27%202.67%207.32%207.7%209.14l3.82%201.38c4.95%201.83%207.01%204.2%207.01%207.62%200%204.12-3.43%206.48-7.93%206.48-4.11%200-8-1.9-9.76-6.94l-.07-.3h-.84v6.7c2.9%201.99%206.63%202.9%2011.06%202.9%207.4%200%2012.12-4.19%2012.12-10.82s-5.5-8.7-9.53-10.14%22%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%2037%22%20role=%22img%22%20aria-label=%22Westwing%22%3E%3Cpath%20fill=%22currentColor%22%20d=%22M233.2.84v.84c1.76.45%201.76%202.28%201.76%203.95v21.23L213.8.84h-6.93l2.67%203.2v26.93c0%201.67%200%203.5-1.83%204.03v.84h6.47V35c-1.83-.53-1.83-2.36-1.83-4.03V7.07l23.06%2028.77h2.43V5.64c0-1.68%200-3.5%201.83-3.96V.84zm-51.58.84c1.75.45%201.14%202.28.69%203.95l-7.54%2023.29-9.5-27.93V.84h-3.5L153%2028.99l-7.53-23.36c-.46-1.67-1.14-3.5.6-3.95V.84h-8.97v.84c1.9.53%202.43%202.28%202.97%203.95l9.81%2030.21h3.96l8.44-27.7%209.21%2027.7h3.88l9.9-30.2c.45-1.68%201.06-3.43%202.96-3.96V.84h-6.62v.84ZM39.11.84v.84c6.62%202.13%204.41%209.2%202.97%2013.7l-4.5%2013.54L28.24.84h-3.58l-8.67%2028.15L8.37%205.33c-.53-1.6-.99-3.27.6-3.65V.84H0v.84c1.98.53%202.36%201.9%202.97%203.95l9.81%2030.21h3.96l8.52-27.7%209.13%2027.7h3.65L49.23%201.6V.84H39.1Zm69.62%204.18h.84c.53-1.75%202.36-1.75%204.1-1.75h4.95v27.78c0%201.67%200%203.5-1.83%203.95v.84h8.9V35c-1.82-.45-1.82-2.28-1.82-3.95V3.27h5.02c1.68%200%203.5%200%204.04%201.75h.83V.76h-25.03zm90.7%2026.03V5.25c0-1.52.15-3.12%201.82-3.57V.84h-8.52v.84c1.67.45%201.75%202.05%201.75%203.57v25.8c0%201.67%200%203.42-1.75%203.95v.84h8.52V35c-1.82-.53-1.82-2.28-1.82-3.95m68.3-12.9v.84c9.91%202.6%206.25%2015.1-3.9%2015.1-8.3%200-13.71-7.4-13.71-15.87%200-11.13%207.7-15.93%2013.72-15.93%202.6%200%208.92.6%2012.05%207.55h.6V3.13A26.54%2026.54%200%200%200%20263.91%200c-10.9%200-19.67%207.17-19.67%2018.22%200%2011.06%209.07%2018.3%2019.6%2018.3%207.24%200%2016.16-4.95%2016.16-17.61v-.76zM72.43%2033.33h-11.4v-14.3h8.9c1.6%200%203.42%200%204.03%201.82h.76v-6.01h-.76c-.61%201.75-2.44%201.75-4.04%201.75h-8.9V3.27h10.73c1.75%200%203.58%200%204.1%201.75h.85V.84H53.95v.84c1.82.45%201.82%202.28%201.82%203.95v25.34c0%201.67%200%203.5-1.82%204.03v.84h23.43v-4.26h-.84c-.53%201.75-2.35%201.75-4.1%201.75Zm24.13-17.77-3.66-1.37c-3.74-1.3-5.27-3.28-5.27-6.18%200-3.5%203.43-5.72%207.25-5.72%203.81%200%206.63%201.9%207.62%205.42l.08.22h.84V2.22C101.36%201%2098.84%200%2094.72%200c-6.55%200-11.74%203.28-11.74%209.54%200%204.27%202.67%207.32%207.7%209.14l3.82%201.38c4.95%201.83%207.01%204.2%207.01%207.62%200%204.12-3.43%206.48-7.93%206.48-4.11%200-8-1.9-9.76-6.94l-.07-.3h-.84v6.7c2.9%201.99%206.63%202.9%2011.06%202.9%207.4%200%2012.12-4.19%2012.12-10.82s-5.5-8.7-9.53-10.14%22%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
}
/* Append a short word after the logo so the label reads "[logo] Read". */
.be-label.westwing { white-space: nowrap; }
.be-label.westwing::after {
  content: "Takeaway";
  margin-left: 8px;
  /* Inherit .be-label's sans/uppercase/letter-spacing/weight via parent. */
}
.be-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.slide.dark.brand-slide .be-label,
.slide.dark2.brand-slide .be-label { color: rgba(255,255,255,0.92); }
.be-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.be-body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.brand-slide .be-body em { color: var(--white); font-weight: 500; }
.slide.dark.brand-slide .be-body { color: rgba(255,255,255,0.92); }
.slide.dark2.brand-slide .be-body { color: rgba(255,255,255,0.92); }
.slide.dark.brand-slide .be-body em { color: var(--white); }

/* ───────────────────────── IMAGE FILL VARIANTS ──────────────────────── */
.brand-image.has-img,
.placeholder-frame.has-img,
.ref-image.has-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.brand-image.has-img > *,
.placeholder-frame.has-img > * { display: none; }
.ref-image.has-img { color: transparent; opacity: 1; }

/* Video fill — same envelope as .has-img but with a <video> child */
.brand-image.has-video {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.brand-image.has-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-image.has-video > *:not(video) { display: none; }

/* Single-image hero — fills full width for listening room etc. */
.full-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  margin-top: 24px;
  border: 1px solid var(--rule);
}
.slide.dark2 .full-img,
.slide.dark .full-img { border-color: rgba(255,255,255,0.12); }

/* Inline image-pair for verdict rows */
.verdict-img {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--rule);
  margin-bottom: 14px;
}

/* ───────────────────────── NOSTALGIA ────────────────────────────────── */
.nostalgia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
  max-width: 1280px;
}
.nost-card {
  padding: 28px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
}
.nost-card.has-img {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nost-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--paper-warm);
  flex-shrink: 0;
}
.nost-card-body {
  padding: 24px 28px 26px;
}
.nost-card.has-img .nost-tag { margin-bottom: 12px; }
.nost-card.has-img .nost-title { margin-bottom: 12px; font-size: 28px; }
.nost-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}
.nost-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.nost-title em { font-style: italic; color: var(--ink-soft); }
.nost-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ───────────────────────── SPECTRUM / INFLECTION ────────────────────── */
.spectrum-wrap {
  margin: 36px auto 32px;
  max-width: 1100px;
  width: 100%;
}
.spectrum-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 1200px;
  margin: 18px 0 0;
  text-align: left;
  letter-spacing: -0.005em;
}
.spectrum-lede em {
  font-style: italic;
  color: var(--ink);
}
.source-cite {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
  text-align: center;
  margin-top: 18px;
}
.source-cite em {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ───────────────────────── WHY NOW ──────────────────────────────────── */
.whynow-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  max-width: 1100px;
}
.why-stat { border-top: 1px solid var(--rust-soft); padding-top: 24px; }
.why-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}
.why-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 88px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.028em;
}
.why-num em {
  font-style: italic;
  font-weight: 300;
  font-size: 60px;
  color: var(--rust);
}
.why-cap {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.why-cap em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.why-source {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.5;
  font-style: italic;
  font-family: var(--serif);
}
.why-source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ───────────────────────── CONVICTIONS ──────────────────────────────── */
.principle-list {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  max-width: 1260px;
  border-top: 1px solid var(--rule-strong);
}
.principle-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.p-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  color: var(--rust);
  letter-spacing: -0.01em;
  line-height: 1;
}
.p-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.p-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 980px;
}

/* ───────────────────────── REF WALL GRID ────────────────────────────── */
.refwall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  max-width: 1280px;
}
.ref-card {
  display: flex;
  flex-direction: column;
}
.ref-image {
  aspect-ratio: 4/5;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26,25,23,0.35);
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
}
.ref-image[style*="background-image"] { color: transparent; border: 0; }
.ref-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.ref-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
  font-size: 13px;
}
.ref-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.ref-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ───────────────────────── ELEVATION GRID ───────────────────────────── */
.elev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
  max-width: 1280px;
}
.elev-card {
  padding: 26px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
}
.elev-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.elev-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 7px;
  letter-spacing: -0.01em;
}
.elev-body {
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink-soft);
}
.elev-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1A1917;
  margin-bottom: 0;
}
.elev-image + .elev-tag { margin-top: 0; }
.elev-card.with-image { padding: 0; overflow: hidden; }
.elev-card.with-image .elev-tag,
.elev-card.with-image .elev-title,
.elev-card.with-image .elev-body { padding-left: 22px; padding-right: 22px; }
.elev-card.with-image .elev-tag { padding-top: 14px; }
.elev-card.with-image .elev-body { padding-bottom: 22px; }
.elev-image-caption {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 26px 14px;
  line-height: 1.45;
}
.elev-image-caption em { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; }

/* Dark-slide caption overrides — keep the same typographic register on dark backgrounds */
.slide.dark .elev-image-caption,
.slide.dark2 .elev-image-caption,
.slide.dark .lr-room-caption,
.slide.dark2 .lr-room-caption,
.slide.dark .bigsofa-caption,
.slide.dark2 .bigsofa-caption { color: var(--white-65); }

/* ───────────────────────── LAYERS ───────────────────────────────────── */
.layers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 32px;
  max-width: 1280px;
}
.layer-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.layer-card.l2 {
  background: rgba(184,83,42,0.14);
  border-color: rgba(184,83,42,0.55);
}
.l-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.l-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.l-title em { font-style: italic; color: rgba(255,255,255,0.75); }
.layer-card.l2 .l-title em { color: var(--rust-soft); }
.l-rule {
  height: 1px;
  background: var(--rust-soft);
  width: 36px;
  margin-bottom: 18px;
}
.l-body {
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--sans);
  font-weight: 300;
}

/* ───────────────────────── DIRECTIONS LIST ──────────────────────────── */
.directions-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  max-width: 1280px;
  border-top: 1px solid var(--rule-strong);
}
.dir-row {
  display: grid;
  grid-template-columns: 70px 1fr 220px;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.dir-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--rust);
  line-height: 1;
}
.dir-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.dir-name em { font-style: italic; color: var(--ink-soft); }
.dir-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 820px;
}
.dir-forces {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: flex-end;
}
.dir-forces .brand-force-tag { margin: 0; }

/* ───────────────────────── DIR HERO (listening rooms etc.) ──────────── */
.dir-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  margin-top: 24px;
  margin-right: -72px;       /* bleed images into right padding */
  align-items: stretch;
  flex: 1;
  min-height: 0;
}
.dir-hero > * {
  min-height: 0;
}
/* Athletic Domestic — two-image stack, one letterboxed to show full magazine spread */
.ath-stack {
  display: grid;
  grid-template-rows: 1.55fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 520px;
  align-self: stretch;
}
.ath-stack-four {
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 14px 16px;
  min-height: 620px;
}
.ath-stack-four .ath-cell-hero {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
}
.ath-stack-four .ath-cell:not(.ath-cell-hero) {
  grid-column: 2 / 3;
}
.ath-cell {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ath-cell .ath-img {
  flex: 1 1 auto;
  min-height: 0;
}
.ath-cell .elev-image-caption {
  flex: 0 0 auto;
}
.ath-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--paper-warm);
  border: 1px solid var(--rule);
  min-height: 0;
}
.ath-img.ath-contain {
  background-size: contain;
  background-position: center;
}
.slide.dark2 .ath-img,
.slide.dark .ath-img {
  background-color: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.ath-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.5);
  padding: 5px 9px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ath-tag em {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
}
.placeholder-frame {
  aspect-ratio: 4/3;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}
.slide.dark2 .placeholder-frame,
.slide.dark .placeholder-frame {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.placeholder-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 8px;
}
.placeholder-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 340px;
}

/* ───────────────────────── HOSTS (3×2 grid) ─────────────────────────── */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
  margin-top: 24px;
  max-width: 1280px;
}
.host-cell {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
  align-items: flex-start;
}
.host-portrait {
  width: 140px;
  height: 140px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
}
.host-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.host-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.host-desc em { font-family: var(--serif); font-style: italic; color: var(--ink); }

/* ───────────────────────── LR ACTIVATION / FORMATS ──────────────────── */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  max-width: 1280px;
}
.fmt-card {
  padding: 22px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.fmt-card.feature {
  background: rgba(184,83,42,0.06);
  border-color: rgba(184,83,42,0.4);
}
.fmt-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}
.fmt-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.fmt-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.fmt-meta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.5;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.channel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 20px;
  max-width: 1280px;
  border-top: 1px solid var(--rule);
}
.ch-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.ch-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}
.ch-body {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ───────────────────────── CLOSING ──────────────────────────────────── */
#closing { padding: 96px; display: flex; flex-direction: column; justify-content: center; }
.closing-quote {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 64px;
  line-height: 1.1;
  color: var(--white);
  max-width: 1200px;
  letter-spacing: -0.025em;
  margin: 0;
}
.closing-quote em { font-style: italic; font-weight: 200; }
.closing-bracket {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--white-85);
  max-width: 900px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.25);
  margin: 36px 0 32px;
}
.closing-coda {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-65);
  max-width: 820px;
  font-weight: 300;
}
.closing-mark {
  position: absolute;
  right: 96px;
  bottom: 200px;
  font-family: var(--serif);
  font-weight: 200;
  font-size: 120px;
  color: var(--rust-soft);
  opacity: 0.45;
  line-height: 1;
}

/* ───────────────────────── KEEPERS · full-bleed hero ────────────────── */
.keepers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  align-items: start;
}
.keeper {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.keeper-img {
  height: 440px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--paper-warm);
}
.keeper-meta {
  padding: 14px 0 0 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  row-gap: 4px;
  align-items: baseline;
  border-top: 1px solid var(--rule-strong);
  margin-top: 10px;
  flex-shrink: 0;
}
.keeper-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--rust-soft);
  line-height: 1;
  grid-row: 1;
  grid-column: 1;
}
.keeper-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  grid-row: 1;
  grid-column: 2;
}
.keeper-name em {
  font-style: italic;
  color: var(--rust-soft);
}
.keeper-verdict {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
  grid-row: 2;
  grid-column: 2;
  max-width: 36ch;
}
.keeper-verdict em {
  font-family: var(--serif);
  font-style: italic;
}

/* ───────────────────────── UTILITY: links inside bodies ─────────────── */
.body a, .why-cap a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--rust-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ───────────────────────── HOST PORTRAITS w/ image fill ─────────────── */
.host-portrait[style*="background-image"] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: transparent;
  opacity: 1;
  font-size: 0;
}

/* ───────────────────────── LISTENING ROOM 2 + 3 · Reference stack ───────
   Title + rule + body sitzen als Block in der linken Spalte, vertikal
   zentriert mit dem Bild-Grid rechts. Kein Bild-Bleed über die rechte
   Slide-Kante hinaus. */
#listening-room-2 .dir-hero,
#listening-room-3 .dir-hero {
  align-items: center;
  margin-right: 0;
  margin-top: 40px;
}
#listening-room-2 .dir-hero > *,
#listening-room-3 .dir-hero > * {
  align-self: center;
}
#listening-room-2 .dir-hero .title,
#listening-room-3 .dir-hero .title {
  font-size: 64px;
  margin: 0 0 16px;
}
#listening-room-2 .dir-hero .rule,
#listening-room-3 .dir-hero .rule { margin-bottom: 20px; }
.lr-room-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 8px;
  height: 100%;
  min-height: 0;
  position: relative;
}
.lr-room-caption {
  grid-column: 1 / -1;
  grid-row: 3;
}
.lr-room-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--paper-warm);
  border: 1px solid var(--rule);
}
.lr-room-img:nth-child(1) {
  grid-row: 1 / span 2;
  grid-column: 1;
}
.lr-room-img:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
.lr-room-img:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}
.lr-room-caption {
  padding-top: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.45;
}
.lr-room-caption em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

/* ───────────────────────── BIG SOFA · Reference stack ───────────────── */
.bigsofa-stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.4fr 1fr;
  gap: 10px;
  aspect-ratio: 4/3;
  position: relative;
}
.bigsofa-img.existing {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.bigsofa-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bigsofa-cover {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.bigsofa-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.45;
  opacity: 1;
}
.bigsofa-caption em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

/* ───── SUPPORTING DIRECTIONS · Big Sofa + Athletic Domestic ─────────────
   Zurück ins Design-System: Text-Block links vertikal zentriert, Bild-Grid
   rechts vertikal zentriert, beide mit klarer Spaltenluft dazwischen. Keine
   Bild-Bleeds über die rechte Slide-Kante hinaus. */
#big-sofa .dir-hero,
#athletic .dir-hero {
  align-items: center;
  margin-right: 0;
  margin-top: 40px;
}
#big-sofa .dir-hero > *,
#athletic .dir-hero > * {
  align-self: center;
}
#athletic .ath-stack,
#athletic .ath-stack-four {
  height: auto;
  align-self: center;
}
#athletic .ath-stack-four { min-height: 620px; }
#big-sofa .bigsofa-stack {
  height: auto;
  aspect-ratio: auto;
  align-self: center;
}
#big-sofa .bigsofa-covers {
  height: auto;
  aspect-ratio: 3/2;
}

/* ───────── PART I OPENER · DEDAR SHADOWS BACKDROP ─────── */
.slide.part1-shadows {
  position: relative;
  background: #2a2520;
  color: #EDE5D6;
  overflow: hidden;
}
.slide.part1-shadows .shadows-bg {
  position: absolute; inset: 0;
  background-image: url('assets/verdicts/dedar-shadows.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) brightness(0.55) saturate(0.85);
  z-index: 0;
  pointer-events: none;
}
.slide.part1-shadows::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,22,16,0.55) 0%, rgba(30,22,16,0.30) 40%, rgba(30,22,16,0.55) 100%);
  z-index: 0;
  pointer-events: none;
}
.slide.part1-shadows > *:not(.shadows-bg) { position: relative; z-index: 1; }
.slide.part1-shadows .part-marker { color: rgba(237,229,214,0.62); }
.slide.part1-shadows .display { color: #F5F0E8; }
.slide.part1-shadows .display em { color: #E8CBA8; font-style: italic; }
.slide.part1-shadows .body { color: rgba(237,229,214,0.85) !important; }
.slide.part1-shadows .page-n { color: rgba(237,229,214,0.35); }


/* ===================== STONE ISLAND · rebuilt ===================== */
.si-slide {
  padding: 64px 96px 64px 96px;
}
.si-slide .brand-tag { margin: 0 0 14px; }
.si-slide .brand-name { font-size: 72px; line-height: 0.95; margin: 0 0 10px; }
.si-slide .brand-force-tag { margin: 0 0 16px; display: inline-block; }
.si-slide .brand-angle {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  max-width: 960px;
  margin: 0 0 22px;
}
.si-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 444px;
  gap: 14px;
  margin-bottom: 22px;
  /* Locked: left = text-grid left (0). Right = -72px → ~24px from slide edge. */
  margin-left: 0;
  margin-right: -72px;
}
.si-grid > * { min-height: 0; min-width: 0; }
.si-cell {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.si-cell > .si-hero,
.si-cell > .si-tile {
  flex: 0 0 auto;
  height: 400px;
}
.si-hero, .si-tile, .cp-hero, .cp-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.si-side {
  display: contents;
}
/* Captions — only show when .si-cap.verified is applied */
.si-cap { display: none; }
.si-cap.verified {
  display: block;
  position: absolute;
  left: 16px; bottom: 14px; right: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: rgba(255,255,255,0.94);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 10px;
}
.si-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.si-evidence > div { display: grid; gap: 8px; }
.si-evidence .be-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-soft);
}
.si-evidence .be-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--white-85);
}
.si-evidence .be-body em { font-family: var(--serif); font-style: italic; color: var(--white); }

/* ===================== CP COMPANY / OSTI · companion ===================== */
.cp-slide {
  padding: 64px 96px 200px;
  background: #14130F;
}
.cp-slide .brand-tag { margin: 0 0 14px; }
.cp-slide .brand-name { font-size: 64px; line-height: 0.95; margin: 0 0 10px; letter-spacing: -0.02em; }
.cp-slide .brand-name em { font-family: var(--serif); font-weight: 300; }
.cp-slide .brand-force-tag { margin: 0 0 16px; display: inline-block; }
.cp-slide .brand-angle {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18.5px;
  line-height: 1.5;
  max-width: 1040px;
  margin: 0 0 22px;
}
.cp-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.95fr;
  grid-template-rows: 480px;
  gap: 14px;
  margin-bottom: 22px;
  /* Locked: left = text-grid left (0). Right = -72px → ~24px from slide edge. */
  margin-left: 0;
  margin-right: -72px;
}
.cp-grid > * { min-height: 0; min-width: 0; }
.cp-side {
  display: contents;
}

/* ===================== NOSTALGIA · rebuilt ===================== */
.nostalgia-slide { padding: 64px 96px 64px 96px; gap: 0; }
.nostalgia-slide .nost-head { margin-bottom: 28px; }
.nostalgia-slide .title { font-size: 48px; line-height: 1.02; max-width: 1100px; margin: 0 0 14px; }
.nostalgia-slide .body.lg { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 19px; line-height: 1.45; color: var(--ink-soft); margin-top: 18px; }
.nostalgia-slide .rule.rust { display: none; }
.nost-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1 1 auto;
  min-height: 0;
  /* Locked: left = text-grid left. Right = -72px for oxygen. */
  margin-left: 0;
  margin-right: -72px;
}
.nost-panel {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: transparent;
  min-height: 0;
}
.nost-photo {
  width: 100%;
  flex: 1 1 auto;
  min-height: 380px;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.nost-meta {
  padding: 18px 22px 0;
}
.nost-type {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.nost-hed {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.nost-hed em { font-style: italic; color: var(--ink-soft); }
.nost-copy {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════════════════
   VISUAL BUILD SCAFFOLDS — 2026-04-20 night
   Placeholder frames for hero montage, phone row, channel surfaces.
   All use existing tokens. Safe to prune once images drop in.
   ═══════════════════════════════════════════════════════════════════════ */

/* Generic placeholder: dashed rust border, caption strip, no fill. */
.ph-frame {
  position: relative;
  width: 100%;
  background: transparent;
  border: 1px dashed rgba(162, 64, 32, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-frame .ph-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  opacity: 0.9;
  text-align: center;
  padding: 16px;
  max-width: 80%;
}
.ph-frame .ph-label em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}
.ph-frame.has-img { border: 0; }
.ph-frame.has-img .ph-label { display: none; }

/* ── HERO SOFA ICON ─────────────────────────────────────────────────── */
.hero-slot {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  margin: 24px auto 18px;
  background-size: cover;
  background-position: center;
  background-color: var(--bone);
}
.hero-caption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.005em;
}
.slide.dark .hero-caption,
.slide.dark2 .hero-caption { color: var(--white-85); }
.hero-caption em { font-style: italic; color: var(--rust); }

/* ── PHONE ROW (social-native) ──────────────────────────────────────── */
.phone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 28px;
  max-width: 1320px;
  width: 100%;
}
.phone {
  position: relative;
  aspect-ratio: 9 / 18;
  width: 100%;
}
.phone svg.phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.phone .phone-screen {
  position: absolute;
  top: 4.2%;
  left: 5.5%;
  right: 5.5%;
  bottom: 4.2%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(162, 64, 32, 0.32);
}
.phone.has-img .phone-screen { border: 0; }
.phone .phone-screen .ph-label { padding: 10px; font-size: 9px; }
.phone .phone-screen .ph-label em { font-size: 12px; margin-top: 8px; }
.phone-caption {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  text-align: center;
  margin-top: 14px;
}
.phone-caption em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 6px;
  opacity: 0.85;
}

/* ── CHANNEL SURFACES GRID ──────────────────────────────────────────── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 28px;
  max-width: 1400px;
  width: 100%;
}
.cs-cell {
  display: flex;
  flex-direction: column;
}
.cs-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone);
  border: 1px dashed rgba(162, 64, 32, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-slot.has-img { border: 0; }
.cs-slot.has-img .ph-label { display: none; }
.cs-slot .ph-label { padding: 12px; font-size: 9px; }
.cs-slot .ph-label em { font-size: 12px; margin-top: 8px; }
.cs-meta {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}
.cs-meta em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 6px;
  opacity: 0.85;
}
