/* ============================================================
   spillinbean — shared stylesheet
   Lifted verbatim from the v1 mockups (home / episodes / blog).
   Shared chassis is unscoped; page-specific component blocks are
   scoped under body.page-home / body.page-episodes / body.page-blog
   to prevent cross-bleed on classes that differ between pages
   (.ep-grid, .ep-card, .ep-thumb, .play-btn, .duration, .filters,
    .chip, .pagination, .header-eyebrow).
   ============================================================ */

/* ============ CHASSIS (shared, once) ============ */
:root {
  /* Chassis */
  --canary: #FFF500;
  --lime: #00BA32;
  --forest: #173404;
  --mist: #EAF3DE;
  /* Persona accents */
  --amber: #FAEEDA;
  --rose: #FBEAF0;
  --iris: #EEEDFE;
  --sky: #E6F1FB;
  --peach: #FDE4D4;
  --sage: #DDEDD9;
  --lilac: #E8DEF2;
  /* Calm register */
  --paper: #FAFAF7;
  --ash: #F1EFE8;
  --ink: #2C2C2A;
  --stone: #888780;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  /* paper grain */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.17 0 0 0 0 0.16 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

::selection { background: var(--canary); color: var(--forest); }

/* ============ NAV (shared) ============ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 247, 0.85);
  border-bottom: 1px solid rgba(44, 44, 42, 0.06);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  position: relative;
  display: inline-block;
  padding: 6px 14px 8px;
  transform: rotate(-1.5deg);
}
.wordmark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.wordmark span {
  position: relative;
  z-index: 1;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: var(--lime);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

nav.top ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
nav.top a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 2px;
}
nav.top a.active {
  color: var(--ink);
}
nav.top a.active::before {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0px;
  height: 8px;
  background: var(--canary);
  transform: skewX(-8deg);
  z-index: -1;
  opacity: 0.85;
}
nav.top a:not(.guest-cta):not(.active)::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0px;
  height: 8px;
  background: var(--canary);
  transform: scaleX(0) skewX(-8deg);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.65,0,0.35,1);
  z-index: -1;
  opacity: 0.85;
}
nav.top a:not(.guest-cta):not(.active):hover::after { transform: scaleX(1) skewX(-8deg); }

.guest-cta {
  background: var(--forest);
  color: var(--canary) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s;
}
.guest-cta:hover { transform: translateY(-1px); background: #0d2002; }

.search-icon {
  width: 20px; height: 20px;
  stroke: var(--ink); stroke-width: 2; fill: none;
  cursor: pointer;
}

/* ============ FOOTER (shared) ============ */
footer {
  background: var(--forest);
  color: var(--mist);
  padding: 50px 40px 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer .links { display: flex; gap: 28px; }
footer a {
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
footer a:hover { color: var(--canary); opacity: 1; }
.footer-bottom {
  max-width: 1300px;
  margin: 30px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(234,243,222,0.1);
  font-size: 12px;
  color: rgba(234,243,222,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .live-kawaii {
  font-family: 'Newsreader', serif;
  font-style: italic;
}

/* ============================================================
   HOME — scoped under body.page-home
   ============================================================ */

/* ============ HERO ============ */
body.page-home .hero {
  position: relative;
  padding: 70px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

body.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

body.page-home .episode-card {
  position: relative;
  transform: rotate(-1.2deg);
}
body.page-home .episode-card .video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--forest);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 50px -20px rgba(23, 52, 4, 0.35),
    0 8px 16px -8px rgba(23, 52, 4, 0.2);
  background-image:
    linear-gradient(135deg, #0d2002 0%, #173404 50%, #1d4406 100%);
}
body.page-home .episode-card .video-frame::after {
  /* film grain on the still */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
body.page-home .video-frame .scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(234, 243, 222, 0.4);
  font-family: 'Caveat', cursive;
  font-size: 22px;
}
body.page-home .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: var(--canary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
body.page-home .play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
body.page-home .play-btn svg { margin-left: 6px; }

body.page-home .meta-band {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 186, 50, 0.95);
  color: var(--forest);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
body.page-home .meta-band .title-mini { font-weight: 600; }
body.page-home .meta-band .dot { opacity: 0.5; margin: 0 6px; }

/* Sticky note "just dropped" */
body.page-home .sticky-just-dropped {
  position: absolute;
  top: -32px;
  left: -28px;
  background: var(--canary);
  padding: 14px 22px 16px;
  transform: rotate(-7deg);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--forest);
  font-weight: 700;
  box-shadow:
    2px 2px 0 rgba(0,0,0,0.06),
    0 14px 22px -10px rgba(23, 52, 4, 0.35);
  z-index: 3;
  /* hand-cut edge via clip-path */
  clip-path: polygon(
    2% 6%, 18% 2%, 38% 5%, 62% 1%, 84% 6%, 98% 3%,
    96% 28%, 99% 52%, 97% 78%, 99% 96%,
    82% 99%, 58% 96%, 34% 99%, 14% 96%, 1% 98%,
    4% 72%, 1% 46%, 3% 22%
  );
}
body.page-home .sticky-just-dropped::before {
  /* tape */
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 42px; height: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255,255,255,0.6);
}

/* RIGHT side — title + meta */
body.page-home .hero-text { position: relative; }

body.page-home .ep-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 20px;
}
body.page-home .ep-eyebrow::before {
  content: '§ ';
  color: var(--stone);
}

body.page-home .hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  text-transform: none;
}
body.page-home .hero-title .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 4px;
}
body.page-home .hero-title .highlight::before {
  content: '';
  position: absolute;
  inset: 8% -4% -2% -4%;
  background: var(--canary);
  z-index: -1;
  /* hand-cut */
  clip-path: polygon(
    0% 14%, 6% 4%, 18% 8%, 32% 2%, 48% 6%, 64% 1%, 78% 7%, 92% 3%, 100% 12%,
    98% 30%, 100% 52%, 97% 76%, 100% 92%,
    88% 98%, 72% 95%, 56% 99%, 38% 96%, 20% 99%, 8% 95%, 0% 88%,
    3% 70%, 0% 48%, 4% 28%
  );
  transform: rotate(-1deg);
}

body.page-home .hero-deck {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: 36px;
}

body.page-home .hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--stone);
  flex-wrap: wrap;
}
body.page-home .hero-meta .guest {
  color: var(--ink);
  font-weight: 600;
}
body.page-home .hero-meta .bullet { color: var(--lime); font-weight: 700; }

/* hand-drawn arrow pointing at play button */
body.page-home .arrow-annotation {
  position: absolute;
  bottom: -60px;
  left: 20%;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--forest);
  transform: rotate(-3deg);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ TAGLINE STRIP ============ */
body.page-home .tagline-strip {
  background: var(--ash);
  padding: 22px 40px;
  text-align: center;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--stone);
  border-top: 1px solid rgba(44,44,42,0.05);
  border-bottom: 1px solid rgba(44,44,42,0.05);
}
body.page-home .tagline-strip .sep { color: var(--lime); margin: 0 12px; font-style: normal; }
body.page-home .tagline-strip .num { color: var(--ink); font-weight: 500; font-style: normal; }

/* ============ WHY THIS EXISTS ============ */
body.page-home .why {
  position: relative;
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
body.page-home .why-inner {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 80px;
  align-items: center;
}
body.page-home .why-quote {
  position: relative;
  padding-left: 28px;
  border-left: 4px solid var(--lime);
}
body.page-home .why-quote .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
body.page-home .why-quote blockquote {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-home .why-quote cite {
  display: block;
  margin-top: 24px;
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--stone);
}
body.page-home .why-quote cite strong { color: var(--ink); font-weight: 600; }

/* Cutout photo placeholder */
body.page-home .cutout {
  position: relative;
  background: var(--canary);
  aspect-ratio: 4/5;
  border-radius: 4px;
  transform: rotate(2deg);
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(23,52,4,0.3);
}
body.page-home .cutout::before {
  content: '';
  position: absolute;
  inset: 12% 18% 0% 18%;
  background: linear-gradient(180deg, transparent 20%, rgba(23,52,4,0.85) 100%);
  border-radius: 50% 50% 0 0;
}
body.page-home .cutout::after {
  content: 'photo of parmit · B&W cutout';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: rgba(23,52,4,0.6);
  text-align: center;
  white-space: pre;
}
body.page-home .cutout-tape {
  position: absolute;
  top: -12px; left: 30%;
  width: 60px; height: 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.05);
  transform: rotate(-6deg);
  z-index: 2;
}

/* ============ RECENT EPISODES ============ */
body.page-home .recent {
  padding: 110px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
body.page-home .recent-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
}
body.page-home .recent h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
body.page-home .recent h2 .scribble {
  position: relative;
  display: inline-block;
}
body.page-home .recent h2 .scribble::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  bottom: -4px;
  height: 8px;
  background: var(--lime);
  opacity: 0.85;
  /* hand wavy */
  clip-path: polygon(
    0% 40%, 8% 20%, 16% 60%, 24% 30%, 34% 70%, 44% 25%, 54% 65%,
    66% 30%, 76% 60%, 86% 25%, 94% 60%, 100% 30%,
    100% 100%, 0% 100%
  );
}
body.page-home .see-all {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--canary);
  padding-bottom: 2px;
}
body.page-home .see-all:hover { color: var(--lime); }

body.page-home .ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
body.page-home .ep-card {
  cursor: pointer;
  transition: transform 0.2s;
}
body.page-home .ep-card:nth-child(1) { transform: rotate(-0.7deg); }
body.page-home .ep-card:nth-child(2) { transform: rotate(0.3deg); }
body.page-home .ep-card:nth-child(3) { transform: rotate(-0.4deg); }
body.page-home .ep-card:hover { transform: translateY(-4px) rotate(0deg); }

body.page-home .ep-thumb {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 12px 24px -8px rgba(23,52,4,0.2);
}
body.page-home .ep-thumb.t1 { background: linear-gradient(135deg, #2C2C2A 0%, #4a4a48 100%); }
body.page-home .ep-thumb.t2 { background: linear-gradient(135deg, #173404 0%, #2a5a08 100%); }
body.page-home .ep-thumb.t3 { background: linear-gradient(135deg, #6b3a1e 0%, #8a5530 100%); }
body.page-home .ep-thumb .scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Caveat', cursive;
  color: rgba(255,255,255,0.4);
  font-size: 16px;
}
body.page-home .ep-thumb .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--canary);
  color: var(--forest);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
body.page-home .ep-thumb .duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--mist);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
body.page-home .ep-eyebrow-card {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 6px;
}
body.page-home .ep-title-card {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 8px;
}
body.page-home .ep-meta-card {
  font-size: 13px;
  color: var(--stone);
}

/* ============ PERSONAS ============ */
body.page-home .personas {
  background: var(--mist);
  padding: 110px 40px;
  position: relative;
}
body.page-home .personas-inner {
  max-width: 1100px;
  margin: 0 auto;
}
body.page-home .personas-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 18px;
}
body.page-home .personas h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.95;
  margin-bottom: 18px;
  max-width: 780px;
}
body.page-home .personas h2 em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
body.page-home .personas-deck {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
  max-width: 580px;
  margin-bottom: 48px;
}

body.page-home .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}
body.page-home .pill {
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 1.5px solid rgba(44,44,42,0.08);
  position: relative;
}
body.page-home .pill:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 8px 18px -6px rgba(23,52,4,0.18);
}
body.page-home .pill.amber { background: var(--amber); }
body.page-home .pill.rose { background: var(--rose); }
body.page-home .pill.iris { background: var(--iris); }
body.page-home .pill.sky { background: var(--sky); }
body.page-home .pill.peach { background: var(--peach); }
body.page-home .pill.sage { background: var(--sage); }
body.page-home .pill.lilac { background: var(--lilac); }
body.page-home .pill .arrow { opacity: 0; margin-left: 4px; transition: opacity 0.18s, margin-left 0.18s; display: inline-block; }
body.page-home .pill:hover .arrow { opacity: 1; margin-left: 8px; }

/* Handwritten note next to one pill */
body.page-home .pill-note {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
}
body.page-home .pill-note.note1 {
  bottom: -38px;
  left: 80px;
  transform: rotate(-3deg);
}

/* ============ THE HOST ============ */
body.page-home .host-section {
  position: relative;
  padding: 110px 40px 100px;
  max-width: 1300px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}
body.page-home .host-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 48px;
  display: block;
}
body.page-home .host-section-eyebrow .who {
  color: var(--stone);
  margin-left: 6px;
  font-weight: 500;
}

/* Yellow host card */
body.page-home .host-card {
  background: var(--canary);
  padding: 44px 48px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: center;
  transform: rotate(-0.7deg);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.04),
    0 30px 50px -20px rgba(23,52,4,0.3);
  margin-bottom: 90px;
  position: relative;
}
body.page-home .host-card::before {
  /* tape strip top left */
  content: '';
  position: absolute;
  top: -10px; left: 50px;
  width: 64px; height: 18px;
  background: rgba(234, 243, 222, 0.6);
  border: 1px solid rgba(0,0,0,0.05);
  transform: rotate(-3deg);
}
body.page-home .host-photo {
  aspect-ratio: 1;
  background: var(--forest);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transform: rotate(1.2deg);
}
body.page-home .host-photo::before {
  /* fake B&W silhouette */
  content: '';
  position: absolute;
  inset: 18% 22% 0% 22%;
  background: linear-gradient(180deg, rgba(234,243,222,0.25) 0%, rgba(234,243,222,0.05) 100%);
  border-radius: 50% 50% 0 0;
}
body.page-home .host-photo::after {
  content: 'B&W cutout · parmit';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 13px;
  color: rgba(234, 243, 222, 0.7);
  white-space: nowrap;
}

body.page-home .host-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.95;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
body.page-home .host-name .wave {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave 2.4s ease-in-out infinite;
  margin-right: 4px;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}
body.page-home .host-tagline {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--forest);
  opacity: 0.78;
  margin-bottom: 24px;
  max-width: 480px;
}
body.page-home .host-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body.page-home .host-socials a {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
body.page-home .host-socials a:hover {
  background: var(--forest);
  color: var(--canary);
}

/* Origin story */
body.page-home .host-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  margin-bottom: 90px;
  align-items: start;
}
body.page-home .host-story-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.95;
  color: var(--ink);
  position: sticky;
  top: 100px;
}
body.page-home .host-story-heading em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
body.page-home .host-story-body p {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}
body.page-home .host-pullquote {
  margin: 32px -8px;
  padding: 6px 0 6px 24px;
  border-left: 4px solid var(--lime);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}
body.page-home .host-pullquote .annot {
  display: block;
  margin-top: 10px;
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-size: 18px;
  color: var(--stone);
  font-weight: 400;
}

/* Timeline cards */
body.page-home .timeline-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 28px;
}
body.page-home .timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
body.page-home .timeline-card {
  padding: 30px 28px 32px;
  background: var(--paper);
  border: 1.5px solid rgba(44,44,42,0.08);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
body.page-home .timeline-card:nth-child(1) { transform: rotate(-0.5deg); }
body.page-home .timeline-card:nth-child(2) { transform: rotate(0.4deg); }
body.page-home .timeline-card:nth-child(3) { transform: rotate(-0.3deg); }
body.page-home .timeline-card:hover {
  transform: translateY(-3px) rotate(0);
  box-shadow: 0 14px 28px -10px rgba(23,52,4,0.18);
}
body.page-home .timeline-period {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 14px;
}
body.page-home .timeline-name {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
body.page-home .timeline-desc {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}

/* ============ BE A GUEST BANNER ============ */
body.page-home .guest-banner {
  background: var(--canary);
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
body.page-home .guest-banner::before {
  /* big lime brushstroke decoration bottom-left */
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(30px);
  z-index: 0;
}
body.page-home .guest-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
body.page-home .guest-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 22px;
  opacity: 0.7;
}
body.page-home .guest-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.92;
  color: var(--forest);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
body.page-home .guest-headline em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
}
body.page-home .guest-headline .underline-scribble {
  position: relative;
  display: inline-block;
}
body.page-home .guest-headline .underline-scribble::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%;
  bottom: -2px;
  height: 8px;
  background: var(--forest);
  opacity: 0.85;
  clip-path: polygon(
    0% 40%, 8% 20%, 16% 60%, 24% 30%, 34% 70%, 44% 25%, 54% 65%,
    66% 30%, 76% 60%, 86% 25%, 94% 60%, 100% 30%,
    100% 100%, 0% 100%
  );
}
body.page-home .guest-deck {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--forest);
  opacity: 0.78;
  margin-bottom: 36px;
  max-width: 540px;
}
body.page-home .guest-cta-big {
  background: var(--forest);
  color: var(--canary);
  padding: 20px 34px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  transition: transform 0.15s, background 0.15s;
}
body.page-home .guest-cta-big:hover {
  transform: translateY(-2px);
  background: #0d2002;
}
body.page-home .guest-cta-big .arrow {
  transition: transform 0.15s;
}
body.page-home .guest-cta-big:hover .arrow { transform: translateX(4px); }

/* Right column — sticky-note pitch prompt */
body.page-home .pitch-sticky {
  position: relative;
  background: var(--mist);
  padding: 32px 28px 36px;
  transform: rotate(2.5deg);
  box-shadow:
    2px 2px 0 rgba(0,0,0,0.05),
    0 24px 36px -12px rgba(23,52,4,0.25);
  /* hand-cut edge */
  clip-path: polygon(
    2% 4%, 14% 1%, 32% 3%, 52% 1%, 72% 4%, 88% 2%, 98% 5%,
    96% 22%, 99% 44%, 97% 66%, 100% 84%, 98% 98%,
    82% 96%, 60% 99%, 38% 97%, 18% 99%, 4% 96%,
    1% 80%, 4% 58%, 1% 36%, 3% 18%
  );
}
body.page-home .pitch-sticky::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 48px; height: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}
body.page-home .pitch-sticky .label {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
body.page-home .pitch-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-home .pitch-sticky li {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(44,44,42,0.18);
  line-height: 1.4;
}
body.page-home .pitch-sticky li:last-child { border-bottom: none; }
body.page-home .pitch-sticky li::before {
  content: '☐ ';
  color: var(--lime);
  font-weight: 600;
  margin-right: 6px;
}

/* ============ CHEAT SHEET ============ */
body.page-home .cheatsheet {
  background: var(--forest);
  padding: 90px 40px 100px;
  position: relative;
  overflow: hidden;
}
body.page-home .cheatsheet::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(40px);
}
body.page-home .cheat-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
body.page-home .cheat-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canary);
  font-weight: 600;
  margin-bottom: 20px;
}
body.page-home .cheat-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 0.95;
  color: var(--canary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
body.page-home .cheat-body {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--mist);
  opacity: 0.85;
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 40px;
}
body.page-home .cheat-form {
  display: flex;
  gap: 6px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--mist);
  border-radius: 999px;
  padding: 4px 4px 4px 24px;
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.3);
}
body.page-home .cheat-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: var(--forest);
  padding: 16px 8px;
}
body.page-home .cheat-form input::placeholder {
  color: rgba(23,52,4,0.5);
}
body.page-home .cheat-form button {
  background: var(--canary);
  color: var(--forest);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s;
}
body.page-home .cheat-form button:hover { transform: translateY(-1px); }
body.page-home .cheat-no-spam {
  margin-top: 22px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: rgba(234,243,222,0.65);
}
body.page-home .cheat-no-spam .strike {
  text-decoration: line-through;
  text-decoration-color: var(--canary);
  text-decoration-thickness: 2px;
  opacity: 0.5;
  margin-right: 6px;
}

/* ============ HOME RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.top { padding: 12px 20px; }
  nav.top ul { gap: 18px; }
  nav.top ul li:nth-child(-n+2) { display: none; }
  body.page-home .hero { padding: 50px 20px 60px; }
  body.page-home .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  body.page-home .why { padding: 70px 20px; }
  body.page-home .why-inner { grid-template-columns: 1fr; gap: 50px; }
  body.page-home .cutout { max-width: 280px; margin: 0 auto; }
  body.page-home .recent { padding: 70px 20px; }
  body.page-home .recent-header { flex-direction: column; align-items: start; gap: 16px; margin-bottom: 36px; }
  body.page-home .ep-grid { grid-template-columns: 1fr; gap: 28px; }
  body.page-home .personas { padding: 70px 20px; }
  body.page-home .host-section { padding: 70px 20px; }
  body.page-home .host-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; text-align: center; }
  body.page-home .host-card { transform: rotate(-0.4deg); }
  body.page-home .host-photo { max-width: 200px; margin: 0 auto; }
  body.page-home .host-socials { justify-content: center; }
  body.page-home .host-story { grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
  body.page-home .host-story-heading { position: static; }
  body.page-home .timeline-cards { grid-template-columns: 1fr; gap: 18px; }
  body.page-home .guest-banner { padding: 70px 20px; }
  body.page-home .guest-inner { grid-template-columns: 1fr; gap: 40px; }
  body.page-home .pitch-sticky { max-width: 320px; margin: 0 auto; }
  body.page-home .cheatsheet { padding: 60px 20px 70px; }
  body.page-home .cheat-form { flex-wrap: wrap; border-radius: 16px; padding: 8px; }
  body.page-home .cheat-form input { width: 100%; padding: 14px 12px; }
  body.page-home .cheat-form button { width: 100%; }
}

/* ============================================================
   EPISODES ARCHIVE — scoped under body.page-episodes
   ============================================================ */

/* ============ HEADER ============ */
body.page-episodes .ep-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 40px;
}
body.page-episodes .header-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 20px;
}
body.page-episodes .ep-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
  text-transform: none;
  max-width: 880px;
}
body.page-episodes .ep-title em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
body.page-episodes .ep-count {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
body.page-episodes .ep-count .num { color: var(--ink); font-style: normal; font-weight: 600; font-family: 'Geist', sans-serif; }
body.page-episodes .ep-count .lime-dot { color: var(--lime); font-weight: 700; }

/* ============ FILTERS ============ */
body.page-episodes .filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 36px;
  border-bottom: 1px solid rgba(44,44,42,0.08);
}
body.page-episodes .filter-eyebrow {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 16px;
}
body.page-episodes .filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body.page-episodes .chip {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(44,44,42,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
body.page-episodes .chip:hover { border-color: var(--forest); }
body.page-episodes .chip.active {
  background: var(--forest);
  color: var(--canary);
  border-color: var(--forest);
}
body.page-episodes .chip-count {
  margin-left: 6px;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}
body.page-episodes .chip.active .chip-count { opacity: 0.7; }

/* ============ EPISODE GRID ============ */
body.page-episodes .ep-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

body.page-episodes .ep-card {
  cursor: pointer;
  transition: transform 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
body.page-episodes .ep-card:hover { transform: translateY(-3px); }

/* THUMB — responsive aspect ratio */
body.page-episodes .ep-thumb {
  position: relative;
  aspect-ratio: 1 / 1;          /* mobile: square */
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 14px 28px -10px rgba(23,52,4,0.25);
  transition: box-shadow 0.2s;
}
body.page-episodes .ep-card:hover .ep-thumb {
  box-shadow: 0 22px 38px -12px rgba(23,52,4,0.35);
}

/* thumb backgrounds — distinct gradient per card for visual rhythm */
body.page-episodes .ep-thumb.t1 { background-image: linear-gradient(135deg, #0d2002 0%, #173404 60%, #2a5a08 100%); }
body.page-episodes .ep-thumb.t2 { background-image: linear-gradient(135deg, #3a1f0a 0%, #6b3a1e 60%, #8a5530 100%); }
body.page-episodes .ep-thumb.t3 { background-image: linear-gradient(135deg, #173404 0%, #2a5a08 60%, #4a8570 100%); }
body.page-episodes .ep-thumb.t4 { background-image: linear-gradient(135deg, #1a2c4a 0%, #2c3e5e 60%, #4a5878 100%); }
body.page-episodes .ep-thumb.t5 { background-image: linear-gradient(135deg, #2b1810 0%, #4a2818 60%, #6b3a1e 100%); }
body.page-episodes .ep-thumb.t6 { background-image: linear-gradient(135deg, #3a3a1a 0%, #5a5a2a 60%, #7a7a3a 100%); }

body.page-episodes .ep-thumb::after {
  /* film grain on every thumb */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
body.page-episodes .ep-thumb .scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Caveat', cursive;
  color: rgba(234, 243, 222, 0.35);
  font-size: 16px;
  z-index: 1;
}

/* persona pill on thumb */
body.page-episodes .persona-pill {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
  z-index: 3;
  backdrop-filter: blur(4px);
}
body.page-episodes .persona-pill.amber  { background: var(--amber); }
body.page-episodes .persona-pill.rose   { background: var(--rose); }
body.page-episodes .persona-pill.iris   { background: var(--iris); }
body.page-episodes .persona-pill.sky    { background: var(--sky); }
body.page-episodes .persona-pill.peach  { background: var(--peach); }
body.page-episodes .persona-pill.sage   { background: var(--sage); }
body.page-episodes .persona-pill.lilac  { background: var(--lilac); }

/* play button */
body.page-episodes .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--canary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
}
body.page-episodes .ep-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
body.page-episodes .play-btn svg { margin-left: 4px; }

/* duration badge */
body.page-episodes .duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--mist);
  padding: 4px 9px;
  border-radius: 4px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  z-index: 3;
}

/* "just dropped" sticky note for the latest ep only */
body.page-episodes .just-dropped {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--canary);
  padding: 6px 14px 8px;
  transform: rotate(4deg);
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--forest);
  font-weight: 700;
  z-index: 4;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.3);
  clip-path: polygon(
    2% 8%, 22% 2%, 48% 6%, 72% 1%, 96% 5%,
    94% 30%, 98% 60%, 96% 92%, 78% 98%,
    52% 94%, 28% 99%, 6% 96%, 2% 70%, 6% 40%
  );
}

/* CARD TEXT */
body.page-episodes .ep-card-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 10px;
}
body.page-episodes .ep-card-eyebrow .sep { color: var(--lime); margin: 0 6px; }

body.page-episodes .ep-card-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(22px, 1.9vw, 27px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}
body.page-episodes .ep-card:hover .ep-card-title { color: var(--forest); }

/* Episode deck — 2-line excerpt under the title */
body.page-episodes .ep-card-deck {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--stone);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* GUEST ROW */
body.page-episodes .guest-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(44,44,42,0.08);
}
body.page-episodes .guest-avatar {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--mist);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}
body.page-episodes .guest-avatar::before {
  /* persona-coloured ring */
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
}
body.page-episodes .guest-avatar.amber::before { border-color: var(--amber); }
body.page-episodes .guest-avatar.rose::before  { border-color: var(--rose); }
body.page-episodes .guest-avatar.iris::before  { border-color: var(--iris); }
body.page-episodes .guest-avatar.sky::before   { border-color: var(--sky); }
body.page-episodes .guest-avatar.peach::before { border-color: var(--peach); }
body.page-episodes .guest-avatar.sage::before  { border-color: var(--sage); }
body.page-episodes .guest-avatar.lilac::before { border-color: var(--lilac); }

body.page-episodes .guest-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
body.page-episodes .guest-name {
  font-family: 'Geist', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
body.page-episodes .guest-role {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--stone);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============ PAGINATION ============ */
body.page-episodes .pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
body.page-episodes .pagination button,
body.page-episodes .pagination a {
  background: transparent;
  border: 1.5px solid rgba(44,44,42,0.12);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  min-width: 44px;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
body.page-episodes .pagination button:hover:not([disabled]) { border-color: var(--forest); }
body.page-episodes .pagination button[disabled] { opacity: 0.4; cursor: not-allowed; }
body.page-episodes .pagination .current {
  background: var(--forest);
  color: var(--canary);
  border-color: var(--forest);
}
body.page-episodes .pagination .arrow { padding: 10px 14px; }
body.page-episodes .pagination .dots {
  border: none;
  cursor: default;
  padding: 10px 8px;
  color: var(--stone);
}
body.page-episodes .pagination .dots:hover { border: none; }

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

/* Tablet+ : 2-column grid + 16:9 thumbnails */
@media (min-width: 768px) {
  body.page-episodes .ep-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px 40px;
  }
  body.page-episodes .ep-thumb {
    aspect-ratio: 16 / 9;
  }
}

/* Wider desktops — slightly more breathing room */
@media (min-width: 1100px) {
  body.page-episodes .ep-grid { gap: 64px 48px; }
}

/* Very wide — 3 columns so cards don't get marooned */
@media (min-width: 1400px) {
  body.page-episodes .ep-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px 40px;
    max-width: 1400px;
  }
}

/* Mobile-only fixes */
@media (max-width: 767px) {
  nav.top { padding: 12px 20px; }
  nav.top ul { gap: 18px; }
  nav.top ul li:nth-child(-n+2) { display: none; }
  body.page-episodes .ep-header { padding: 50px 20px 30px; }
  body.page-episodes .filters { padding: 0 20px 28px; position: relative; }
  body.page-episodes .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-right: -20px;
    padding-right: 20px;
  }
  body.page-episodes .filter-chips::-webkit-scrollbar { display: none; }
  /* fade hint on right edge so people know more chips exist */
  body.page-episodes .filters::after {
    content: '';
    position: absolute;
    right: 0; bottom: 36px;
    width: 28px;
    height: 40px;
    background: linear-gradient(to right, transparent, var(--paper));
    pointer-events: none;
  }
  body.page-episodes .ep-grid { padding: 36px 20px 60px; gap: 36px; }
  body.page-episodes .pagination { padding: 10px 20px 70px; flex-wrap: wrap; }
  body.page-episodes .play-btn { width: 56px; height: 56px; }
}

/* ============================================================
   BLOG — scoped under body.page-blog
   ============================================================ */

/* ============ HEADER (compact, not a hero) ============ */
body.page-blog .blog-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 40px 60px;
}
body.page-blog .header-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 20px;
}
body.page-blog .blog-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
  text-transform: none;
}
/* Yellow blob standing in for the period */
body.page-blog .blog-title .dot {
  position: relative;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: -0.05em;
}
body.page-blog .blog-title .dot::before {
  content: '';
  position: absolute;
  inset: 18% 0% 8% 0%;
  background: var(--canary);
  clip-path: polygon(
    14% 18%, 38% 4%, 62% 12%, 86% 2%, 96% 24%,
    92% 48%, 100% 72%, 86% 92%, 62% 96%, 38% 100%,
    14% 88%, 4% 64%, 8% 38%
  );
  transform: rotate(-6deg);
}
body.page-blog .blog-intro {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--stone);
  max-width: 640px;
}

/* ============ FEATURED (loud register moment) ============ */
body.page-blog .featured {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 40px;
}
body.page-blog .featured-card {
  position: relative;
  background: var(--forest);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding: 56px 56px 60px;
  align-items: center;
  box-shadow: 0 30px 50px -20px rgba(23, 52, 4, 0.35);
  background-image: linear-gradient(135deg, #0d2002 0%, #173404 60%, #1d4406 100%);
}
body.page-blog .featured-card::after {
  /* paper grain on the forest */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* sticky note "featured" tag */
body.page-blog .featured-tag {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--canary);
  padding: 8px 18px 10px;
  transform: rotate(-4deg);
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: var(--forest);
  font-weight: 700;
  z-index: 3;
  box-shadow:
    2px 2px 0 rgba(0,0,0,0.06),
    0 10px 18px -8px rgba(0,0,0,0.4);
  clip-path: polygon(
    2% 8%, 22% 2%, 48% 6%, 72% 1%, 96% 5%,
    94% 30%, 98% 60%, 96% 92%, 78% 98%,
    52% 94%, 28% 99%, 6% 96%, 2% 70%, 6% 40%
  );
}
body.page-blog .featured-tag::before {
  /* small tape */
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 30px; height: 10px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.6);
}

body.page-blog .featured-text { position: relative; z-index: 2; }
body.page-blog .featured-type {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--canary);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-block;
}
body.page-blog .featured-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  color: var(--mist);
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
body.page-blog .featured-title em {
  font-style: italic;
  color: var(--canary);
  font-weight: 500;
}
body.page-blog .featured-deck {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(234, 243, 222, 0.78);
  margin-bottom: 28px;
  max-width: 520px;
}
body.page-blog .featured-meta {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: rgba(234, 243, 222, 0.65);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
body.page-blog .featured-meta .author { color: var(--mist); font-weight: 500; }
body.page-blog .featured-meta .lime-bullet { color: var(--canary); font-weight: 700; }
body.page-blog .featured-read {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--canary);
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--canary);
  transition: gap 0.2s;
}
body.page-blog .featured-read:hover { gap: 16px; }

/* faux cover image right */
body.page-blog .featured-cover {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--canary);
  border-radius: 6px;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  z-index: 2;
}
body.page-blog .featured-cover::before {
  content: '';
  position: absolute;
  inset: 12% 16%;
  background: var(--forest);
  border-radius: 4px;
  opacity: 0.15;
}
body.page-blog .featured-cover::after {
  content: '— cover illustration —';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: rgba(23, 52, 4, 0.6);
}
body.page-blog .featured-cover .label {
  position: absolute;
  top: 20px; left: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ============ FILTER CHIPS ============ */
body.page-blog .filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(44,44,42,0.08);
}
body.page-blog .filter-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
body.page-blog .filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body.page-blog .chip {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(44,44,42,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-weight: 500;
}
body.page-blog .chip:hover { border-color: var(--forest); }
body.page-blog .chip.active {
  background: var(--forest);
  color: var(--canary);
  border-color: var(--forest);
}
body.page-blog .chip-count {
  margin-left: 6px;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

/* ============ GRID ============ */
body.page-blog .post-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 48px;
}

body.page-blog .post-card {
  position: relative;
  cursor: pointer;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(44,44,42,0.08);
  transition: padding 0.2s;
}
body.page-blog .post-card:hover { padding-left: 12px; }
body.page-blog .post-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 0;
  background: var(--lime);
  transition: height 0.25s cubic-bezier(0.65,0,0.35,1);
}
body.page-blog .post-card:hover::before { height: calc(100% - 28px); }

/* Image placeholder — editorial cover treatment */
body.page-blog .post-image {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.65,0,0.35,1);
}
body.page-blog .post-card:hover .post-image { transform: scale(1.015); }
body.page-blog .post-image::after {
  /* subtle paper grain for texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
body.page-blog .post-image .cover-word {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--forest);
  opacity: 0.85;
  z-index: 1;
  padding: 0 20px;
}
body.page-blog .post-image .cover-word .strike {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: rgba(23, 52, 4, 0.5);
}
body.page-blog .post-image .cover-masthead {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.5;
  font-weight: 600;
  z-index: 2;
}
body.page-blog .post-image .cover-caption {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: var(--forest);
  opacity: 0.5;
  z-index: 2;
}

/* colour variants — flat brand palette tints */
body.page-blog .post-image.amber  { background: var(--amber); }
body.page-blog .post-image.iris   { background: var(--iris); }
body.page-blog .post-image.peach  { background: #FDE4D4; }
body.page-blog .post-image.sky    { background: var(--sky); }
body.page-blog .post-image.sage   { background: #DDEDD9; }
body.page-blog .post-image.ash    { background: var(--ash); }
body.page-blog .post-image.mist   { background: var(--mist); }
/* dark variant — flips text colour */
body.page-blog .post-image.forest {
  background: var(--forest);
  background-image: linear-gradient(135deg, #0d2002 0%, #173404 60%, #1d4406 100%);
}
body.page-blog .post-image.forest .cover-word,
body.page-blog .post-image.forest .cover-masthead,
body.page-blog .post-image.forest .cover-caption {
  color: var(--canary);
  opacity: 0.7;
}
body.page-blog .post-image.forest .cover-masthead { opacity: 0.45; }

body.page-blog .post-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
body.page-blog .post-type {
  /* TYPE: neutral, small caps */
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
body.page-blog .post-access {
  /* ACCESS: semantic colour */
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}
body.page-blog .post-access.free {
  background: var(--mist);
  color: var(--forest);
}
body.page-blog .post-access.members {
  background: var(--rose);
  color: #8B2950;
}
body.page-blog .post-access.members::before {
  content: '◆ ';
  font-size: 10px;
  opacity: 0.6;
}

body.page-blog .post-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.page-blog .post-deck {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--stone);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.page-blog .post-byline {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
body.page-blog .post-byline .author { color: var(--ink); font-weight: 500; }
body.page-blog .post-byline .sep { color: var(--lime); font-weight: 700; }
body.page-blog .post-companion {
  margin-top: 10px;
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--lime);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body.page-blog .post-companion:hover { color: var(--forest); }

/* ============ PAGINATION ============ */
body.page-blog .pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
body.page-blog .pagination button,
body.page-blog .pagination a {
  background: transparent;
  border: 1.5px solid rgba(44,44,42,0.12);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  min-width: 44px;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
body.page-blog .pagination button:hover,
body.page-blog .pagination a:hover { border-color: var(--forest); }
body.page-blog .pagination .current {
  background: var(--forest);
  color: var(--canary);
  border-color: var(--forest);
}
body.page-blog .pagination .arrow { padding: 10px 14px; }
body.page-blog .pagination .dots { border: none; cursor: default; padding: 10px 8px; color: var(--stone); }
body.page-blog .pagination .dots:hover { border: none; }

/* ============ BLOG RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.top { padding: 12px 20px; }
  nav.top ul { gap: 18px; }
  nav.top ul li:nth-child(-n+2) { display: none; }
  body.page-blog .blog-header { padding: 60px 20px 40px; }
  body.page-blog .featured { padding: 0 20px; margin-bottom: 50px; }
  body.page-blog .featured-card { grid-template-columns: 1fr; gap: 30px; padding: 50px 28px 36px; }
  body.page-blog .featured-tag { top: -12px; left: 20px; font-size: 17px; padding: 6px 14px; }
  body.page-blog .filters { padding: 0 20px 28px; }
  body.page-blog .post-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px 60px; }
  body.page-blog .post-card:hover { padding-left: 0; }
  body.page-blog .post-card::before { display: none; }
  body.page-blog .pagination { padding: 10px 20px 70px; flex-wrap: wrap; }
}

/* ── Be-a-guest modal (Task 11) ─────────────────────────────────────────── */
.guest-modal-overlay{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;
  background:rgba(23,52,4,.45);backdrop-filter:blur(4px);padding:20px;}
.guest-modal-overlay[hidden]{display:none;}
.guest-modal{background:var(--paper);max-width:440px;width:100%;border-radius:8px;padding:32px 28px;
  position:relative;box-shadow:0 30px 60px -20px rgba(23,52,4,.5);transform:rotate(-.6deg);}
.guest-modal-close{position:absolute;top:12px;right:16px;background:none;border:0;font-size:26px;
  line-height:1;color:var(--stone);cursor:pointer;}
.gm-input{width:100%;padding:12px 14px;margin-bottom:12px;border:1.5px solid rgba(44,44,42,.18);
  border-radius:6px;font-family:'Geist',sans-serif;font-size:15px;color:var(--ink);background:#fff;}
.gm-input:focus{outline:none;border-color:var(--forest);}
