/* system.css
 * Visual system overlay — normalizes typography, color, sizing, and image
 * treatment across the deck after acts.css. Loaded last so its rules win
 * cascade ties.
 *
 * Goals:
 *  – consistent hero-title scale
 *  – consistent body / caption / footer sizes
 *  – breathable image placeholders that show absent imagery as intentional space
 *  – consistent card / table / grid hairlines
 *  – consistent ember accent usage (sparingly)
 *  – sane vertical rhythm with --rhythm gap tokens
 */

/* ── copper rule ─────────────────────────────────────────────
 * Copper appears ONLY against sumi. On any non-dark slide,
 * --ember resolves to --sumi so legacy "ember accent" rules
 * become "sumi as darker emphasis" automatically.
 * Dark slides keep --ember = --copper (the real firelight).
 */
.slide:not(.dark) {
  --ember: var(--sumi);
  --accent-tint: rgba(26, 24, 22, 0.04);
}
.slide.dark {
  --ember: var(--copper);
  --accent-tint: rgba(184, 102, 46, 0.10);
}

/* ── chapter context (running header on every content slide) ──
 * Color the ribbon by act so the reader picks up the rhythm
 * without being told: river for I, moss for II, copper for III
 * (copper only when the slide is sumi-grounded; otherwise sumi).
 */
.slide[data-context]::before {
  content: attr(data-context);
  position: absolute;
  top: calc(var(--chrome-top) + 8px);
  left: var(--slide-pad-x);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-mute);
  z-index: 4;
  pointer-events: none;
}
.slide.dark[data-context]::before { color: var(--paper-mute); }
.slide[data-context^="act I "]::before { color: var(--river); }
.slide[data-context^="act II "]::before { color: var(--moss); }
.slide.dark[data-context^="act III "]::before { color: var(--copper); }
.slide:not(.dark)[data-context^="act III "]::before { color: var(--sumi); }

/* act-divider slides ARE the chapter — hide the running ribbon. */
.slide-act-header[data-context]::before { content: none; }

/* hide the per-slide kicker on slides that have chapter context — */
/* the chapter context replaces the kicker as the slide's eyebrow. */
.slide[data-context] .kicker {
  display: none;
}
/* exception: kickers inside metadata footers, decision rows, etc. stay */
.slide[data-context] .slide-cover__footer .kicker,
.slide[data-context] .slide-act-header__top .kicker {
  display: revert;
}

/* ── token additions ────────────────────────────────────── */
:root {
  /* unified type scale used across every slide */
  --title-xl: clamp(32px, 3.4vw, 52px);   /* concept / aspiration heroes */
  --title-lg: clamp(24px, 2.4vw, 36px);   /* most slide hero-titles */
  --title-md: clamp(20px, 1.8vw, 26px);   /* secondary headers */
  --body-md:  clamp(14px, 1.05vw, 16px);  /* default body */
  --body-sm:  clamp(13px, 0.95vw, 14px);  /* secondary body */
  --meta-xs:  clamp(10px, 0.8vw, 12px);   /* meta + captions */

  /* unified rhythm */
  --rhythm-1: var(--sp-3);
  --rhythm-2: var(--sp-5);
  --rhythm-3: var(--sp-7);
}

/* ── slide breathing room ───────────────────────────────── */
.slide__inner {
  gap: var(--rhythm-2);
  padding-block: clamp(48px, 6vh, 96px);
}

/* ── normalized hero-title across all slides ───────────── */
.hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--title-lg);
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  max-width: 28ch;
  text-wrap: balance;
}
.slide.dark .hero-title { color: var(--paper); }

/* concept-slide titles get the larger scale */
.slide-concept__title,
.slide-aspiration__headline,
.slide-pastwork__title,
.slide-roomlives__title,
.slide-craft__title,
.slide-next__title,
.slide-platform__title {
  font-size: var(--title-xl);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0 auto;
  max-width: 22ch;
}
.slide.dark .slide-concept__title,
.slide.dark .slide-aspiration__headline,
.slide.dark .slide-pastwork__title,
.slide.dark .slide-roomlives__title,
.slide.dark .slide-craft__title,
.slide.dark .slide-next__title,
.slide.dark .slide-platform__title {
  color: var(--paper);
}

/* TOC head sized smaller */
.slide-toc__head .hero-title { font-size: var(--title-md); }

/* argument-led titles (declarative slides): sans serif, sentence case.
 * poetic / concept titles stay italic Fraunces. */
.slide-stated .hero-title,
.slide-brand-read .hero-title,
.slide-work-read .hero-title,
.slide-perception .hero-title,
.slide-receptivity .hero-title,
.slide-howework__head .hero-title,
.slide-decision .hero-title {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-transform: none;
}

/* ── normalized kicker (mono eyebrow) ───────────────────── */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  letter-spacing: var(--tr-mono);
  text-transform: lowercase;
  color: var(--ink-mute);
  margin: 0 0 var(--sp-3);
  font-weight: 400;
}
.slide.dark .kicker { color: var(--paper-mute); }

/* ── normalized body prose ──────────────────────────────── */
.slide-aspiration__body,
.slide-platform__body,
.slide-howework__body p,
.slide-decision__lede,
.slide-correcting__lede,
.slide-fourcs__lede,
.slide-workshops__lede,
.slide-territories__lede,
.slide-reframe__lede,
.slide-measurement__lede,
.slide-distribution__lede,
.slide-editorial__lede,
.slide-resources__lede,
.slide-anniversary__lede,
.slide-craft__lede,
.slide-runofshow__lede,
.slide-calendar__lede,
.slide-catalog-cost__lede,
.slide-softclose__body,
.slide-next__body,
.slide-concept__body,
.slide-sef__body p,
.slide-ophelia__body {
  font-family: var(--font-sans);
  font-size: var(--body-md);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
  font-weight: 400;
}
.slide.dark .slide-aspiration__body,
.slide.dark .slide-platform__body,
.slide.dark .slide-concept__body,
.slide.dark .slide-craft__lede {
  color: var(--paper-soft);
}

/* preview / spike / pull-quote micro-treatments */
.slide-aspiration__preview,
.slide-howework__principles {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  text-transform: lowercase;
  letter-spacing: var(--tr-mono);
  color: var(--ember);
}

/* ── normalized caption strip ───────────────────────────── */
.caption-strip {
  font-family: var(--font-sans);
  font-size: var(--meta-xs);
  letter-spacing: 0;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  margin: var(--sp-5) auto 0;
  max-width: 64ch;
  line-height: 1.5;
  font-weight: 400;
}
.slide.dark .caption-strip { color: var(--paper-mute); }
.caption-strip.italic { font-style: italic; }

/* ── image placeholder system ───────────────────────────── */
/* every <figure> with __image becomes a visible, breathing
   placeholder. shows aspect ratio + label so empty slots read
   as intentional space, not as broken layout. */

.brand-read-block__image,
.catalog-tile__image,
.mood-tile__image,
.pastwork-tile__image,
.roomlives-tile__image {
  position: relative;
  background: var(--paper-2);
  border: 1px dashed rgba(23, 20, 16, 0.18);
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
}
.slide.dark .pastwork-tile__image,
.slide.dark .roomlives-tile__image {
  background: var(--coal-2);
  border-color: rgba(244, 239, 230, 0.16);
}

/* placeholder label — small mono "image" tag in upper-left */
.brand-read-block__image::before,
.catalog-tile__image::before,
.mood-tile__image::before,
.pastwork-tile__image::before,
.roomlives-tile__image::before {
  content: "image";
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-mute);
  opacity: 0.5;
}
.slide.dark .pastwork-tile__image::before,
.slide.dark .roomlives-tile__image::before {
  color: var(--paper-mute);
}

/* numbered tiles get a centered numeral as their visual anchor */
.mood-tile__num,
.pastwork-tile__num,
.roomlives-tile__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 64px);
  color: var(--ink-mute);
  opacity: 0.4;
  line-height: 1;
  position: static;
}
.slide.dark .mood-tile__num,
.slide.dark .pastwork-tile__num,
.slide.dark .roomlives-tile__num {
  color: var(--paper-mute);
}

/* placeholder figcaption — sits inside the image area, bottom-left */
.img-cap {
  position: absolute;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tr-mono-tight);
  text-transform: lowercase;
  color: var(--ink-mute);
  opacity: 0.7;
  line-height: 1.3;
  margin: 0;
}
.slide.dark .img-cap { color: var(--paper-mute); }

/* ── normalized cards (used in fourcs, territories, venues, etc.) ── */
.fourcs-tile,
.territory-tile,
.workshop-card,
.venue-card,
.editorial-card,
.cosponsor-col,
.next-option,
.anniversary-block,
.correcting-col {
  border: 1px solid var(--paper-2);
  border-radius: 2px;
  background: var(--paper);
  padding: var(--sp-4);
}
.slide.dark .workshop-card,
.slide.dark .next-option {
  border-color: var(--coal-3);
  background: var(--coal-2);
}

/* accent variants */
.correcting-col--accent,
.reframe-col--accent {
  border-color: var(--ember);
  background: rgba(26, 24, 22, 0.04);
}

/* ── normalized tables ─────────────────────────────────── */
.decision-grid,
.measure-table,
.catalog-cost-table,
.resources-table {
  border-top: 1px solid var(--paper-2);
  margin: var(--sp-5) 0;
}
.slide-decision .slide__inner {
  gap: var(--sp-4);
  align-content: center;
}
.slide-decision__head {
  margin-bottom: var(--sp-3);
}
.slide-decision .decision-grid {
  margin: 0;
}
.slide-decision__lede--below {
  margin: var(--sp-3) 0 0;
  max-width: 72ch;
  font-size: clamp(14px, 1.05vw, 16px);
}
.decision-row,
.measure-row,
.catalog-cost-row,
.resources-row {
  border-bottom: 1px solid var(--paper-2);
  padding: var(--sp-4) 0;
}
.decision-row--head,
.measure-row--head,
.catalog-cost-row--head,
.resources-row--head {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-mute);
  padding: var(--sp-3) 0;
}

/* ── grid breathing (mood / catalog / pastwork etc.) ──── */
.mood-grid,
.pastwork-grid,
.roomlives-grid,
.catalog-grid {
  gap: var(--sp-5);
}

/* ── concept slide hero image area ─────────────────────── */
/* concept slides get a real hero image slot above their title.
   gives them visual anchor and breathing room. */
.slide-concept .slide__inner {
  display: grid;
  grid-template-rows: minmax(34vh, 1fr) auto auto;
  gap: var(--rhythm-2);
  align-content: stretch;
}
.slide-concept__content {
  display: grid;
  gap: var(--rhythm-1);
  text-align: center;
  justify-items: center;
  max-width: var(--measure-wide);
  margin: 0 auto;
}
.slide-concept:has(.sef-side-quote) .slide-concept__content {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  column-gap: var(--sp-8);
  text-align: left;
  justify-items: start;
  align-items: end;
}
.slide-concept:has(.sef-side-quote) .slide-concept__content > :not(.sef-side-quote) {
  grid-column: 1;
}
.sef-side-quote {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  border-top: 1px solid rgba(216, 76, 35, 0.55);
  padding-top: var(--sp-3);
}
.sef-side-quote blockquote {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  line-height: var(--lh-prose);
}
.sef-side-quote p {
  margin: var(--sp-3) 0 0;
  color: var(--paper-mute);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tr-mono-tight);
  text-transform: lowercase;
}
@media (max-width: 900px) {
  .slide-concept:has(.sef-side-quote) .slide-concept__content {
    grid-template-columns: 1fr;
  }
  .sef-side-quote {
    grid-column: 1;
    grid-row: auto;
  }
}
.slide-concept__hero {
  position: relative;
  background: var(--coal-2);
  border: 1px dashed rgba(244, 239, 230, 0.14);
  border-radius: 2px;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.slide-concept__hero::before {
  content: "hero image";
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--paper-mute);
  opacity: 0.6;
}
.slide-concept__hero-cap {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  letter-spacing: var(--tr-mono-tight);
  text-transform: lowercase;
  color: var(--paper-mute);
  text-align: center;
  max-width: 60ch;
  padding: 0 var(--sp-4);
}

/* offering openers: use the full page, not a centered stack */
.slide-offering .slide__inner {
  max-width: min(1480px, 100%);
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(430px, 0.85fr);
  grid-template-rows: 1fr;
  gap: clamp(56px, 6.5vw, 112px);
  align-items: center;
  padding-block: clamp(72px, 8vh, 112px);
}
.slide-offering .slide-concept__hero {
  min-height: min(68vh, 700px);
  align-self: stretch;
}
.slide-offering .slide-concept__content,
.slide-offering:has(.sef-side-quote) .slide-concept__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  text-align: left;
  justify-items: start;
  align-items: start;
  max-width: 560px;
  margin: 0;
}
.slide-offering .slide-concept__title {
  text-align: left;
  text-transform: none;
  margin: 0;
  max-width: 12.5ch;
  font-size: clamp(46px, 4.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}
.slide-offering .slide-concept__body {
  text-align: left;
  max-width: 48ch;
  margin: 0;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.5;
}
.slide-offering .sef-side-quote {
  grid-column: 1;
  grid-row: auto;
  align-self: start;
  max-width: 42ch;
  margin-top: var(--sp-3);
}

@media (max-width: 980px) {
  .slide-offering .slide__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .slide-offering .slide-concept__hero {
    min-height: 320px;
  }
  .slide-offering .slide-concept__title {
    max-width: 14ch;
  }
}

.slide-softclose .hero-title {
  font-size: clamp(76px, 10vw, 148px);
  line-height: 0.95;
  max-width: none;
}

/* aspiration / platform / workshops / pastwork get the same */
.slide-aspiration .slide__inner,
.slide-platform .slide__inner,
.slide-workshops .slide__inner,
.slide-pastwork .slide__inner,
.slide-craft .slide__inner,
.slide-roomlives .slide__inner,
.slide-next .slide__inner {
  display: grid;
  grid-template-rows: none;
  gap: var(--sp-7);
  align-content: center;
  max-width: 1040px;
}
.slide-next__head {
  display: grid;
  gap: var(--sp-5);
  max-width: 760px;
}
.slide-next__title {
  text-align: left;
  font-size: clamp(44px, 5vw, 72px);
  line-height: var(--lh-tight);
  margin: 0;
  max-width: 14ch;
}
.slide-next__body {
  text-align: left;
  max-width: 54ch;
  margin: 0;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: var(--lh-prose);
  color: var(--paper-soft);
}
.slide-next .next-options {
  margin: 0;
  max-width: 900px;
}
.slide.dark .slide-next .next-option,
.slide-next .next-option {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  background: rgba(28, 26, 22, 0.88);
}

/* Tohru pull-quote slide gets a wider quote treatment */
.slide-tohru .quote-block {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--title-lg);
  line-height: 1.3;
  letter-spacing: -0.005em;
  max-width: 32ch;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
}
.slide-tohru .attribution {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-mute);
  margin-top: var(--sp-5);
}

/* ── footer metadata (concept slide footer + cover footer) ── */
.slide-concept__footer,
.slide-cover__footer {
  font-family: var(--font-mono);
  font-size: var(--meta-xs);
  text-transform: lowercase;
  letter-spacing: var(--tr-mono-tight);
  color: var(--paper-mute);
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  padding-top: var(--sp-4);
}
.slide-concept__footer .label,
.slide-cover__footer .label {
  display: block;
  color: var(--ember);
  letter-spacing: var(--tr-mono);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
  font-size: 10px;
}

/* ── ensure slide-act-header (chapter dividers) breathe ── */
.slide-act-header__center .hero-title {
  font-size: var(--title-xl);
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}
.slide-act-header__body {
  max-width: 58ch;
  margin: var(--sp-5) auto 0;
  color: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
  text-align: center;
}
.slide-act-header__top,
.slide-act-header__bottom {
  text-align: center;
}

/* ── overrides cleanup: drop scattered !important ───────── */
.slide-aspiration .slide__inner { padding-block: clamp(48px, 6vh, 96px); }
.slide-aspiration__headline {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-align: left;
  margin: 0;
  max-width: 15ch;
  color: var(--paper);
}
.slide-aspiration__head {
  display: grid;
  gap: var(--sp-4);
  max-width: 820px;
}
.aspiration-proof {
  display: grid;
  gap: var(--sp-5);
  max-width: 760px;
}
.aspiration-proof p {
  color: var(--paper-soft);
  margin: 0;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: var(--lh-prose);
}
.aspiration-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.aspiration-steps span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono-tight);
  font-size: var(--t-xs);
  color: var(--ember);
  border-top: 1px solid rgba(216, 76, 35, 0.55);
  padding-top: var(--sp-2);
}

/* ── slide 05 — stated positioning, fixed PDF-style layout ─ */
.slide-stated .slide__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-7);
  align-content: center;
  max-width: 1180px;
  padding-block: var(--sp-7);
}
.slide-stated__head {
  text-align: left;
  max-width: 920px;
  margin: 0;
}
.slide-stated .hero-title {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-transform: none;
  max-width: 24ch;
}
.slide-stated__body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: var(--sp-7);
  align-items: start;
  min-height: 0;
}
.slide-stated__quotes {
  display: grid;
  gap: var(--sp-4);
  min-width: 0;
}
.quote-card {
  border: 1px solid var(--paper-2);
  background: var(--paper);
  padding: var(--sp-4);
  border-radius: 2px;
  display: grid;
  gap: var(--sp-2);
  margin: 0;
}
.quote-card__index {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  font-size: 10px;
  color: var(--ember);
  margin: 0;
}
.quote-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.quote-card__attribution {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: var(--tr-mono-tight);
  color: var(--ink-mute);
  margin: 0;
}

.doctrine-list {
  border: 1px solid var(--paper-2);
  background: var(--paper);
  padding: var(--sp-4);
  border-radius: 2px;
  margin: 0;
  align-self: start;
}
.doctrine-list__heading {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  font-size: 10px;
  color: var(--ember);
  margin: 0 0 var(--sp-3);
}
.doctrine-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-3);
}
.doctrine-list__items .term {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
}
.doctrine-list__items .gloss {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .slide-stated__body { grid-template-columns: 1fr; }
}

/* ── responsive baseline: keep grids from cramming ──────── */
@media (max-width: 1100px) {
  .mood-grid,
  .pastwork-grid,
  .roomlives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .mood-grid,
  .pastwork-grid,
  .roomlives-grid,
  .editorial-grid,
  .territory-grid,
  .fourcs-grid,
  .venue-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}

/* ── slide 06: doctrine vocabulary, own page ─────────────── */
.slide-doctrine .slide__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--rhythm-2);
  align-content: stretch;
}
.slide-doctrine__head { text-align: left; max-width: 60ch; margin: 0; }
.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-content: start;
  max-width: var(--measure-wide);
  margin: 0 auto;
  width: 100%;
}
.doctrine-card {
  border: 1px solid var(--paper-2);
  background: var(--paper);
  padding: var(--sp-4);
  border-radius: 2px;
  display: grid;
  gap: var(--sp-2);
}
.doctrine-card__term {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ember);
  margin: 0;
  line-height: 1.15;
}
.doctrine-card__gloss {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}
.doctrine-card__note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .doctrine-grid { grid-template-columns: 1fr; }
}

/* slide 05 with full-width 3-quote layout (no sidebar now) */
.slide-stated__quotes--full {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--sp-5) !important;
  margin: 0 !important;
  align-items: stretch;
}
@media (max-width: 900px) {
  .slide-stated__quotes--full { grid-template-columns: 1fr !important; }
}

/* ── phone layout: let slides become readable pages ─────────
 * Desktop keeps the fixed 100vh presentation model. Phones need the
 * opposite: content may grow, grids stack, and chrome must not cover text.
 */
@media (max-width: 700px) {
  :root {
    --slide-pad-x: clamp(18px, 5.4vw, 28px);
    --slide-pad-y: 24px;
    --chrome-top: 48px;
    --chrome-bottom: 56px;
    --title-xl: clamp(34px, 11vw, 48px);
    --title-lg: clamp(28px, 8.4vw, 38px);
    --title-md: clamp(22px, 6.4vw, 28px);
    --body-md: 15px;
    --body-sm: 13px;
    --meta-xs: 10px;
  }

  .deck {
    scroll-snap-type: none;
  }

  .deck-chrome {
    height: var(--chrome-top);
    padding: 0 var(--slide-pad-x);
    gap: var(--sp-3);
  }

  .brand-lockup {
    gap: var(--sp-2);
    min-width: 0;
  }

  .brand-lockup span:not(.brand-mark):not(.brand-x) {
    white-space: nowrap;
  }

  .brand-lockup span:nth-of-type(4),
  .deck-meta {
    display: none;
  }

  .deck-nav {
    height: var(--chrome-bottom);
    grid-template-columns: auto 1fr auto;
    gap: var(--sp-2);
    padding: 0 var(--slide-pad-x);
    background: linear-gradient(
      to top,
      rgba(251, 250, 246, 0.98) 0%,
      rgba(251, 250, 246, 0.82) 58%,
      rgba(251, 250, 246, 0) 100%
    );
  }

  .nav-button {
    min-height: 36px;
    padding: var(--sp-2) var(--sp-3);
    font-size: 10px;
  }

  .slide-count {
    min-width: 6ch;
    text-align: center;
    font-size: 10px;
  }

  .slide,
  .slide.slide-brand-read {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
    padding:
      calc(var(--chrome-top) + 42px)
      var(--slide-pad-x)
      calc(var(--chrome-bottom) + 34px);
  }

  .slide__inner,
  .slide-brand-read .slide__inner,
  .slide-cover .slide__inner,
  .slide-act-header .slide__inner,
  .slide-concept .slide__inner,
  .slide-offering .slide__inner {
    height: auto;
    min-height: calc(100svh - var(--chrome-top) - var(--chrome-bottom) - 76px);
    max-width: 100%;
    padding-block: 0;
    gap: var(--sp-5);
    align-content: start;
    justify-content: start;
  }

  .slide[data-context]::before {
    top: calc(var(--chrome-top) + 12px);
    left: var(--slide-pad-x);
    right: var(--slide-pad-x);
    line-height: 1.35;
  }

  .slide__num {
    right: var(--slide-pad-x);
    bottom: calc(var(--chrome-bottom) + var(--sp-2));
  }

  .hero-title,
  .slide-stated .hero-title,
  .slide-cover__title .hero-title,
  .slide-act-header__center .hero-title,
  .slide-concept__title,
  .slide-offering .slide-concept__title,
  .slide-aspiration__headline,
  .slide-platform__title,
  .slide-workshops__title,
  .slide-pastwork__title,
  .slide-roomlives__title,
  .slide-craft__title,
  .slide-next__title,
  .slide-softclose .hero-title,
  .calendar-now__title {
    max-width: 100%;
    font-size: var(--title-xl);
    line-height: 1.04;
    letter-spacing: -0.012em;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .slide-toc__head,
  .slide-perception__head,
  .slide-decision__head,
  .slide-correcting__head,
  .slide-fourcs__head,
  .slide-mood__head,
  .slide-references__head,
  .slide-reframe__head,
  .slide-crew__head,
  .slide-distribution__head,
  .slide-measurement__head,
  .slide-territories__head,
  .slide-cosponsors__head,
  .slide-festivals__head,
  .slide-room__head,
  .slide-venues__head,
  .slide-runofshow__head,
  .slide-provides__head,
  .slide-outputs__head,
  .slide-editorial__head,
  .slide-calendar__head,
  .slide-catalog-cost__head,
  .slide-resources__head,
  .slide-anniversary__head,
  .slide-softclose__head,
  .slide-howework__head,
  .slide-sef__head,
  .slide-ophelia__head,
  .slide-concept__content {
    text-align: left;
    justify-items: start;
    margin-left: 0;
    margin-right: 0;
  }

  .quote-block,
  .slide-tohru .quote-block {
    font-size: clamp(28px, 8.6vw, 38px);
    text-align: left;
    max-width: 100%;
  }

  .attribution,
  .caption-strip,
  .slide-concept__body,
  .slide-platform__body,
  .slide-calendar__lede,
  .slide-softclose__body,
  .slide-ophelia__pull,
  .slide-ophelia__body,
  .venue-popup,
  .followup-list {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .slide-cover__title {
    max-width: 100%;
    gap: var(--sp-4);
  }

  .slide-cover__title .hero-subtitle,
  .hero-subtitle,
  .slide-act-header__body,
  .aspiration-proof p,
  .slide-next__body,
  .calendar-now__body,
  .slide-offering .slide-concept__body {
    font-size: var(--body-md);
    line-height: 1.5;
    max-width: 100%;
  }

  .slide-cover__footer,
  .slide-concept__footer,
  .toc-link,
  .slide-stated__quotes--full,
  .brand-read-grid,
  .catalog-grid,
  .number-band,
  .register-grid,
  .register-grid--airy,
  .gap-layout,
  .gap-pair,
  .decision-row,
  .mood-grid,
  .reference-pair,
  .reframe-pair,
  .crew-grid,
  .crew-tri,
  .channel-flow__row,
  .measure-row,
  .correcting-pair,
  .fourcs-grid,
  .workshop-grid,
  .outputs-pair,
  .territory-grid,
  .cosponsor-pair,
  .venue-grid,
  .runofshow-layout,
  .ros-flow__row,
  .provides-pair,
  .pastwork-grid,
  .roomlives-grid,
  .craft-tri,
  .calendar-decision,
  .catalog-cost-row,
  .resources-row,
  .anniversary-tri,
  .next-options,
  .contact-row,
  .slide-offering .slide__inner {
    grid-template-columns: 1fr !important;
  }

  .toc-link {
    gap: var(--sp-2);
    padding: var(--sp-3) 0;
  }

  .toc-pages {
    justify-self: start;
  }

  .catalog-grid,
  .mood-grid,
  .pastwork-grid,
  .roomlives-grid,
  .editorial-grid {
    gap: var(--sp-5);
  }

  .slide-concept__hero,
  .slide-offering .slide-concept__hero,
  .slide-closing__frame {
    min-height: 220px;
  }

  .slide-concept__hero {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .quote-card,
  .fourcs-tile,
  .territory-tile,
  .workshop-card,
  .venue-card,
  .editorial-card,
  .cosponsor-col,
  .next-option,
  .anniversary-block,
  .correcting-col,
  .reframe-col,
  .festival-flow__node {
    padding: var(--sp-4);
  }

  .channel-flow__arrow,
  .ros-flow__arrow {
    display: none;
  }

  .slide-closing__quote,
  .slide-closing__cite,
  .contact-row__addr {
    text-align: left;
    padding-right: 0;
  }
}

/* ── no serif / no display italic pass ─────────────────── */
:where(.deck) :is(h1, h2, h3, blockquote, .hero-title, .quote-block, .quote-card__quote, .slide-howework__anchor, .slide-act-header__center .hero-title, .toc-name, .next-option__title) {
  font-family: var(--font-sans);
  font-style: normal;
}
:where(.deck) em {
  font-style: normal;
}
.slide-howework__anchor {
  font-weight: 500;
  letter-spacing: -0.018em;
}

/* ── TITLE TYPOGRAPHY LOCK ───────────────────────────────
 * The slide-decision title treatment ("You don't need the whole
 * platform. You can start with one proof.") is the canonical title
 * style: Space Grotesk, weight 500, sentence-case, sans, NEVER italic.
 *
 * Every title in the deck inherits this — no exceptions, no escape
 * hatches. The block below uses high-specificity selectors plus
 * !important so per-slide overrides above can no longer leak in
 * serif/italic. Quotes (.quote-block / .quote-card__quote) and
 * inline <em> are also forced sans non-italic.
 *
 * Knobs that REMAIN per-slide: font-size, text-transform (some heads
 * are lowercase, some sentence-case), color, letter-spacing.
 * Knobs that are LOCKED here: font-family, font-style.
 */
.deck .hero-title,
.deck .slide-act-header__center .hero-title,
.deck .slide-toc__head .hero-title,
.deck .slide-stated .hero-title,
.deck .slide-brand-read .hero-title,
.deck .slide-work-read .hero-title,
.deck .slide-perception .hero-title,
.deck .slide-receptivity .hero-title,
.deck .slide-decision .hero-title,
.deck .slide-howework__head .hero-title,
.deck .slide-concept__title,
.deck .slide-aspiration__headline,
.deck .slide-pastwork__title,
.deck .slide-roomlives__title,
.deck .slide-craft__title,
.deck .slide-next__title,
.deck .quote-block,
.deck .quote-card__quote,
.deck .slide-howework__anchor,
.deck .toc-name,
.deck .next-option__title,
.deck h1, .deck h2, .deck h3 {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
}

/* <em> is decorative emphasis only — never reach for serif italic.
 * Inside body prose it stays inline; visual separation comes from
 * weight or color, not face. */
.deck em,
.deck .hero-title em,
.deck .quote-block em,
.deck .quote-card__quote em {
  font-family: inherit !important;
  font-style: normal !important;
}

/* ── slide 13b — cost benchmark ──────────────────────────
 * Layout: kicker + title at top-left. Below, a two-column split
 * with the YouTube thumbnail on the left and the $45K figure on
 * the right, baselines aligned. Body paragraph sits below the
 * split at a 56ch measure, also left-anchored. Single editorial
 * column, no centered floating elements.
 */
.slide-reframe .slide__inner {
  max-width: 1200px !important;
  align-content: center;
  gap: var(--sp-7);
  padding-block: var(--sp-8);
}

.slide-reframe__head {
  display: grid;
  gap: var(--sp-3);
  text-align: left !important;
  margin: 0;
}
.slide-reframe__head .kicker {
  text-align: left !important;
}
.slide-reframe__head .hero-title {
  text-align: left !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  max-width: 22ch;
  margin: 0 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.1 !important;
}

/* split layout — outer grid with shared rows so both columns
 * lock to the same horizontal alignment lines. Row 1 holds the
 * primary element (thumbnail / $45K) and ends at a shared
 * "primary baseline". Row 2 holds the caption block and ends at
 * a shared "caption baseline". No flex-end guessing. */
.slide-reframe__split {
  display: grid;
  grid-template-columns: 520px auto;
  grid-template-rows: auto auto;
  column-gap: var(--sp-7);
  row-gap: var(--sp-4);
  justify-content: start;
}

/* clickable video thumbnail — its image lives in row 1, caption in row 2. */
.slide-reframe__video {
  display: contents;            /* let inner figure + caption participate
                                   directly in the parent grid */
  text-decoration: none;
  color: inherit;
}
.slide-reframe__video .video-thumb {
  grid-column: 1;
  grid-row: 1;
  transition: transform 240ms var(--ease-out);
}
.slide-reframe__video:hover .video-thumb { transform: translateY(-2px); }
.slide-reframe__video:hover .video-thumb__play {
  background: rgba(216, 76, 35, 0.85);
  border-color: var(--ember);
}
.slide-reframe__video .video-thumb__caption {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--coal-2);
  border: 1px solid var(--ink-mute);
  overflow: hidden;
  margin: 0;
  display: grid;
  place-items: center;
}
.video-thumb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-thumb__play {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 1px solid var(--paper-soft);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(17, 16, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding-left: 3px;
  transition:
    background 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}
.video-thumb__caption {
  display: grid;
  gap: 2px;
}
.video-thumb__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--t-base);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.video-thumb__meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-soft);
}

/* figure — also participates in the parent grid via display: contents.
 * The amount lives in row 1 (aligned to bottom of its track so it
 * sits flush with the thumbnail bottom). The note lives in row 2,
 * top-aligned to the caption track — same Y as the thumbnail caption. */
.slide-reframe__figure {
  display: contents;
  margin: 0;
}
.slide-reframe__figure .figure-amount {
  grid-column: 2;
  grid-row: 1;
  align-self: end;             /* push to bottom of the primary row */
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
  margin: 0;
}
.slide-reframe__figure .figure-note {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  display: grid;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}
.slide-reframe__figure .figure-note__primary {
  font-weight: 500;
  color: var(--ink);
}
.slide-reframe__figure .figure-note__meta {
  text-transform: uppercase;
  color: var(--ink-soft);
}

.slide-reframe__lede {
  max-width: 60ch;
  font-size: var(--t-md);
  line-height: var(--lh-prose);
  text-align: left !important;
  color: var(--ink-soft);
  margin: 0 !important;
}

/* narrow viewport — stack instead of split */
@media (max-width: 880px) {
  .slide-reframe__split {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

/* ── Tohru quote — the one explicit exception ──────────────
 * The slide 02 founder pull-quote keeps the serif italic register
 * because the voice belongs to the speaker, not the deck. This is
 * the ONLY place serif italic should appear. The selector wins
 * over the title-typography lock above via slide-class specificity.
 * Also widens the measure so the line breaks are editorial, not narrow.
 */
.deck .slide-tohru .quote-block {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.005em;
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
}
.deck .slide-tohru .slide__inner {
  max-width: 1280px;
}

/* ── critique pass additions ─────────────────────────────
 * Small, surgical additions for the post-critique edits.
 * Verdict / pivot lines that turn data and quotes into a
 * thesis instead of a pile. Past-work + Sef credit blocks.
 */

/* slide 08 — verdict line under the number band that
 * accuses the gap on our behalf. Sits just below the band,
 * above the receptivity grid. Editorial weight, not loud. */
.receptivity-verdict {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  max-width: 68ch;
  margin: var(--sp-5) auto 0;
  text-align: center;
  text-wrap: balance;
}

/* slide 26 — Sef credits footer. Editorial credit-line
 * register, mono labels and serif-flat list. */
.slide-sef__credits {
  border-top: 1px solid var(--paper-2);
  padding-top: var(--sp-3);
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-2);
  max-width: 60ch;
  margin-inline: auto;
}
.slide-sef__credits-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--ember);
  margin: 0;
}
.slide-sef__credits-list {
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* slide 28 — past work lede above the grid, plus a
 * discipline tag inside each tile. The tag replaces the
 * giant numeral as the visual anchor — quieter, more
 * meaningful, reads as intentional design while we wait
 * on real frames. */
.slide-pastwork__lede {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: var(--paper-soft);
  max-width: 64ch;
  margin: 0 auto var(--sp-3);
  text-align: center;
}
.pastwork-tile__discipline {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 13px);
  text-transform: uppercase;
  letter-spacing: var(--tr-mono);
  color: var(--paper-mute);
  opacity: 0.85;
  line-height: 1.2;
  text-align: center;
  padding: 0 var(--sp-3);
}

/* slide 19b — calibration. Sits inside the A Takibi Tale arc
 * as an analytical reference panel, not a section divider.
 * Reuses .slide-concept structure but inverts the dark footer
 * and pull-quote treatment for a light slide. */
.slide-calibration .slide__inner {
  display: grid;
  grid-template-columns: minmax(560px, 1.18fr) minmax(420px, 0.82fr);
  gap: clamp(44px, 5vw, 88px);
  align-content: center;
  align-items: center;
  max-width: min(1480px, 100%);
}
.slide-calibration .calibration-media {
  display: grid;
  gap: var(--sp-6);
}
.slide-calibration .slide-concept__hero {
  min-height: min(52vh, 520px);
}
.slide-calibration .slide-concept__footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: 0;
  color: var(--ink-mute);
  border-top: 1px solid var(--paper-2);
}
.slide-calibration .slide-concept__title {
  color: var(--ink);
  text-align: left;
  text-transform: none;
  margin-left: 0;
  margin-right: auto;
  max-width: 22ch;
  margin-top: 0;
  margin-bottom: 0;
}
.slide-calibration .slide-concept__content {
  width: 100%;
  max-width: none;
  display: grid;
  gap: var(--sp-6);
  text-align: left;
  justify-items: start;
}
.slide-calibration .kicker {
  display: none;
}
.slide-calibration .slide-concept__body {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.slide-calibration .slide-concept__pull {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.slide-calibration .slide-concept__hero-cap {
  text-align: left;
  padding-left: var(--sp-4);
}

@media (max-width: 1100px) {
  .slide-calibration .slide__inner {
    grid-template-columns: 1fr;
  }
  .slide-calibration .slide-concept__hero {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .deck .slide-tohru .quote-block,
  .receptivity-verdict,
  .slide-pastwork__lede,
  .pastwork-tile__discipline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .deck .slide-tohru .quote-block,
  .deck .slide-tohru .slide__inner,
  .slide-sef__credits,
  .slide-pastwork__lede {
    max-width: 100%;
  }
}

/* slide 03 — contents. Anchor the table to the top of the slide
 * (not vertically centered, not pushed down by stacked padding).
 * The slide__inner default padding is overridden tight, so the
 * eyebrow + title sit near the top edge. */
.deck .slide-toc {
  padding-top: 0 !important;
}
.deck .slide-toc .slide__inner {
  justify-content: flex-start;
  align-content: start;
  align-items: stretch;
  padding-top: calc(var(--chrome-top) + var(--sp-3)) !important;
  padding-bottom: var(--sp-6);
}

.deck .toc-act__head,
.deck .toc-link {
  align-items: start;
}

.deck .toc-act__roman,
.deck .toc-act__title,
.deck .toc-num,
.deck .toc-note,
.deck .toc-pages {
  padding-top: 0.16em;
}

.deck .toc-name {
  padding-top: 0;
}

/* slide 21 — A Takibi Tale distribution. Put the two setup notes
 * side-by-side and make the channel map legible at presentation scale. */
.deck .slide-distribution .slide__inner {
  align-content: start;
  gap: var(--sp-4);
}

.deck .distribution-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: var(--sp-7);
  width: min(100%, 1040px);
  margin: 0 auto var(--sp-3);
  align-items: start;
}

.deck .slide-distribution__lede {
  margin: 0;
  max-width: none;
  text-align: left;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.55;
}

.deck .slide-distribution__premiere {
  margin: 0;
  max-width: none;
  text-align: left;
  font-size: clamp(9px, 0.648vw, 10.8px);
  line-height: 1.55;
}

.deck .slide-distribution__premiere {
  border-left: 1px solid var(--paper-2);
  padding-left: var(--sp-5);
  color: var(--ink-soft);
}

.deck .slide-distribution__premiere strong {
  display: block;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.deck .channel-flow {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  gap: 0;
  padding-top: var(--sp-3);
}

.deck .channel-flow__row {
  grid-template-columns: minmax(165px, 0.55fr) 24px minmax(0, 2.35fr);
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--paper-2);
  align-items: start;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.35;
  letter-spacing: 0;
}

.deck .channel-flow__row:last-child {
  border-bottom: 0;
}

.deck .channel-flow__arrow {
  text-align: center;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.86em;
  padding-top: 0.08em;
}

.deck .channel-flow__src {
  font-family: var(--font-mono);
  letter-spacing: var(--tr-mono-tight);
  line-height: 1.25;
}

.deck .channel-flow__dest {
  font-family: var(--font-sans);
  letter-spacing: 0;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .deck .distribution-copy {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .deck .slide-distribution__premiere {
    border-left: 0;
    border-top: 1px solid var(--paper-2);
    padding-left: 0;
    padding-top: var(--sp-4);
  }

  .deck .channel-flow__row {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .deck .channel-flow__arrow {
    display: none;
  }
}
