/* ═══════════════════════════════════════════════════════════
   MacSays — Stylesheet v3
   Aesthetic: EY-inspired · Black canvas · Yellow as punctuation
   Layout: 12-column grid · Full-bleed sections · Asymmetric
═══════════════════════════════════════════════════════════ */

:root {
  /* Palette — EY-inspired */
  --black: #0a0a0a;            /* true black background */
  --black-2: #161616;          /* lifted black for layered surfaces */
  --black-3: #1f1f1f;          /* card surfaces */
  --yellow: #ffe600;           /* EY signature yellow */
  --yellow-soft: #f7d600;      /* hover state */
  --white: #ffffff;            /* primary text */
  --grey-1: #c4c4c4;           /* secondary text — high readability */
  --grey-2: #8c8c8c;           /* tertiary / muted */
  --grey-3: #404040;           /* borders / rules */
  --grey-4: #2a2a2a;           /* subtle borders */
  --teal: #2dd4bf;             /* link / secondary accent */
  --teal-deep: #14b8a6;        /* hover */

  /* Typography */
  --display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-7: 3.5rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;

  /* Type scale — mobile defaults */
  --fs-xxl: clamp(3rem, 12vw, 9rem);   /* hero display */
  --fs-xl:  clamp(2.2rem, 7vw, 5rem);  /* section title */
  --fs-lg:  clamp(1.6rem, 4.5vw, 2.6rem);
  --fs-md:  clamp(1.3rem, 3.5vw, 1.7rem);
  --fs-body: clamp(1rem, 2.4vw, 1.1rem);
  --fs-sm: 0.88rem;
  --fs-xs: 0.72rem;

  /* Other */
  --container-max: 1440px;
  --grid-gutter: clamp(1rem, 3vw, 2rem);
  --rail-width: 64px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Base */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-feature-settings: "kern" 1, "ss01" 1;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--black); }

/* ═══ Container & Grid ═══ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
  position: relative;
}

.full-bleed { width: 100%; padding: 0 var(--grid-gutter); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

/* Span helpers */
.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 12; }
.col-span-7 { grid-column: span 12; }
.col-span-6 { grid-column: span 12; }
.col-span-5 { grid-column: span 12; }
.col-span-4 { grid-column: span 12; }
.col-span-3 { grid-column: span 12; }

@media (min-width: 768px) {
  .col-span-8 { grid-column: span 8; }
  .col-span-7 { grid-column: span 7; }
  .col-span-6 { grid-column: span 6; }
  .col-span-5 { grid-column: span 5; }
  .col-span-4 { grid-column: span 4; }
  .col-span-3 { grid-column: span 6; }
}

@media (min-width: 1100px) {
  .col-span-3 { grid-column: span 3; }
}

.col-start-2 { grid-column-start: 1; }
.col-start-3 { grid-column-start: 1; }
@media (min-width: 768px) {
  .col-start-2 { grid-column-start: 2; }
  .col-start-3 { grid-column-start: 3; }
}

/* ═══ Typography ═══ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
}

h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); font-weight: 700; }

p { margin-bottom: 1.2em; line-height: 1.7; }

.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }

a.link {
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  transition: color var(--transition);
}
a.link:hover { color: var(--yellow); }

em, i { font-style: italic; }
strong { font-weight: 700; color: var(--white); }

.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.eyebrow-plain {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}

.text-yellow { color: var(--yellow); }
.text-teal { color: var(--teal); }
.text-grey { color: var(--grey-1); }
.text-muted { color: var(--grey-2); }

/* ═══ Logo (artistic, dark variant) ═══ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover .logo-mark { transform: rotate(-3deg); }

.logo-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-wordmark .says {
  font-style: italic;
  font-weight: 700;
  color: var(--yellow);
}

@media (min-width: 768px) {
  .logo-mark { width: 40px; height: 40px; }
  .logo-wordmark { font-size: 1.55rem; }
}

/* ═══ Navigation ═══ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-4);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--grid-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.nav-links {
  display: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-1);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.nav-link:hover { color: var(--white); }

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  color: var(--white);
  border-radius: 4px;
  transition: background var(--transition);
}

.mobile-menu-btn:hover { background: var(--black-3); }

.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--black);
  border-bottom: 1px solid var(--grey-4);
  padding: var(--space-2) 0;
}

.nav-links.mobile-open .nav-link {
  padding: 1rem var(--grid-gutter);
  width: 100%;
  border-bottom: 1px solid var(--grey-4);
  font-size: 1rem;
}

.nav-links.mobile-open .nav-link:last-child {
  border-bottom: none;
}

@media (min-width: 920px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ═══ Hero — full-canvas, 12-col grid ═══ */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-10);
  border-bottom: 1px solid var(--grey-4);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: var(--space-12) 0 var(--space-16); }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  align-items: end;
}

.hero-main {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .hero-main { grid-column: 1 / 9; }
}

.hero-side {
  grid-column: 1 / -1;
  margin-top: var(--space-5);
}

@media (min-width: 1024px) {
  .hero-side { 
    grid-column: 9 / 13;
    margin-top: 0;
  }
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--display);
  font-size: var(--fs-xxl);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-4);
  font-weight: 800;
}

.hero-title .accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-deck {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.5;
  color: var(--grey-1);
  max-width: 55ch;
  margin-bottom: var(--space-4);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-3);
}

@media (min-width: 600px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
}

/* Hero side panel */
.hero-panel {
  background: var(--black-2);
  border: 1px solid var(--grey-4);
  border-left: 4px solid var(--yellow);
  padding: var(--space-3);
}

@media (min-width: 768px) {
  .hero-panel { padding: var(--space-4); }
}

.hero-panel-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.hero-panel-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.hero-panel-deck {
  font-size: 0.95rem;
  color: var(--grey-1);
  margin-bottom: 1.3rem;
  line-height: 1.55;
}

.hero-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--grey-4);
  font-weight: 500;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  min-height: 50px;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-arrow::after {
  content: ' →';
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ═══ Sections ═══ */
.section {
  padding: var(--space-10) 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section { padding: var(--space-16) 0; }
}

.section-divider { border-top: 1px solid var(--grey-4); }
.section-lifted { background: var(--black-2); }

.section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  margin-bottom: var(--space-6);
  align-items: end;
}

.section-header-content {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .section-header-content { grid-column: 1 / 9; }
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: 0.98;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.section-deck {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--grey-1);
  line-height: 1.55;
  font-weight: 300;
  max-width: 60ch;
}

/* ═══ Three Layers — full-bleed numbered grid ═══ */
.layers-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
}

@media (min-width: 768px) {
  .layers-row { grid-template-columns: repeat(3, 1fr); }
}

.layer-item {
  padding: var(--space-5) var(--space-3);
  border-right: 1px solid var(--grey-4);
  position: relative;
  transition: background var(--transition);
}

.layer-item:last-child { border-right: none; }

@media (max-width: 767px) {
  .layer-item { 
    border-right: none; 
    border-bottom: 1px solid var(--grey-4);
  }
  .layer-item:last-child { border-bottom: none; }
}

.layer-item:hover { background: var(--black-2); }

.layer-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.layer-title {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.025em;
  color: var(--white);
}

.layer-text {
  font-size: 0.97rem;
  color: var(--grey-1);
  line-height: 1.65;
  max-width: 38ch;
}

/* ═══ Episode Rows — Substack-style horizontal lists ═══ */
.episode-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-4);
}

.episode-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--grey-4);
  transition: background var(--transition);
  position: relative;
}

@media (min-width: 768px) {
  .episode-row {
    grid-template-columns: 80px 1fr 200px;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-3);
    align-items: start;
  }
  .episode-row::after {
    content: '→';
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--grey-2);
    transition: all var(--transition);
  }
  .episode-row:hover::after {
    color: var(--yellow);
    transform: translateY(-50%) translateX(6px);
  }
}

.episode-row:hover { background: var(--black-2); }

.episode-row-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-weight: 600;
  padding-top: 0.4rem;
}

.episode-row-content {
  min-width: 0;
}

@media (min-width: 768px) {
  .episode-row-content { padding-right: var(--space-3); }
}

.episode-row-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.episode-row-deck {
  font-size: 1rem;
  color: var(--grey-1);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.episode-row-body {
  font-size: 0.92rem;
  color: var(--grey-2);
  line-height: 1.6;
}

.episode-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
  padding-top: 0.4rem;
}

/* ═══ Pull Quote — full-bleed bold statement ═══ */
.pull-quote-block {
  padding: var(--space-10) 0;
  border-top: 2px solid var(--yellow);
  border-bottom: 1px solid var(--grey-4);
  background: var(--black-2);
}

.pull-quote-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

.pull-quote-content {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .pull-quote-content { grid-column: 2 / 11; }
}

.pull-quote-text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.pull-quote-text .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.pull-quote-attr {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}

/* ═══ Stat row ═══ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
}

@media (min-width: 768px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-cell {
  padding: var(--space-4) var(--space-3);
  border-right: 1px solid var(--grey-4);
}

.stat-cell:last-child { border-right: none; }

@media (max-width: 767px) {
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--grey-4); }
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-1);
  font-weight: 500;
}

/* ═══ Thinkers — compact reference grid ═══ */
.thinkers-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--grey-4);
}

@media (min-width: 600px) {
  .thinkers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .thinkers-grid { grid-template-columns: repeat(4, 1fr); }
}

.thinker {
  padding: var(--space-3);
  border-right: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  transition: background var(--transition);
}

.thinker:hover { background: var(--black-2); }

@media (min-width: 600px) and (max-width: 1023px) {
  .thinker:nth-child(2n) { border-right: none; }
}

@media (min-width: 1024px) {
  .thinker:nth-child(4n) { border-right: none; }
}

@media (max-width: 599px) {
  .thinker { border-right: none; }
}

.thinker-role {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.thinker-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.thinker-contrib {
  font-size: 0.85rem;
  color: var(--grey-2);
  line-height: 1.55;
}

/* ═══ About section ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-8);
    align-items: start;
  }
}

.about-mark {
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 100%);
  color: var(--white);
  padding: var(--space-5);
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--grey-4);
  border-left: 4px solid var(--yellow);
  overflow: hidden;
}

.about-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,230,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.about-mark > * { position: relative; z-index: 1; }

.about-mark-name {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-mark-tag {
  font-size: 0.95rem;
  color: var(--grey-1);
  line-height: 1.45;
}

.about-mark-initial {
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--white);
  font-style: italic;
}

.about-content h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}

.about-content h2 .accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-1);
}

.about-content p strong { color: var(--white); }

/* ═══ Footer ═══ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--grey-4);
  padding: var(--space-6) 0 var(--space-3);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-6);
  }
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.footer-tag {
  color: var(--grey-2);
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--grey-1);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid var(--grey-4);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--grey-2);
  text-align: center;
}

/* ═══════════════════════════════════════════
   ARTICLE / ESSAY PAGES
═══════════════════════════════════════════ */

.article {
  padding: var(--space-6) 0 var(--space-12);
}

.article-header-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  border-bottom: 1px solid var(--grey-4);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
}

.article-header-content {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .article-header-content { grid-column: 1 / 10; }
}

.article-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.article-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--yellow);
}

.article-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-3);
  font-weight: 800;
}

.article-deck {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.45;
  color: var(--grey-1);
  max-width: 60ch;
  margin-bottom: var(--space-4);
  font-weight: 300;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
  padding-top: var(--space-2);
}

.article-meta .by-mac { color: var(--yellow); font-weight: 600; }

/* ═══ Audio Player — repositioned, EY-style ═══ */
.audio-player {
  background: var(--black-2);
  border: 1px solid var(--grey-4);
  border-left: 4px solid var(--yellow);
  padding: var(--space-3);
  margin: var(--space-5) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 768px) {
  .audio-player {
    padding: var(--space-3) var(--space-4);
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
  }
}

.audio-player-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.audio-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.audio-icon svg { width: 20px; height: 20px; }

.audio-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 2px;
}

.audio-title {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.audio-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--black-3);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--grey-4);
  min-height: 38px;
  white-space: nowrap;
}

.audio-btn:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.audio-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.audio-btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.audio-btn-primary:hover:not(:disabled) {
  background: var(--white);
  border-color: var(--white);
}

.audio-rate-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}

.audio-rate-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  text-transform: uppercase;
}

.audio-rate-select {
  background: var(--black-3);
  color: var(--white);
  border: 1px solid var(--grey-4);
  padding: 0.4rem 0.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 0;
}

.audio-rate-select:focus {
  outline: none;
  border-color: var(--yellow);
}

.audio-rate-select option { background: var(--black); }

.audio-status {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  font-weight: 500;
  white-space: nowrap;
}

/* ═══ Article body — wider, more confident ═══ */
.article-body-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
}

.article-body {
  grid-column: 1 / -1;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.75;
  color: var(--grey-1);
}

@media (min-width: 1024px) {
  .article-body { grid-column: 2 / 10; }
}

.article-body h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin: var(--space-6) 0 var(--space-3);
  letter-spacing: -0.025em;
  color: var(--white);
  font-weight: 800;
  line-height: 1.05;
}

.article-body h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: var(--space-5) 0 var(--space-2);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.015em;
}

.article-body p {
  margin-bottom: 1.5em;
}

.article-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.15rem 0.7rem 0 0;
  color: var(--yellow);
  font-style: italic;
}

.article-body blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  line-height: 1.25;
  border-left: 4px solid var(--yellow);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: var(--space-4) 0;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.article-body strong {
  background: linear-gradient(180deg, transparent 65%, rgba(255,230,0,0.3) 65%);
  padding: 0 2px;
  color: var(--white);
}

.article-body em { color: var(--white); }

.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.7rem;
}

.article-body a.link {
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
}
.article-body a.link:hover { color: var(--teal); }

/* Callouts */
.callout {
  background: var(--black-2);
  border: 1px solid var(--grey-4);
  border-left: 4px solid var(--yellow);
  padding: 1.5rem 1.8rem;
  margin: var(--space-4) 0;
}

.callout-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.callout p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--white);
}

/* ═══ Animations ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.delay-1 { animation-delay: 0.08s; opacity: 0; }
.delay-2 { animation-delay: 0.18s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }


/* ════════════════════════════════════════════════════════════════
   HOMEPAGE — v2 redesign
   Mobile-first. Centered hero with asymmetric balance,
   featured cover story, series-as-cards grid.
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.home-hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--grey-3);
  text-align: center;
  position: relative;
}
@media (min-width: 720px) { .home-hero { padding: 5rem 0 4rem; } }
@media (min-width: 1080px) { .home-hero { padding: 6.5rem 0 5rem; } }

.home-hero-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}
.home-hero-stamp::before,
.home-hero-stamp::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--grey-3);
  margin: 0 1rem;
}
.home-hero-stamp-label { color: var(--yellow); font-weight: 700; }
@media (min-width: 720px) { .home-hero-stamp { font-size: 0.7rem; padding: 0; } }

.home-hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 auto 1.5rem;
  max-width: 17ch;
  padding: 0 0.5rem;
}
.home-hero-title em { font-style: italic; color: var(--yellow); font-weight: 400; }

.home-hero-deck {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: var(--grey-1);
  max-width: 52ch;
  margin: 0 auto;
  padding: 0 1rem;
  font-weight: 400;
}

.home-hero-meta {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  flex-wrap: wrap;
}
.home-hero-meta span { display: flex; align-items: center; gap: 0.4rem; }
.home-hero-meta span::before {
  content: "•";
  color: var(--yellow);
  font-size: 1rem;
  line-height: 0;
}
.home-hero-meta span:first-child::before { display: none; }
@media (min-width: 720px) { .home-hero-meta { font-size: 0.7rem; gap: 1.5rem; } }

/* ─── FEATURED COVER STORY ─── */
.home-featured {
  padding: 3rem 0;
  border-bottom: 1px solid var(--grey-3);
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}
@media (min-width: 720px) { .home-featured { padding: 4.5rem 0; } }

.home-featured-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.home-featured-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--yellow);
}
@media (min-width: 720px) { .home-featured-eyebrow { font-size: 0.7rem; } }

.home-featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--black-3);
  border: 1px solid var(--grey-4);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
}
.home-featured-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.home-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 860px) { .home-featured-grid { grid-template-columns: 5fr 7fr; } }

.home-featured-visual {
  padding: 2rem 1.8rem;
  border-bottom: 1px solid var(--grey-4);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,230,0,0.08) 0%, transparent 55%),
    var(--black-3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
@media (min-width: 860px) {
  .home-featured-visual {
    border-bottom: none;
    border-right: 1px solid var(--grey-4);
    padding: 2.8rem 2.5rem;
    min-height: 320px;
  }
}
.home-featured-card:hover .home-featured-visual {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,230,0,0.14) 0%, transparent 60%),
    var(--black-3);
}

.home-featured-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 7rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.home-featured-series {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-1);
  font-weight: 600;
}
.home-featured-series strong { color: var(--white); font-weight: 700; }
@media (min-width: 720px) { .home-featured-series { font-size: 0.68rem; } }

.home-featured-content { padding: 1.8rem 1.8rem 2rem; }
@media (min-width: 860px) {
  .home-featured-content {
    padding: 2.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.home-featured-title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 1rem;
}
.home-featured-deck {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
  color: var(--grey-1);
  margin: 0 0 1.4rem;
}
.home-featured-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--grey-4);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.home-featured-meta { color: var(--grey-2); font-weight: 500; }
.home-featured-cta {
  color: var(--yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-featured-cta::after {
  content: "→";
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.2s ease;
}
.home-featured-card:hover .home-featured-cta::after { transform: translateX(4px); }
@media (min-width: 720px) { .home-featured-foot { font-size: 0.7rem; } }

/* ─── SERIES SECTION ─── */
.home-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-3);
}
@media (min-width: 720px) { .home-section { padding: 5rem 0; } }
@media (min-width: 1080px) { .home-section { padding: 6rem 0; } }

.home-section-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 720px) { .home-section-header { margin-bottom: 3.5rem; } }

.home-section-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.home-section-eyebrow::before,
.home-section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--yellow);
}
@media (min-width: 720px) { .home-section-eyebrow { font-size: 0.72rem; } }

.home-section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.home-section-title em { font-style: italic; color: var(--yellow); font-weight: 500; }

/* ─── SERIES GRID ─── */
.home-series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .home-series-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1080px) { .home-series-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.home-series-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--black-3);
  border: 1px solid var(--grey-4);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  min-height: 320px;
}
.home-series-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.home-series-card.coming-soon {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}
.home-series-card.coming-soon:hover {
  transform: none;
  border-color: var(--grey-4);
}

.home-series-visual {
  padding: 2rem 1.8rem 1.5rem;
  border-bottom: 1px solid var(--grey-4);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,230,0,0.07) 0%, transparent 55%),
    var(--black-3);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 130px;
}
.home-series-card:hover .home-series-visual {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,230,0,0.13) 0%, transparent 60%),
    var(--black-3);
}
.home-series-card.coming-soon .home-series-visual {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,230,0,0.04) 0%, transparent 55%),
    var(--black-3);
}

.home-series-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 700;
}
.home-series-num.upcoming { color: var(--yellow); }

.home-series-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
}
.home-series-name em { font-style: italic; color: var(--yellow); font-weight: 500; }

.home-series-content {
  padding: 1.5rem 1.8rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-series-deck {
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--grey-1);
  margin: 0 0 1.4rem;
  flex: 1;
}

.home-series-episodes {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  border-top: 1px solid var(--grey-4);
}
.home-series-episodes li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grey-4);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--grey-1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.home-series-episodes li:last-child { border-bottom: none; }
.home-series-episodes .ep-num {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6rem;
  min-width: 32px;
}

.home-series-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-4);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-series-meta { color: var(--grey-2); font-weight: 500; }
.home-series-cta {
  color: var(--yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.home-series-cta::after {
  content: "→";
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}
.home-series-card:hover .home-series-cta::after { transform: translateX(4px); }
.home-series-card.coming-soon .home-series-cta { color: var(--grey-2); }
.home-series-card.coming-soon .home-series-cta::after { content: "·"; }

/* ─── ABOUT STRIP ─── */
.home-about {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-3);
  text-align: center;
}
@media (min-width: 720px) { .home-about { padding: 5rem 0; } }

.home-about-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.home-about-label::before,
.home-about-label::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--yellow);
}

.home-about-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.45;
  color: var(--white);
  font-weight: 400;
  max-width: 56ch;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
.home-about-text strong { font-style: normal; color: var(--yellow); font-weight: 600; }

.home-about-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 3px;
}
.home-about-link:hover { color: var(--white); border-bottom-color: var(--white); }


/* ════════════════════════════════════════════════════════════════
   HOMEPAGE — Featured Series block (replaces Featured Essay)
   Series header on top, episode mini-cards below, CTA at bottom.
   Mobile-first: stacks single column; desktop adapts to 2/3/4 episodes.
   ════════════════════════════════════════════════════════════════ */

.home-featured-series-card {
  background: var(--black-3);
  border: 1px solid var(--grey-4);
  border-radius: 8px;
  overflow: hidden;
}

/* Series header at the top of the featured block */
.home-featured-header {
  padding: 2rem 1.8rem 1.8rem;
  border-bottom: 1px solid var(--grey-4);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,230,0,0.06) 0%, transparent 60%),
    var(--black-3);
  text-align: center;
}
@media (min-width: 720px) { .home-featured-header { padding: 3rem 2.5rem 2.5rem; } }
@media (min-width: 1080px) { .home-featured-header { padding: 3.5rem 3rem 2.8rem; } }

.home-featured-stamp {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-1);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.home-featured-stamp::before,
.home-featured-stamp::after {
  content: "—";
  color: var(--yellow);
  margin: 0 0.6rem;
  font-weight: 400;
}

.home-featured-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1.2rem;
}
.home-featured-name em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

.home-featured-deck {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
  color: var(--grey-1);
  max-width: 60ch;
  margin: 0 auto 1.5rem;
}

.home-featured-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}
.home-featured-stats span { display: flex; align-items: center; gap: 0.4rem; }
.home-featured-stats span::before {
  content: "•";
  color: var(--yellow);
  font-size: 1rem;
  line-height: 0;
}
.home-featured-stats span:first-child::before { display: none; }
.home-featured-stats strong { color: var(--white); font-weight: 700; }
@media (min-width: 720px) { .home-featured-stats { font-size: 0.7rem; gap: 1.5rem; } }

/* Episode mini-cards grid */
.home-featured-episodes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
/* Different layouts based on episode count */
@media (min-width: 720px) {
  .home-featured-episodes[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
  .home-featured-episodes[data-count="3"] { grid-template-columns: 1fr; }
  .home-featured-episodes[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .home-featured-episodes[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
  .home-featured-episodes[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .home-featured-episodes[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
}

.home-featured-ep {
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--grey-4);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  position: relative;
}
.home-featured-ep:last-child { border-bottom: 1px solid var(--grey-4); }
.home-featured-ep:hover { background: var(--black-2); }

/* Borders between mini-cards on grid layouts */
@media (min-width: 720px) {
  .home-featured-episodes[data-count="2"] .home-featured-ep:nth-child(1),
  .home-featured-episodes[data-count="4"] .home-featured-ep:nth-child(odd) {
    border-right: 1px solid var(--grey-4);
  }
  .home-featured-episodes[data-count="4"] .home-featured-ep:nth-child(1),
  .home-featured-episodes[data-count="4"] .home-featured-ep:nth-child(2) {
    border-bottom: 1px solid var(--grey-4);
  }
  .home-featured-episodes[data-count="4"] .home-featured-ep:nth-child(3),
  .home-featured-episodes[data-count="4"] .home-featured-ep:nth-child(4) {
    border-bottom: 1px solid var(--grey-4);
  }
}
@media (min-width: 1080px) {
  .home-featured-episodes[data-count="3"] .home-featured-ep:not(:last-child) {
    border-right: 1px solid var(--grey-4);
    border-bottom: 1px solid var(--grey-4);
  }
}

@media (min-width: 720px) {
  .home-featured-ep { padding: 2rem 2rem; flex-direction: column; gap: 1rem; }
}
@media (min-width: 1080px) {
  .home-featured-ep { padding: 2.4rem 2.2rem; }
}

.home-featured-ep-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  min-width: 50px;
}
@media (min-width: 720px) {
  .home-featured-ep-num { font-size: 3.2rem; min-width: 0; }
}
@media (min-width: 1080px) {
  .home-featured-ep-num { font-size: 3.6rem; }
}

.home-featured-ep-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-featured-ep-eyebrow {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.home-featured-ep-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 0.6rem;
}
.home-featured-ep:hover .home-featured-ep-title { color: var(--yellow); }

.home-featured-ep-deck {
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--grey-1);
  margin: 0 0 1rem;
  flex: 1;
}

.home-featured-ep-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--grey-4);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-featured-ep-meta { color: var(--grey-2); font-weight: 500; }
.home-featured-ep-cta {
  color: var(--yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.home-featured-ep-cta::after {
  content: "→";
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform 0.2s ease;
}
.home-featured-ep:hover .home-featured-ep-cta::after { transform: translateX(4px); }

/* CTA bar at bottom */
.home-featured-cta-bar {
  padding: 1.5rem 1.8rem;
  text-align: center;
  background: var(--black-2);
}
@media (min-width: 720px) { .home-featured-cta-bar { padding: 1.8rem 2rem; } }

.home-featured-series-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.home-featured-series-cta:hover { background: var(--yellow); color: var(--black); }
