/* ============================================================
   DE SPAANSE TAFEL — Stylesheet
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --red:          #B91C1C;
  --red-dark:     #991B1B;
  --gold:         #B45309;
  --gold-light:   #D97706;
  --dark:         #0D0905;
  --dark-2:       #1C140D;
  --dark-3:       #2A1E14;
  --cream:        #FDF8F2;
  --cream-2:      #F5EBD9;
  --cream-3:      #EDD9BE;
  --text:         #1A110A;
  --text-muted:   #6B5242;
  --white:        #FFFFFF;
  --border:       rgba(180, 83, 9, 0.14);
  --border-dark:  rgba(255, 255, 255, 0.08);
  --radius:       18px;
  --radius-sm:    10px;
  --shadow:       0 4px 32px rgba(13, 9, 5, 0.10);
  --shadow-md:    0 8px 48px rgba(13, 9, 5, 0.15);
  --shadow-lg:    0 24px 80px rgba(13, 9, 5, 0.22);
  --nav-h:        132px;   /* groot genoeg voor 124px logo */
  --nav-h-small:  86px;    /* na scrollen, groter logo op desktop */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}

/* Achtergrond zit ALLEEN om het pill-blok (links + knoppen), logo blijft transparant */
.nav-pill {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  background: rgba(13, 9, 5, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 40px;
  padding: 6px 10px 6px 6px;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
#navbar.scrolled .nav-pill {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0 4px;
}
#navbar.scrolled .nav-inner {
  background: rgba(210, 95, 10, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border-dark);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
/* scrolled: volle-breedte balk — pill breidt uit naar nav-inner breedte */
#navbar.scrolled .nav-pill {
  flex: 1;
  justify-content: flex-end;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 16px;
  transition: height 0.35s var(--ease);
}
#navbar.scrolled .nav-inner {
  height: var(--nav-h-small);
}

.nav-logo img {
  height: 124px; width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.35s var(--ease), opacity 0.2s;
}
#navbar.scrolled .nav-logo img { height: 56px; }
.nav-logo img:hover { opacity: 0.8; }

.nav-links {
  display: flex; gap: 2px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.09); }

.nav-platforms { display: flex; gap: 8px; }
.platform-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: transform 0.2s, opacity 0.2s;
}
.platform-btn svg { width: 16px; height: 16px; }
.platform-btn:hover { transform: scale(1.12); opacity: 0.88; }
.platform-btn.spotify { background: #1DB954; }
.platform-btn.youtube { background: #FF0000; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  background: rgba(13, 9, 5, 0.97);
  border-top: 1px solid var(--border-dark);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { padding: 8px 28px 20px; }
.nav-mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu a:hover { color: white; }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* Background — place hero-bg.jpg in de images/ submap.
   Fallback: a rich, warm Spanish-sunset inspired gradient. */
.hero-bg {
  position: absolute;
  inset: -15%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-color: #1A0E08; /* fallback als hero-bg.jpg ontbreekt */
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,9,5,0.65) 0%,
    rgba(13,9,5,0.55) 38%,
    rgba(13,9,5,0.82) 72%,
    rgba(13,9,5,0.99) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  flex: 0 0 0;
  padding-top: var(--nav-h);
}

.hero-logo { margin-bottom: 18px; }
.hero-logo img {
  width: min(380px, 78vw);
  height: auto;
  filter: brightness(0) invert(1);
  /* To use a black/dark logo version swap the filter above to: filter: none;
     or: filter: brightness(0); for solid black on a light hero. */
}

.hero-tagline {
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Featured episode panel inside hero */
.hero-featured {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  left: 0; right: 0;
  padding: 0 28px;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-featured-inner {
  display: flex;
  flex-direction: column;
  background: rgba(13,9,5,0.68);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
}
.featured-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; border: none;
}

.featured-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.22);
  border: none; cursor: pointer; color: white;
  transition: background 0.25s;
}
.featured-play-btn:hover { background: rgba(0,0,0,0.44); }
.featured-play-btn svg {
  width: 52px; height: 52px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
  transition: transform 0.25s;
}
.featured-play-btn:hover svg { transform: scale(1.1); }

.featured-info {
  color: white;
  padding: 18px 22px 16px;
  display: block;
}
.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.episode-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 0;
}
.featured-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: white; line-height: 1.32; margin-bottom: 10px;
}
.featured-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  align-items: start;
}
.featured-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0;
}
.featured-col-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.featured-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}
.featured-meta-icons {
  display: flex; gap: 8px; flex-shrink: 0;
}
.feat-icon-btn {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.feat-icon-btn:hover { transform: scale(1.14); opacity: 0.88; }
.feat-icon-btn svg { width: 13px; height: 13px; }
.feat-icon-btn.spotify { background: #1DB954; }
.feat-icon-btn.youtube { background: #FF0000; }
.featured-actions { display: none; }

/* Shared platform button style */
.btn-platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 0.84rem; font-weight: 600;
  text-decoration: none; color: white;
  transition: transform 0.22s, opacity 0.22s;
}
.btn-platform svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-platform:hover { transform: translateY(-2px); opacity: 0.88; }
.btn-platform.spotify { background: #1DB954; }
.btn-platform.youtube { background: #FF0000; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.34);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeInUp 0.9s ease 1.2s both;
  pointer-events: none;
}
.hero-scroll-hint svg {
  width: 18px; height: 18px;
  animation: bounceY 2.2s ease infinite;
}

/* ===== EPISODES SECTION ===== */
.episodes-section { background: var(--cream); }

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

.episodes-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-load-more {
  border: none;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

.btn-load-more:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  background: #1a130e;
}

.episode-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
  display: flex; flex-direction: column;
}
.episode-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180,83,9,0.26);
}
.episode-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.card-thumb {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
}
.card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.episode-card:hover .card-thumb img { transform: scale(1.06); }

.card-num {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: white;
  font-size: 0.66rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.05em;
}

.card-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.28s;
}
.card-play-overlay svg {
  width: 44px; height: 44px;
  color: white; opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.28s, transform 0.28s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.episode-card:hover .card-play-overlay { background: rgba(0,0,0,0.32); }
.episode-card:hover .card-play-overlay svg { opacity: 1; transform: scale(1); }

.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 7px;
}
.card-date { font-size: 0.73rem; color: var(--text-muted); margin-bottom: 0; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem; font-weight: 600;
  color: var(--text); line-height: 1.35;
  margin-bottom: 10px;
}
.card-desc {
  font-size: 0.83rem; color: var(--text-muted);
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 16px;
}
.card-footer {
  display: flex; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.card-duration { font-size: 0.73rem; color: var(--text-muted); }
.card-icons { display: flex; gap: 7px; }
.card-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.card-icon:hover { transform: scale(1.18); }
.card-icon svg { width: 12px; height: 12px; }
.card-icon.sp { background: #1DB954; color: white; }
.card-icon.yt { background: #FF0000; color: white; }

.inline-episode-panel {
  grid-column: 1 / -1;
  position: relative;
  background: rgba(13,9,5,0.72);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2px;
  box-shadow: var(--shadow-md);
}

.inline-hero-copy {
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inline-episode-panel .featured-title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.inline-episode-panel .featured-thumb {
  aspect-ratio: 16/9;
}

.inline-episode-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.45);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.inline-episode-close:hover {
  background: rgba(0,0,0,0.68);
  transform: scale(1.04);
}
.inline-episode-close svg { width: 16px; height: 16px; }

.inline-episode-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  height: clamp(280px, 36vw, 420px);
}

.inline-episode-video {
  position: relative;
  background: #000;
  height: 100%;
}
.inline-episode-video iframe,
.inline-episode-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.inline-episode-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-episode-info {
  color: white;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.24) transparent;
}
.inline-episode-info::-webkit-scrollbar { width: 5px; }
.inline-episode-info::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.24);
  border-radius: 3px;
}

.inline-episode-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.inline-episode-title {
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.inline-episode-desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}

.inline-episode-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--cream-2); overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: center;
}

.about-image { position: relative; }
.about-image-accent {
  position: absolute;
  top: -24px; left: -24px;
  width: 58%; height: 52%;
  background: var(--red);
  border-radius: var(--radius);
  opacity: 0.07;
}
.about-image-wrap {
  position: relative; z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 10px 0 24px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 0.98rem; line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--red); line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px; align-items: start;
}

.contact-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 10px 0 24px;
}
.contact-intro p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

.contact-meta { margin: 30px 0 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-meta-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 0.93rem;
}
.contact-meta-item svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }
.contact-meta-item a { text-decoration: none; color: var(--text-muted); }
.contact-meta-item a:hover { color: var(--text); }

.contact-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-platforms .btn-platform { padding: 10px 14px; }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.12);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 126px; }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--dark); color: white;
  border: none; padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.97rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.22s;
}
.btn-submit:hover { background: var(--dark-3); transform: translateY(-1px); }
.btn-submit svg { width: 17px; height: 17px; flex-shrink: 0; }

.form-success {
  display: none; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding: 16px;
  background: rgba(5,150,105,0.07);
  border: 1px solid rgba(5,150,105,0.22);
  border-radius: var(--radius-sm);
  color: #065F46; font-size: 0.88rem; line-height: 1.5;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ===== SPONSOR SECTION ===== */
.sponsor-section {
  background: var(--cream-2);
  padding-top: 40px;
}

.sponsor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 34px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
}

.sponsor-logo-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(13,9,5,0.06);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo {
  max-width: 100%;
  width: 220px;
  height: auto;
}

.sponsor-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 8px 0 16px;
}

.sponsor-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.sponsor-link {
  display: inline-flex;
  margin-top: 8px;
  background: var(--dark);
}

.sponsor-link:hover {
  opacity: 0.92;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 290px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  transition: background 0.22s, color 0.22s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.14); color: white; }
.footer-socials svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,9,5,0.82);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: white;
  border-radius: var(--radius);
  width: 100%; max-width: 780px;
  max-height: 90svh; overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(18px);
  transition: transform 0.32s var(--ease);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: sticky; top: 16px; float: right;
  margin: 16px 16px 0 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(13,9,5,0.07); border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; color: var(--text);
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(13,9,5,0.13); }
.modal-close svg { width: 17px; height: 17px; }

.modal-body { padding: 28px 32px 36px; padding-top: 4px; }

.modal-thumb {
  width: 100%; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 16/9; margin-bottom: 22px;
}
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-episode-num {
  display: inline-block; background: var(--red); color: white;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.modal-title { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 8px; line-height: 1.25; }
.modal-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.modal-desc { font-size: 0.93rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 26px; }

.modal-player-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.player-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: 9px; border: 1.5px solid var(--border);
  background: transparent; font-family: 'Inter', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.22s;
}
.player-tab svg { width: 14px; height: 14px; }
.player-tab.active { background: var(--dark); color: white; border-color: var(--dark); }
.player-tab:not(.active):hover { border-color: rgba(180,83,9,0.3); color: var(--text); }

.modal-player { border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); }
.modal-player iframe { display: block; width: 100%; border: none; }

/* ===== KEYFRAMES ===== */
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; }
  .hero-featured-inner { grid-template-columns: 1fr; }
  .featured-desc { -webkit-line-clamp: 2; }

  .sponsor-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sponsor-logo-wrap {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 88px; --nav-h-small: 64px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  #hero {
    height: auto;
    min-height: 0;
    padding-top: calc(var(--nav-h) + 8px);
    padding-bottom: 16px;
  }
  .hero-bg { inset: 0; }
  .hero-content { display: none; }

  .nav-inner {
    padding: 0 14px;
  }
  .nav-logo img {
    height: 76px;
  }
  #navbar.scrolled .nav-logo img {
    height: 58px;
  }

  .nav-pill {
    display: none;
  }

  .nav-links,
  .nav-platforms { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile-menu {
    position: absolute;
    top: calc(var(--nav-h) + 6px);
    right: 12px;
    left: auto;
    width: min(82vw, 360px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 20px 38px rgba(0,0,0,0.4);
    overflow: hidden;
    z-index: 950;
  }
  #navbar.scrolled .nav-mobile-menu {
    top: calc(var(--nav-h-small) + 6px);
  }
  .nav-mobile-menu ul {
    padding: 8px 18px 16px;
  }

  .episodes-grid { grid-template-columns: 1fr; gap: 14px; }

  .inline-episode-panel .featured-title { font-size: 1rem; }

  #hero {
    min-height: 0;
  }
  .hero-featured {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    right: auto;
    padding: 0 14px;
  }
  .featured-info {
    padding: 14px 14px 12px;
  }
  .featured-desc-grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .featured-desc {
    max-height: 9.9em; /* ongeveer 6 regels bij line-height 1.65 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.24) transparent;
  }
  .featured-desc::-webkit-scrollbar { width: 5px; }
  .featured-desc::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.24);
    border-radius: 3px;
  }
  .featured-col-right {
    gap: 0;
  }
  .featured-title {
    font-size: 1.02rem;
  }
  .hero-scroll-hint {
    display: none;
  }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 28px 22px; }

  .sponsor-section { padding-top: 24px; }
  .sponsor-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .modal-body { padding: 16px 20px 28px; padding-top: 4px; }
  .modal-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .episodes-grid { grid-template-columns: 1fr; gap: 12px; }
  .card-body { padding: 14px 14px 16px; }
  .card-title { font-size: 0.88rem; }
  .hero-logo img { width: min(280px, 80vw); }
}
