@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;
  lang: de;
}

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;
}

body {
    hyphens: auto;
    -webkit-hyphens: auto;
}

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

h1, h2, h3, h4, h5, h6 {
    hyphens: none;
}

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;
    grid-template-columns: 1fr 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;
  grid-template-columns: 1fr .75fr;
  gap: 10vw;
  align-items: end;
  margin: 44px 0 70px;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(3, 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;
  grid-template-columns: 1.15fr .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;
  grid-template-columns: 70px 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: 200;
  text-transform: uppercase;
}

.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.2rem, 4.6vw, 5.6rem);
  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 */

@media (max-width: 800px) {
  .site-header {
    height: 68px;
  }

  .brand-name {
    font-size: 11px;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 5vw 20px;
    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;
  }

  .hero-content {
    margin-left: 7vw;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 6rem);
  }

  .hero-accent {
    right: 7vw;
    height: 100px;
  }

  .color-flow {
    width: 75vw;
  }

  .section {
    padding: 90px 0;
  }

  .intro-grid,
  .contact-grid,
  .section-heading,
  .episode-feature {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-image {
    aspect-ratio: 16 / 10;
  }

  .episode-feature {
    min-height: 0;
  }

  .episode-image {
    min-height: 320px;
  }

  .episode-row {
    grid-template-columns: 32px 1fr 24px;
    padding: 9px;
  }

  .episode-row small {
    display: none;
  }

  .visuel-image{
    background-position: -80px 6px;
  }

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

  .quote-light {
    width: 70vw;
    height: 35vw;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  * {
    transition: none !important;
  }
}
