@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Farbpalette aus dem Moodboard */
  --black: #0d1012;
  --bg: #141618;
  --graphite: #2a3137;
  --teal: #3d6b73;
  --sage: #6d8f7f;
  --purple: #8a6a7f;
  --coral: #d47a6a;
  --gold: #d8b066;

  --text: #f1f0ec;
  --muted: #a9abad;
  --line: rgba(255,255,255,.13);

  /* Verläufe aus dem Moodboard */
  --gradient-cool: linear-gradient(90deg, var(--teal), var(--sage));
  --gradient-violet: linear-gradient(90deg, var(--teal), var(--purple), var(--coral));
  --gradient-warm: linear-gradient(90deg, var(--coral), var(--gold));
  --gradient-spectrum: linear-gradient(
    90deg,
    var(--teal) 0%,
    #7394a0 20%,
    var(--purple) 43%,
    var(--coral) 68%,
    var(--gold) 100%
  );

  --max: 1280px;
  --radius: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 15%, rgba(61,107,115,.08), transparent 28rem),
    radial-gradient(circle at 28% 75%, rgba(138,106,127,.06), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.55;
  width: 100%;
  overflow-x: hidden;
  hyphens: auto;
  -webkit-hyphens: auto;
}

p {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    hyphens: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

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

::selection {
  background: var(--purple);
  color: #fff;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: rgba(13,16,18,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  color: #d9eeee;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 0 18px rgba(61,107,115,.16);
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
}

.brand-logo {
  width: 230px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #d1d1d0;
  font-size: 14px;
  transition: color .2s ease;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 200;
}

.main-nav a:nth-child(1) { color: #e7c57e; }
.main-nav a:nth-child(2) { color: #e59a89; }
.main-nav a:nth-child(3) { color: #86c5ce; }
.main-nav a:nth-child(4) { color: #c59ab9; }

.main-nav a:nth-child(1):hover { color: #86c5ce; }
.main-nav a:nth-child(2):hover { color: #c59ab9; }
.main-nav a:nth-child(3):hover { color: #e59a89; }
.main-nav a:nth-child(4):hover { color: #e7c57e; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.visual-image,
.host-image,
.episode-image,
.quote-image {
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-media {
  filter: saturate(.82);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,10,.6) 0%, rgba(7,9,10,.5) 48%, rgba(7,9,10,.6) 100%),
    linear-gradient(0deg, rgba(7,9,10,.7), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 90vw);
  margin-left: max(5vw, calc((100vw - var(--max)) / 2));
  padding-top: 80px;
}

.eyebrow,
.section-kicker,
.episode-number,
.host-meta > span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9db7b3;
}

.hero h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: .95;
  letter-spacing: -.045em;
}

.hero h1 {
  margin: 24px 0 14px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--text);
  font-style: normal;
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: #dedddb;
}

.color-flow {
  width: min(390px, 75vw);
  height: 2px;
  margin-top: 15px;
  background: var(--gradient-spectrum);
  box-shadow:
    0 0 12px rgba(61,107,115,.2),
    0 0 18px rgba(212,122,106,.12);
}

.hero-copy {
  max-width: 520px;
  margin: 20px 0 34px;
  color: #b5b6b6;
  font-size: 1rem;
}

.hero-accent {
  position: absolute;
  right: 9vw;
  bottom: 11vh;
  width: 2px;
  height: 170px;
}

.hero-accent--gradient {
  background: var(--gradient-spectrum);
  box-shadow:
    0 0 18px rgba(61,107,115,.35),
    0 0 28px rgba(212,122,106,.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease;
  border-radius: 15px;
}

.button-primary {
  background: var(--text);
  color: #111;
}

.button-primary:hover {
  background: var(--gradient-spectrum);
  color: #fff;
}

.button-spectrum {
  position: relative;
  isolation: isolate;
  color: #fff;
  border: 0;
  background: var(--gradient-spectrum);
  box-shadow: 0 8px 28px rgba(138,106,127,.18);
}

.button-spectrum:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,122,106,.2);
}

.button-outline {
  border-color: var(--line);
}

.button-outline:hover {
  border-color: transparent;
  background: var(--gradient-cool);
  color: #fff;
}

/* Shared typography */

.gradient-text {
  background: var(--gradient-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-spectrum {
  display: flex;
  height: 3px;
  margin-top: 65px;
  overflow: hidden;
  opacity: .9;
}

.accent-spectrum i {
  flex: 1;
  display: block;
}

.spectrum-teal { background: var(--teal); }
.spectrum-purple { background: var(--purple); }
.spectrum-coral { background: var(--coral); }
.spectrum-gold { background: var(--gold); }

.accent-teal { color: #76b5bd; }
.accent-purple { color: #bb8fab; }
.accent-coral { color: #df8c7d; }
.accent-gold { color: #e0bc76; }

/* Sections */

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 130px 0;
}

.section-kicker {
  color: #9aa4a7;
}

.intro-grid,
.contact-grid {
    display: grid;
    /* CSS Grid Blowout Fix: minmax(0, 1fr) statt 1fr */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3vw;
    margin-top: 44px;
    justify-content: center;
}

h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
}

.intro-text,
.section-heading p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.intro-text p + p {
  margin-top: 24px;
}

/* Visual break */

.visual-break {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

.visual-image {
  filter: saturate(.82);
  background-position: bottom left;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61,107,115,.13), transparent 30%, rgba(212,122,106,.13) 78%, rgba(216,176,102,.08)),
    linear-gradient(0deg, rgba(8,9,10,.68), transparent 55%);
}

.visual-break::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--gradient-spectrum);
  opacity: .7;
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 40px;
  display: flex;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: #ddd;
}

/* Hosts */

.hosts {
  background:
    linear-gradient(180deg, var(--bg), #121416);
}

.section-heading {
  display: grid;
  /* CSS Grid Blowout Fix: minmax(0, ...) statt fester fractions */
  grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
  gap: 10vw;
  align-items: end;
  margin: 44px 0 70px;
}

.host-grid {
  display: grid;
  /* CSS Grid Blowout Fix */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.host-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.host-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 2px;
}

.host-card--teal::before {
  background: var(--gradient-cool);
}

.host-card--purple::before {
  background: linear-gradient(90deg, var(--purple), var(--coral));
}

.host-card--gold::before {
  background: var(--gradient-warm);
}

.host-image {
  position: relative;
  aspect-ratio: 4 / 5;
  transition: transform .5s ease, filter .5s ease;
}

.host-card:hover .host-image {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.host-meta {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(29,33,37,.95), rgba(20,22,24,1));
}

.host-card--teal .host-meta > span { color: #76b5bd; }
.host-card--purple .host-meta > span { color: #bb8fab; }
.host-card--gold .host-meta > span { color: #e0bc76; }

.host-meta h3 {
  margin: 8px 0 4px;
  font-size: 1.45rem;
  font-weight: 500;
}

.host-meta p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

/* Episodes */

.episodes {
  padding-top: 80px;
}

.episode-feature {
  display: grid;
  /* CSS Grid Blowout Fix */
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  min-height: 560px;
  margin-top: 44px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.episode-image {
  position: relative;
  min-height: 460px;
  filter: saturate(.86);
}

.episode-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 70px);
}

.episode-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--gradient-spectrum);
}

.episode-number {
  color: #d9a28f;
}

.episode-content h2 {
  margin: 20px 0;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
}

.episode-content p {
  color: var(--muted);
  max-width: 480px;
}

.episode-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}

.text-link {
  color: var(--accent-soft, #c39bdd);
  font-size: 13px;
}

.episode-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.episode-row {
  position: relative;
  display: grid;
  /* CSS Grid Blowout Fix: Verhindert, dass lange Episodentitel das Grid auf >800px aufblähen */
  grid-template-columns: 70px minmax(0, 1fr) 110px 24px;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}

.episode-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  transition: width .3s ease;
}

.episode-row:hover {
  padding-left: 10px;
  background: rgba(255,255,255,.025);
}

.episode-row:hover::after {
  width: 100%;
}

.episode-row--teal::after { background: var(--teal); }
.episode-row--purple::after { background: linear-gradient(90deg, var(--purple), var(--coral)); }
.episode-row--gold::after { background: var(--gold); }

.episode-row span,
.episode-row small {
  color: var(--muted);
  font-size: 12px;
}

.episode-row--teal span { color: #76b5bd; }
.episode-row--purple span { color: #bb8fab; }
.episode-row--gold span { color: #e0bc76; }

.episode-row strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

.episode-row b {
  color: #ddd;
}

/* Quote */

.quote-section {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-image {
  filter: grayscale(.12) saturate(.78);
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61,107,115,.1), transparent 32%, rgba(138,106,127,.11) 70%, rgba(212,122,106,.08)),
    rgba(10,10,12,.48);
}

.quote-light {
  position: absolute;
  z-index: 1;
  width: 35vw;
  height: 14vw;
  right: 8%;
  bottom: -4%;
  background: radial-gradient(
    ellipse,
    rgba(216,176,102,.22) 0%,
    rgba(212,122,106,.09) 34%,
    transparent 70%
  );
  filter: blur(25px);
}

blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(950px, 86vw);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.05em;
}

/* Contact / Footer */

.contact {
  padding-bottom: 150px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 42px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand strong {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: .13em;
}

.footer-brand span {
  font-size: 11px;
}

.footer-spectrum {
  display: flex;
  width: 160px;
  height: 2px;
}

.footer-spectrum i {
  flex: 1;
}

.footer-spectrum i:nth-child(1) { background: var(--teal); }
.footer-spectrum i:nth-child(2) { background: var(--purple); }
.footer-spectrum i:nth-child(3) { background: var(--coral); }
.footer-spectrum i:nth-child(4) { background: var(--gold); }

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--accent-soft, #c39bdd);
}

/* Mobile / Responsive */

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 5vw;
  }

  .brand-logo {
    width: min(190px, 62vw);
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 5vw 18px;
    background: rgba(12,14,16,.97);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .hero { min-height: 100svh; }

  .hero-content {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 105px 7vw 70px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }

  .hero-lead { font-size: clamp(1.15rem, 5vw, 1.5rem); }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: .98rem;
  }

  .hero .button {
    width: 100%;
    max-width: 340px;
  }

  .hero-accent {
    right: 7vw;
    bottom: 8vh;
    height: 90px;
  }

  .color-flow {
    width: 100%;
    max-width: 390px;
  }

  .section {
    width: min(90vw, 680px);
    padding: 80px 0;
  }

  .intro-grid,
  .contact-grid,
  .section-heading,
  .episode-feature {
    /* Auch in Mobile muss die Spalte schrumpfen können */
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .intro-grid,
  .section-heading { margin-top: 34px; }

  h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }

  .intro-text,
  .section-heading p,
  .contact p { font-size: 1rem; }

  .accent-spectrum { margin-top: 45px; }

  .visual-break,
  .quote-section { min-height: 58svh; }

  .visual-caption {
    left: 7vw;
    right: 7vw;
    bottom: 28px;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 10px;
    line-height: 1.4;
  }

  .host-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .host-image { aspect-ratio: 16 / 10; }
  .host-meta { padding: 20px; }

  .episodes { padding-top: 65px; }

  .episode-feature {
    min-height: 0;
    margin-top: 34px;
  }

  .episode-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .episode-content { padding: 30px 25px 32px; }

  .episode-content::before {
    top: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .episode-content h2 { font-size: clamp(2.3rem, 11vw, 4rem); }

  .episode-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .episode-actions .button { width: 100%; }

  .episode-row {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 0;
    padding: 18px 0;
  }

  .episode-row strong {
    min-width: 0;
    font-size: .92rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .episode-row small { display: none; }
  .episode-row b { text-align: right; }

  .episodes > h2 {
    margin-top: 65px !important;
    margin-bottom: 22px !important;
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .episodes > p { margin-bottom: 28px !important; }
  .episodes > .button { width: 100%; }

  blockquote {
    width: 86vw;
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .quote-light {
    width: 75vw;
    height: 38vw;
  }

  .contact { padding-bottom: 90px; }
  .contact-grid { margin-top: 34px; }

  .contact .button {
    width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 34px 7vw;
  }

  .footer-spectrum {
    width: 100%;
    max-width: 220px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

/* Very small phones */

@media (max-width: 480px) {
  .site-header { padding: 0 4.5vw; }
  .brand-logo { width: min(165px, 58vw); }

  .hero-content {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); }
  .hero-accent { display: none; }

  .section {
    width: 88vw;
    padding: 68px 0;
  }

  .host-meta,
  .episode-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .episode-row {
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 16px 0;
  }

  .episode-row strong { font-size: .86rem; }
  .visual-caption { bottom: 22px; }
  blockquote { font-size: clamp(2.25rem, 12vw, 3.8rem); }
}

/* Landscape phones: avoid an unnecessarily tall hero */

@media (max-width: 800px) and (orientation: landscape) {
  .hero-content {
    padding-top: 90px;
    padding-bottom: 55px;
  }

  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}