:root {
  --bg: #f0f8f2;
  --bg-elev: #e2f0e6;
  --bg-card: #ffffff;
  --fg: #132218;
  --fg-dim: #4a7558;
  --accent: #1d6e3f;
  --accent-2: #2a9655;
  --accent-warm: #c9831a;
  --border: rgba(26, 110, 63, 0.14);
  --radius: 16px;
  --max-w: 1400px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(1100px 700px at 72% -10%, rgba(155, 215, 175, 0.5), transparent 65%),
    radial-gradient(750px 550px at -5% 65%, rgba(140, 205, 165, 0.28), transparent 65%),
    radial-gradient(500px 380px at 90% 90%, rgba(215, 175, 100, 0.18), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

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

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* Header */
.site-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(29, 110, 63, 0.2);
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--fg-dim);
}

.site-nav a:hover { color: var(--fg); }

.site-nav a.is-active {
  color: var(--fg);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-hall {
  background: var(--accent-warm);
  color: #ffffff !important;
  padding: 5px 13px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-hall:hover {
  background: #b5721a !important;
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Hero */
.hero {
  max-width: var(--max-w);
  margin: 56px auto 88px;
  padding: 0 32px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 0;
}

.hero-content {
  padding-right: 32px;
}

.hero-deco {
  width: 440px;
  height: 520px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-deco svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-deco {
    display: none;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 300;
  font-family: 'Space Grotesk', sans-serif;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  max-width: 18ch;
}

.accent {
  color: var(--accent);
  font-weight: 700;
  background-image: linear-gradient(transparent 62%, rgba(201, 131, 26, 0.22) 62%, rgba(201, 131, 26, 0.22) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding: 0 0.04em;
}

.lede {
  margin: 28px 0 36px;
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent-warm);
  color: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(201, 131, 26, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover { background: #b5721a; }
.btn-primary:hover::after { opacity: 1; }

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 0.08s ease;
}

.btn-ghost {
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn-ghost:hover { background: rgba(29, 110, 63, 0.06); }

/* Stats strip — tinted panel */
.stats-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: calc(var(--max-w) - 64px);
  margin: 0 auto 96px;
  padding: 36px 24px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 30px -18px rgba(29, 110, 63, 0.18);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 8px 16px;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.025em;
  position: relative;
}

.stat-value::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent-warm);
  border-radius: 2px;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.stat-plus {
  color: var(--accent);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 500;
}

.stat-label {
  font-size: 11.5px;
  color: var(--fg-dim);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  max-width: 22ch;
}

/* Player */
.player-section {
  max-width: var(--max-w);
  margin: 0 auto 96px;
  padding: 0 32px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--fg-dim);
  font-size: 15px;
}

.latest-ep-tagline {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.5;
}

.latest-ep-tagline strong {
  color: var(--fg);
  font-weight: 600;
}

.latest-ep-tagline a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.latest-ep-tagline a:hover { color: var(--fg); }

/* Rich latest-episode block */
.latest-ep {
  margin-bottom: 32px;
  max-width: 78ch;
}

.latest-ep-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 14px;
}

.latest-ep-eyebrow {
  color: var(--accent);
  font-weight: 500;
}

.latest-ep-sep {
  opacity: 0.5;
}

.latest-ep-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  line-height: 1.1;
}

.latest-ep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.latest-ep-desc {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
}

.latest-ep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.latest-ep-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.latest-ep-link:hover {
  color: var(--accent-warm);
  border-color: var(--accent-warm);
}

.latest-ep-link-muted {
  color: var(--fg-dim);
  border-color: transparent;
  border-bottom-style: dashed;
  border-bottom-color: var(--border);
}

.latest-ep-link-muted:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-dim);
}

/* Creators section */
.creators-section {
  position: relative;
  max-width: calc(var(--max-w) - 64px);
  margin: 0 auto 96px;
  background:
    radial-gradient(800px 320px at 100% 0%, rgba(29, 110, 63, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(226, 240, 230, 0.55), rgba(226, 240, 230, 0.2));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  overflow: hidden;
}

.creators-section::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 56px;
  width: 36px;
  height: 2px;
  background: var(--accent-warm);
  border-radius: 2px;
  z-index: 1;
}

.creators-content {
  padding: 72px 0 72px 56px;
}

.creators-photo {
  margin: 0;
  align-self: end;
  pointer-events: none;
}

.creators-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.creators-content > .eyebrow {
  margin-bottom: 16px;
}

.creators-content h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 18ch;
  margin-bottom: 18px;
}

.creators-lede {
  margin: 0 0 36px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--fg-dim);
  max-width: 60ch;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  max-width: 640px;
}

.creator-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(29, 110, 63, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.creator-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 8px 24px rgba(29, 110, 63, 0.13);
}

.creator-name {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.creator-role {
  margin: 0 0 14px;
  color: var(--fg-dim);
  font-size: 13.5px;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  width: fit-content;
}

.creator-link-label {
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}

.creator-link-arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.creator-link:hover { color: var(--accent-warm); }
.creator-link:hover .creator-link-label { border-color: var(--accent-warm); }
.creator-link:hover .creator-link-arrow { transform: translate(2px, -2px); }

.creators-foot {
  margin: 0;
  font-size: 14.5px;
  color: var(--fg-dim);
}

.creators-foot a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.creators-foot a:hover {
  color: var(--accent-warm);
  border-bottom-color: var(--accent-warm);
}

@media (max-width: 880px) {
  .creators-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .creators-photo {
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 640px) {
  .creators-section { margin-bottom: 64px; }
  .creators-content { padding: 56px 24px 48px; }
  .creators-section::before { left: 24px; top: 24px; }
  .latest-ep-title { font-size: 26px; }
}

.player-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 24px rgba(29, 110, 63, 0.1);
}

.player-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* Footer */
.site-footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px 56px;
  border-top: 1px solid var(--border);
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.foot-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin: 0 0 4px;
}

.foot-sub {
  margin: 0;
  color: var(--fg-dim);
  font-size: 14px;
}

.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--fg-dim);
}

.foot-links a:hover { color: var(--fg); }

.foot-legal {
  margin: 0;
  color: var(--fg-dim);
  font-size: 13px;
}

/* Container utility for sub-pages */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Tabs */
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding: 6px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 12px rgba(29, 110, 63, 0.08);
}

.tab-nav .tab {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-dim);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.tab-nav .tab:hover {
  color: var(--fg);
  background: rgba(29, 110, 63, 0.07);
}

.tab-nav .tab.is-active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 22px -10px rgba(29, 110, 63, 0.4);
}

.tab-nav .tab.is-active:hover {
  background: var(--accent-2);
}

/* Listing page */
.page-head {
  padding: 56px 0 48px;
  max-width: 72ch;
}

.page-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 8px;
  margin-bottom: 0;
}

.page-head .lede {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-dim);
}

.page-head .lede strong {
  color: var(--fg);
  font-weight: 600;
}

.page-head-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: rgba(29, 110, 63, 0.07);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.search-wrap {
  margin-top: 48px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding-bottom: 96px;
}

.ep-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(29, 110, 63, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ep-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  box-shadow: 0 8px 28px rgba(29, 110, 63, 0.14);
}

.ep-date {
  margin: 0;
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ep-title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}

.ep-excerpt {
  margin: 4px 0 0;
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

.ep-more {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 600;
  color: var(--accent-2);
  font-size: 14px;
}

/* Search bar */
.search-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  max-width: 420px;
  padding: 11px 16px 11px 42px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 8px rgba(29, 110, 63, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: var(--fg-dim);
  opacity: 0.7;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 110, 63, 0.12);
}

.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-dim);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.search-no-results {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 15px;
  display: none;
}

.search-no-results strong {
  color: var(--fg);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-dim);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--accent-2);
  color: var(--fg);
}

.filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Episode card enhancements */
.ep-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ep-season {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(29, 110, 63, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.ep-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}

.ep-type-badge {
  font-size: 11.5px;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-dim);
  border: 1px solid var(--border);
}

/* Episode detail page – tool button & tags */
.episode-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.btn-tool {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}

.btn-tool:hover {
  background: rgba(29, 110, 63, 0.07);
  transform: translateY(-1px);
}

/* Labels : tiny, inline, non-intrusifs */
.tag-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  font-weight: 600;
  opacity: 0.55;
  flex-shrink: 0;
  align-self: center;
}

/* Tags : deux groupes sur la même ligne */
.tag-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.tag-group + .tag-group {
  margin-top: 0;
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.tag {
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Type d'outil : fond plein, identitaire */
.tag-type {
  background: var(--accent);
  color: #ffffff;
  font-weight: 500;
}

/* Usages : contour léger, secondaire */
.tag-use {
  background: transparent;
  color: var(--fg-dim);
  border: 1.5px solid var(--border);
}

.empty-state {
  padding: 32px;
  color: var(--fg-dim);
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* Featured series (Editions spéciales – Les voix) */
.featured-series {
  padding: 48px 0 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.featured-series-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.featured-series-desc {
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 68ch;
  line-height: 1.7;
  margin: 0 0 32px;
}

.featured-series-player {
  margin-bottom: 28px;
}

.featured-series-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
}

.other-series {
  padding-bottom: 0;
}

.other-series-title {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 32px;
  color: var(--fg-dim);
  font-weight: 400;
}

/* Category picker (Editions spéciales step 1) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding-bottom: 96px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(29, 110, 63, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cat-card:hover {
  box-shadow: 0 8px 28px rgba(29, 110, 63, 0.13);
}

.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.cat-count {
  margin: 0;
  font-size: 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.cat-title {
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.cat-desc {
  margin: 0;
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Episode detail page */
.episode-page {
  padding-top: 32px;
  padding-bottom: 96px;
}

.back-link {
  display: inline-block;
  color: var(--fg-dim);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}

.back-link:hover { color: var(--fg); }

.episode-head {
  margin-bottom: 32px;
}

.episode-head h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-top: 8px;
  max-width: 22ch;
}

.episode-meta {
  margin: 16px 0 0;
  color: var(--fg-dim);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.episode-body {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-dim);
}

.episode-body p { margin: 0 0 18px; }
.episode-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.episode-body a:hover { color: var(--fg); }
.episode-body ul, .episode-body ol { padding-left: 22px; margin: 0 0 18px; }
.episode-body li { margin-bottom: 6px; }
.episode-body h2 {
  font-size: 20px !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: var(--fg) !important;
  margin: 36px 0 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--border) !important;
  display: block !important;
}

.episode-body h3 {
  font-size: 17px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin: 24px 0 8px;
}
.episode-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 16px 0;
}

/* Notion rich content body */
.notion-body {
  margin-top: 40px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--fg-dim);
}

.notion-body p { margin: 0 0 16px; }
.notion-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.notion-body a:hover { color: var(--fg); }
.notion-body ul, .notion-body ol { padding-left: 22px; margin: 0 0 16px; }
.notion-body li { margin-bottom: 6px; }

.notion-body h2 {
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.notion-body h3 {
  font-size: 17px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin: 24px 0 8px;
}

.notion-body strong { color: var(--fg); }

.notion-video {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-top: 56.25%; /* 16:9 */
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.notion-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Lien Accueil mobile — masqué sur desktop */
.nav-home-mobile { display: none; }

/* Burger menu */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.burger-btn:hover { background: rgba(29, 110, 63, 0.08); }

.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

.burger-btn.is-open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open .burger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger-btn.is-open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  .burger-btn { display: flex; }
  .nav-home-mobile { display: block; }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 22px;
    font-weight: 500;
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a.nav-hall {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .site-header { padding: 20px; }
  .site-nav { gap: 18px; font-size: 14px; }
  .hero { margin: 24px auto 48px; padding: 0 20px; }
  .stats-strip { padding: 28px 16px 28px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 16px 8px; gap: 10px; }
  .stats-strip .stat:nth-child(odd)::before { display: none; }
  .player-section { padding: 0 20px; }
  .site-footer { padding: 40px 20px; }
  .player-wrap iframe { height: 240px; }
}
