/* ============ Mid-Market Edge — Sans / White / Navy / Green ============ */

:root {
  /* Brand — only these three colors are allowed (plus opacity-derived shades of navy) */
  --navy: #133253;
  --green: #2AAE4B;
  --white: #FFFFFF;

  /* Derived (tonal variants of navy only) */
  --ink: #133253;
  --ink-soft: rgba(19, 50, 83, 0.72);
  --muted:    rgba(19, 50, 83, 0.55);
  --faint:    rgba(19, 50, 83, 0.35);
  --rule:     rgba(19, 50, 83, 0.14);
  --rule-soft:rgba(19, 50, 83, 0.08);
  --tint:     rgba(19, 50, 83, 0.04);
  --tint-2:   rgba(19, 50, 83, 0.07);
  --green-soft: rgba(42, 174, 75, 0.12);

  /* Type — sans only */
  --display: "Geist", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --body:    "Geist", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Scale */
  --container: 1280px;
  --container-narrow: 980px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* ============ Typography ============ */

.display { font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; text-wrap: balance; }
.eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
}
.label-mono {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}
.kicker .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: inline-block; }

h1.display { font-size: clamp(44px, 6.4vw, 92px); font-weight: 700; }
h2.display { font-size: clamp(32px, 4.2vw, 56px); font-weight: 600; }
h3.display { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; }

.accent { color: var(--green); }

p.lede { font-size: 20px; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; max-width: 56ch; }

/* ============ Top bar / Nav ============ */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--white) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 38px; width: auto; }
.brand-meta {
  display: flex; flex-direction: column; line-height: 1.05;
  border-left: 1px solid var(--rule); padding-left: 14px;
}
.brand-meta .t1 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.brand-meta .t2 { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--navy); margin-top: 3px; letter-spacing: -0.01em; }
.brand-meta .t2 em { font-style: normal; color: var(--green); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-md);
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--green);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid var(--navy);
  transition: background .15s;
}
.nav-cta:hover { background: var(--green); border-color: var(--green); }
.nav-cta svg { width: 14px; height: 14px; }

/* ============ Hero ============ */

.hero { padding: 64px 0 28px; position: relative; }
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px; margin-bottom: 56px;
  gap: 24px; flex-wrap: wrap;
}
.hero-top .left { display: flex; align-items: center; gap: 24px; }
.issue {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.issue strong { color: var(--navy); font-weight: 600; }
.hero-headline {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px;
  align-items: end;
}
.hero-headline h1 {
  margin: 0;
  color: var(--navy);
}
.hero-headline h1 .accent { color: var(--green); }
.hero-side {
  border-left: 1px solid var(--rule); padding-left: 32px;
}
.hero-side p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.55; max-width: 38ch; }
.hero-side .actions { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-size: 13.5px; font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .15s;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-accent { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-accent:hover { filter: brightness(.92); }
.btn svg { width: 14px; height: 14px; }

/* ============ Featured episode ============ */

.featured { padding: 24px 0 80px; }
.featured-frame {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.featured-art {
  background: var(--navy);
  position: relative; min-height: 540px;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
  overflow: hidden;
}
.featured-art::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 85% 8%, rgba(42, 174, 75, 0.22), transparent 60%),
    radial-gradient(500px 380px at 0% 100%, rgba(255, 255, 255, 0.04), transparent 55%);
}
.featured-art::after {
  /* subtle dot grid */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .5;
  pointer-events: none;
}
.featured-art > * { position: relative; }
.featured-art .art-rail {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.featured-art .art-rail .pill {
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; color: var(--white);
}
.featured-art .art-rail .pill .pip { display:inline-block; width:6px; height:6px; border-radius:50%; background: var(--green); margin-right:8px; vertical-align: middle; }
.featured-art .art-center {
  display: flex; flex-direction: column; align-items: flex-start; gap: 28px;
}
.featured-art .ep-number {
  font-family: var(--display); font-size: 124px; line-height: 0.86; letter-spacing: -0.04em;
  color: var(--white); font-weight: 600;
}
.featured-art .ep-number small {
  display: block; font-size: 13px; font-weight: 500; font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px; line-height: 1;
}
.featured-art .ep-title {
  font-family: var(--display); font-weight: 600; font-size: 38px; line-height: 1.08; max-width: 18ch; color: var(--white);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.featured-art .ep-title .accent { color: var(--green); }
.featured-art .art-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.featured-art .host-chip { display: flex; align-items: center; gap: 12px; }
.featured-art .host-chip .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  font-family: var(--display); color: var(--white); font-size: 13px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.featured-art .host-chip .meta { display: flex; flex-direction: column; line-height: 1.15; }
.featured-art .host-chip .meta .n { font-size: 13px; font-weight: 500; }
.featured-art .host-chip .meta .r { font-size: 11px; color: rgba(255,255,255,0.65); }

.featured-body {
  padding: 48px 48px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
  background: var(--white);
}
.featured-body .tag-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 12px;
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-weight: 500;
}
.tag.series { color: var(--navy); border-color: var(--rule); }
.tag.fresh { color: var(--green); border-color: color-mix(in oklab, var(--green) 40%, transparent); background: var(--green-soft); }
.tag.fresh .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

.featured-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
  line-height: 1.08;
}
.featured-body .guest {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
}
.featured-body .guest .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--white); display: grid; place-items: center;
  font-family: var(--display); font-size: 14px; font-weight: 600;
}
.featured-body .guest .who { line-height: 1.2; }
.featured-body .guest .who .name { font-weight: 600; color: var(--ink); }
.featured-body .guest .who .role { font-size: 13px; color: var(--muted); }

.featured-body .summary { color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 54ch; }

.player {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.player.playing {
  padding: 0; border-radius: var(--r-md); overflow: hidden; gap: 0;
  background: var(--navy);
}
.player.playing iframe { display: block; width: 100%; }
.player .play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  border: none;
  display: grid; place-items: center;
  transition: background .15s;
  flex-shrink: 0;
}
.player .play-btn:hover { filter: brightness(.93); }
.player .play-btn svg { width: 16px; height: 16px; }
.player .track { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.player .meta-line {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  gap: 16px;
}
.player .meta-line strong { color: var(--ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player .scrub {
  height: 3px; background: var(--rule); border-radius: 999px; position: relative; overflow: hidden;
}
.player .scrub::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 12%;
  background: var(--green); border-radius: 999px;
}
.player .platforms {
  display: flex; gap: 6px;
}
.player .platforms a {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint); color: var(--navy);
  transition: all .15s;
}
.player .platforms a:hover { background: var(--navy); color: var(--white); }
.player .platforms svg { width: 14px; height: 14px; }

/* ============ Three-column highlights ============ */

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 36px;
  gap: 24px; flex-wrap: wrap;
}
.section-head h2 { margin: 0; color: var(--navy); }
.section-head .meta-right { display: flex; align-items: center; gap: 16px; color: var(--muted); }

.three-col {
  padding: 60px 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.col-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.col-card:last-child { border-right: none; }
.col-card .col-media {
  position: relative;
  margin: -36px -32px 22px;
  height: 158px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}
.col-card .col-media image-slot { width: 100%; height: 100%; display: block; }
/* Production: locked plain <img> in every media container (baked photos). */.col-media img, .about-hero-media img, .cell-media img, .series-media img,
.contact-media img, .card-media img, .reason-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.col-card .num {
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--green); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.col-card h3 { margin: 0; color: var(--navy); font-size: 22px; line-height: 1.2; font-weight: 600; letter-spacing: -0.015em; }
.col-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ============ Series section ============ */

.series-section { padding: 80px 0; }
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.series-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.series-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(19, 50, 83, 0.06); }
.series-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
  width: fit-content;
  background: var(--tint);
  color: var(--navy);
  font-weight: 500;
}
.series-card .badge .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.series-card.alt .badge { background: var(--navy); color: var(--white); }
.series-card.alt .badge .pip { background: var(--green); }
.series-card h3 {
  font-family: var(--display); font-size: 36px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--navy); margin: 0; line-height: 1.05;
}
.series-card h3 .accent { color: var(--green); }
.series-card p { color: var(--ink-soft); margin: 0; font-size: 15.5px; line-height: 1.6; }
.series-card .stats {
  display: flex; gap: 24px; padding-top: 18px; border-top: 1px solid var(--rule);
  margin-top: 6px;
}
.series-card .stats div { display: flex; flex-direction: column; }
.series-card .stats .v { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.series-card .stats .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.series-card .arrow {
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--rule);
  display: grid; place-items: center; color: var(--navy);
  transition: all .15s;
}
.series-card:hover .arrow { background: var(--green); color: var(--white); border-color: var(--green); }
.series-card .arrow svg { width: 14px; height: 14px; }

/* ============ Host strip ============ */

.host-strip {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  background: var(--white);
}
.host-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center;
}
.host-photo {
  width: 320px; height: 380px;
  background: var(--navy);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  overflow: hidden; position: relative;
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-photo .ph {
  font-family: var(--display); font-size: 72px; font-weight: 700; color: var(--green);
}
.host-text h2 { margin: 0 0 10px; color: var(--navy); font-size: clamp(34px, 3.6vw, 50px); font-weight: 700; letter-spacing: -0.03em; }
.host-text .subtitle { color: var(--green); font-family: var(--display); font-weight: 500; font-size: 17px; margin-bottom: 22px; letter-spacing: -0.005em; }
.host-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 60ch; margin: 0 0 14px; }
.host-text .credits {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.host-text .credits .pill {
  padding: 6px 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--rule); border-radius: 999px; color: var(--ink-soft); background: var(--white);
}

/* ============ Newsletter ============ */

.newsletter {
  padding: 90px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 380px at 90% 0%, rgba(42, 174, 75, 0.18), transparent 60%);
}
.newsletter > * { position: relative; }
.newsletter-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.newsletter h2 { color: var(--white); margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(36px, 4.2vw, 56px); letter-spacing: -0.025em; line-height: 1.05; }
.newsletter h2 .accent { color: var(--green); }
.newsletter p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.55; max-width: 50ch; margin: 18px 0 0; }
.newsletter .eyebrow { color: var(--green); }
.newsletter-form {
  display: flex; flex-direction: column; gap: 14px;
}
.newsletter-form .field {
  display: flex; gap: 0; background: var(--white); border-radius: 999px; padding: 6px;
}
.newsletter-form input {
  flex: 1; border: none; background: transparent; padding: 12px 18px;
  font-family: var(--body); font-size: 15px; color: var(--ink); outline: none;
}
.newsletter-form button {
  padding: 12px 22px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: filter .15s;
}
.newsletter-form button:hover { filter: brightness(.93); }
.newsletter-form .note {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============ Footer ============ */

footer.site-foot {
  padding: 56px 0 32px;
  background: var(--white);
  border-top: 1px solid var(--rule);
}
footer .row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
footer .colophon p { color: var(--ink-soft); font-size: 14px; max-width: 36ch; margin: 12px 0 0; }
footer h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px; font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer ul a { font-size: 14px; color: var(--ink-soft); }
footer ul a:hover { color: var(--green); }
footer .legal {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* ============ Episodes page specific ============ */

.episodes-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--rule);
}
.episodes-hero .row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end;
}
.episodes-hero h1 { color: var(--navy); margin: 18px 0 0; font-size: clamp(44px, 5.6vw, 80px); font-weight: 700; letter-spacing: -0.03em; }
.episodes-hero h1 .accent { color: var(--green); }
.episodes-hero .stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 18px 0 0;
}
.episodes-hero .stats .stat { display: flex; flex-direction: column; gap: 4px; padding-right: 16px; border-right: 1px solid var(--rule); }
.episodes-hero .stats .stat:last-child { border-right: none; }
.episodes-hero .stats .v { font-family: var(--display); font-size: 42px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.episodes-hero .stats .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.filters {
  position: sticky; top: 70px; z-index: 30;
  background: color-mix(in oklab, var(--white) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.filters .inner {
  max-width: var(--container); margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filters .chip-row { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.chip .count {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  padding: 1px 6px;
  background: var(--tint); color: var(--ink-soft); border-radius: 999px;
}
.chip.active .count { background: var(--green); color: var(--white); }
.filters .search {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  min-width: 240px;
}
.filters .search:focus-within { border-color: var(--green); }
.filters .search input {
  border: none; outline: none; background: transparent;
  font-family: var(--body); font-size: 13px; color: var(--ink); flex: 1;
}
.filters .search svg { width: 14px; height: 14px; color: var(--muted); }

.series-banner {
  padding: 48px 0 24px;
}
.series-banner .marker {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.series-banner .marker .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 4px 10px; border: 1px solid var(--navy); color: var(--navy); border-radius: 4px;
}
.series-banner h2 {
  margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(28px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.025em;
}
.series-banner h2 .accent { color: var(--green); }
.series-banner .meta {
  margin-left: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.series-banner .desc {
  margin: 18px 0 28px;
  color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 70ch;
}

.episode-list { padding-bottom: 48px; }
.ep-row {
  display: grid; grid-template-columns: 80px 1fr 220px 110px;
  gap: 28px; align-items: center;
  padding: 22px 16px;
  border-bottom: 1px solid var(--rule-soft);
  cursor: pointer;
  transition: background .15s;
  border-radius: 6px;
}
.ep-row:hover { background: var(--tint); }
.ep-row .num-col {
  display: flex; flex-direction: column; gap: 4px;
}
.ep-row .ep-no {
  font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.03em;
}
.ep-row .date {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.ep-row .title-col h3 {
  margin: 0; color: var(--navy); font-family: var(--display); font-size: 21px; line-height: 1.2; font-weight: 600; letter-spacing: -0.02em;
  text-wrap: balance;
}
.ep-row .title-col .desc {
  margin: 6px 0 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; max-width: 64ch;
}
.ep-row .guest-col { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ep-row .guest-col .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-family: var(--display); font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.ep-row .guest-col .who { line-height: 1.2; min-width: 0; }
.ep-row .guest-col .name { font-size: 13.5px; font-weight: 500; color: var(--ink); display: block; }
.ep-row .guest-col .role { font-size: 11.5px; color: var(--muted); display: block; overflow: hidden; text-overflow: ellipsis; }
.ep-row .play-col {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
}
.ep-row .duration { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); }
.ep-row .play-btn-sm {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--rule);
  color: var(--navy);
  display: grid; place-items: center;
  transition: all .15s;
}
.ep-row:hover .play-btn-sm { background: var(--green); color: var(--white); border-color: var(--green); }
.ep-row .play-btn-sm svg { width: 12px; height: 12px; }

.ep-row.featured-row {
  background: var(--tint);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  position: relative;
  margin-bottom: 14px;
}
.ep-row.featured-row::before {
  content: "Latest";
  position: absolute; top: -10px; left: 24px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--green); color: var(--white); border-radius: 3px;
}

.empty-state {
  padding: 80px 32px; text-align: center;
  color: var(--muted);
}
.empty-state h3 { font-family: var(--display); color: var(--navy); font-size: 28px; margin: 0 0 8px; font-weight: 600; letter-spacing: -0.02em; }

/* ============ Drawer (episode detail) ============ */

.drawer-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(19, 50, 83, 0.32);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(640px, 92vw); z-index: 101;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(19, 50, 83, 0.18);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.drawer-head .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.drawer-head .crumb strong { color: var(--navy); }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent;
  display: grid; place-items: center; color: var(--ink);
}
.drawer-close:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.drawer-body { padding: 32px; overflow-y: auto; flex: 1; }
.drawer-body h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; color: var(--navy); margin: 10px 0 18px; font-size: 32px; line-height: 1.12; }
.drawer-body .guest-block {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: var(--tint); border-radius: var(--r-md);
  margin-bottom: 22px;
}
.drawer-body .guest-block .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-family: var(--display); font-size: 16px; font-weight: 600;
}
.drawer-body .guest-block .name { font-weight: 600; color: var(--ink); font-size: 16px; }
.drawer-body .guest-block .role { font-size: 13px; color: var(--muted); }
.drawer-body .meta-row {
  display: flex; gap: 24px; padding: 14px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.drawer-body .meta-row .item { display: flex; flex-direction: column; gap: 4px; }
.drawer-body .meta-row .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.drawer-body .meta-row .v { font-size: 14px; color: var(--ink); font-weight: 500; }
.drawer-body .desc-full { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin: 0 0 24px; }
.drawer-player { margin: 0 0 24px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--rule); background: var(--navy); }
.drawer-player iframe { display: block; width: 100%; }
.drawer-player.is-cta { background: var(--tint); border-color: var(--rule); }
.player-tabs {
  display: inline-flex; gap: 4px; margin: 0 0 14px;
  padding: 4px; background: var(--tint); border-radius: 999px;
}
.player-tabs .ptab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: none; background: transparent;
  border-radius: 999px;
  font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.player-tabs .ptab svg { width: 15px; height: 15px; }
.player-tabs .ptab.active { background: var(--navy); color: var(--white); }
.player-tabs .ptab:not(.active):hover { color: var(--navy); }
.watch-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 32px 24px;
  color: var(--ink-soft);
}
.watch-cta svg { width: 32px; height: 32px; color: var(--muted); }
.watch-cta .t { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.watch-cta .watch-go {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 500;
  transition: background .15s;
}
.watch-cta .watch-go:hover { background: var(--green); }
.watch-cta .watch-go svg { width: 13px; height: 13px; color: currentColor; }
.drawer-body h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  color: var(--muted); margin: 24px 0 12px;
}
.drawer-body .topic-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.drawer-body .topic-list .t {
  padding: 6px 12px; background: var(--white); border: 1px solid var(--rule); border-radius: 999px;
  font-size: 12.5px; color: var(--ink-soft);
}
.drawer-body .listen-row {
  display: flex; gap: 8px; margin-top: 28px;
}
.drawer-body .listen-row a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md);
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: all .15s;
}
.drawer-body .listen-row a:hover { border-color: var(--navy); color: var(--navy); }
.drawer-body .listen-row a.primary { background: var(--green); color: var(--white); border-color: var(--green); }
.drawer-body .listen-row a.primary:hover { filter: brightness(.92); }

/* ============ Generic page hero ============ */

.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end;
}
.page-hero h1 { color: var(--navy); margin: 18px 0 0; font-size: clamp(44px, 5.6vw, 84px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; }
.page-hero h1 .accent { color: var(--green); }
.page-hero .lede { margin: 22px 0 0; }
.page-hero .right-rail { padding-left: 32px; border-left: 1px solid var(--rule); }
.page-hero .right-rail h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px; font-weight: 500;
}
.page-hero .right-rail p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; max-width: 36ch; }

/* ============ Manifesto / pull section ============ */

.manifesto {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.manifesto .quote {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--navy);
  max-width: 22ch;
  text-wrap: balance;
}
.manifesto .quote .accent { color: var(--green); }
.manifesto .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.manifesto .principles { display: grid; gap: 28px; }
.manifesto .principles .principle {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.manifesto .principles .principle:last-child { border-bottom: none; padding-bottom: 0; }
.manifesto .principles .num {
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--green);
  letter-spacing: 0.12em;
}
.manifesto .principles h3 { margin: 0 0 6px; color: var(--navy); font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.manifesto .principles p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

/* ============ Big stats strip ============ */

.stats-strip {
  padding: 60px 0;
  border-bottom: 1px solid var(--rule);
}
.stats-strip .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats-strip .item {
  padding: 0 32px;
  border-right: 1px solid var(--rule);
}
.stats-strip .item:first-child { padding-left: 0; }
.stats-strip .item:last-child { border-right: none; padding-right: 0; }
.stats-strip .v { font-family: var(--display); font-size: clamp(40px, 4vw, 56px); font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.035em; }
.stats-strip .v .unit { font-size: 0.5em; color: var(--green); margin-left: 4px; vertical-align: baseline; }
.stats-strip .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 14px; display: block; }

/* ============ Topics grid (about) ============ */

.topics-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.topics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.topics-grid .cell {
  padding: 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.topics-grid .cell .icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--tint); color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.topics-grid .cell .icon svg { width: 18px; height: 18px; }
.topics-grid .cell h4 { margin: 0; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--navy); letter-spacing: -0.015em; }
.topics-grid .cell p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ============ Host detail (about) ============ */

.host-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}
.host-detail .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.host-detail .text h2 { margin: 8px 0 6px; font-family: var(--display); font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--navy); letter-spacing: -0.03em; line-height: 1.04; }
.host-detail .text .title { color: var(--green); font-weight: 500; font-size: 17px; margin-bottom: 32px; }
.host-detail .text p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin: 0 0 18px; max-width: 60ch; }
.host-detail .photo-stack { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.host-detail .photo-stack .big {
  width: 100%; aspect-ratio: 4/5;
  background: var(--navy); border-radius: var(--r-lg); overflow: hidden;
  display: grid; place-items: center;
}
.host-detail .photo-stack .big img { width: 100%; height: 100%; object-fit: cover; }
.host-detail .photo-stack .big .ph { font-family: var(--display); font-size: 96px; font-weight: 700; color: var(--green); }
.host-detail .photo-stack .caption {
  padding: 16px 18px;
  border: 1px solid var(--rule); border-radius: var(--r-md);
  background: var(--white);
}
.host-detail .photo-stack .caption .ti {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.host-detail .photo-stack .caption .by { color: var(--navy); font-weight: 600; margin-top: 4px; font-size: 15px; }
.host-detail .timeline { margin-top: 36px; display: grid; gap: 0; }
.host-detail .timeline .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 18px 0; border-top: 1px solid var(--rule);
}
.host-detail .timeline .row:last-child { border-bottom: 1px solid var(--rule); }
.host-detail .timeline .yr { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.08em; }
.host-detail .timeline .row .what strong { color: var(--navy); font-weight: 600; }
.host-detail .timeline .row .what { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ============ Contact ============ */

.contact-section {
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-form h2 { margin: 0 0 6px; font-family: var(--display); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--navy); }
.contact-form .sub { color: var(--ink-soft); margin: 0 0 28px; font-size: 14.5px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body); font-size: 14.5px; color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--rule); border-radius: var(--r-md); background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.field-grid + .field-grid { margin-top: 16px; }
.contact-form .submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; gap: 16px; flex-wrap: wrap;
}
.contact-form .privacy {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.contact-form .submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy); border-radius: 999px;
  font-family: var(--body); font-size: 14px; font-weight: 500;
  transition: background .15s, border-color .15s;
}
.contact-form .submit-btn:hover { background: var(--green); border-color: var(--green); }
.contact-form .submit-btn svg { width: 14px; height: 14px; }
.contact-form .submit-btn:disabled { background: var(--green); border-color: var(--green); cursor: default; opacity: 0.85; }

.form-msg {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px; line-height: 1.5;
  background: rgba(42, 174, 75, 0.1);
  color: var(--navy);
}
.form-msg.form-err {
  background: rgba(180, 40, 40, 0.08);
  color: #9a2a2a;
}

.contact-aside {
  display: flex; flex-direction: column; gap: 18px;
}
.info-card {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--white);
}
.info-card.dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.info-card.dark .label { color: var(--green); }
.info-card.dark h3 { color: var(--white); }
.info-card.dark p { color: rgba(255,255,255,0.7); }
.info-card .label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--green); margin-bottom: 10px;
}
.info-card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--navy); }
.info-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.info-card .big-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em;
  color: var(--navy);
}
.info-card.dark .big-link { color: var(--white); }
.info-card .big-link:hover { color: var(--green); }
.info-card .big-link svg { width: 14px; height: 14px; }
.info-card .meta-list {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 14px;
}
.info-card .meta-list .item {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-top: 1px solid var(--rule);
  font-size: 13.5px;
}
.info-card.dark .meta-list .item { border-top-color: rgba(255,255,255,0.14); }
.info-card .meta-list .k { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.info-card.dark .meta-list .k { color: rgba(255,255,255,0.55); }
.info-card .meta-list .v { color: var(--ink); font-weight: 500; }
.info-card.dark .meta-list .v { color: var(--white); }

.reasons-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
}
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.reason-card {
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
}
.reason-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.reason-card .icon svg { width: 18px; height: 18px; }
.reason-card h3 { margin: 0; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--navy); letter-spacing: -0.015em; }
.reason-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; flex: 1; }
.reason-card .to {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); font-weight: 500;
}

/* ============ Responsive ============ */

@media (max-width: 1000px) {
  .hero-headline { grid-template-columns: 1fr; gap: 28px; }
  .hero-side { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 28px; }
  .featured-frame { grid-template-columns: 1fr; }
  .featured-art { min-height: 360px; padding: 32px; }
  .featured-art .ep-number { font-size: 88px; }
  .featured-art .ep-title { font-size: 28px; }
  .featured-body { padding: 32px; }
  .three-col { grid-template-columns: 1fr; }
  .col-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .col-card:last-child { border-bottom: none; }
  .series-grid { grid-template-columns: 1fr; }
  .host-grid { grid-template-columns: 1fr; gap: 32px; }
  .host-photo { width: 100%; max-width: 360px; height: 320px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 28px; }
  footer .row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .episodes-hero .row { grid-template-columns: 1fr; gap: 28px; }
  .ep-row { grid-template-columns: 60px 1fr 100px; gap: 16px; }
  .ep-row .guest-col { display: none; }
  .page-hero .row { grid-template-columns: 1fr; gap: 28px; }
  .page-hero .right-rail { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 24px; }
  .manifesto .grid { grid-template-columns: 1fr; gap: 40px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .host-detail .grid { grid-template-columns: 1fr; gap: 40px; }
  .host-detail .photo-stack { position: static; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-strip .grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .stats-strip .item { padding: 0 20px; }
  .stats-strip .item:nth-child(2) { border-right: none; }
  .stats-strip .item:nth-child(3) { padding-left: 0; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .brand-meta { display: none; }
  .nav-cta span { display: none; }
  .ep-row { grid-template-columns: 50px 1fr 60px; gap: 12px; padding: 18px 12px; }
  .ep-row .duration { display: none; }
  .ep-row .title-col h3 { font-size: 17px; }
  .ep-row .title-col .desc { font-size: 13px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .filters .search { display: none; }
  footer .row { grid-template-columns: 1fr; }
  .player { flex-wrap: wrap; }
  .topics-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ============ About-page image slots (tweakable) ============ */

.about-hero-band {
  border-bottom: 1px solid var(--rule);
}
.about-hero-media {
  position: relative;
  width: 100%;
  height: var(--about-hero-h, 440px);
  overflow: hidden;
  background: var(--navy);
}
.about-hero-media image-slot { width: 100%; height: 100%; display: block; }
.about-hero-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: flex-end;
  padding-bottom: 44px;
  background:
    linear-gradient(90deg, rgba(19,50,83,0.82) 0%, rgba(19,50,83,0.45) 40%, rgba(19,50,83,0) 72%),
    linear-gradient(0deg, rgba(10,24,48,0.55), rgba(10,24,48,0) 55%);
  pointer-events: none;
}
.about-hero-overlay .about-hero-quote {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  max-width: 22ch;
  margin: 12px 0 14px;
  text-wrap: balance;
}
.about-hero-overlay .about-hero-by {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
body.hide-hero-image .about-hero-band { display: none; }

/* Topic cell media banner */
.topics-grid .cell { position: relative; }
.cell-media {
  position: relative;
  margin: -32px -32px 4px;
  height: var(--topic-img-h, 150px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--navy);
}
.cell-media .inner-clip {
  position: absolute; inset: 0;
  border-radius: 0;
  overflow: hidden;
}
.cell-media image-slot { width: 100%; height: 100%; display: block; }
/* The icon becomes a floating badge over the image. */
.topics-grid .cell-media .icon {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  margin: 0;
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(19, 50, 83, 0.22);
  pointer-events: none;
}
body.hide-icon-badge .cell-media .icon { display: none; }

/* Navy duotone wash to keep imagery on-brand. */
body.img-duotone .cell-media::after,
body.img-duotone .about-hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: var(--navy);
  mix-blend-mode: color;
  opacity: 0.62;
  pointer-events: none;
}
body.img-duotone .cell-media::before,
body.img-duotone .about-hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(19,50,83,0.35));
  pointer-events: none;
}

#tweaks-root { position: fixed; z-index: 2147483646; }

.series-card { overflow: hidden; }
.series-card .series-media {
  position: relative;
  margin: -32px -32px 4px;
  height: 180px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}
.series-card .series-media image-slot { width: 100%; height: 100%; display: block; }
/* Arrow floats over the photo as a white chip. */
.series-card .arrow {
  z-index: 4;
  background: var(--white);
  border-color: transparent;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(19, 50, 83, 0.22);
}
.series-card:hover .arrow { background: var(--green); color: var(--white); border-color: var(--green); }
.series-card.alt .badge { position: relative; z-index: 2; }

/* ============ Contact-page imagery ============ */
.contact-band { border-bottom: 1px solid var(--rule); }
.contact-media {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
}
.contact-media image-slot { width: 100%; height: 100%; display: block; }

/* Header image inside an info card. */
.info-card { overflow: hidden; }
.info-card .card-media {
  position: relative;
  margin: -28px -28px 20px;
  height: 150px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}
.info-card .card-media image-slot { width: 100%; height: 100%; display: block; }

/* Banner image on reason cards, with the icon as a floating badge. */
.reason-card { overflow: hidden; padding-top: 0; }
.reason-card .reason-media {
  position: relative;
  margin: 0 -28px 18px;
  height: 132px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}
.reason-card .reason-media image-slot { width: 100%; height: 100%; display: block; }
.reason-card .reason-media .icon {
  position: absolute; left: 16px; bottom: -20px; z-index: 3;
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 14px rgba(19, 50, 83, 0.22);
}
.reason-card h3 { margin-top: 20px; }
