/* ==================================================================
   LMS Podcast — Luxury Design System
   Warm charcoal · champagne gold · ivory — editorial & premium
   (im Stil des LMS / International Web Radio)
   ================================================================== */

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/Cinzel-latin.woff2') format('woff2');
}

:root {
  --font-serif: 'Cinzel', ui-serif, Georgia, 'Times New Roman', serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Champagne / gold ramp */
  --gold-100: #f7eed6;
  --gold-200: #efe0b8;
  --gold-300: #e6cd94;
  --gold-400: #d8b86f;
  --gold-500: #c9a45a;
  --gold-600: #b08743;

  /* Warm ink */
  --ink: #0b0a08;
  --ink-2: #100e0b;
  --ink-3: #16130e;

  /* Ivory / sand */
  --cream: #f4efe4;
  --sand: #cbc2ad;

  --gold-text: linear-gradient(100deg, #f7eed6 0%, #d8b86f 45%, #b08743 100%);
  --gold-btn: linear-gradient(100deg, #f3e3b5 0%, #d8b86f 48%, #c19a4f 100%);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--cream);
  background-color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 148px; /* Platz für Player */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient warm gradient field */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(55rem 55rem at 15% -8%, rgba(201,164,90,.14), transparent 60%),
    radial-gradient(50rem 50rem at 92% 4%, rgba(216,184,111,.08), transparent 55%),
    radial-gradient(48rem 48rem at 80% 100%, rgba(176,135,67,.08), transparent 55%),
    linear-gradient(180deg, #0b0a08 0%, #100e0b 45%, #0a0907 100%);
}

h1, h2, h3, .brand__name { font-family: var(--font-serif); font-weight: 500; letter-spacing: .015em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(201,164,90,.32); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #c9a45a, #b08743); border-radius: 999px; border: 2px solid #0b0a08; }

/* ---------- Auren ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.orb--1 { width: 22rem; height: 22rem; left: -6rem; top: 3rem; background: rgba(201,164,90,.14); animation: pulse-glow 7s ease-in-out infinite; }
.orb--2 { width: 24rem; height: 24rem; right: -4rem; top: 8rem; background: rgba(230,205,148,.10); animation: float-slow 9s ease-in-out infinite; }
.orb--3 { width: 20rem; height: 20rem; left: 30%; bottom: -6rem; background: rgba(176,135,67,.08); animation: pulse-glow 8s ease-in-out infinite; }

/* ---------- Helpers ---------- */
.text-gold { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.glass {
  background: rgba(244,239,228,.035);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(244,239,228,.08);
}
.glass-strong {
  background: rgba(16,14,11,.74);
  backdrop-filter: blur(22px) saturate(130%); -webkit-backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid rgba(216,184,111,.14);
}
.glow-gold { box-shadow: 0 0 0 1px rgba(216,184,111,.12), 0 24px 60px -18px rgba(201,164,90,.3); }

/* Barrierefreiheit: Skip-Link, SR-Status, Fokus */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--gold-btn); color: #1a1510; font-weight: 700; font-size: .9rem;
  padding: 11px 20px; border-radius: 999px; transition: top .2s;
}
.skip-link:focus { top: 14px; }
.sr-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .ctrl:focus-visible, .topic-btn:focus-visible, .play-fab:focus-visible, .card:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; }

.eyebrow { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .28em; color: var(--gold-400); }
.eyebrow--badge {
  display: inline-flex; align-items: center; gap: 9px; letter-spacing: .18em;
  color: rgba(244,239,228,.72); padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(230,205,148,.2); background: rgba(255,255,255,.03); backdrop-filter: blur(8px);
}
.eyebrow--badge svg { width: 15px; height: 15px; color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
  font: 600 .92rem var(--font-sans); border: none; border-radius: 999px; padding: 11px 22px;
  color: var(--cream); transition: transform .18s, box-shadow .25s, background .25s, filter .2s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.97); }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--gold { background: var(--gold-btn); color: #1a1510; box-shadow: 0 12px 30px -8px rgba(201,164,90,.4); }
.btn--gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
#subscribeBtn.is-active { background: rgba(230,205,148,.16); color: var(--gold-200); box-shadow: inset 0 0 0 1px rgba(230,205,148,.55); }
.btn--outline { background: rgba(255,255,255,.03); border: 1px solid rgba(230,205,148,.25); color: rgba(244,239,228,.92); }
.btn--outline:hover { border-color: rgba(230,205,148,.5); background: rgba(255,255,255,.06); }
.btn--outline svg { transition: transform .2s; }
.btn--outline:hover svg { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  width: 100%; padding: 16px clamp(16px, 5vw, 48px);
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(16,14,11,.74);
  backdrop-filter: blur(22px) saturate(130%); -webkit-backdrop-filter: blur(22px) saturate(130%);
  border-bottom: 1px solid rgba(216,184,111,.12);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.6);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(230,205,148,.3); background: linear-gradient(160deg, rgba(239,224,184,.2), transparent);
}
.brand__mark i { display: inline-block; width: 2px; margin: 0 1px; border-radius: 999px; background: var(--gold-200); }
.brand__mark i:nth-child(1) { height: 9px; background: rgba(230,205,148,.8); }
.brand__mark i:nth-child(2) { height: 15px; }
.brand__mark i:nth-child(3) { height: 11px; background: rgba(230,205,148,.8); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 1.05rem; color: var(--cream); letter-spacing: .04em; }
.brand__sub { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .28em; color: rgba(230,205,148,.8); }
.nav__links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__links a { padding: 8px 16px; border-radius: 999px; font-size: .9rem; font-weight: 500; color: rgba(244,239,228,.65); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--cream); background: rgba(255,255,255,.05); }
.nav__back { color: rgba(230,205,148,.85) !important; }

/* ---------- Hero ---------- */
.hero {
  width: min(1180px, 92vw); margin: 56px auto 0;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__copy > * { animation: rise .8s cubic-bezier(.22,1,.36,1) both; }
.hero__copy > *:nth-child(2) { animation-delay: .07s; }
.hero__copy > *:nth-child(3) { animation-delay: .14s; }
.hero__copy > *:nth-child(4) { animation-delay: .21s; }
.hero__copy > *:nth-child(5) { animation-delay: .28s; }

.hero__title { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.1; margin: 24px 0 22px; }
.hero__title .line { display: block; }
.hero__sub { color: var(--sand); font-size: 1.08rem; max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__topics { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__topics li {
  font-size: .8rem; font-weight: 500; color: rgba(244,239,228,.7);
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid rgba(244,239,228,.1); background: rgba(255,255,255,.025);
}

/* Hero Featured-Karte */
.hero__card-wrap { position: relative; }
.hero__card-wrap::before {
  content: ""; position: absolute; inset: -18px; border-radius: 32px;
  background: radial-gradient(circle at 30% 20%, rgba(216,184,111,.14), transparent 60%);
  filter: blur(20px); z-index: -1;
}
.hero__card { border-radius: 26px; padding: 22px; }
.hero__cover { position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; }
.hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.live-tag {
  position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--cream);
  background: rgba(11,10,8,.5); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px;
}
.live-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-300); animation: pulse 1.6s infinite; }
.visualizer { position: absolute; inset-inline: 0; bottom: 0; height: 64px; display: flex; align-items: flex-end; justify-content: center; gap: 4px; padding: 0 24px 16px; }
.visualizer span { flex: 1; max-width: 5px; border-radius: 3px; background: linear-gradient(180deg, var(--gold-200), var(--gold-500)); transform-origin: bottom; animation: eq-bounce 1.1s ease-in-out infinite; animation-play-state: paused; transform: scaleY(.28); }
.hero__card.is-playing .visualizer span { animation-play-state: running; }

.hero__card-body { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.hero__card-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--cream); line-height: 1.25; }
.hero__card-host { color: rgba(203,194,173,.8); font-size: .88rem; margin-top: 3px; }
.play-fab {
  flex-shrink: 0; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  border: none; cursor: pointer; background: var(--gold-btn); color: #1a1510;
  box-shadow: 0 10px 26px -8px rgba(201,164,90,.5); transition: transform .18s, filter .2s;
}
.play-fab svg { width: 24px; height: 24px; margin-left: 2px; }
.play-fab:hover { transform: scale(1.06); filter: brightness(1.05); }
.play-fab:active { transform: scale(.95); }

.hero__card-prog { margin-top: 20px; }
.hero__card-prog .bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.hero__card-prog .bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold-500), var(--gold-200)); transition: width .25s linear; }
.hero__card-prog-row { display: flex; justify-content: space-between; margin-top: 9px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.hero__card-prog-row span:first-child { color: var(--gold-300); text-transform: uppercase; letter-spacing: .16em; }
.hero__card-prog-row span:last-child { color: rgba(244,239,228,.62); }

/* ---------- Section head ---------- */
.episodes { width: min(1180px, 92vw); margin: 100px auto 0; }
/* Anker-Sprünge nicht unter der Sticky-Nav verschwinden lassen */
#episodes, #topics { scroll-margin-top: 96px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-top: 14px; }
.section-sub { color: var(--sand); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Themen-Filter ---------- */
.topics { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 36px auto 40px; }
.topic-btn {
  cursor: pointer; font: 600 .85rem var(--font-sans); padding: 9px 18px; border-radius: 999px;
  color: rgba(244,239,228,.7); background: rgba(255,255,255,.025);
  border: 1px solid rgba(244,239,228,.1); transition: all .2s;
}
.topic-btn:hover { color: var(--cream); border-color: rgba(230,205,148,.3); }
.topic-btn.is-active { background: var(--gold-btn); color: #1a1510; border-color: transparent; box-shadow: 0 10px 24px -10px rgba(201,164,90,.5); }

/* ---------- Episoden ---------- */
.episode-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 22px; }

.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 24px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.02);
  cursor: pointer; transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(230,205,148,.25); background: rgba(255,255,255,.04); }
.card.is-active { border-color: rgba(230,205,148,.4); background: rgba(255,255,255,.05); box-shadow: 0 24px 50px -20px rgba(201,164,90,.25); }

.card__cover { position: relative; height: 168px; overflow: hidden; }
.card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__cover img { transform: scale(1.05); }
.card__badge {
  position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--cream);
  background: rgba(11,10,8,.45); backdrop-filter: blur(6px); padding: 5px 11px; border-radius: 999px;
}
.card__badge { background: rgba(11,10,8,.7); }
.card__num {
  position: absolute; right: 14px; top: 14px; font-size: .66rem; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-200); background: rgba(11,10,8,.7); backdrop-filter: blur(6px); padding: 4px 10px; border-radius: 999px;
}
.card__play {
  position: absolute; right: 14px; bottom: 14px; display: grid; place-items: center;
  width: 46px; height: 46px; border: none; cursor: pointer; border-radius: 50%; background: var(--gold-btn); color: #1a1510;
  box-shadow: 0 8px 20px -6px rgba(201,164,90,.55); opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s;
}
.card__play svg { width: 22px; height: 22px; margin-left: 2px; }
.card:hover .card__play, .card.is-active .card__play, .card__play:focus-visible { opacity: 1; transform: translateY(0); }
.card__eq { position: absolute; left: 14px; bottom: 16px; display: none; align-items: flex-end; gap: 3px; height: 16px; }
.card.is-active.is-playing .card__eq { display: inline-flex; }
.card__eq i { width: 3px; border-radius: 2px; background: var(--gold-300); animation: eq-bounce .9s ease-in-out infinite; }
.card__eq i:nth-child(2){ animation-delay: .2s } .card__eq i:nth-child(3){ animation-delay: .4s } .card__eq i:nth-child(4){ animation-delay: .15s }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.card__cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-400); }
.card__title { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.3; color: var(--cream); margin: 9px 0 8px; }
.card__desc { color: rgba(203,194,173,.78); font-size: .9rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(244,239,228,.07); }
.card__host { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(244,239,228,.6); min-width: 0; }
.card__host b { width: 26px; height: 26px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; font-family: var(--font-serif); font-size: .72rem; color: #1a1510; background: var(--gold-btn); }
.card__host span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card__dur { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--gold-300); white-space: nowrap; }
.card__dur svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
.footer { width: min(1180px, 92vw); margin: 100px auto 0; padding-top: 32px; border-top: 1px solid rgba(216,184,111,.14); text-align: center; }
.footer__brand { font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: .04em; }
.footer__brand .brand__sub { font-size: .6rem; margin-left: 7px; }
.footer p { color: rgba(203,194,173,.65); font-size: .88rem; margin-top: 12px; }
.footer__links { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; font-size: .88rem; color: rgba(203,194,173,.5); }
.footer__links a { color: rgba(230,205,148,.85); transition: color .2s; }
.footer__links a:hover { color: var(--gold-200); }
.footer__wa { display: inline-flex; align-items: center; gap: 7px; }
.footer__wa svg { width: 15px; height: 15px; }

/* ---------- Player ---------- */
.player {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: min(1120px, 95vw); z-index: 60; border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  display: grid; grid-template-columns: 1fr 1.7fr 1fr; align-items: center; gap: 18px;
  padding: 13px 20px;
}
.player__track { display: flex; align-items: center; gap: 13px; min-width: 0; }
.player__art-wrap { position: relative; flex-shrink: 0; }
.player__art { width: 52px; height: 52px; border-radius: 13px; object-fit: cover; background: var(--ink-3); }
.player__dot { position: absolute; right: -3px; bottom: -3px; width: 15px; height: 15px; border-radius: 50%; background: var(--ink-2); display: grid; place-items: center; opacity: 0; }
.player__dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pulse 1.5s infinite; }
.player.is-playing .player__dot { opacity: 1; }
.player__meta { min-width: 0; }
.player__title { font-family: var(--font-serif); font-size: .98rem; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__host { color: rgba(203,194,173,.7); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.player__center { display: flex; flex-direction: column; gap: 9px; }
.player__controls { display: flex; align-items: center; justify-content: center; gap: 8px; }
.ctrl {
  position: relative; display: grid; place-items: center; cursor: pointer; color: rgba(244,239,228,.8);
  width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent;
  transition: background .2s, transform .15s, color .2s;
}
.ctrl svg { width: 21px; height: 21px; }
.ctrl:hover { background: rgba(255,255,255,.08); color: var(--cream); }
.ctrl:active { transform: scale(.9); }
.ctrl small { position: absolute; bottom: 3px; font-size: .54rem; font-weight: 700; color: rgba(203,194,173,.7); }
.ctrl--play { width: 52px; height: 52px; background: var(--gold-btn); color: #1a1510; box-shadow: 0 10px 24px -8px rgba(201,164,90,.5); }
.ctrl--play:hover { background: var(--gold-btn); color: #1a1510; transform: scale(1.05); filter: brightness(1.05); }
.ctrl--play svg { width: 24px; height: 24px; }
.icon-pause { display: none; }
.player.is-playing .icon-play { display: none; }
.player.is-playing .icon-pause { display: block; }

.player__progress { display: flex; align-items: center; gap: 12px; }
.time { font-variant-numeric: tabular-nums; font-size: .76rem; color: rgba(203,194,173,.7); min-width: 38px; text-align: center; }
.progress { position: relative; flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.1); cursor: pointer; }
.progress__buffer { position: absolute; inset: 0; width: 0; border-radius: 999px; background: rgba(255,255,255,.08); }
.progress__fill { position: relative; width: 0; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-500), var(--gold-200)); }
.progress__thumb { position: absolute; right: -6px; top: 50%; transform: translateY(-50%) scale(0); width: 13px; height: 13px; border-radius: 50%; background: var(--gold-100); border: 2px solid var(--gold-500); box-shadow: 0 0 8px rgba(201,164,90,.55); transition: transform .15s; }
.progress:hover .progress__thumb { transform: translateY(-50%) scale(1); }

.player__right { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.ctrl--speed { width: auto; min-width: 44px; border-radius: 999px; padding: 0 10px; font: 700 .8rem var(--font-sans); letter-spacing: .02em; color: rgba(230,205,148,.9); border: 1px solid rgba(230,205,148,.25); }
.ctrl--speed:hover { border-color: rgba(230,205,148,.5); }
.icon-mute { display: none; }
.player.is-muted .icon-vol { display: none; }
.player.is-muted .icon-mute { display: block; color: var(--gold-400); }
.volume { -webkit-appearance: none; appearance: none; width: 108px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.12); cursor: pointer; }
.volume::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--gold-100); border: 2px solid var(--gold-500); box-shadow: 0 0 8px rgba(201,164,90,.55); }
.volume::-moz-range-thumb { width: 12px; height: 12px; border: 2px solid var(--gold-500); border-radius: 50%; background: var(--gold-100); }

/* ---------- Animations ---------- */
@keyframes eq-bounce { 0%,100% { transform: scaleY(.28); } 50% { transform: scaleY(1); } }
@keyframes float-slow { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-20px,0); } }
@keyframes pulse-glow { 0%,100% { opacity: .45; transform: scale(1); } 50% { opacity: .8; transform: scale(1.05); } }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(201,164,90,.5); } 70%{ box-shadow: 0 0 0 7px rgba(201,164,90,0); } 100%{ box-shadow: 0 0 0 0 rgba(201,164,90,0); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal { width: min(760px, 92vw); margin: 56px auto 0; }
.legal .eyebrow { display: block; margin-bottom: 10px; }
.legal h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); margin-bottom: 8px; }
.legal .legal__stand { color: rgba(203,194,173,.6); font-size: .88rem; margin-bottom: 34px; }
.legal section { margin-bottom: 30px; }
.legal h2 { font-size: 1.18rem; margin-bottom: 10px; color: var(--gold-200); }
.legal p, .legal address { color: var(--sand); font-style: normal; font-size: .97rem; margin-bottom: 10px; }
.legal a { color: rgba(230,205,148,.9); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold-200); }
.legal .legal__box { border: 1px solid rgba(216,184,111,.16); background: rgba(255,255,255,.02); border-radius: 18px; padding: 22px 24px; margin-bottom: 34px; }
.legal .legal__box p { margin-bottom: 0; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 26px; color: rgba(230,205,148,.85); font-weight: 600; font-size: .92rem; }
.legal .back:hover { color: var(--gold-200); }
.page--legal { padding-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  body { padding-bottom: 208px; } /* Player wird zweizeilig */
  .hero { grid-template-columns: 1fr; gap: 40px; margin-top: 36px; }
  .hero__card-wrap { max-width: 420px; margin: 0 auto; width: 100%; }
  .nav__links a:not(.nav__back) { display: none; }
  .player { grid-template-columns: 1fr auto; gap: 12px; padding: 11px 14px; }
  .player__center { grid-column: 1 / -1; order: 3; }
  .volume { width: 72px; }
  .page--legal { padding-bottom: 40px; }
}
@media (max-width: 560px) {
  .nav { gap: 10px; padding: 12px 16px; }
  .nav__links { gap: 0; }
  .nav__back { white-space: nowrap; padding: 8px 12px; font-size: .84rem; }
  #subscribeBtn { padding: 11px; gap: 0; }
  #subscribeBtn #subscribeLabel { display: none; }
}
@media (max-width: 520px) {
  .player__right .volume { display: none; }
  .ctrl small { display: none; }
  .episode-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
