/* ==========================================================================
   ELITE AMBULANTE PFLEGE – Stuttgart
   Redesign Landing Page
   Palette: Vertrauensblau, Burgundrot, Creme, tiefes Nachtblau
   Typographie: Cormorant Garamond (Display) + Inter (Body)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary palette */
  --navy-deep: #0B2E55;
  --navy: #14477E;
  --navy-soft: #1E5A96;
  --burgundy: #C8102E;
  --burgundy-deep: #8E0A20;
  --cream: #F5EEE6;
  --cream-dark: #E8DED1;
  --sand: #D6C7B2;
  --ink: #1A1F2B;
  --ink-soft: #3A4252;
  --mute: #6C7280;
  --line: #E4DBCE;
  --white: #FFFFFF;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #14477E 0%, #0B2E55 100%);
  --grad-warm: linear-gradient(180deg, #F5EEE6 0%, #E8DED1 100%);
  --grad-heart: linear-gradient(135deg, #C8102E 0%, #8E0A20 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,46,85,0.06), 0 2px 8px rgba(11,46,85,0.04);
  --shadow-md: 0 4px 12px rgba(11,46,85,0.08), 0 12px 32px rgba(11,46,85,0.06);
  --shadow-lg: 0 12px 40px rgba(11,46,85,0.12), 0 24px 64px rgba(11,46,85,0.08);
  --shadow-burgundy: 0 8px 24px rgba(200,16,46,0.25);

  /* Type scale */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography utilities ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1.display { font-size: clamp(2.5rem, 6vw, 5rem); }
h2.display { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3.display { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.4rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--grad-heart);
  color: var(--white);
  box-shadow: var(--shadow-burgundy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,16,46,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-secondary:hover {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-ghost {
  color: var(--navy-deep);
  padding: 0.6rem 0;
}
.btn-ghost:hover { color: var(--burgundy); }

.btn .arrow {
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.5rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 0.3rem 0;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(11,46,85,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img { height: 60px; width: auto; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  font-size: 0.87rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--navy-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; gap: 0.8rem; align-items: center; }
.nav-phone {
  font-size: 0.85rem;
  color: var(--navy-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.mobile-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 9rem 0 5rem;
  background: var(--grad-warm);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { max-width: 600px; }
.hero h1 {
  margin: 1.2rem 0 1.4rem;
  color: var(--navy-deep);
}
.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(11,46,85,0.12);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.hero-visual img, .hero-visual svg {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Floating card */
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: float 6s ease-in-out infinite;
}
.floating-card.fc-1 {
  bottom: 2rem; left: -1.5rem;
  max-width: 260px;
}
.floating-card.fc-2 {
  top: 3rem; right: -1.5rem;
  animation-delay: -3s;
}
.floating-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-deep);
}
.floating-card span {
  font-size: 0.78rem;
  color: var(--mute);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Section base ---------- */
section { padding: 6rem 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head h2 { color: var(--navy-deep); margin: 1rem 0; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Leistungen / Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  padding: 2.2rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-heart);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Über uns ---------- */
.about {
  background: var(--grad-warm);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,71,126,0.05), transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-visual .portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-visual .portrait:nth-child(1) { transform: translateY(2rem); }
.about-visual .portrait:nth-child(3) { transform: translateY(2rem); }
.about h2 { color: var(--navy-deep); margin: 1rem 0 1.4rem; }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--burgundy);
  margin: 1.8rem 0;
  line-height: 1.5;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.about-signature span {
  font-size: 0.88rem;
  color: var(--mute);
}
.about-signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-weight: 600;
}

/* ---------- Audio Sections (Podcast / Berater / Job) ---------- */
.audio-section {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.audio-section::before {
  content: '';
  position: absolute;
  top: 20%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.2), transparent 70%);
  border-radius: 50%;
}
.audio-section .section-head h2 { color: var(--white); }
.audio-section .section-head p { color: rgba(255,255,255,0.7); }
.audio-section .eyebrow { color: #FF6B82; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255,255,255,0.1);
}
.tab {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.tab.active {
  background: var(--burgundy);
  color: var(--white);
}
.tab:hover:not(.active) { color: var(--white); }

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  position: relative;
}
.audio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.audio-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(200,16,46,0.4);
}
.audio-cover {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.audio-cover img, .audio-cover svg { width: 100%; height: 100%; }
.audio-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,46,85,0.35);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  cursor: pointer;
}
.audio-card:hover .audio-play { opacity: 1; }
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease);
}
.audio-card:hover .play-btn { transform: scale(1); }
.audio-info {
  padding: 1.4rem 1.5rem 1.6rem;
}
.audio-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.audio-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.audio-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.audio-progress {
  margin-top: 1rem;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.audio-progress span {
  display: block;
  height: 100%;
  background: var(--burgundy);
  width: 0;
  border-radius: 2px;
}

.audio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Downloads ---------- */
.downloads { background: var(--cream); }
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.download-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line);
}
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.download-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--grad-heart);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.download-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}
.download-info p {
  font-size: 0.85rem;
  color: var(--mute);
  margin-bottom: 0.8rem;
}
.download-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
.download-link:hover { color: var(--burgundy-deep); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.faq-list {
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-deep);
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--burgundy); }
.faq-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-item.active .faq-toggle {
  background: var(--burgundy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,16,46,0.15), transparent 60%);
}
.contact .section-head h2 { color: var(--white); }
.contact .section-head p { color: rgba(255,255,255,0.7); }
.contact .eyebrow { color: #FF6B82; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  position: relative;
}
.contact-info { padding-right: 2rem; }
.contact-methods {
  list-style: none;
  margin-top: 2rem;
}
.contact-methods li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-methods li:last-child { border-bottom: none; }
.contact-methods .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #FF6B82;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-methods strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.contact-methods a,
.contact-methods span {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}
.contact-methods a:hover { color: #FF6B82; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--burgundy);
  background: rgba(255,255,255,0.1);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--burgundy);
}

/* ---------- Footer ---------- */
.footer {
  background: #05182F;
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 60px; margin-bottom: 1.4rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.7rem; font-size: 0.9rem; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.6rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive — tablet ---------- */
@media (max-width: 960px) {
  /* Grids collapse to single column */
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.6rem 2rem;
    gap: 1.4rem;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; padding: 0.3rem 0; }
  .mobile-toggle {
    display: flex;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
  }
  .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }

  /* Hero */
  .hero { padding: 7rem 0 3rem; }
  .hero-visual { aspect-ratio: auto; height: 300px; }
  .floating-card.fc-1, .floating-card.fc-2 { display: none; }

  /* Sections */
  section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.6rem; }

  /* About */
  .about-visual { display: none; }
  .about-visual .portrait:nth-child(1),
  .about-visual .portrait:nth-child(3) { transform: none; }
  .about-quote { font-size: 1.25rem; }

  /* Audio */
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
    width: 100%;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; }
  .audio-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact */
  .contact-info { padding-right: 0; }
  .contact-map iframe { min-height: 300px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Responsive — mobile ---------- */
@media (max-width: 600px) {
  /* Navigation */
  .nav-logo img { height: 46px; }

  /* Hero */
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero-visual { display: none; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 0; flex-wrap: nowrap; justify-content: space-between; }
  .trust-item strong { font-size: 1.4rem; }
  .trust-item span { font-size: 0.68rem; }

  /* Sections */
  section { padding: 3rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head p { font-size: 0.98rem; }

  /* Audio tabs */
  .tab { padding: 0.6rem 1rem; font-size: 0.82rem; }

  /* Downloads */
  .download-card { gap: 0.9rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer-legal { flex-wrap: wrap; gap: 0.8rem 1.4rem; }
}

/* ---------- Sticky phone FAB (mobile only) ---------- */
.phone-fab {
  display: none;
}
@media (max-width: 960px) {
  .phone-fab {
    display: flex;
    position: fixed;
    bottom: 1.6rem;
    right: 1.4rem;
    z-index: 200;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--grad-heart);
    color: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200,16,46,0.45), 0 1px 4px rgba(0,0,0,0.15);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .phone-fab:active {
    transform: scale(0.93);
    box-shadow: 0 2px 10px rgba(200,16,46,0.35);
  }
  .phone-fab svg { flex-shrink: 0; }
}

/* ==========================================================================
   SUBPAGES — gemeinsame Erweiterungen (Über uns, Blog, Artikel, FAQ, Legal)
   ========================================================================== */

/* ---------- Page hero (kleinere Sub-Page Köpfe) ---------- */
.page-hero {
  padding: 9rem 0 3.5rem;
  background: var(--grad-warm);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,16,46,0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: var(--navy-deep);
  margin: 1rem 0 1rem;
  max-width: 20ch;
}
.page-hero .lead { font-size: 1.2rem; }
.page-hero.center { text-align: center; }
.page-hero.center h1, .page-hero.center .lead { margin-left: auto; margin-right: auto; }
.page-hero.center .eyebrow { justify-content: center; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 0.4rem;
}
.breadcrumb a { color: var(--mute); transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--navy-deep); font-weight: 500; }

/* ---------- Prose / Article body ---------- */
.article { background: var(--white); padding: 4rem 0 5rem; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  align-items: start;
}
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.2rem; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy-deep);
  line-height: 1.2;
  margin-top: 2.8rem;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 2rem;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.prose li + li { margin-top: 0.5rem; }
.prose ul li::marker { color: var(--burgundy); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--burgundy); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--burgundy-deep); }
.prose blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--burgundy);
  line-height: 1.5;
}
.prose .lead-para {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 400;
}
/* Hervorgehobene Hinweis-Box */
.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.callout .callout-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
}
.callout p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }
.callout.navy { background: var(--navy-deep); border-color: rgba(255,255,255,0.1); border-left-color: var(--burgundy); }
.callout.navy p { color: rgba(255,255,255,0.85); }
.callout.navy .callout-icon { background: rgba(255,255,255,0.08); color: #FF6B82; }

/* Check / Cross Liste */
.check-list { list-style: none; padding-left: 0 !important; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list li svg { flex-shrink: 0; margin-top: 4px; }
.check-list.pos li svg { color: #2E7D4F; }
.check-list.neg li svg { color: var(--burgundy); }

/* Schritt-Karten (nummeriert) */
.steps { list-style: none; padding-left: 0 !important; counter-reset: step; display: grid; gap: 1rem; }
.steps li {
  position: relative;
  padding: 1.3rem 1.5rem 1.3rem 4.2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.2rem; top: 1.2rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong { display: block; color: var(--navy-deep); margin-bottom: 0.2rem; font-size: 1.05rem; }
.steps li p { margin: 0; font-size: 0.97rem; }

/* ---------- Sidebar (Artikel) ---------- */
.article-aside { position: sticky; top: 6rem; display: grid; gap: 1.4rem; }
.aside-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.aside-card.navy { background: var(--navy-deep); color: var(--white); border-color: transparent; }
.aside-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
}
.aside-card.navy h4 { color: var(--white); }
.aside-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.1rem; }
.aside-card.navy p { color: rgba(255,255,255,0.78); }
.aside-card .aside-phone {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--white);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.aside-links { list-style: none; }
.aside-links li { border-top: 1px solid var(--line); }
.aside-links li:first-child { border-top: none; }
.aside-links a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.92rem; color: var(--ink-soft); font-weight: 500;
  transition: color 0.25s var(--ease);
}
.aside-links a:hover { color: var(--burgundy); }
.aside-links a svg { flex-shrink: 0; color: var(--burgundy); }

/* ---------- Blog grid ---------- */
.blog { background: var(--white); padding: 4rem 0 6rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.post-cover {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.post-cover svg { width: 100%; height: 100%; }
.post-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--burgundy);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.post-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.76rem; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.7rem; }
.post-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.post-card p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.2rem; }
.post-card .post-more {
  margin-top: auto;
  font-size: 0.84rem; font-weight: 500; color: var(--burgundy);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s var(--ease);
}
.post-card:hover .post-more { gap: 0.7rem; }

/* ---------- Werte grid (Über uns) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.value-card {
  padding: 1.6rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); border-color: var(--sand); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--navy-deep);
  margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.value-card h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-heart); flex-shrink: 0; }
.value-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Legal pages ---------- */
.legal { background: var(--white); padding: 3.5rem 0 5rem; }
.legal .prose { max-width: 80ch; }
.legal .prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.legal .prose p, .legal .prose li { font-size: 0.98rem; }
.legal-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.5rem;
}
.legal-card p { margin: 0; line-height: 1.8; }

/* ---------- FAQ standalone tweaks ---------- */
.faq-page { background: var(--white); padding: 3rem 0 5rem; }
.faq-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600; color: var(--navy-deep);
  margin: 2.5rem 0 0.4rem;
}
.faq-page .faq-list { max-width: 880px; margin: 0 auto; }
.faq-intro { max-width: 760px; margin: 0 auto 1rem; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.18), transparent 60%);
}
.cta-band .container { position: relative; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 54ch; margin: 0 auto 2rem; }
.cta-band .eyebrow { color: #FF6B82; justify-content: center; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta-band .btn-secondary:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }

/* ---------- Subpage responsive ---------- */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-aside { position: static; }
  .page-hero { padding: 7rem 0 2.5rem; }
}
@media (max-width: 600px) {
  .page-hero { padding: 6rem 0 2rem; }
  .prose p, .prose ul, .prose ol { font-size: 1rem; }
}


/* ==========================================================================
   MEDIATHEK — Nav-Dropdown, Audio-Player, Podcast, PDF-Bibliothek
   ========================================================================== */

/* ---------- Nav-Dropdown (Mediathek) ---------- */
.nav-links .has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex; align-items: center; gap: 0.35rem;
  cursor: pointer; background: none; border: none;
  font-family: inherit; font-size: 0.87rem; font-weight: 500;
  color: var(--ink-soft); padding: 0.4rem 0;
}
.dropdown-toggle .chev { transition: transform 0.3s var(--ease); }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(6px);
}
.has-dropdown:hover .dropdown-toggle .chev,
.has-dropdown.open .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown li { white-space: nowrap; }
.dropdown li a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 0.8rem; border-radius: 9px;
  font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
}
.dropdown li a::after { display: none; }
.dropdown li a svg { color: var(--burgundy); flex-shrink: 0; }
.dropdown li a:hover { background: var(--cream); color: var(--navy-deep); }

/* ---------- Filter-Chips ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.6rem; }
.chip {
  padding: 0.55rem 1.1rem; border-radius: 999px;
  font-size: 0.84rem; font-weight: 500; cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  transition: all 0.25s var(--ease);
}
.chip:hover { color: var(--white); }
.chip.active { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }
.chip.light { background: var(--white); border-color: var(--line); color: var(--ink-soft); }
.chip.light:hover { color: var(--navy-deep); border-color: var(--sand); }
.chip.light.active { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }

/* ---------- Audio-Episodenliste ---------- */
.media-list { display: grid; gap: 1.1rem; max-width: 900px; margin: 0 auto; }
.episode {
  display: flex; gap: 1.3rem; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.episode:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,16,46,0.35); }
.episode.playing { border-color: var(--burgundy); background: rgba(255,255,255,0.07); }
.episode-play {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; background: var(--white); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform 0.25s var(--ease);
}
.episode-play:hover { transform: scale(1.06); }
.episode-play .ic-pause { display: none; }
.episode.playing .episode-play .ic-play { display: none; }
.episode.playing .episode-play .ic-pause { display: block; }
.episode-main { flex: 1; min-width: 0; }
.episode-top {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.35rem;
}
.episode-cat { color: #FF6B82; font-weight: 600; }
.episode h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; line-height: 1.2; }
.episode p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.55; margin-bottom: 0.7rem; }
.episode-bar { display: flex; align-items: center; gap: 0.8rem; }
.episode-track { flex: 1; height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; cursor: pointer; position: relative; }
.episode-track span { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--burgundy); border-radius: 3px; }
.episode-time { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-variant-numeric: tabular-nums; min-width: 92px; text-align: right; }
.episode-link {
  font-size: 0.82rem; font-weight: 500; color: #FF6B82;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
@media (max-width: 600px) {
  .episode { flex-direction: column; align-items: stretch; }
  .episode-play { align-self: flex-start; }
  .episode-time { min-width: 72px; }
}

/* ---------- Podcast-Plattformen ---------- */
.platforms { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.platform-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-weight: 500; font-size: 0.9rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.platform-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.platform-btn.spotify:hover { background: #1DB954; border-color: #1DB954; }
.platform-btn.apple:hover { background: #A855C9; border-color: #A855C9; }
.platform-btn svg { flex-shrink: 0; }

.media-note {
  max-width: 700px; margin: 2.5rem auto 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.media-empty { text-align: center; color: rgba(255,255,255,0.6); padding: 2.5rem 1rem; max-width: 620px; margin: 0 auto; }

/* ---------- PDF-Bibliothek (hell) ---------- */
.downloads-page { background: var(--cream); padding: 3rem 0 5rem; }
.downloads-page .filter-chips { margin-bottom: 2.4rem; }
.dl-cat-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy-deep); margin: 2rem 0 1.1rem; }
.dl-empty { text-align: center; color: var(--mute); padding: 2.5rem; }
.dl-size { font-size: 0.78rem; color: var(--mute); display: block; margin-bottom: 0.6rem; }


/* Sekundär-Buttons auf dunklem Audio-Bereich lesbar machen */
.audio-section .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.5); }
.audio-section .btn-secondary:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }

/* Mediathek-Teaser (Homepage Audio-Bereich) */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.hub-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem 1.8rem; transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.hub-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(200,16,46,0.4); }
.hub-icon { width: 54px; height: 54px; border-radius: var(--radius-md); background: var(--grad-heart); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.hub-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.hub-card p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.3rem; flex: 1; }
.hub-link { font-size: 0.85rem; font-weight: 500; color: #FF6B82; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s var(--ease); }
.hub-card:hover .hub-link { gap: 0.7rem; }

/* ==========================================================================
   MEDIA-SECTION (hell) — Audio-Listen auf warmem Hintergrund,
   weiße erhöhte Karten heben sich klar ab.
   ========================================================================== */
.media-section { background: var(--grad-warm); position: relative; overflow: hidden; }
.media-section::before {
  content: ''; position: absolute; top: -160px; left: -140px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,71,126,0.06), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.media-section::after {
  content: ''; position: absolute; bottom: -200px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,16,46,0.05), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.media-section .container { position: relative; }
.media-section .section-head p { color: var(--ink-soft); }

/* Filter-Chips hell */
.media-section .chip { background: var(--white); border-color: var(--line); color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.media-section .chip:hover { color: var(--navy-deep); border-color: var(--sand); }
.media-section .chip.active { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }

/* Episoden hell — weiße Karten mit Schatten */
.media-section .episode {
  background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.media-section .episode:hover { border-color: var(--sand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.media-section .episode.playing { border-color: var(--burgundy); box-shadow: var(--shadow-md); }
.media-section .episode-play { background: var(--grad-navy); color: var(--white); }
.media-section .episode-top { color: var(--mute); }
.media-section .episode-cat { color: var(--burgundy); }
.media-section .episode h3 { color: var(--navy-deep); }
.media-section .episode p { color: var(--ink-soft); }
.media-section .episode-track { background: var(--cream-dark); }
.media-section .episode-track span { background: var(--burgundy); }
.media-section .episode-time { color: var(--mute); }
.media-section .episode-link { color: var(--burgundy); }

/* Podcast-Plattformen hell */
.media-section .platform-btn { background: var(--white); border-color: var(--line); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.media-section .platform-btn:hover { border-color: var(--navy); }
.media-section .platform-btn.spotify:hover { background: #1DB954; border-color: #1DB954; color: var(--white); }
.media-section .platform-btn.apple:hover { background: #A855C9; border-color: #A855C9; color: var(--white); }

/* Hinweistexte hell */
.media-section .media-note { color: var(--mute); }
.media-section .media-empty { color: var(--ink-soft); }

/* ==========================================================================
   PDF-BIBLIOTHEK Kategorie-Karten (editorial / refined)
   ========================================================================== */
.lib-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.lib-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.3rem 2rem 1.8rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.lib-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-heart); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.lib-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.lib-card:hover::before { transform: scaleX(1); }

.lib-index {
  position: absolute; top: 0.7rem; right: 1.3rem;
  font-family: var(--font-display); font-weight: 600; font-size: 4.4rem; line-height: 1;
  letter-spacing: -0.03em; color: var(--cream-dark); opacity: 0.75;
  pointer-events: none; transition: color 0.5s var(--ease), opacity 0.5s var(--ease);
}
.lib-card:hover .lib-index { color: var(--sand); }

.lib-icon {
  position: relative; width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; box-shadow: 0 8px 22px rgba(11,46,85,0.2);
  transition: transform 0.5s var(--ease);
}
.lib-card:hover .lib-icon { transform: rotate(-4deg) scale(1.04); }

.lib-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--burgundy);
  margin-bottom: 0.55rem;
}
.lib-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 0.55rem; line-height: 1.1; }
.lib-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }

.lib-foot { border-top: 1px solid var(--line); padding-top: 1.1rem; transition: border-color 0.4s var(--ease); }
.lib-card:hover .lib-foot { border-color: var(--sand); }
.lib-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--burgundy); }
.lib-link svg { transition: transform 0.35s var(--ease); }
.lib-card:hover .lib-link svg { transform: translateX(5px); }
.lib-card:hover .lib-link { color: var(--burgundy-deep); }

/* ==========================================================================
   MEDIA-SECTION v2 — weißer Hintergrund, warme Creme-Karten mit Tiefe
   (überschreibt die helle Variante weiter oben)
   ========================================================================== */
.media-section { background: var(--white); }
.media-section::before { background: radial-gradient(circle, rgba(20,71,126,0.05), transparent 70%); }
.media-section::after  { background: radial-gradient(circle, rgba(200,16,46,0.04), transparent 70%); }

.media-list { counter-reset: ep; }

.media-section .episode {
  position: relative;
  counter-increment: ep;
  gap: 1.4rem;
  padding: 1.5rem 1.7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(11,46,85,0.04), 0 10px 28px rgba(11,46,85,0.05);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
/* Burgundy-Akzentkante beim Abspielen */
.media-section .episode::before {
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  border-radius: 0 3px 3px 0; background: var(--grad-heart);
  transform: scaleY(0); transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.media-section .episode.playing::before { transform: scaleY(1); }
/* Dezente Index-Ziffer (Cormorant) – wie bei den PDF-Karten */
.media-section .episode::after {
  content: counter(ep, decimal-leading-zero);
  position: absolute; top: 0.5rem; right: 1.1rem; z-index: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 2.4rem; line-height: 1;
  letter-spacing: -0.02em; color: var(--sand); opacity: 0.45; pointer-events: none;
}
.media-section .episode:hover {
  background: var(--white); border-color: var(--sand);
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(11,46,85,0.05), 0 18px 44px rgba(11,46,85,0.1);
}
.media-section .episode.playing { background: var(--white); border-color: var(--burgundy); }

.media-section .episode-main { position: relative; z-index: 1; }
.media-section .episode-play {
  background: var(--grad-navy); color: var(--white);
  box-shadow: 0 6px 16px rgba(11,46,85,0.22), 0 0 0 6px rgba(20,71,126,0.06);
}
.media-section .episode-play:hover { transform: scale(1.07); }
.media-section .episode-top { color: var(--mute); }
.media-section .episode-cat { color: var(--burgundy); }
.media-section .episode h3 { color: var(--navy-deep); }
.media-section .episode p { color: var(--ink-soft); }
.media-section .episode-track { background: #E7DCCB; }
.media-section .episode-track span { background: var(--grad-heart); }
.media-section .episode-time { color: var(--mute); }
.media-section .episode-link { color: var(--burgundy); }

/* Chips auf Weiß */
.media-section .chip { background: var(--cream); border-color: var(--line); color: var(--ink-soft); box-shadow: none; }
.media-section .chip:hover { background: var(--white); color: var(--navy-deep); border-color: var(--sand); }
.media-section .chip.active { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }

/* Podcast-Plattformen auf Weiß */
.media-section .platform-btn { background: var(--cream); border-color: var(--line); color: var(--navy-deep); box-shadow: none; }
.media-section .platform-btn:hover { background: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.media-section .platform-btn.spotify:hover { background: #1DB954; border-color: #1DB954; color: var(--white); }
.media-section .platform-btn.apple:hover { background: #A855C9; border-color: #A855C9; color: var(--white); }

/* ==========================================================================
   MEDIA-SECTION v3 — Episodenkarten in Navy, Play-Buttons in Burgundy
   ========================================================================== */
.media-section .episode {
  background: var(--grad-navy);
  border-color: transparent;
  box-shadow: 0 2px 4px rgba(11,46,85,0.10), 0 16px 38px rgba(11,46,85,0.18);
}
.media-section .episode:hover {
  background: var(--grad-navy);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(11,46,85,0.12), 0 24px 54px rgba(11,46,85,0.26);
}
.media-section .episode.playing { background: var(--grad-navy); border-color: var(--burgundy); }

.media-section .episode h3 { color: var(--white); }
.media-section .episode p { color: rgba(255,255,255,0.74); }
.media-section .episode-top { color: rgba(255,255,255,0.55); }
.media-section .episode-cat { color: #FF6B82; }
.media-section .episode-time { color: rgba(255,255,255,0.62); }
.media-section .episode-track { background: rgba(255,255,255,0.16); }
.media-section .episode-track span { background: var(--grad-heart); }
.media-section .episode-link { color: #FF6B82; }
.media-section .episode::after { color: var(--white); opacity: 0.12; }
.media-section .episode::before { background: var(--white); }

/* Play-Button in Rot */
.media-section .episode-play {
  background: var(--grad-heart); color: var(--white);
  box-shadow: 0 6px 18px rgba(200,16,46,0.32), 0 0 0 6px rgba(200,16,46,0.08);
}
.media-section .episode-play:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 26px rgba(200,16,46,0.42), 0 0 0 8px rgba(200,16,46,0.1);
}
