:root {
  --bg-deep:      #3d4a52;
  --bg-darker:    #2e3940;
  --honey:        #d4943a;
  --honey-bright: #e8a847;
  --honey-deep:   #b87828;
  --terracotta:   #a85a3a;
  --cream:        #e8d5b0;
  --cream-light:  #f0dfbc;
  --paper:        #d9c39a;
  --ink:          #2a1d14;
  --ink-soft:     #4a3525;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-deep);
  overflow-x: hidden;
  position: relative;
}

/* Film-grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1, .hero .tagline, .hero .cta-row { animation: none; }
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: 'Rye', 'Special Elite', serif;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  background: var(--bg-deep);
  padding-top: 0;
  overflow: hidden;
}

.hero-honey {
  position: relative;
  background: var(--honey);
  height: 140px;
}
.hero-honey svg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
}

.hero-content {
  padding: 4rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--ink);
  background: var(--honey);
  display: inline-block;
  padding: 0.4em 0.6em 0.3em;
  transform: rotate(-1.2deg);
  box-shadow: 6px 6px 0 var(--ink);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.08);
}

.hero .tagline {
  font-family: 'Special Elite', monospace;
  color: var(--cream);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero .tagline em {
  color: var(--honey-bright);
  font-style: normal;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  font-family: 'Special Elite', monospace;
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 var(--ink);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn:focus-visible {
  outline: 3px solid var(--honey-bright);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--honey);
  font-size: 1.15rem;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink-soft);
}

/* Floating mice */
.hero-mouse {
  position: absolute;
  opacity: 0.8;
  pointer-events: none;
}
.hero-mouse.left {
  bottom: 2rem;
  left: 5%;
  width: 80px;
  transform: rotate(-15deg);
}
.hero-mouse.right {
  bottom: 4rem;
  right: 6%;
  width: 70px;
  transform: rotate(12deg);
}

@media (max-width: 768px) {
  .hero-mouse { display: none; }
}

/* ==========================================================
   SECTIONS (shared)
   ========================================================== */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-over {
  background: var(--cream);
  color: var(--ink);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 2rem;
  display: inline-block;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-wrap .underline {
  display: block;
  width: 120px;
  height: 8px;
  background: var(--terracotta);
  margin: 0.5rem auto 0;
  transform: skew(-12deg);
}

/* ==========================================================
   OVER
   ========================================================== */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .over-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.over-text p {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}

.over-text p:first-of-type::first-letter {
  font-family: 'Rye', serif;
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.1em 0.1em 0 0;
  color: var(--terracotta);
}

.over-image {
  background: var(--paper);
  border: 4px solid var(--ink);
  padding: 1.5rem;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 var(--terracotta);
}

.over-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================
   CAST
   ========================================================== */
.section-cast {
  background: var(--bg-darker);
  color: var(--cream);
}

.section-cast .section-title {
  color: var(--honey);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cast-card {
  background: var(--cream);
  color: var(--ink);
  padding: 2rem 1.5rem;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--honey);
  transition: transform 0.2s;
  position: relative;
}

.cast-card:nth-child(even) {
  transform: rotate(-1deg);
  box-shadow: 6px 6px 0 var(--terracotta);
}

.cast-card:nth-child(odd) {
  transform: rotate(0.8deg);
}

.cast-card:hover {
  transform: rotate(0) translateY(-4px);
}

.cast-portrait {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cast-description {
  font-family: 'Special Elite', monospace;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

.cast-name {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  text-align: center;
  color: var(--terracotta);
}

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

.episode-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.episode {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 1.5rem 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}

.episode:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.episode-number {
  font-family: 'Rye', serif;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  min-width: 60px;
  text-align: center;
}

.episode-meta {
  display: flex;
  flex-direction: column;
}

.episode-title {
  font-family: 'Rye', serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.episode-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.episode-duration {
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--honey);
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s;
  box-shadow: 3px 3px 0 var(--ink);
}

.play-btn:hover {
  transform: scale(1.08);
  background: var(--honey-bright);
}

.play-btn:focus-visible {
  outline: 3px solid var(--honey-bright);
  outline-offset: 2px;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--ink);
  margin-left: 3px;
}

@media (max-width: 600px) {
  .episode {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .play-btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 0.5rem;
  }
}

/* ==========================================================
   LUISTEREN
   ========================================================== */
.section-listen {
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
}

.section-listen .section-title {
  color: var(--cream);
}

.section-listen .section-title-wrap .underline {
  background: var(--honey);
}

.platforms {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.platform {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 1.2rem 2rem;
  font-family: 'Special Elite', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.platform:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.platform:focus-visible {
  outline: 3px solid var(--honey-bright);
  outline-offset: 2px;
}

.platform svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--bg-darker);
  color: var(--cream);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

footer .credits {
  font-family: 'Special Elite', monospace;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

footer .credits a {
  color: var(--honey);
  border-bottom: 1px dotted var(--honey);
}

footer .credits a:focus-visible {
  outline: 2px solid var(--honey-bright);
  outline-offset: 2px;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1     { animation: fadeUp 0.8s ease-out; }
.hero .tagline { animation: fadeUp 0.8s ease-out 0.2s backwards; }
.hero .cta-row { animation: fadeUp 0.8s ease-out 0.4s backwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
