/* ==========================================================
   KI TALK – Website Styles
   ========================================================== */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/space-grotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}

/* ---------- Tokens & Reset ---------- */

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0c;
  --text: #f5f5f7;
  --muted: #86868b;
  --muted-dark: #6e6e73;
  --accent: #a78bfa;
  --hairline: rgba(255, 255, 255, 0.1);
  --hairline-soft: rgba(255, 255, 255, 0.06);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
  line-height: 1.5;
}

::selection {
  background: rgba(167, 139, 250, 0.3);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---------- Typography ---------- */

.headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}

.headline .dim {
  color: var(--muted);
}

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.accent-text {
  color: var(--accent);
}

/* ---------- Layout ---------- */

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

.container-narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 8rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 11rem 0;
  }
}

/* ---------- Scroll-Reveal (JS setzt .visible) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Navbar ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hairline-soft);
}

.navbar nav {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* ---------- Buttons ---------- */

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f5f5f7;
  color: #050505;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.9rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-white:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

.btn-white:active {
  transform: scale(0.98);
}

.btn-white:disabled {
  opacity: 0.4;
  transform: none;
}

.btn-white.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-quiet:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.link-arrow:hover {
  gap: 0.7rem;
  opacity: 0.85;
}

/* ---------- Forms ---------- */

input, textarea, select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input::placeholder, textarea::placeholder {
  color: var(--muted-dark);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

textarea {
  resize: none;
}

select option {
  background: var(--bg-elevated);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.consent-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-check a {
  color: var(--accent);
  text-decoration: underline;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-dark);
  text-align: center;
  padding-top: 0.5rem;
}

.form-error {
  color: #f87171;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}

.form-success {
  border: 1px solid var(--hairline);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  display: none;
}

.form-success p:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}

.form-success p:last-child {
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 28rem;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero-label {
  margin-bottom: 1.75rem;
}

/* Cover mit 3D-Tilt */
.cover-wrap {
  position: relative;
  perspective: 1000px;
  max-width: 34rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .cover-wrap {
    max-width: none;
    margin: 0;
  }
}

.cover-glow {
  position: absolute;
  inset: -3rem;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.cover-tilt {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Safari ignoriert overflow:hidden bei 3D-Transforms – Radius direkt aufs Bild */
.cover-tilt img,
.cover-tilt .cover-glare {
  border-radius: 1.5rem;
}

.cover-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ---------- Stats-Band ---------- */

.stats-band {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats-band {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 2.5rem 0.5rem;
}

@media (min-width: 640px) {
  .stat {
    padding: 2.5rem 2rem;
  }
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1023px) {
  .stat:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.stat .label {
  margin-top: 0.75rem;
}

/* ---------- Rows (Werte, Folgen, Leistungen) ---------- */

.row {
  border-top: 1px solid var(--hairline);
  transition: background 0.2s ease;
}

.row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.row-end {
  border-top: 1px solid var(--hairline);
}

.value-row {
  display: grid;
  gap: 0.5rem;
  padding: 2rem 0;
}

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

.value-row h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .value-row h3 {
    font-size: 1.875rem;
  }
}

.value-row p {
  font-size: 1.125rem;
  color: var(--muted);
}

/* ---------- Hosts ---------- */

.hosts-grid {
  display: grid;
  gap: 4rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hosts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.host {
  display: flex;
  flex-direction: column;
}

.host-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.host h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 2rem;
  color: #fff;
}

.host-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--accent);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.host-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  margin-top: 1rem;
}

.host-socials .social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.host-socials svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.host-socials .count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.host-socials .dot {
  color: var(--muted);
  margin: 0 -0.625rem;
  font-size: 0.875rem;
}

.host-socials .total {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
}

.host-bio {
  color: var(--muted);
  font-size: 1.125rem;
  margin-top: 1.25rem;
}

.host-cta {
  margin-top: auto;
  padding-top: 2rem;
}

/* ---------- Quote-Sektionen ---------- */

.quote-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 9rem 0;
}

@media (min-width: 768px) {
  .quote-section {
    padding: 13rem 0;
  }
}

.quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}

.quote-text .word {
  margin-right: 0.28em;
  opacity: 0.12;
}

.quote-author {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quote-author img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-author .name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: #fff;
}

.quote-author .role {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- Spotify / Player ---------- */

.player-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.player-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Consent-Platzhalter (2-Klick-Lösung) */
.consent-box {
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.consent-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
}

.consent-box p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34rem;
  margin: 0.75rem auto 1.5rem;
}

.consent-box p a {
  color: var(--accent);
  text-decoration: underline;
}

.episodes {
  margin-top: 3.5rem;
}

.episodes .label {
  margin-bottom: 1rem;
}

.episode-row {
  width: 100%;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  border-top: 1px solid var(--hairline);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.episode-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.episode-row.active {
  background: rgba(255, 255, 255, 0.03);
}

.episode-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-dark);
}

.episode-row.active .episode-num {
  color: var(--accent);
}

.episode-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.episode-row:hover .episode-title,
.episode-row.active .episode-title {
  color: #fff;
}

.episode-meta {
  font-size: 0.875rem;
  color: var(--muted-dark);
  white-space: nowrap;
}

.platform-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ---------- Community ---------- */

.split-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.perk-list {
  margin-top: 2rem;
  list-style: none;
}

.perk-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  padding: 0.5rem 0;
}

.perk-list .dash {
  color: var(--accent);
}

.community-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .community-form-wrap {
    padding-top: 6rem;
  }
}

/* ---------- Booking ---------- */

.section-intro {
  max-width: 48rem;
  margin-bottom: 5rem;
}

.section-intro .sub {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
}

.section-intro .sub strong {
  color: var(--text);
  font-weight: 500;
}

.offering-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
}

.offering-row h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .offering-row h3 {
    font-size: 1.5rem;
  }
}

.offering-row p {
  color: var(--muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form .form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .booking-form .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ---------- Sub-Pages (Impressum / Datenschutz) ---------- */

.legal-page {
  padding: 10rem 0 6rem;
  max-width: 48rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: #fff;
  margin: 2.5rem 0 1rem;
}

.legal-page h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin: 1.75rem 0 0.5rem;
}

.legal-page p, .legal-page li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page .placeholder {
  color: #fbbf24;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 3.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.footer-byline {
  color: var(--muted-dark);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-dark);
}

.footer-legal a:hover {
  color: var(--text);
}

.footer-copy {
  text-align: center;
  color: #48484a;
  font-size: 0.75rem;
  margin-top: 3rem;
}

/* ---------- Mobile-Optimierung ---------- */

@media (max-width: 767px) {
  /* Rhythmus: kompaktere Abstände, gleiche Hierarchie */
  section {
    padding: 5.5rem 0;
  }

  .section-intro {
    margin-bottom: 3.5rem;
  }

  /* Hero: echte Viewport-Höhe (iOS-Adressleiste), engere Abstände */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 6.5rem 0 3.5rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-label {
    margin-bottom: 1.25rem;
  }

  .hero-sub {
    margin-top: 1.25rem;
    font-size: 1.05rem;
  }

  .hero-cta {
    margin-top: 2rem;
  }

  /* Glow darf auf Mobil nicht über den Viewport hinausragen */
  .cover-glow {
    inset: -1rem;
  }

  /* Stats: kompakter, Zahlen bleiben stark */
  .stats-band {
    margin-top: 3.5rem;
  }

  .stat {
    padding: 1.75rem 1rem;
  }

  .stat .label {
    font-size: 0.7rem;
    margin-top: 0.5rem;
  }

  /* Werte-Zeilen */
  .value-row {
    padding: 1.5rem 0;
  }

  .value-row h3 {
    font-size: 1.35rem;
  }

  .value-row p {
    font-size: 1rem;
  }

  /* Hosts */
  .hosts-grid {
    gap: 3.5rem;
  }

  .host h3 {
    font-size: 1.75rem;
  }

  .host-bio {
    font-size: 1rem;
  }

  .host-avatar {
    width: 5rem;
    height: 5rem;
  }

  /* Zitate */
  .quote-section {
    padding: 6.5rem 0;
  }

  .quote-author {
    margin-top: 2rem;
  }

  /* Player & Folgenliste */
  .consent-box {
    padding: 2.25rem 1.25rem;
  }

  .episodes {
    margin-top: 2.5rem;
  }

  /* Folgen: Titel oben, Datum/Dauer darunter statt abgeschnitten */
  .episode-row {
    grid-template-columns: 2rem 1fr;
    row-gap: 0.3rem;
    padding: 1.15rem 0;
  }

  .episode-title {
    font-size: 1rem;
  }

  .episode-meta {
    grid-column: 2;
    font-size: 0.8rem;
    white-space: normal;
  }

  .platform-cta {
    margin-top: 2.25rem;
  }

  /* Booking: Leistungen untereinander */
  .offering-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1.35rem 0;
  }

  .split-grid {
    gap: 3rem;
  }

  /* iOS zoomt bei Fokus auf Inputs < 16px – deshalb exakt 16px */
  input, textarea, select {
    font-size: 16px;
  }

  /* Rechtsseiten */
  .legal-page {
    padding: 7rem 0 4rem;
  }

  .legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Footer */
  footer {
    padding: 2.5rem 0;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-copy {
    margin-top: 2rem;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .btn-white, .btn-quiet {
    width: 100%;
  }

  .hero-cta .link-arrow {
    margin: 0 auto;
  }
}

/* ---------- Scrollbar ---------- */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
