/* =========================================================
   Beyond the Call Sheet — styles.css
   Editorial / magazine-style single page
   ========================================================= */

:root {
  --ink:        #111110;
  --paper:      #f4f1ea;
  --paper-2:    #ebe6db;
  --paper-3:    #e3ddd0;
  --muted:      #6b6960;
  --rule:       #1a1a18;
  --accent:     #b8551f;     /* burnt ochre */
  --accent-2:   #2a3d2e;     /* deep forest, used sparingly */
  --hairline:   rgba(17,17,16,0.14);

  --serif:      "Fraunces", "Times New Roman", serif;
  --sans:       "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("../images/grain.svg");
}

::selection { background: var(--ink); color: var(--paper); }

a { color: inherit; text-decoration: none; }

/* ---------- TOP BAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 14px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.topbar-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.topbar-mark span { font-style: normal; font-weight: 400; }
.topbar-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar-actions a {
  position: relative;
  transition: opacity 0.3s;
}
.topbar-actions a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.6,0.05,0.2,1);
}
.topbar-actions a:hover::after { transform: scaleX(1); }

/* ---------- MASTHEAD ---------- */
.masthead {
  padding: 140px 40px 0;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.masthead-tags {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 50px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.masthead-tags .left { display: flex; gap: 32px; }
.masthead-tags .left span:not(:first-child) { color: var(--muted); }

.title-block {
  position: relative;
  text-align: center;
}

.title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  /* slight optical adjustment so italic descenders don't crowd the line below */
  padding-bottom: 0.04em;
}
.title .l1 {
  display: block;
}
.title .l2 {
  display: block;
  margin-top: 0.04em;
}
.title .l2 em {
  font-style: italic;
  font-weight: 400;
  /* small optical kern so the space after italic 'the' looks even */
  padding-right: 0.05em;
}
/* Legacy rules — kept for safety in case older markup is cached anywhere */
.title .l3 { display: block; text-align: center; font-weight: 300; }
.title .amp { font-style: italic; font-weight: 300; color: var(--accent); }

.lede-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--hairline);
}
.issue-stamp {
  grid-column: 1 / 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.7;
}
.issue-stamp .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.lede {
  grid-column: 2 / 4;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.lede .drop {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.6em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.08em;
  color: var(--accent);
}
.credits {
  grid-column: 4 / 5;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--muted);
}
.credits strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.credits .sep {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 14px 0;
}

/* ---------- SECTION ---------- */
.section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 110px 40px;
  position: relative;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ink);
}
.section-label .num {
  color: var(--ink);
  font-weight: 500;
}

.project-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.project-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  position: sticky;
  top: 100px;
}
.project-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.project-headline::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--ink);
  margin-top: 36px;
}
.project-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
.project-body p:last-child { margin-bottom: 0; }

.pull-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stat {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
.stat:not(:first-child):not(:last-child) { padding-left: 24px; }
.stat .v {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 10px;
}
.stat .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- SEASON SECTIONS ---------- */
.season-section {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 130px 0 140px;
  margin-top: 40px;
}
.season-01 { background: var(--paper-2); }
.season-02 {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(244,241,234,0.12);
}
.season-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.season-head {
  max-width: 1100px;
  margin-bottom: 90px;
}
.season-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 36px;
}
.season-02 .season-tag { color: rgba(244,241,234,0.55); }
.season-tag.accent { color: var(--accent); }
.season-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.season-tag .dot.pulse {
  animation: pulse 2.4s cubic-bezier(0.3, 0, 0.4, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

.season-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 36px;
  font-family: var(--serif);
  font-weight: 300;
}
.season-title .num {
  font-style: italic;
  font-size: clamp(36px, 4vw, 64px);
  letter-spacing: -0.03em;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}
.season-title .name {
  font-size: clamp(48px, 7.8vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.season-title em {
  font-style: italic;
  font-weight: 400;
}

.season-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  max-width: 800px;
}
.season-02 .season-lede { color: rgba(244,241,234,0.8); }

/* Guest Index (Season 01) — compact 4-column magazine grid */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--hairline);
}
.guest {
  position: relative;
  padding: 28px 28px 28px 30px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* anchor element resets */
  color: inherit;
  text-decoration: none;
}
.guest::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.guest:hover { background: rgba(17, 17, 16, 0.04); }
.guest:hover::before { width: 18px; }
.guest:hover .g-name { color: var(--accent); }
.guest:hover .g-watch { opacity: 1; transform: translateX(0); }
.guest:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.g-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.7;
}
.g-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  transition: color 0.35s ease;
}
.g-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.g-watch {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.g-watch .g-arrow {
  font-size: 12px;
  font-family: var(--serif);
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-1px);
}

/* On touch devices, hover doesn't fire — show the Watch hint at rest so
   it's clear each card is tappable. */
@media (hover: none) {
  .g-watch { opacity: 0.85; transform: translateX(0); }
}

.archive-note {
  margin-top: 50px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  max-width: 720px;
}

/* Theme cards (Season 02) */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,241,234,0.18);
  border-bottom: 1px solid rgba(244,241,234,0.18);
  margin-bottom: 80px;
}
.theme {
  padding: 50px 40px 50px 0;
  border-right: 1px solid rgba(244,241,234,0.18);
  position: relative;
}
.theme:not(:first-child) { padding-left: 40px; }
.theme:last-child { border-right: none; padding-right: 0; }

.theme-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.theme-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.theme-title .amp {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.theme-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,241,234,0.7);
  letter-spacing: -0.005em;
}

/* Guest domains list */
.guest-domains {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: start;
  padding-top: 30px;
}
.domains-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
  line-height: 1.6;
}
.domains-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
}
.domains-list li {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,241,234,0.12);
  position: relative;
  padding-left: 28px;
}
.domains-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-style: italic;
}

/* ---------- DOCUMENTARY ---------- */
.doc-section {
  background: var(--paper-3);
  padding: 160px 40px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.doc-section::before, .doc-section::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.doc-section::before {
  top: 60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
}
.doc-section::after {
  bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
}
.doc-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.doc-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 50px;
  padding: 8px 18px;
  border: 1px solid var(--accent);
}
.doc-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 60px;
}
.doc-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.doc-body {
  max-width: 680px;
  margin: 0 auto;
}
.doc-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.doc-aside {
  font-style: italic;
  color: var(--muted);
  font-size: 17px !important;
  margin-top: 36px !important;
}

/* ---------- THE HOST ---------- */
.host-section {
  background: var(--paper-2);
  padding: 130px 0 140px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.host-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.host-hero {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.host-portrait {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.host-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.host-portrait .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.host-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.host-name em {
  font-style: italic;
  font-weight: 400;
}
.host-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}

.host-body {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: start;
}
.host-body-left {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--muted);
}
.host-body-left strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.host-body-left .group { margin-bottom: 28px; }

.host-bio p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.host-bio p:first-child {
  font-size: 28px;
  line-height: 1.35;
}
.host-bio p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 4.4em;
  float: left;
  line-height: 0.82;
  padding-right: 0.1em;
  padding-top: 0.06em;
  color: var(--accent);
}

/* ---------- MANIFESTO PULLQUOTE ---------- */
.manifesto {
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 40px;
  text-align: center;
  position: relative;
}
.manifesto::before, .manifesto::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--ink);
}
.manifesto::before { top: 50px; }
.manifesto::after { bottom: 50px; }
.manifesto .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.4;
  margin-bottom: 30px;
}
.manifesto blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.manifesto blockquote em {
  font-style: italic;
  font-weight: 400;
}
.manifesto cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ---------- COLOPHON / FOOTER ---------- */
.colophon {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 40px 36px;
  position: relative;
}
.colophon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("../images/grain.svg");
}
.colophon-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.colophon-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-bottom: 80px;
}
.colophon-mark .it { font-style: italic; font-weight: 400; }
.colophon-mark .accent { color: var(--accent); font-style: italic; font-weight: 400; }

.colophon-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  margin-bottom: 80px;
}
.col-block .col-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin-bottom: 14px;
}
.col-block .col-content {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.col-block .col-content a {
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.col-block .col-content a:hover { color: var(--accent); }
.col-block .col-content em { font-style: italic; }

.colophon-base {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
}
.colophon-base .right { display: flex; gap: 28px; }

/* ---------- INTRO ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.25s; }
.reveal.d3 { transition-delay: 0.4s; }
.reveal.d4 { transition-delay: 0.55s; }
.reveal.d5 { transition-delay: 0.7s; }
.reveal.d6 { transition-delay: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .season-tag .dot.pulse { animation: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .topbar-meta { display: none; }
  .topbar-inner { grid-template-columns: auto 1fr; }
  .topbar-actions { gap: 18px; }
  .guest-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .topbar-inner { padding: 12px 22px; }
  .topbar-actions { font-size: 9px; gap: 14px; }
  .masthead { padding: 110px 22px 0; }
  .section { padding: 80px 22px; }
  .season-inner { padding: 0 22px; }
  .season-section { padding: 90px 0 100px; }
  .doc-section { padding: 110px 22px; }
  .host-inner { padding: 0 22px; }
  .colophon { padding: 70px 22px 28px; }

  .lede-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .issue-stamp, .lede, .credits { grid-column: 1 / -1; }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .project-headline { position: static; }

  .pull-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hairline); padding: 22px 0; }
  .stat:last-child { border-bottom: none; padding-left: 0; }
  .stat:not(:first-child):not(:last-child) { padding-left: 0; }

  .season-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guest-grid { grid-template-columns: repeat(2, 1fr); }
  .guest {
    padding: 24px 22px 28px 26px;
    min-height: 140px;
  }
  .g-name { font-size: 22px; }
  .g-watch {
    bottom: 14px;
    right: 16px;
  }

  .theme-grid {
    grid-template-columns: 1fr;
  }
  .theme {
    border-right: none;
    border-bottom: 1px solid rgba(244,241,234,0.18);
    padding: 36px 0;
  }
  .theme:not(:first-child) { padding-left: 0; }
  .theme:last-child { border-bottom: none; }

  .guest-domains {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .domains-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .host-hero, .host-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .colophon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .colophon-grid { grid-template-columns: 1fr; }
  .colophon-base { flex-direction: column; gap: 16px; align-items: flex-start; }
  .masthead-tags { flex-direction: column; gap: 12px; align-items: flex-start; }
  .topbar-actions { display: none; }
  .topbar-inner { grid-template-columns: 1fr; justify-items: center; }
  .guest-grid { grid-template-columns: 1fr; }
  .guest { min-height: auto; padding: 22px 20px 22px 26px; }
}
