/* ==========================================================================
   CARRYTALE PODCAST — STYLE.CSS
   Deep-dive business podcast. Editorial. Brutalist touches. Flash aesthetic.
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Color Palette */
  --color-bg:             #ffffff;
  --color-surface:        #f5f3f0;
  --color-surface-raised: #eae7e2;
  --color-text:           #0a0a0a;
  --color-text-secondary: #555555;
  --color-accent:         #1a1a1a;
  --color-accent-hover:   #333333;
  --color-border:         #d5d0c8;
  --color-highlight:      #000000;
  --color-error:          #d44444;

  /* Typography */
  --font-display:  'Times New Roman', 'Georgia', 'Times', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero:       clamp(4rem, 12vw, 15vw);
  --fs-display:    clamp(2.5rem, 6vw, 5rem);
  --fs-h1:         clamp(2rem, 4vw, 3.5rem);
  --fs-h2:         clamp(1.5rem, 3vw, 2.5rem);
  --fs-h3:         clamp(1.25rem, 2vw, 1.75rem);
  --fs-body:       clamp(0.95rem, 1.1vw, 1.125rem);
  --fs-small:      clamp(0.8rem, 0.9vw, 0.875rem);
  --fs-caption:    clamp(0.7rem, 0.75vw, 0.75rem);

  --lh-tight:      0.9;
  --lh-heading:    1.1;
  --lh-body:       1.65;

  --ls-tight:      -0.04em;
  --ls-normal:     -0.01em;
  --ls-wide:       0.12em;

  /* Spacing */
  --space-xs:      clamp(0.25rem, 0.5vw, 0.5rem);
  --space-s:       clamp(0.5rem, 1vw, 0.75rem);
  --space-m:       clamp(1rem, 2vw, 1.5rem);
  --space-l:       clamp(1.5rem, 3vw, 2.5rem);
  --space-xl:      clamp(2.5rem, 5vw, 4rem);
  --space-2xl:     clamp(4rem, 8vw, 7rem);
  --space-3xl:     clamp(6rem, 12vw, 10rem);

  /* Layout */
  --container-max:   1400px;
  --container-wide:  1600px;
  --container-narrow: 800px;
  --gutter:          clamp(1rem, 3vw, 2rem);

  /* Misc */
  --radius-s:      2px;
  --radius-m:      4px;
  --radius-l:      8px;
  --transition:    0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card:   0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.12);
}


/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  position: relative;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: #0a0a0a;
  color: #ffffff;
}

input,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid var(--color-border);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
}


/* ==========================================================================
   3. GRAIN / NOISE TEXTURE OVERLAY
   ========================================================================== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}


/* ==========================================================================
   4. TYPOGRAPHY SYSTEM
   ========================================================================== */

/* Display — enormous editorial headlines */
.type-hero {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}

.type-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
}

/* Headings */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
}

h3, .h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
}

/* Body variants */
.text-body {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.text-small {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.text-caption {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* Label — small uppercase tag used across the site */
.label {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

.text-secondary {
  color: var(--color-text-secondary);
}

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

/* Italic serif pull-quote style */
.type-editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h2);
  line-height: 1.3;
  color: var(--color-accent);
}


/* ==========================================================================
   5. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* Asymmetric grids (editorial feel) */
.grid-asym {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1.4fr 1fr;
}

.grid-asym--reverse {
  grid-template-columns: 1fr 1.4fr;
}

@media (max-width: 768px) {
  .grid-asym,
  .grid-asym--reverse {
    grid-template-columns: 1fr;
  }
}

/* Flex utilities */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-s  { gap: var(--space-s); }
.gap-m  { gap: var(--space-m); }
.gap-l  { gap: var(--space-l); }

/* Spacing */
.section {
  padding-block: var(--space-3xl);
}

.section--tight {
  padding-block: var(--space-2xl);
}

.mt-s  { margin-top: var(--space-s); }
.mt-m  { margin-top: var(--space-m); }
.mt-l  { margin-top: var(--space-l); }
.mt-xl { margin-top: var(--space-xl); }
.mb-s  { margin-bottom: var(--space-s); }
.mb-m  { margin-bottom: var(--space-m); }
.mb-l  { margin-bottom: var(--space-l); }
.mb-xl { margin-bottom: var(--space-xl); }


/* ==========================================================================
   6. BUTTONS & LINKS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2em;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: var(--color-bg);
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn--filled {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--filled::before {
  background: var(--color-accent-hover);
}

.btn--small {
  padding: 0.55em 1.3em;
  font-size: var(--fs-caption);
}

/* Text link with underline animation */
.link {
  position: relative;
  display: inline-block;
  color: var(--color-accent);
  transition: color var(--transition);
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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


/* ==========================================================================
   7. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-m) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--transition),
    padding var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: var(--space-s);
  border-bottom: 1px solid var(--color-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: #ffffff;
}

.nav--scrolled .nav__logo {
  color: var(--color-text);
}

.nav--scrolled .nav__hamburger span {
  background: var(--color-text);
}

.nav--scrolled .nav__links a {
  color: var(--color-text-secondary);
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.nav__link {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav__toggle--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav__toggle--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: var(--fs-h3);
    letter-spacing: var(--ls-wide);
  }
}


/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl) var(--gutter) var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) contrast(1.05) brightness(0.5);
}

/* Gradient overlay for text legibility */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
  margin-inline: auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-m);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: #ffffff;
  /* Slight overlap into next section for editorial feel */
  margin-bottom: var(--space-l);
}

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

.hero__subtitle {
  max-width: 600px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-l);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  align-items: center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-l);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll span {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--color-text-secondary);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); }
}


/* ==========================================================================
   9. EPISODE CARDS
   ========================================================================== */

.episodes {
  background: var(--color-bg);
}

.episodes__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-m);
}

.episodes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: var(--gutter);
}

.episode-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.episode-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-elevated);
  border-color: var(--color-accent);
}

.episode-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.episode-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(20%) contrast(1.02);
  transition:
    filter var(--transition-slow),
    transform var(--transition-slow);
}

.episode-card:hover .episode-card__image img {
  filter: grayscale(10%) contrast(1.02);
  transform: scale(1.05);
}

.episode-card__number {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.episode-card__body {
  padding: var(--space-m);
}

.episode-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}

.episode-card__tag {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

.episode-card__date {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

.episode-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-s);
  transition: color var(--transition);
}

.episode-card:hover .episode-card__title {
  color: var(--color-accent);
}

.episode-card__links {
  display: flex;
  gap: var(--space-s);
  margin-top: var(--space-s);
}

.featured__buttons {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.episode-card__excerpt {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-m);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-s);
}

/* Featured (first/latest) card spanning full width */
.episode-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.episode-card--featured .episode-card__image {
  aspect-ratio: auto;
  min-height: 360px;
}

.episode-card--featured .episode-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

.episode-card--featured .episode-card__title {
  font-size: var(--fs-h2);
}

@media (max-width: 768px) {
  .episode-card--featured {
    grid-template-columns: 1fr;
  }

  .episode-card--featured .episode-card__image {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .episode-card--featured .episode-card__body {
    padding: var(--space-m);
  }
}


/* ==========================================================================
   10. ABOUT SECTION (ASYMMETRIC)
   ========================================================================== */

.about {
  background: var(--color-surface);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}

/* Overlap element for brutalist feel */
.about__image::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40%;
  height: 30%;
  background: var(--color-surface);
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  max-width: 600px;
}

.about__content .label {
  margin-bottom: var(--space-m);
}

.about__content h2 {
  margin-bottom: var(--space-l);
}

.about__content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
}

.about__content p:last-of-type {
  margin-bottom: var(--space-l);
}

.about__hosts {
  display: flex;
  gap: var(--space-l);
  margin-top: var(--space-l);
  padding-top: var(--space-l);
  border-top: 1px solid var(--color-border);
}

.about__host {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.about__host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 2px solid var(--color-border);
}

.about__host-name {
  font-weight: 600;
  font-size: var(--fs-small);
}

.about__host-role {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__image {
    aspect-ratio: 4 / 3;
  }

  .about__image::after {
    display: none;
  }

  .about__content {
    padding: var(--space-xl) var(--gutter);
  }
}


/* ==========================================================================
   11. EPISODE DETAIL PAGE
   ========================================================================== */

.episode-detail {
  padding-top: calc(80px + var(--space-xl)); /* account for fixed nav */
}

.episode-detail__header {
  margin-bottom: var(--space-xl);
}

.episode-detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-m);
  margin-bottom: var(--space-m);
}

.episode-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-l);
  transition: color var(--transition);
}

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

.episode-detail__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-m);
}

.episode-detail__description {
  max-width: 720px;
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* Player embed */
.player {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-l);
  margin-bottom: var(--space-2xl);
}

.player__embed {
  width: 100%;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.player__embed iframe {
  width: 100%;
  min-height: 180px;
  border: none;
}

.player__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

/* Chapter list */
.chapters {
  margin-bottom: var(--space-2xl);
}

.chapters__title {
  margin-bottom: var(--space-l);
}

.chapter-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-m);
  align-items: center;
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
  cursor: pointer;
}

.chapter-item:hover {
  background: var(--color-surface);
  padding-inline: var(--space-m);
  margin-inline: calc(-1 * var(--space-m));
}

.chapter-item__time {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  min-width: 60px;
}

.chapter-item__title {
  font-weight: 500;
}

.chapter-item__duration {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

/* Key takeaways */
.takeaways {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-l);
  margin-bottom: var(--space-2xl);
}

.takeaways__title {
  margin-bottom: var(--space-m);
}

.takeaways__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.takeaway-item {
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
}

.takeaway-item__number {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 2.5ch;
  text-align: right;
}

.takeaway-item__text {
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  padding-top: 0.15em;
}

/* Episode content area (show notes) */
.episode-content {
  max-width: var(--container-narrow);
}

.episode-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-m);
}

.episode-content h3 {
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
}

.episode-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
}

.episode-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.episode-content a:hover {
  color: var(--color-accent-hover);
}

.episode-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.4;
  color: var(--color-accent);
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-l);
  margin-block: var(--space-l);
}

.episode-content ul {
  list-style: disc;
  padding-left: 1.5em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
}

.episode-content ul li {
  margin-bottom: var(--space-xs);
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-m);
}

.footer__tagline {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-l);
}

/* Social links */
.footer__social {
  display: flex;
  gap: var(--space-m);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(200, 184, 154, 0.08);
}

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

/* Footer navigation columns */
.footer__col-title {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-m);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.footer__link {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

/* Newsletter */
.newsletter {
  margin-top: var(--space-l);
}

.newsletter__form {
  display: flex;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 0.75em 1em;
  font-size: var(--fs-small);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.newsletter__input:focus {
  border-color: var(--color-accent);
}

.newsletter__input::placeholder {
  color: var(--color-text-secondary);
}

.newsletter__btn {
  padding: 0.75em 1.5em;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: var(--color-accent);
  color: #ffffff;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

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

/* Footer bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m);
  margin-top: var(--space-2xl);
  padding-top: var(--space-l);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   13. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--stagger.reveal--visible > *:nth-child(1)  { transition-delay: 0.0s; }
.reveal--stagger.reveal--visible > *:nth-child(2)  { transition-delay: 0.1s; }
.reveal--stagger.reveal--visible > *:nth-child(3)  { transition-delay: 0.2s; }
.reveal--stagger.reveal--visible > *:nth-child(4)  { transition-delay: 0.3s; }
.reveal--stagger.reveal--visible > *:nth-child(5)  { transition-delay: 0.4s; }
.reveal--stagger.reveal--visible > *:nth-child(6)  { transition-delay: 0.5s; }
.reveal--stagger.reveal--visible > *:nth-child(7)  { transition-delay: 0.6s; }
.reveal--stagger.reveal--visible > *:nth-child(8)  { transition-delay: 0.7s; }

.reveal--stagger.reveal--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left / right */
.reveal--left {
  transform: translateX(-60px);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal--left.reveal--visible,
.reveal--right.reveal--visible {
  transform: translateX(0);
}

/* Scale up reveal */
.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.reveal--visible {
  transform: scale(1);
}


/* ==========================================================================
   14. LOADING ANIMATION
   ========================================================================== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
}

.loader__text {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text);
  animation: loader-flicker 1.5s ease-in-out infinite;
}

@keyframes loader-flicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  animation: loader-progress 1.2s ease-in-out infinite;
}

@keyframes loader-progress {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


/* ==========================================================================
   15. MISCELLANEOUS COMPONENTS
   ========================================================================== */

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  border: none;
}

.divider--accent {
  background: var(--color-accent);
  opacity: 0.3;
}

/* Tag pills */
.tag {
  display: inline-block;
  padding: 0.3em 0.8em;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition:
    border-color var(--transition),
    color var(--transition);
}

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

/* Platform badges (Spotify, Apple, etc.) */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.2em;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.platform-badge:hover {
  border-color: var(--color-text);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
}

.platform-badge svg {
  width: 16px;
  height: 16px;
}

/* Quote block */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h2);
  line-height: 1.3;
  color: var(--color-text);
  position: relative;
  padding-left: var(--space-xl);
  margin-block: var(--space-2xl);
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.15em;
  font-size: 4em;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
}

.pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: var(--space-m);
}

/* Marquee / ticker text (editorial touch) */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-m);
}

.ticker__inner {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  padding-right: var(--space-xl);
  color: var(--color-text-secondary);
}

.ticker__item span {
  color: var(--color-accent);
  margin-left: var(--space-xl);
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==========================================================================
   16. RESPONSIVE FINE-TUNING
   ========================================================================== */

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding-top: 100px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(3.5rem, 14vw, 6rem);
    margin-bottom: var(--space-m);
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__scroll {
    bottom: var(--space-m);
  }

  .hero__bg {
    background-position: center 30%;
  }

  .intro__inner {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .episode-card__body {
    padding: var(--space-s);
  }

  .pullquote {
    padding-left: var(--space-l);
    font-size: var(--fs-h3);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal--stagger > * {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   17. NAV INNER WRAPPER
   ========================================================================== */

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

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: #ffffff;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__links a {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1000;
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__links--open a {
    color: var(--color-text) !important;
    font-size: var(--fs-h3);
  }
}


/* ==========================================================================
   18. HERO BG INLINE STYLE SUPPORT
   ========================================================================== */

.hero__bg {
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(60%) contrast(1.05) brightness(0.7);
  transform: rotate(180deg);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-top: var(--space-m);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

.hero--episode .hero__title {
  font-size: var(--fs-display);
}

.hero--episode .hero__bg {
  background-position: center bottom;
}

.hero--about {
  min-height: 30vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color-bg);
}

.hero--about .hero__title {
  font-size: var(--fs-display);
  color: var(--color-text);
}

.hero--about .hero__overlay {
  display: none;
}

.hero--about ~ .nav,
body:has(.hero--about) .nav {
  color: var(--color-text);
}

body:has(.hero--about) .nav .nav__logo {
  color: var(--color-text);
}

body:has(.hero--about) .nav .nav__links a {
  color: var(--color-text-secondary);
}

body:has(.hero--about) .nav .nav__hamburger span {
  background: var(--color-text);
}


/* ==========================================================================
   19. SECTION HEADING
   ========================================================================== */

.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-xl);
}


/* ==========================================================================
   20. INTRO SECTION
   ========================================================================== */

.intro {
  padding: var(--space-3xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.intro__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro__accent {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--color-accent);
  opacity: 0.15;
}

.intro__lead {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-m);
}

.intro__body {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  max-width: 600px;
}

@media (max-width: 768px) {
  .intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro__accent {
    font-size: clamp(4rem, 20vw, 8rem);
  }
}


/* ==========================================================================
   21. FEATURED EPISODE
   ========================================================================== */

.featured {
  padding: var(--space-2xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.featured__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.featured__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(40%) contrast(1.05);
  transition: filter var(--transition-slow);
}

.featured__inner:hover .featured__image img {
  filter: grayscale(20%) contrast(1.05);
}

.featured__details {
  padding: var(--space-xl);
}

.featured__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-m);
}

.featured__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-m);
}

.featured__description {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  margin-bottom: var(--space-l);
}

.featured__meta {
  margin-bottom: var(--space-l);
}

.featured__duration {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .featured__inner {
    grid-template-columns: 1fr;
  }
  .featured__image {
    aspect-ratio: 16/10;
  }
  .featured__details {
    padding: var(--space-m);
  }
}


/* ==========================================================================
   22. EPISODES SECTION (INDEX)
   ========================================================================== */

.episodes {
  padding: var(--space-3xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.episodes__inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.episode-card--soon {
  opacity: 0.5;
  pointer-events: none;
}

.episode-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-raised);
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--color-border);
}


/* ==========================================================================
   23. HOSTS SECTION (INDEX)
   ========================================================================== */

.hosts {
  padding: var(--space-3xl) var(--gutter);
  background: var(--color-surface);
  position: relative;
  z-index: 2;
}

.hosts__inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.hosts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.host-card {
  text-align: center;
  display: block;
  transition: transform var(--transition);
  cursor: pointer;
}

.host-card:hover {
  transform: translateY(-4px);
}

.host-card:hover .host-card__name {
  color: var(--color-accent);
}

.host-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: var(--space-m);
}

.host-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--transition-slow);
  transform: rotate(180deg);
}

.host-card:hover .host-card__image img {
  filter: grayscale(10%);
}

.host-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-s);
}

.host-card__bio {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

.hosts__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

@media (max-width: 640px) {
  .hosts__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

  .hosts {
    padding: var(--space-xl) var(--gutter);
  }
}


/* ==========================================================================
   24. NEWSLETTER SECTION (INDEX)
   ========================================================================== */

.newsletter {
  padding: var(--space-3xl) var(--gutter);
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.newsletter__inner {
  max-width: 600px;
  margin-inline: auto;
}

.newsletter__heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-m);
}

.newsletter__text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-l);
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin-inline: auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.85em 1em;
  font-size: var(--fs-small);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.newsletter__input:focus {
  border-color: var(--color-accent);
}

.newsletter__input::placeholder {
  color: var(--color-text-secondary);
}

.newsletter-success {
  color: var(--color-accent);
  font-size: var(--fs-body);
  margin-top: var(--space-m);
}

.input-error {
  border-color: var(--color-error) !important;
}

@media (max-width: 640px) {
  .newsletter__form {
    flex-direction: column;
    gap: var(--space-s);
  }
}


/* ==========================================================================
   25. FOOTER (SIMPLIFIED STRUCTURE)
   ========================================================================== */

.footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.footer__socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-l);
  margin-bottom: var(--space-l);
}

.footer__social-link {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 0.4em 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  width: auto;
  height: auto;
  border: none;
  background: none;
  display: inline;
}

.footer__social-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: none;
}

.footer__credit {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: var(--space-l);
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

.footer__legal a {
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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


/* ==========================================================================
   26. BUTTON VARIANTS
   ========================================================================== */

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

.btn--primary::before {
  background: var(--color-accent-hover);
}

.btn--primary:hover {
  color: #ffffff;
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--secondary::before {
  background: var(--color-text);
}

.btn--secondary:hover {
  color: var(--color-bg);
}


/* ==========================================================================
   27. ABOUT PAGE — HOST PROFILES
   ========================================================================== */

.about-hosts {
  padding: var(--space-xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.about-hosts__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.host-profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.host-profile--right {
  grid-template-columns: 1.2fr 1fr;
}

.host-profile--right .host-profile__image {
  order: 2;
}

.host-profile--right .host-profile__content {
  order: 1;
}

.host-profile__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  max-height: 500px;
}

.host-profile__image::after {
  display: none;
}

.host-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%) contrast(1.02);
  transition: filter var(--transition-slow);
  transform: rotate(180deg);
}

.host-profile:hover .host-profile__image img {
  filter: grayscale(30%) contrast(1.05);
}

.host-profile__name {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  margin-bottom: var(--space-s);
}

.host-profile__tagline {
  font-size: var(--fs-body);
  color: var(--color-accent);
  margin-bottom: var(--space-l);
  font-weight: 500;
}

.host-profile__bio p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
  line-height: var(--lh-body);
}

.host-profile__bio strong {
  color: var(--color-text);
  font-weight: 600;
}

.host-profile__socials {
  margin-top: var(--space-l);
  display: flex;
  gap: var(--space-m);
}

.host-profile__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1.2em;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: border-color var(--transition), color var(--transition);
}

.host-profile__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .host-profile,
  .host-profile--right {
    grid-template-columns: 1fr;
  }
  .host-profile--right .host-profile__image,
  .host-profile--right .host-profile__content {
    order: unset;
  }

  .about-hosts {
    padding: var(--space-xl) var(--gutter);
  }

  .host-profile {
    gap: var(--space-m);
  }
}


/* ==========================================================================
   28. OUR STORY SECTION
   ========================================================================== */

.our-story {
  padding: var(--space-3xl) var(--gutter);
  background: var(--color-surface);
  position: relative;
  z-index: 2;
}

.our-story__inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.our-story__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.our-story__text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-m);
  line-height: var(--lh-body);
}

.our-story__text strong {
  color: var(--color-text);
  font-weight: 600;
}

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

.our-story__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(50%) contrast(1.05);
}

@media (max-width: 768px) {
  .our-story__content {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   29. CONCEPT SECTION
   ========================================================================== */

.concept {
  padding: var(--space-3xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.concept__inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.concept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
  margin-bottom: var(--space-xl);
}

.concept__card {
  padding: var(--space-l);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

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

.concept__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-m);
  color: var(--color-accent);
}

.concept__card-text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

.concept__cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.4;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.concept__cta-text em {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .concept__grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   30a. MANIFESTO (Über-uns)
   ========================================================================== */

.manifesto {
  padding: var(--space-3xl) var(--gutter);
  background: var(--color-surface);
}

.manifesto__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.manifesto__text p {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  margin-top: var(--space-m);
}


/* ==========================================================================
   30. EDITORIAL PHOTO
   ========================================================================== */

.editorial-photo {
  padding: var(--space-2xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.editorial-photo__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
}

.editorial-photo__img {
  width: 100%;
  height: auto;
  filter: grayscale(50%) contrast(1.05);
  transition: filter var(--transition-slow);
  transform: rotate(180deg);
}

.editorial-photo:hover .editorial-photo__img {
  filter: grayscale(40%) contrast(1.05);
}


/* ==========================================================================
   31. EPISODE DETAIL — PLAYER, CHAPTERS, TAKEAWAYS, LINKS, NEXT
   ========================================================================== */

.episode-player {
  padding: var(--space-2xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.episode-player__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.player-embed {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-m);
  text-align: center;
  color: var(--color-text-secondary);
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
}

.player-embed iframe {
  width: 100%;
  min-height: 232px;
  border: none;
  border-radius: 12px;
}

.chapters {
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.chapters__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.chapters__list {
  list-style: none;
  counter-reset: chapter;
}

.chapters__item {
  border-bottom: 1px solid var(--color-border);
}

.chapters__link {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  padding: var(--space-m) var(--space-s);
  transition: background var(--transition);
}

.chapters__link:hover {
  background: var(--color-surface);
}

.chapters__timestamp {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  min-width: 70px;
  flex-shrink: 0;
}

.chapters__item .chapters__title {
  font-weight: 500;
  font-size: var(--fs-body);
}

.chapters__item.active .chapters__link {
  background: var(--color-surface);
}

.takeaways {
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.takeaways__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-l);
}

.takeaways__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}

.takeaways__item {
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

.takeaways__item strong {
  color: var(--color-text);
  font-weight: 600;
}

.links {
  padding: var(--space-xl) var(--gutter);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
}

.links__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.links__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.links__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--color-accent);
  font-size: var(--fs-body);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.next-episode {
  padding: var(--space-3xl) var(--gutter);
  text-align: center;
  background: var(--color-surface);
  position: relative;
  z-index: 2;
}

.next-episode__inner {
  max-width: 600px;
  margin-inline: auto;
}

.next-episode__label {
  display: block;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-m);
}

.next-episode__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-m);
}

.next-episode__text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  margin-bottom: var(--space-l);
}


/* Print */
@media print {
  body::after { display: none; }
  .nav,
  .loader,
  .ticker,
  .hero__scroll { display: none; }

  body {
    background: #fff;
    color: #000;
  }
}
