/* ---------- Design Tokens ---------- */
:root {
  --c-primary: #41246D;
  --c-primary-dark: #2D1750;
  --c-primary-light: #6B4A9E;
  --c-accent: #FFB940;     /* warmes Goldgelb für Akzente */
  --c-accent-pink: #FF6F8B;
  --c-bg: #F7F4FB;
  --c-surface: #FFFFFF;
  --c-text: #1B1330;
  --c-text-soft: #5C5274;
  --c-border: #E7DFF1;
  --c-spotify: #1DB954;
  --c-apple: #A855F7;
  --c-podde: #00B4D8;

  --shadow-sm: 0 1px 2px rgba(27,19,48,.06), 0 2px 6px rgba(27,19,48,.04);
  --shadow-md: 0 4px 12px rgba(27,19,48,.08), 0 12px 32px rgba(65,36,109,.10);
  --shadow-lg: 0 10px 30px rgba(65,36,109,.18), 0 24px 60px rgba(65,36,109,.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Mulish', 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px; color: var(--c-text);
  text-decoration: none;
}
.brand-logo {
  height: 56px; width: auto; display: block;
}
.main-nav { display: flex; gap: 8px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 500;
  color: var(--c-text); text-decoration: none; font-size: 14px;
  transition: background .15s ease;
}
.main-nav a:hover { background: var(--c-bg); }
.main-nav a.active { background: var(--c-primary); color: #fff; }

/* Hamburger-Toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 10px;
  border-radius: 12px;
  background: transparent; color: var(--c-primary);
  flex-direction: column; justify-content: space-between;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle-bar {
  display: block; height: 2px; background: currentColor;
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile-Navigation (Drawer) */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 340px);
  background: #fff;
  box-shadow: -12px 0 40px rgba(27,19,48,.15);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 88px 28px 32px;
  display: none;
}
body.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav-backdrop {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(27,19,48,.45);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  display: none;
}
body.nav-open .mobile-nav-backdrop { opacity: 1; pointer-events: auto; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a {
  display: block;
  padding: 14px 16px; border-radius: 12px;
  color: var(--c-text); text-decoration: none;
  font-weight: 600; font-size: 16px;
  transition: background .15s ease, color .15s ease;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--c-primary); color: #fff;
}
.mobile-nav-sep {
  margin: 28px 4px 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .8px;
  color: var(--c-text-soft); text-transform: uppercase;
}
.mobile-nav-platforms { display: flex; flex-wrap: wrap; gap: 10px; }
.mobile-nav-platforms .mp {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--c-bg);
  color: var(--c-primary);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mobile-nav-platforms .mp svg {
  width: 20px; height: 20px; fill: currentColor; display: block;
}
.mobile-nav-platforms .mp:hover {
  background: var(--c-primary); color: #fff;
  transform: translateY(-1px); text-decoration: none;
}

.header-platforms {
  display: flex; gap: 4px; align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--c-border);
}
.header-platforms .hp {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--c-primary);
  transition: background .15s ease, transform .15s ease, color .15s ease;
  text-decoration: none;
}
.header-platforms .hp svg {
  width: 16px; height: 16px; fill: currentColor;
}
.header-platforms .hp:hover {
  background: var(--c-primary); color: #fff;
  transform: translateY(-1px); text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(255,185,64,.25), transparent 55%),
    radial-gradient(circle at -10% 110%, rgba(255,111,139,.22), transparent 50%),
    linear-gradient(180deg, #fff 0%, #F7F4FB 100%);
  padding: 72px 0 88px;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(65,36,109,.08); color: var(--c-primary);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--c-primary);
  margin: 0 0 18px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #FF6F8B, #FFB940);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  padding-right: .15em;
  padding-bottom: .08em;
  margin-right: -.05em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero .lead {
  font-size: 18px; color: var(--c-text-soft); max-width: 540px; margin: 0 0 28px;
}
.welcome-video {
  display: block; width: 100%; max-width: 480px;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  background: #0E0726; margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--c-primary-dark); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent; color: var(--c-primary);
  box-shadow: inset 0 0 0 1.5px var(--c-primary);
}
.btn-ghost:hover { background: var(--c-primary); color: #fff; }

.hero-stats { display: flex; gap: 36px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--c-primary); line-height: 1;
}
.hero-stats span { font-size: 13px; color: var(--c-text-soft); margin-top: 4px; }

.hero-visual { position: relative; height: 380px; width: 100%; }
.cover-stack { position: absolute; inset: 0; }
.cover-stack img {
  position: absolute; width: 230px; height: 230px; border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  transition: transform .4s ease;
}
.stack-1 { top: 30px;  right: 20px; transform: rotate(6deg); z-index: 4; }
.stack-2 { top: 90px;  right: 180px; transform: rotate(-7deg); z-index: 3; width: 200px; height: 200px; }
.stack-3 { top: 200px; right: 60px; transform: rotate(3deg); z-index: 2; width: 180px; height: 180px; opacity: .9; }
.stack-4 { top: 0;     right: 240px; transform: rotate(-3deg); z-index: 1; width: 140px; height: 140px; opacity: .7; }
.cover-stack:hover .stack-1 { transform: rotate(8deg) translateY(-6px); }
.cover-stack:hover .stack-2 { transform: rotate(-9deg) translateY(-4px); }

/* ---------- Inhaltsverzeichnis ---------- */
.toc-bar {
  position: relative;
  margin-top: -32px; z-index: 10;
}
.toc-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.toc-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.toc-top h2 {
  margin: 0; font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: var(--c-primary);
}
.search-wrap {
  position: relative; flex: 1; max-width: 460px; min-width: 260px;
}
.search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; fill: var(--c-text-soft); pointer-events: none;
}
#episode-search {
  width: 100%; padding: 12px 38px 12px 44px;
  border-radius: 999px; border: 1.5px solid var(--c-border);
  background: var(--c-bg); font-size: 14px; color: var(--c-text);
  transition: border-color .15s ease, background .15s ease;
}
#episode-search:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
}
#search-clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-primary); color: #fff; font-size: 16px; line-height: 1;
  display: grid; place-items: center;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
}
.toc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  color: var(--c-text); text-decoration: none;
  border: 1px solid var(--c-border);
  background: #fff;
  min-width: 0;
  transition: background .15s ease, transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.toc-item:hover {
  background: var(--c-bg); text-decoration: none;
  transform: translateX(2px);
  border-color: var(--c-primary-light);
  box-shadow: 0 2px 6px rgba(65,36,109,.08);
}
.toc-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
  font-family: var(--font-display);
}
.toc-title {
  font-size: 14px; line-height: 1.3;
  min-width: 0; flex: 1;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
}
.toc-item.is-current { background: var(--c-primary); color: #fff; }
.toc-item.is-current .toc-num { background: rgba(255,255,255,.2); }
.toc-item.is-hidden { display: none; }
.toc-empty {
  margin: 16px 0 0; text-align: center; color: var(--c-text-soft);
  font-size: 14px;
}

/* ---------- Episodes ---------- */
.episodes-main { padding: 64px 24px 80px; }

.episode {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  scroll-margin-top: 100px;
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease;
}
.episode:hover {
  box-shadow: var(--shadow-md);
}
.episode.is-target {
  box-shadow: 0 0 0 3px var(--c-accent), var(--shadow-md);
}

.episode-head {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  margin-bottom: 28px;
}
.episode-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.episode-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.episode-cover:hover img { transform: scale(1.04); }
.cover-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  color: var(--c-primary);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.episode-meta { min-width: 0; }
.episode-num {
  display: inline-block;
  font-size: 13px; color: var(--c-text-soft);
  font-weight: 500; letter-spacing: .3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.episode-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  color: var(--c-primary);
  margin: 0 0 6px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
/* TOC-Titel: Teil vor Bindestrich fett, Rest normal */
.toc-title .title-main { font-weight: 900; }
.toc-title .title-sub { font-weight: 500; }
.toc-title .title-sep { font-weight: 500; opacity: .55; }
.episode-hashtags {
  display: flex; flex-wrap: wrap;
  gap: 4px 12px;
  margin: 14px 0 2px;
}
.hashtag {
  color: var(--c-accent-pink);
  font-size: 14px; font-weight: 600;
}
.episode-desc { color: var(--c-text-soft); font-size: 15.5px; line-height: 1.65; }
.episode-desc p { margin: 0 0 8px; }
.desc-rest {
  display: none; margin-top: 8px;
}
.episode.expanded .desc-rest { display: block; }
.desc-toggle {
  margin-top: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-primary);
  padding: 0; text-decoration: underline;
}
.desc-toggle:hover { text-decoration: none; }

.episode-audio {
  display: block; width: 100%; margin: 18px 0 18px;
  height: 44px;
}
.episode-audio::-webkit-media-controls-panel {
  background: var(--c-bg);
}

.platforms { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.platforms-label {
  font-size: 13px; color: var(--c-text-soft); font-weight: 600;
  margin-right: 4px;
}
.platform-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  color: var(--c-text); font-weight: 600; font-size: 13.5px;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.platform-btn svg { width: 18px; height: 18px; }
.platform-btn:hover { transform: translateY(-1px); text-decoration: none; }
.platform-btn.spotify:hover { background: var(--c-spotify); border-color: var(--c-spotify); color: #fff; }
.platform-btn.spotify svg { fill: var(--c-spotify); }
.platform-btn.spotify:hover svg { fill: #fff; }
.platform-btn.apple:hover { background: var(--c-apple); border-color: var(--c-apple); color: #fff; }
.platform-btn.apple svg { fill: var(--c-apple); }
.platform-btn.apple:hover svg { fill: #fff; }
.platform-btn.podde:hover { background: var(--c-podde); border-color: var(--c-podde); color: #fff; }
.platform-btn.podde svg { fill: var(--c-podde); }
.platform-btn.podde:hover svg { fill: #fff; }

/* ---------- Videos ---------- */
.videos {
  border-top: 1px dashed var(--c-border);
  padding-top: 26px;
}
.videos-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.videos-head h3 {
  margin: 0; font-family: var(--font-display);
  color: var(--c-primary); font-size: 19px; font-weight: 600;
}
.videos-sub { color: var(--c-text-soft); font-size: 13.5px; }

.videos-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 16px;
}
.videos-grid.no-landscape {
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: start;
}
.video-tile {
  position: relative;
  background: #0E0726;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.video-landscape { aspect-ratio: 16 / 9; }

/* Landscape-Spalte: Video + Themen-Box gestapelt */
.video-col-landscape {
  display: flex; flex-direction: column; gap: 16px;
  min-width: 0;
}
.video-col-landscape .video-tile { flex-shrink: 0; }
.episode-topics {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 0;
  background: linear-gradient(135deg, rgba(65,36,109,.06), rgba(255,111,139,.07));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.topics-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
  color: var(--c-primary);
}
.topic-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-content: center; flex: 1;
}
.topic-chip {
  display: inline-block;
  padding: 6px 13px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--c-primary);
  white-space: nowrap;
}
.video-portrait { aspect-ratio: 9 / 16; }

.video-thumb {
  position: absolute; inset: 0;
  background-color: var(--c-primary-dark);
  overflow: hidden;
}
.video-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.video-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%);
}
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 48px; padding: 0; background: none;
  z-index: 2;
  transition: transform .15s ease;
}
.video-play svg { width: 100%; height: 100%; }
.video-play .yt-bg { fill: rgba(33,33,33,.85); transition: fill .15s ease; }
.video-tile:hover .video-play { transform: translate(-50%, -50%) scale(1.06); }
.video-tile:hover .video-play .yt-bg { fill: #FF0000; }
.video-portrait .video-play { width: 56px; height: 40px; }

.video-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px; z-index: 3;
  color: #fff;
}
.video-title {
  font-size: 13.5px; font-weight: 600; line-height: 1.3;
  max-height: 3.6em; overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.video-link {
  display: inline-block; margin-top: 6px; font-size: 11.5px;
  color: rgba(255,255,255,.85); text-decoration: none; font-weight: 500;
}
.video-link:hover { color: #fff; text-decoration: underline; }
.video-portrait .video-title { font-size: 12px; max-height: 4.5em; }
.video-portrait .video-link { display: none; }

.dummy-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: rgba(255,185,64,.95);
  color: #2D1750;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .3px;
}

.video-tile.placeholder {
  background: linear-gradient(135deg, #2D1750 0%, #41246D 100%);
}
.video-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 16px;
}
.video-ph .play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.video-ph .play-icon svg { width: 26px; height: 26px; fill: #fff; }
.video-ph .video-type {
  font-size: 12px; font-weight: 600; opacity: .9;
  letter-spacing: .4px; text-transform: uppercase;
}
.video-ph .video-coming {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 600; margin-top: 6px;
}

.video-tile iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; z-index: 5;
}
.iframe-fallback {
  position: absolute; bottom: 8px; right: 8px; z-index: 6;
  background: rgba(0,0,0,.7); color: #fff;
  padding: 6px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
  text-decoration: none;
  opacity: 0; transition: opacity .2s ease;
  pointer-events: auto;
}
.video-tile:hover .iframe-fallback { opacity: 1; }
.iframe-fallback:hover { background: #FF0000; color: #fff; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary);
  color: #fff;
  margin-top: 40px;
  padding: 48px 0 36px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center;
}
.footer-brand {
  display: flex; align-items: center;
}
.footer-logo {
  height: 84px; width: auto;
  display: block;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.85); font-size: 14px; text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-platforms .sm {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.footer-platforms .sm svg {
  width: 19px; height: 19px; fill: currentColor;
  display: block;
}
.footer-platforms .sm:hover { transform: translateY(-2px); text-decoration: none; }
.footer-platforms .sm-spotify:hover   { background: var(--c-spotify); color: #fff; }
.footer-platforms .sm-apple:hover     { background: #A855F7; color: #fff; }
.footer-platforms .sm-podde:hover     { background: var(--c-podde); color: #fff; }
.footer-platforms .sm-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); color: #fff; }
.footer-platforms .sm-linkedin:hover  { background: #0077B5; color: #fff; }
.footer-platforms .sm-youtube:hover   { background: #FF0000; color: #fff; }

/* ---------- Floating "to top" ---------- */
#to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent-pink), var(--c-primary));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(255,111,139,.45), 0 4px 12px rgba(65,36,109,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  animation: to-top-pulse 2.4s ease-in-out infinite;
}
#to-top::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--c-accent-pink);
  opacity: 0; transition: opacity .2s ease;
}
#to-top:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 32px rgba(255,111,139,.55), 0 6px 16px rgba(65,36,109,.35);
  animation: none;
}
#to-top:hover::before { opacity: .4; }
#to-top svg { width: 28px; height: 28px; fill: currentColor; }
.to-top-label {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: var(--c-primary);
  text-transform: uppercase; letter-spacing: .5px;
  background: #fff; padding: 2px 8px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0; transition: opacity .2s ease, bottom .2s ease;
  pointer-events: none;
}
#to-top:hover .to-top-label { opacity: 1; bottom: -26px; }
@keyframes to-top-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,111,139,.45), 0 4px 12px rgba(65,36,109,.25), 0 0 0 0 rgba(255,111,139,.5); }
  50% { box-shadow: 0 8px 24px rgba(255,111,139,.45), 0 4px 12px rgba(65,36,109,.25), 0 0 0 10px rgba(255,111,139,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero { padding: 48px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 320px; max-width: 420px; margin: 0 auto; }
  /* Mobile-Cover: zentriert, gefächert, skaliert */
  .cover-stack img {
    width: 55%; height: auto; aspect-ratio: 1 / 1;
    left: 50%; top: 50%;
    right: auto;
    transform-origin: center;
  }
  .cover-stack img.stack-1 { transform: translate(-45%, -50%) rotate(5deg); z-index: 4; }
  .cover-stack img.stack-2 { transform: translate(-95%, -55%) rotate(-8deg) scale(.85); z-index: 3; }
  .cover-stack img.stack-3 { transform: translate(-5%, -35%) rotate(6deg) scale(.8); z-index: 2; opacity: .92; }
  .cover-stack img.stack-4 { transform: translate(-85%, 5%) rotate(-4deg) scale(.65); z-index: 1; opacity: .7; }
  .episode { padding: 24px; }
  .episode-head { grid-template-columns: 140px 1fr; gap: 20px; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .video-col-landscape { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 920px) {
  .header-platforms { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav, .mobile-nav-backdrop { display: block; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 620px) {
  html { scroll-padding-top: 76px; }
  .header-inner { height: 64px; }
  .brand-text strong { font-size: 14px; }
  .brand-text span { font-size: 11px; }
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 16px; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 26px; }
  .toc-inner { padding: 22px 18px; border-radius: var(--radius-md); }
  .toc-grid { grid-template-columns: 1fr; }
  .episode { padding: 18px; border-radius: var(--radius-md); }
  .episode-head { grid-template-columns: 1fr; }
  .episode-cover { max-width: 220px; }
  .videos-grid { grid-template-columns: 1fr; }
  .platforms-label { width: 100%; margin-bottom: 4px; }
}

/* ---------- Hero-Intro (oberer Hero, lila Gradient) ---------- */
.hero-intro {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(255,111,139,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(255,185,64,.18) 0%, transparent 50%),
    linear-gradient(135deg, #2D1750 0%, #41246D 55%, #5A2F8C 100%);
  color: #fff;
  isolation: isolate;
}
.hero-intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 32%, rgba(255,255,255,.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.06) 0 1.5px, transparent 2px);
  background-size: 360px 360px;
  opacity: .45; z-index: 0;
}
.hero-intro > .container { position: relative; z-index: 1; }
.hero-intro .hero-inner {
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  position: relative;
}
.hero-intro .hero-text { padding-bottom: 110px; max-width: 640px; position: relative; }
.hero-logo-mark {
  display: block;
  width: 340px; height: auto;
  max-width: 100%;
  margin: 0 0 28px;
}
@media (max-width: 620px) {
  .hero-logo-mark { width: 240px; margin-bottom: 22px; }
}
.hero-intro .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
}
.hero-intro h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero-intro h1 em {
  background: linear-gradient(90deg, #FFB940, #FF6F8B);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-intro .lead { color: rgba(255,255,255,.88); }
.hero-intro .btn-primary {
  background: #fff; color: var(--c-primary);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.hero-intro .btn-primary:hover { background: #FFE5EC; color: var(--c-primary-dark); }
.hero-intro .btn-ghost {
  color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6);
}
.hero-intro .btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Plattform-Buttons absolut, alle in einer Zeile, dürfen das Bild überlagern */
.hero-intro .hero-platforms {
  position: absolute;
  left: 0; bottom: 32px;
  margin-top: 0; z-index: 5;
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
}
@media (max-width: 920px) {
  .hero-intro .hero-platforms {
    position: relative;
    left: auto; bottom: auto;
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
    margin-top: 8px;
  }
  .hero-intro .hero-text { padding-bottom: 0; }
}
.hero-intro .hero-platforms-label {
  color: rgba(255,255,255,.85);
}
.hero-intro .hp-btn {
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.hp-instagram svg { fill: #DD2A7B; }
.hp-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF) !important; border-color: #DD2A7B; color: #fff; }
.hp-instagram:hover svg { fill: #fff; }

/* Hero-Visual: groß und bündig */
.hero-intro .hero-visual {
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  margin-bottom: -1px;
  overflow: visible;
  position: relative;
}
.hero-intro .hero-photo {
  width: 116%;
  max-width: none;
  height: auto;
  display: block;
  margin-right: -8%;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.32));
}

.hero-platforms {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 8px;
}
.hero-platforms-label {
  font-size: 13px; font-weight: 600; color: var(--c-text-soft);
  margin-right: 4px;
}
.hp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--c-border);
  color: var(--c-text); font-weight: 600; font-size: 13.5px;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.hp-btn svg { width: 18px; height: 18px; }
.hp-btn:hover { transform: translateY(-1px); text-decoration: none; }
.hp-spotify svg { fill: var(--c-spotify); }
.hp-spotify:hover { background: var(--c-spotify); border-color: var(--c-spotify); color: #fff; }
.hp-spotify:hover svg { fill: #fff; }
.hp-apple svg { fill: var(--c-apple); }
.hp-apple:hover { background: var(--c-apple); border-color: var(--c-apple); color: #fff; }
.hp-apple:hover svg { fill: #fff; }
.hp-podde svg { fill: var(--c-podde); }
.hp-podde:hover { background: var(--c-podde); border-color: var(--c-podde); color: #fff; }
.hp-podde:hover svg { fill: #fff; }

/* ---------- Section-Eyebrow + gemeinsame Section-Stile ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--c-accent-pink);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

/* ---------- Duo-Section: Idee + Über uns nebeneinander ---------- */
.duo-section {
  padding: 80px 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(65,36,109,.04) 100%);
  overflow: hidden;
}
.duo-col-left { padding-bottom: 80px; }
.duo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: stretch;
}
.duo-col {
  display: flex; flex-direction: column;
}
.duo-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 22px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.duo-col p {
  font-size: 16.5px; color: var(--c-text); line-height: 1.7;
  margin: 0 0 16px;
}
.duo-col strong { color: var(--c-text); font-weight: 700; }
.duo-col .lead-paragraph {
  font-size: 18px; font-weight: 600;
  color: var(--c-text);
  margin-bottom: 18px;
}
.duo-image img {
  width: 100%; height: auto; display: block;
}
.duo-image-top {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.duo-image-bottom {
  margin-top: auto;
  padding-top: 28px;
  margin-bottom: 0;
  background: transparent;
}
.duo-image-bottom img {
  filter: drop-shadow(0 10px 24px rgba(65,36,109,.18)) drop-shadow(0 4px 10px rgba(65,36,109,.12));
  display: block;
}
.duo-cta {
  align-self: flex-start;
  margin: 18px 0 6px;
}
.idee-quote {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid var(--c-accent-pink);
  background: rgba(255,111,139,.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--c-primary) !important;
  font-weight: 500;
  font-size: 17px;
}

/* ---------- Folgen-Intro ---------- */
.folgen-intro {
  padding: 56px 0 28px;
  text-align: center;
}
.folgen-intro-inner {
  max-width: 720px; margin: 0 auto;
}
.folgen-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.folgen-intro h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #FF6F8B, #FFB940);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
}
.folgen-intro .lead {
  font-size: 17px; color: var(--c-text-soft); margin: 0 0 28px;
}
.folgen-intro .hero-stats {
  justify-content: center;
}

/* ---------- Kontakt-Section ---------- */
.kontakt-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(65,36,109,.05) 0%, rgba(255,111,139,.05) 100%);
  border-top: 1px solid var(--c-border);
}
.kontakt-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px; align-items: start;
}
.kontakt-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 18px;
  line-height: 1.1;
}
.kontakt-text .lead {
  font-size: 17px; color: var(--c-text-soft); margin: 0 0 32px;
}
.kontakt-channels {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.kontakt-channels li { margin: 0; }
.kc-link {
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.kc-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--c-primary-light);
  text-decoration: none;
}
.kc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent-pink));
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.kc-icon svg { width: 22px; height: 22px; }
.kc-text {
  display: flex; flex-direction: column; line-height: 1.3;
  min-width: 0;
}
.kc-text strong {
  font-size: 13px; color: var(--c-text-soft); font-weight: 600;
  letter-spacing: .3px;
}
.kc-text > span:not(:first-child) {
  color: var(--c-primary); font-weight: 700; font-size: 16px;
}

/* Kontakt-Form */
.kontakt-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.kontakt-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 14px; font-weight: 600; color: var(--c-primary);
}
.form-row label span { color: var(--c-accent-pink); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--c-text-soft); opacity: 1;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  flex-direction: row; align-items: flex-start; gap: 10px;
}
.form-checkbox input { margin-top: 4px; flex-shrink: 0; }
.form-checkbox label { font-weight: 400; font-size: 13.5px; color: var(--c-text-soft); line-height: 1.5; }
.form-checkbox label a { color: var(--c-primary); }
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.kf-submit {
  align-self: flex-start;
  margin-top: 8px;
  cursor: pointer;
}
.kf-status { font-size: 14px; min-height: 22px; }
.kf-status.is-success { color: #1B7A40; font-weight: 600; }
.kf-status.is-error   { color: #C8112F; font-weight: 600; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: #fff;
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -8px 24px rgba(27,19,48,.08);
  padding: 18px 0;
}
.cookie-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 0; font-size: 14px; color: var(--c-text-soft); line-height: 1.6;
  flex: 1; min-width: 280px;
}
.cookie-banner p a { color: var(--c-primary); }
.cookie-banner .btn { padding: 10px 22px; }

/* ---------- Footer-Tagline ---------- */
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-tagline {
  font-size: 13.5px; color: rgba(255,255,255,.7); margin: 0;
  font-style: italic;
}

/* ---------- Rechtliche Unterseiten (Impressum, Datenschutz) ---------- */
.legal-page {
  padding: 60px 0 100px;
}
.legal-content {
  max-width: 760px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 48px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-primary);
  margin: 2.5rem 0 .6rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--c-border);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 1.6rem 0 .4rem;
}
.legal-content p { margin: 0 0 1rem; }
.legal-content ul {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}
.legal-content ul li { margin-bottom: .5rem; }
.legal-content a { word-break: break-all; }
.legal-caps {
  font-size: .85rem;
  line-height: 1.7;
  font-weight: 600;
  padding: 1rem 1.25rem;
  background: var(--c-bg);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
}

/* ---------- Responsive für Phase 2 ---------- */
@media (max-width: 920px) {
  .duo-grid,
  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .duo-image { max-width: 540px; }
  .duo-image-top, .duo-image-bottom { margin-left: auto; margin-right: auto; }
  .duo-section { padding: 56px 0; }
  .kontakt-section { padding: 56px 0; }
  .kontakt-form-wrap { padding: 28px; }
}
@media (max-width: 620px) {
  .hero-platforms .hp-btn span { display: none; }
  .hero-platforms .hp-btn { padding: 10px; }
  .hero-platforms .hp-btn svg { width: 22px; height: 22px; }
  .duo-col h2,
  .kontakt-text h2 { font-size: 1.85rem; }
  .kontakt-form-wrap { padding: 22px; border-radius: var(--radius-md); }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner .btn { align-self: flex-end; }
}
