/* ============================================================
   +(213) — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  --bg:           #0d0d0d;
  --surface:      #141414;
  --surface-2:    #1c1c1c;
  --text:         #f5f0e8;
  --text-muted:   #6a6560;
  --text-dim:     #4a4540;
  --accent:       #6b9e6e;
  --accent-hover: #7db880;
  --border:       rgba(245, 240, 232, 0.07);
  --border-hover: rgba(245, 240, 232, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --nav-h: 94px;
  --px:    clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  height: 74px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.nav__logo:hover { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease-out);
}

/* ── Nav social icons ─────────────────────────────────────── */

.nav__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
  border-left: 1px solid var(--border-hover);
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__social-link:hover {
  color: var(--text);
}

.nav__social-link svg {
  width: 18px;
  height: 18px;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0d0d0d;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Section shared ───────────────────────────────────────── */

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--px);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.divider {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--px) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.38;
  z-index: 1;
  transition: opacity 1s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.2) 0%,
    rgba(13, 13, 13, 0.1) 40%,
    rgba(13, 13, 13, 0.75) 75%,
    rgba(13, 13, 13, 0.98) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__logo-wrap {
  position: absolute;
  top: var(--nav-h);
  left: var(--px);
  right: var(--px);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(2rem, 6vw, 5rem);
}

.hero__logo {
  height: clamp(48px, 8vw, 80px);
  width: auto;
  opacity: 0.96;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 16ch;
  margin-bottom: 0.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__ep-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Latest Episode ───────────────────────────────────────── */

.latest-episode {
  border-top: 1px solid var(--border);
}

.latest-episode__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.latest-episode__photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.latest-episode__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.latest-episode__photo-wrap:hover .latest-episode__photo {
  transform: scale(1.03);
}

.latest-episode__ep-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.3rem 0.7rem;
}

.latest-episode__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-episode__guest {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.latest-episode__role {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.latest-episode__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.latest-episode__duration {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.latest-episode__duration::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-dim);
}

/* ── Episode Grid ─────────────────────────────────────────── */

.episodes-section {
  border-top: 1px solid var(--border);
}

.episodes-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.episodes-section__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.episodes-section__link:hover {
  color: var(--accent);
}

.episodes-section__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.episodes-section__link:hover svg {
  transform: translateX(3px);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.episode-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  display: block;
}

.episode-card__photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.episode-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), opacity 0.3s;
}

.episode-card:hover .episode-card__photo {
  transform: scale(1.05);
  opacity: 0.75;
}

.episode-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.0) 55%);
  transition: opacity 0.3s;
}

.episode-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.episode-card__guest {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.episode-card__role {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.episode-card__title {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.45;
  font-style: italic;
  font-family: var(--font-display);
}

.episode-card__duration {
  font-size: 0.6875rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* ── Photo placeholder (when no image) ────────────────────── */

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 30%,
    rgba(107, 158, 110, 0.12) 0%,
    transparent 65%
  );
}

.photo-placeholder__initials {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.12);
  letter-spacing: -0.02em;
  z-index: 1;
}

/* ── Episodes page — full grid ────────────────────────────── */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: var(--px);
  padding-right: var(--px);
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-hero__count {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

.episodes-full-grid {
  padding: clamp(3rem, 6vw, 5rem) var(--px);
}

.episodes-full-grid__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.episodes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

/* ── À propos ─────────────────────────────────────────────── */

.about-section {
  padding: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem)) var(--px) clamp(5rem, 10vw, 9rem);
}

.about-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.about-section__text {}

.about-section__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.about-section__lead {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 2rem;
}

.about-section__body {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.about-section__body p + p {
  margin-top: 1.25rem;
}

.about-section__visual {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-section__photo-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface);
}

.about-section__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About mosaic ─────────────────────────────────────────── */

.about-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 260px 180px 220px;
  gap: 3px;
}

.about-mosaic__cell {
  overflow: hidden;
  position: relative;
}

.about-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out), filter 0.3s;
  filter: grayscale(15%);
}

.about-mosaic__cell:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Grande cellule en haut à gauche */
.about-mosaic__cell--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Cellule haute à droite */
.about-mosaic__cell--tall {
  grid-column: 2;
  grid-row: 1 / 2;
}

/* Cellule basse à droite */
.about-mosaic__cell--mid {
  grid-column: 2;
  grid-row: 2 / 3;
}

/* Bande du bas — 4 cellules sur toute la largeur */
.about-mosaic {
  grid-template-columns: 3fr 2fr 2fr 3fr;
  grid-template-rows: 260px 180px 200px;
}

.about-mosaic__cell--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.about-mosaic__cell--tall {
  grid-column: 3;
  grid-row: 1 / 2;
}

.about-mosaic__cell--mid {
  grid-column: 4;
  grid-row: 1 / 2;
}

.about-mosaic__cell--strip {
  grid-row: 2;
  grid-column: auto;
}

.about-mosaic__cell--strip:nth-child(4) { grid-column: 3; grid-row: 2; }
.about-mosaic__cell--strip:nth-child(5) { grid-column: 4; grid-row: 2; }
.about-mosaic__cell--strip:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
.about-mosaic__cell--strip:nth-child(7) { grid-column: 3 / 5; grid-row: 3; }

.about-section__stat-block {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.about-stat {}

.about-stat__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── Nous écouter ─────────────────────────────────────────── */

.listen-hero {
  padding: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem)) var(--px) clamp(4rem, 8vw, 7rem);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.listen-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.listen-hero__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.listen-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.listen-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.platforms-section {
  padding: clamp(4rem, 8vw, 7rem) var(--px);
}

.platforms-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.platform-card:hover {
  background: var(--surface);
}

.platform-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.platform-card__icon svg {
  width: 32px;
  height: 32px;
}

.platform-card__text {}

.platform-card__name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.platform-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.platform-card__arrow {
  margin-left: auto;
  color: var(--text-dim);
  transition: transform 0.2s, color 0.2s;
}

.platform-card:hover .platform-card__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.spotify-embed {
  padding: clamp(3rem, 6vw, 5rem) var(--px);
  border-top: 1px solid var(--border);
}

.spotify-embed__inner {
  max-width: 900px;
  margin: 0 auto;
}

.spotify-embed__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.spotify-embed__iframe {
  width: 100%;
  border-radius: 0;
  border: none;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) var(--px) clamp(2rem, 4vw, 3rem);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer__left {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}

.footer__logo {
  height: 68px;
  width: auto;
  opacity: 0.85;
  flex-shrink: 0;
}

.footer__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
}

.footer__platform-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__platform-link:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer__social-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--accent);
}

.footer__contact {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__contact:hover {
  color: var(--accent);
}

/* ── Animations ───────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.35s; }
.fade-up--delay-4 { animation-delay: 0.5s; }

/* ── Scrollbar ────────────────────────────────────────────── */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .latest-episode__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .latest-episode__photo-wrap {
    aspect-ratio: 4/3;
    max-height: 480px;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
  }

  .about-section__visual {
    position: static;
    order: -1;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root { --nav-h: 60px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
  }

  .nav__toggle {
    display: flex;
    z-index: 101;
  }

  .nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .episodes-grid,
  .episodes-list {
    grid-template-columns: 1fr 1fr;
  }

  .episodes-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .footer__logo {
    height: 52px;
  }

  .footer__platforms {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__social {
    gap: 1.5rem;
  }

  .about-section__stat-block {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .episodes-grid,
  .episodes-list {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2.5rem;
  }
}
