/* ═══════════════════════════════════════════════════════════════════════════
   Depiereux Theme — Main Stylesheet
   Based 1:1 on design prototypes
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────────────────────── */

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

:root {
  --black:     #141820;
  --white:     #ffffff;
  --off:       #f5f4f1;
  --border:    #e5e2dc;
  --mid:       #7a7670;
  --red:       #E73A42;
  --font-head: 'Abril Fatface', Georgia, serif;
  --font-body: 'Exo 2', 'Helvetica Neue', sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── NAVIGATION ────────────────────────────────────────────────────────────── */

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#nav.solid {
  background: rgba(20,24,32,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 26px; width: auto; }

.nav-links { display: flex; gap: 2.25rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; display: block; height: 1.5px;
  background: var(--red); margin-top: 2px; border-radius: 1px;
}

.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 3px;
  font-weight: 500 !important; font-size: 12px !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c62d34 !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em; cursor: pointer; transition: color 0.2s;
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0; font-family: var(--font-body);
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: #fff; }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(20,24,32,0.98); backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255,255,255,0.1); border-radius: 6px;
  padding: 8px; min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block; padding: 9px 14px; border-radius: 4px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-dropdown-item.active { color: var(--red); }

/* Language switcher */
.nav-lang { position: relative; }
.nav-lang-toggle {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 0.5px solid rgba(255,255,255,0.2); border-radius: 6px;
  padding: 5px 8px; cursor: pointer; font-family: var(--font-body);
  color: rgba(255,255,255,0.75); transition: border-color 0.2s, color 0.2s;
}
.nav-lang-toggle:hover,
.nav-lang.open .nav-lang-toggle { border-color: rgba(255,255,255,0.5); color: #fff; }
.nav-lang-toggle svg { transition: transform 0.2s; }
.nav-lang.open .nav-lang-toggle svg { transform: rotate(180deg); }
.nav-lang-flag { font-size: 16px; line-height: 1; }
.nav-lang-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(15,15,15,0.96); backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 6px; min-width: 90px; z-index: 1000;
}
.nav-lang.open .nav-lang-menu { display: block; }
.nav-lang-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 5px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6); transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-lang-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-lang-item.active { color: #fff; }
.nav-lang-item span { font-size: 15px; }

/* Mobile toggle */
.nav-mob-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mob-btn span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */

.btn-primary {
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: 3px; border: none;
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-primary:hover { background: #c62d34; transform: translateY(-1px); color: #fff; }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: 3px;
  border: 0.5px solid rgba(255,255,255,0.25);
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-1px); }

.btn-ghost-dark {
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: 3px;
  border: 0.5px solid rgba(255,255,255,0.2);
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: all 0.2s; font-family: var(--font-body);
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTION HELPERS ───────────────────────────────────────────────────────── */

.sec { padding: 6rem 3rem; border-bottom: 0.5px solid var(--border); }
.sec-inner { max-width: 1100px; margin: 0 auto; }

.sec-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--black); line-height: 1.05; margin-bottom: 1.25rem;
}
.sec-p, .sec-sub {
  font-size: 15px; font-weight: 300; color: #555;
  line-height: 1.8; max-width: 640px;
}
.sec-intro {
  font-size: 15px; font-weight: 300; color: var(--mid);
  line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem;
}

/* ── HERO — STARTSEITE ─────────────────────────────────────────────────────── */

#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,12,20,0.55) 0%,
    rgba(10,12,20,0.25) 30%,
    rgba(10,12,20,0.65) 65%,
    rgba(10,12,20,0.92) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 3rem;
  max-width: 1100px; width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 108px);
  color: #fff; line-height: 0.95; margin-bottom: 1.75rem; letter-spacing: -0.01em;
}
.hero-h1 .line2 { color: rgba(255,255,255,0.45); display: block; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4rem; }

/* Press quotes bar */
.hero-press {
  position: relative; z-index: 1;
  display: flex; gap: 0;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.hero-press-item {
  flex: 1; padding: 1.5rem 2rem;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 1rem;
}
.hero-press-item:last-child { border-right: none; }
.hero-press-logo { flex-shrink: 0; }
.hero-press-quote { flex-shrink: 1; max-width: 60%; }
.hero-press-logo-box {
  height: 18px; min-width: 60px; padding: 0 10px;
  background: rgba(255,255,255,0.1); border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-press-logo-img-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  width: 52px; height: 52px; flex-shrink: 0;
  overflow: hidden;
}
.hero-press-logo-img-wrap img {
  height: 36px; width: auto; max-width: 44px;
  object-fit: contain; display: block;
}
.hero-press-quote {
  font-size: 22px; color: rgba(255,255,255,0.92);
  font-style: italic; line-height: 1.4; font-weight: 300;
}

/* ── HERO — SEITEN (Speaker, Beirat, Medien) ───────────────────────────────── */

#page-hero {
  background: var(--black); padding: 140px 3rem 80px;
  position: relative; overflow: hidden;
}
.hero-grid-bg,
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
}
.hero-grid-bg::after,
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,12,20,0.6) 0%,
    rgba(10,12,20,0.3) 35%,
    rgba(10,12,20,0.7) 65%,
    rgba(10,12,20,0.95) 100%
  );
}
/* Grid pattern background (Medien page) */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner,
.page-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
/* Speaker/Medien hero uses .hero-inner, Beirat uses .page-hero-inner */
.hero-eyebrow,
.page-hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
}
.hero-h1,
.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 5.5vw, 80px);
  color: #fff; line-height: 1; margin-bottom: 1.75rem;
}
.hero-sub,
.page-hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.82);
  line-height: 1.8; max-width: 580px; margin-bottom: 2.5rem;
}

/* ── HERO — ANALOGE KINDHEIT (2-col mit pullquote) ─────────────────────────── */

#page-hero.hero-kindheit {
  padding: 140px 3rem 0;
}
#page-hero.hero-kindheit .hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; padding-bottom: 5rem;
}
#page-hero.hero-kindheit .hero-h1 {
  font-size: clamp(36px, 4.5vw, 64px);
}
.hero-pullquote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--red);
  padding: 2rem 2rem 2rem 1.75rem;
  border-radius: 0 4px 4px 0;
}
.hero-pullquote blockquote {
  font-size: 16px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 1rem;
}
.hero-pullquote cite { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

/* ── ÜBER MICH ─────────────────────────────────────────────────────────────── */

#ueber { background: var(--white); }
.ueber-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 5rem; align-items: start; margin-top: 2rem;
}
.ueber-text { font-size: 15px; font-weight: 300; line-height: 1.8; color: #444; }
.ueber-text p { margin-bottom: 1rem; }
.ueber-text p:last-child { margin-bottom: 0; }

.ueber-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: 6px; overflow: hidden; border: 0.5px solid var(--border);
}
.stat-cell { background: var(--off); padding: 1.75rem 1.5rem; }
.stat-n { font-family: var(--font-head); font-size: 40px; color: var(--black); line-height: 1; }
.stat-n .stat-accent { color: var(--red); }
.stat-lbl { font-size: 11px; font-weight: 400; color: var(--mid); margin-top: 6px; line-height: 1.4; }

/* ── VITA SLIDER ───────────────────────────────────────────────────────────── */

#vita { background: #F0EEF8; border-bottom: 0.5px solid #dbd8ee; }
#vita .sec-label { color: var(--red); }

.vita-slider-wrap { position: relative; overflow: hidden; margin-top: 2.5rem; }
.vita-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vita-card {
  width: calc(50% - 0.75rem);
  flex-shrink: 0; flex-grow: 0;
  background: #fff; border-radius: 10px;
  padding: 2.25rem 2rem; border: 0.5px solid #dbd8ee;
  overflow: hidden; box-sizing: border-box;
}
.vita-desc { overflow-wrap: break-word; word-break: break-word; }
.vita-year {
  font-family: var(--font-head); font-size: 28px; color: var(--red);
  margin-bottom: 0.5rem; line-height: 1;
}
.vita-divider { width: 32px; height: 2px; background: var(--red); opacity: 0.3; margin-bottom: 1.25rem; }
.vita-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 0.75rem; }
.vita-desc { font-size: 14px; font-weight: 300; color: #555; line-height: 1.7; }

.vita-nav { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.vita-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--red); background: none; cursor: pointer;
  color: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s, color 0.2s;
}
.vita-arrow:hover { background: var(--red); color: #fff; }
.vita-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.vita-dots { display: flex; gap: 8px; align-items: center; }
.vita-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ccc;
  cursor: pointer; transition: background 0.2s, transform 0.2s; border: none;
}
.vita-dot.active { background: var(--red); transform: scale(1.25); }

/* ── PHOTO STRIP ───────────────────────────────────────────────────────────── */

.photo-strip { width: 100%; aspect-ratio: 21/8; overflow: hidden; position: relative; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 3rem;
  background: linear-gradient(to top, rgba(10,12,20,0.65) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.photo-strip-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; font-style: italic; }

/* ── THEMEN CARDS (Startseite) ─────────────────────────────────────────────── */

#themen { background: var(--white); }
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.theme-card {
  border-radius: 8px; padding: 2rem 1.75rem;
  border: 0.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.theme-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
}
.theme-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.theme-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--mid); margin-bottom: 1rem; }
.theme-card h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 0.75rem; color: var(--black); line-height: 1.1; }
.theme-card p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; }
.theme-tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 6px; }
.theme-tag { font-size: 11px; color: var(--mid); border: 0.5px solid var(--border); border-radius: 2px; padding: 3px 8px; background: var(--off); }

/* ── MEDIEN GRID (Startseite) ──────────────────────────────────────────────── */

#medien { background: var(--off); }
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 2rem;
}
.media-footer { margin-top: 1.5rem; font-size: 11px; color: var(--mid); font-weight: 300; }

/* ── MEDIEN FILTER BAR (Medien page) ───────────────────────────────────────── */

#filter-bar {
  background: var(--white); border-bottom: 0.5px solid var(--border);
  position: sticky; top: 60px; z-index: 100;
}
.filter-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; overflow-x: auto;
}
.filter-btn {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--mid); border: none; background: none;
  padding: 1rem 1.25rem; cursor: pointer; font-family: var(--font-body);
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ── MEDIEN GRID (Full — Medien page) ──────────────────────────────────────── */

#media-sec { padding: 4rem 3rem; }
.media-inner { max-width: 1100px; margin: 0 auto; }
.media-grid-full {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden;
}
.media-count { font-size: 12px; color: var(--mid); font-weight: 300; margin-bottom: 1.5rem; }
.no-results { padding: 4rem 2rem; text-align: center; color: var(--mid); font-size: 14px; font-weight: 300; }

/* ── MEDIA CARD (shared between startseite grid + medien page) ─────────────── */

.media-card {
  background: var(--white); padding: 1.75rem;
  text-decoration: none; color: inherit;
  transition: background 0.15s; display: block;
}
.media-card:hover { background: #fafaf9; }
.media-card:hover .mc-title { color: var(--red); }

.mc-logo { height: 28px; display: flex; align-items: center; margin-bottom: 1.25rem; }
.mc-logo-box {
  height: 24px; padding: 0 10px; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  min-width: 52px; border: 0.5px solid;
}
.mc-title { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.55; transition: color 0.2s; margin-bottom: 0.75rem; }
.mc-date { font-size: 11px; color: var(--mid); font-weight: 300; }
.mc-arrow { font-size: 18px; color: var(--border); margin-top: 1rem; display: block; transition: color 0.2s; }
.media-card:hover .mc-arrow { color: var(--red); }

/* ── MEDIA HIGHLIGHTS (Medien page — speaker spotlight) ────────────────────── */

#media-highlights { background: #111; padding: 4rem 3rem; }
.mh-inner { max-width: 1100px; margin: 0 auto; }
.mh-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.mh-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 2rem; line-height: 1.1; }
.mh-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mh-card {
  background: #fff; border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 10px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.mh-card:hover { background: #f7f7f5; border-color: rgba(0,0,0,0.18); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.mhc-logo { height: 36px; display: flex; align-items: center; }
.mhc-logo img { height: 28px; width: auto; object-fit: contain; }
.mhc-logo-box {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #fff;
}
.mhc-title { font-size: 15px; font-weight: 600; color: #111; line-height: 1.5; flex: 1; }
.mhc-outlet { font-size: 12px; color: rgba(0,0,0,0.45); font-weight: 300; }
.mhc-link { font-size: 12px; color: var(--red); font-weight: 500; margin-top: 0.25rem; }

/* ── MEDIA FULL LIST (Medien page — article list) ───────────────────────────── */

#media-list-sec { background: #f7f7f5; padding: 4rem 3rem; }
.ml-inner { max-width: 900px; margin: 0 auto; }
.ml-count { font-size: 12px; color: var(--mid); font-weight: 300; margin-bottom: 2rem; }
.ml-list { }
.ml-item {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.5rem 0; border-bottom: 0.5px solid #e2e0db;
  text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.ml-item:first-child { border-top: 0.5px solid #e2e0db; }
.ml-item-body { flex: 1; min-width: 0; }
.ml-title {
  font-size: 16px; font-weight: 700; color: #111;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.15s;
}
.ml-item:hover .ml-title { color: var(--red); }
.ml-outlet { font-size: 12px; color: #888; font-weight: 300; }
.ml-read {
  font-size: 12px; color: var(--red); font-weight: 500; white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.15s;
}
.ml-item:hover .ml-read { opacity: 0.75; }

/* ── MEDIA ROWS (Kindheit page — list style) ────────────────────────────────── */

.media-list { margin-top: 2rem; }
.media-row {
  display: grid; grid-template-columns: 80px 1fr 80px 24px;
  align-items: center; gap: 1.5rem;
  padding: 1.1rem 0; border-bottom: 0.5px solid var(--border);
  text-decoration: none; color: inherit;
}
.media-row:last-child { border-bottom: none; }
.media-row:hover .media-title { color: var(--red); }
.media-row:hover .media-arr { opacity: 1; transform: translateX(3px); }
.media-src { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.media-title { font-size: 14px; color: var(--black); transition: color 0.2s; }
.media-date { font-size: 12px; color: var(--mid); text-align: right; font-weight: 300; }
.media-arr { font-size: 16px; color: var(--mid); opacity: 0; transition: all 0.2s; }

/* ── KONTAKT / CONTACT FORM ────────────────────────────────────────────────── */

#kontakt { background: var(--black); border-bottom: none; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

.k-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; }
.k-h2 { font-family: var(--font-head); font-size: clamp(36px, 4vw, 56px); color: #fff; line-height: 1; margin-bottom: 1.5rem; }
.k-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 2.5rem; }
.k-info { margin-bottom: 1.75rem; }
.k-info-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.k-info-val { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

.cform { display: flex; flex-direction: column; gap: 14px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cfield { display: flex; flex-direction: column; gap: 6px; }
.clabel { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.cinput, .cselect, .ctextarea {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px; color: #fff; font-family: var(--font-body);
  font-size: 14px; font-weight: 300; padding: 13px 15px;
  outline: none; width: 100%; transition: border-color 0.2s, background 0.2s;
}
.cinput:focus, .cselect:focus, .ctextarea:focus {
  border-color: var(--red); background: rgba(231,58,66,0.08);
}
.cinput::placeholder, .ctextarea::placeholder { color: rgba(255,255,255,0.2); }
.cselect option { background: #1a2035; color: #fff; }
.ctextarea { resize: vertical; min-height: 130px; }
.csubmit {
  align-self: flex-start; background: var(--red); color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; padding: 14px 30px; border-radius: 3px; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.csubmit:hover { background: #c62d34; transform: translateY(-1px); }
.csubmit:disabled { opacity: 0.5; cursor: default; transform: none; }

/* ── CONTACT FORM 7 — styled to match custom form ───────────────────────────── */
.cf7-wrap .wpcf7 { width: 100%; }
.cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.cf7-wrap .wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cf7-wrap .wpcf7-form label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.cf7-wrap .wpcf7-form .wpcf7-form-control-wrap { display: block; }
.cf7-wrap .wpcf7-text,
.cf7-wrap .wpcf7-email,
.cf7-wrap .wpcf7-select,
.cf7-wrap .wpcf7-textarea {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px; color: #fff; font-family: var(--font-body);
  font-size: 14px; font-weight: 300; padding: 13px 15px;
  outline: none; width: 100%; transition: border-color 0.2s, background 0.2s;
}
.cf7-wrap .wpcf7-text:focus,
.cf7-wrap .wpcf7-email:focus,
.cf7-wrap .wpcf7-select:focus,
.cf7-wrap .wpcf7-textarea:focus { border-color: var(--red); background: rgba(231,58,66,0.08); }
.cf7-wrap .wpcf7-text::placeholder,
.cf7-wrap .wpcf7-email::placeholder,
.cf7-wrap .wpcf7-textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf7-wrap .wpcf7-select option { background: #1a2035; color: #fff; }
.cf7-wrap .wpcf7-textarea { resize: vertical; min-height: 130px; }
.cf7-wrap .wpcf7-submit {
  background: var(--red); color: #fff; font-family: var(--font-body);
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  padding: 14px 30px; border-radius: 3px; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.cf7-wrap .wpcf7-submit:hover { background: #c62d34; transform: translateY(-1px); }
.cf7-wrap .wpcf7-response-output {
  border-radius: 4px; padding: 12px 15px; font-size: 13px; margin: 0;
  border: 0.5px solid rgba(231,58,66,0.3); background: rgba(231,58,66,0.12); color: #f87171;
}
.cf7-wrap .wpcf7-mail-sent-ok {
  border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); color: #86efac;
}
.cf7-wrap .wpcf7-not-valid-tip { font-size: 11px; color: #f87171; margin-top: 3px; }
.cf7-wrap .wpcf7-not-valid { border-color: rgba(231,58,66,0.5) !important; }

.csuccess {
  background: rgba(231,58,66,0.08); border: 0.5px solid rgba(231,58,66,0.2);
  border-radius: 6px; padding: 2.5rem; text-align: center;
}
.csuccess-icon { font-size: 32px; margin-bottom: 1rem; color: var(--red); }
.csuccess-title { font-family: var(--font-head); font-size: 24px; color: #fff; margin-bottom: 8px; }
.csuccess-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); }

/* ── VIDEO SECTION (Speaker) ───────────────────────────────────────────────── */

#video { background: var(--off); }
.video-feature { border-radius: 10px; overflow: hidden; background: var(--black); border: 0.5px solid rgba(255,255,255,0.06); }
.video-thumb {
  aspect-ratio: 16/7;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem;
  background-size: cover; background-position: center 30%;
  position: relative; cursor: pointer;
}
.video-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.video-thumb video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(231,58,66,0.4);
}
.play-btn:hover { transform: scale(1.08); background: #c62d34; }
.play-icon {
  width: 0; height: 0;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-left: 18px solid #fff; margin-left: 4px;
}
.video-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; position: relative; z-index: 1; }
.video-thumb.playing .play-btn,
.video-thumb.playing .video-label { display: none; }
.video-thumb.playing::after { display: none; }

.video-caption { padding: 2rem 2.25rem; display: grid; grid-template-columns: 1fr 240px; gap: 2rem; align-items: start; }
.video-caption-title { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
.video-caption-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }

.video-guests { display: flex; flex-direction: column; gap: 8px; }
.video-guests-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }

/* Secondary video (smaller, below caption) */
.video-secondary { padding: 1.5rem 2.25rem 2rem; border-top: 0.5px solid rgba(255,255,255,0.08); margin-top: 0.5rem; }
.video-secondary-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.video-secondary video { width: 100%; border-radius: 6px; aspect-ratio: 16/9; }

/* ── VORTRAGSTHEMEN (Speaker) ──────────────────────────────────────────────── */

.themen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.t-card {
  border: 0.5px solid var(--border); border-radius: 8px;
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.t-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.t-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.t-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 0.75rem; color: var(--black); line-height: 1.1; }
.t-card p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; }
.t-tags { margin-top: 1.25rem; display: flex; gap: 6px; flex-wrap: wrap; }
.t-tag { font-size: 11px; color: var(--mid); border: 0.5px solid var(--border); border-radius: 2px; padding: 3px 8px; background: var(--off); }

/* ── AUF DER BÜHNE (Speaker stats) ────────────────────────────────────────── */

#buehne { background: var(--off); }
.buehne-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden;
}
.buehne-cell { background: var(--white); padding: 2.5rem 2rem; }
.buehne-n { font-family: var(--font-head); font-size: 52px; color: var(--black); line-height: 1; }
.buehne-n span { color: var(--red); }
.buehne-lbl { font-size: 13px; font-weight: 300; color: var(--mid); margin-top: 10px; line-height: 1.5; }

/* ── KONFERENZEN (Speaker) ─────────────────────────────────────────────────── */

#konferenzen { background: var(--white); }
.conf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.conf-card {
  border: 0.5px solid var(--border); border-radius: 8px;
  padding: 1.75rem; background: var(--off); transition: transform 0.2s;
}
.conf-card:hover { transform: translateY(-3px); }
.conf-logo {
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--white); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--mid); margin-bottom: 1.25rem;
  overflow: hidden;
}
.conf-logo img { width: 100%; height: 100%; object-fit: contain; }
.conf-name { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.conf-desc { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 10px; }
.conf-type { font-size: 11px; color: var(--red); border: 0.5px solid rgba(231,58,66,0.2); border-radius: 2px; padding: 3px 8px; background: rgba(231,58,66,0.05); display: inline-block; }

/* ── STIMMEN / QUOTES (shared) ─────────────────────────────────────────────── */

#stimmen { background: var(--off); }
.quotes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 2rem;
}
.quote-card { background: var(--white); padding: 2rem 1.75rem; }
.quote-mark { font-family: var(--font-head); font-size: 48px; color: var(--red); line-height: 0.8; margin-bottom: 1rem; opacity: 0.4; }
.quote-text { font-size: 15px; font-weight: 300; color: var(--black); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.quote-name, .quote-source-name { font-size: 12px; font-weight: 600; color: var(--black); letter-spacing: 0.04em; }
.quote-role, .quote-source-role { font-size: 11px; color: var(--mid); margin-top: 2px; font-weight: 300; }

/* ── CTA SECTION (shared) ──────────────────────────────────────────────────── */

#cta { background: var(--black); border-bottom: none; padding: 6rem 3rem; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 5rem; align-items: center; }
.cta-h2 { font-family: var(--font-head); font-size: clamp(36px, 4vw, 56px); color: #fff; line-height: 1; margin-bottom: 1.25rem; }
.cta-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; }
.cta-box { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 2.25rem; }
.cta-box-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.cta-box-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.cta-box-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); margin-bottom: 1.75rem; line-height: 1.6; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; }

/* ── BEIRAT: IN ZAHLEN ─────────────────────────────────────────────────────── */

#zahlen { background: var(--off); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 2rem;
}
.stats-grid .stat-cell { background: var(--white); padding: 2.5rem 2rem; }
.stats-grid .stat-n { font-family: var(--font-head); font-size: 52px; color: var(--black); line-height: 1; }
.stats-grid .stat-n sup { font-size: 28px; vertical-align: super; }
.stats-grid .stat-n span { color: var(--red); }
.stats-grid .stat-lbl { font-size: 13px; font-weight: 300; color: var(--mid); margin-top: 10px; line-height: 1.5; }

/* ── BEIRAT: EXPERTISE ─────────────────────────────────────────────────────── */

#expertise { background: var(--white); }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.exp-card {
  border: 0.5px solid var(--border); border-radius: 8px;
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.exp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.exp-icon { font-size: 24px; margin-bottom: 1rem; }
.exp-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 0.75rem; color: var(--black); line-height: 1.1; }
.exp-card p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; }

/* ── BEIRAT: BÜCHER ────────────────────────────────────────────────────────── */

#buecher { background: var(--off); }
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.book-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 8px; padding: 2rem 1.75rem;
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.book-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.book-cover {
  width: 64px; height: 86px;
  background: linear-gradient(135deg, #2a2520, #1a1a18);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 9px; color: rgba(255,255,255,0.6);
  text-align: center; padding: 8px; line-height: 1.4; overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.book-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.book-desc { font-size: 13px; font-weight: 300; color: #555; line-height: 1.65; margin-bottom: 10px; }
.book-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.book-tag { font-size: 11px; color: var(--mid); border: 0.5px solid var(--border); border-radius: 2px; padding: 3px 8px; background: var(--off); }

/* ── BEIRAT: MANDATE ───────────────────────────────────────────────────────── */

#mandate { background: var(--white); }
.mandate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.mandate-card {
  border: 0.5px solid var(--border); border-radius: 8px;
  padding: 1.75rem; background: var(--off); transition: transform 0.2s;
}
.mandate-card:hover { transform: translateY(-3px); }
.mandate-logo {
  width: 66px; height: 66px; border-radius: 8px;
  background: var(--white); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--mid);
  margin-bottom: 1.25rem; overflow: hidden;
}
.mandate-logo img { width: 100%; height: 100%; object-fit: contain; }
.mandate-name { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.mandate-desc { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 10px; }
.mandate-sector { font-size: 11px; color: var(--red); border: 0.5px solid rgba(231,58,66,0.2); border-radius: 2px; padding: 3px 8px; background: rgba(231,58,66,0.05); display: inline-block; }

/* ── KINDHEIT: REGELWERK ───────────────────────────────────────────────────── */

#regelwerk { background: var(--white); }
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.rule-card {
  border: 0.5px solid var(--border); border-radius: 8px;
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rule-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.rule-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.rule-age { font-family: var(--font-head); font-size: 40px; color: var(--red); line-height: 1; margin-bottom: 0.75rem; }
.rule-card h3 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 0.75rem; }
.rule-items { list-style: none; margin-bottom: 1rem; }
.rule-items li { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; padding: 3px 0; }
.rule-items li::before { content: '— '; color: var(--red); }
.rule-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 1rem; }
.rule-tag { font-size: 11px; color: var(--mid); border: 0.5px solid var(--border); border-radius: 2px; padding: 3px 8px; background: var(--off); }

/* ── KINDHEIT: FAMILIENFOTO ────────────────────────────────────────────────── */

#family-photo { width: 100%; aspect-ratio: 16/7; overflow: hidden; position: relative; }
#family-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block; }
.family-photo-placeholder {
  width: 100%; aspect-ratio: 21/8;
  background: var(--off); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.family-photo-placeholder-text { font-size: 12px; color: var(--mid); letter-spacing: 0.06em; }

/* ── KINDHEIT: LOTTA QUOTE ─────────────────────────────────────────────────── */

#lotta { background: var(--off); }
.lotta-block {
  display: grid; grid-template-columns: 72px 1fr; gap: 2rem; align-items: start;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 8px; padding: 2.5rem; margin-top: 2rem;
}
.lotta-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; color: #fff;
}
.lotta-quote { font-size: 17px; font-weight: 300; font-style: italic; color: var(--black); line-height: 1.75; margin-bottom: 1rem; }
.lotta-cite { font-size: 12px; color: var(--mid); letter-spacing: 0.04em; }

/* ── KINDHEIT: POSITIONEN ──────────────────────────────────────────────────── */

#positionen { background: var(--white); }
.pos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pos-card { border: 0.5px solid var(--border); border-radius: 8px; padding: 2rem 1.75rem; background: var(--off); }
.pos-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.pos-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.75rem; color: var(--black); line-height: 1.3; }
.pos-card p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */

footer {
  background: #0e1018; padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 20px; opacity: 0.4; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  #nav { padding: 0 1.5rem; }

  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(20,24,32,0.98); padding: 1.5rem 2rem;
    gap: 1.25rem; z-index: 199; border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .nav-links.mob-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 16px; padding: 0.25rem 0; }
  .nav-dropdown-toggle { font-size: 16px !important; }
  .nav-dropdown-menu { display: none; position: static; opacity: 1; pointer-events: all; transform: none; background: transparent; border: none; padding: 0.5rem 0 0 1rem; backdrop-filter: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; gap: 4px; transform: none; opacity: 1; }
  .nav-cta { display: block; width: 100%; text-align: center; margin-top: 0.75rem; padding: 14px 20px; font-size: 15px !important; border-radius: 6px; }
  .nav-mob-btn { display: flex; }

  #hero .hero-press { flex-direction: column; }
  #hero .hero-press-item {
    border-right: none; border-bottom: none;
    padding: 1.5rem 1.5rem; justify-content: flex-start;
    transition: opacity 0.4s ease;
  }
  .hero-press-quote { font-size: 18px; max-width: 100%; }
  .hero-content { padding: 0 1.5rem; }

  #page-hero { padding: 100px 1.5rem 60px; }
  #page-hero.hero-kindheit { padding: 100px 1.5rem 0; }
  #page-hero.hero-kindheit .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }

  .sec { padding: 3.5rem 1.5rem; }
  #cta { padding: 3.5rem 1.5rem; }
  #media-sec { padding: 3rem 1.5rem; }
  #media-highlights { padding: 3rem 1.5rem; }
  .mh-grid { grid-template-columns: 1fr; }
  #media-list-sec { padding: 3rem 1.5rem; }
  .ml-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .ml-read { display: none; }

  .ueber-grid,
  .kontakt-grid,
  .cta-inner,
  .video-caption { grid-template-columns: 1fr; gap: 2.5rem; }

  .themes-grid,
  .themen-grid,
  .buehne-grid,
  .conf-grid,
  .quotes-grid,
  .exp-grid,
  .books-grid,
  .mandate-grid,
  .rules-grid,
  .pos-grid,
  .stats-grid,
  .media-grid,
  .media-grid-full { grid-template-columns: 1fr; }

  .cform-row { grid-template-columns: 1fr; }

  .vita-card { width: 85%; }

  .media-row { grid-template-columns: 72px 1fr 16px; }
  .media-date { display: none; }

  .filter-inner { padding: 0 1.5rem; }

  .lotta-block { grid-template-columns: 1fr; }

  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(42px, 11vw, 56px); }
  .books-grid { grid-template-columns: 1fr; }
}

/* ── LINKEDIN NAV ICON ──────────────────────────────────────────────────────── */
.nav-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-linkedin:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ── LOTTA — UPDATED (name + source) ───────────────────────────────────────── */
.lotta-name { font-size: 13px; font-weight: 600; color: var(--black); letter-spacing: 0.02em; margin-bottom: 0.25rem; }
.lotta-source { font-size: 11px; color: var(--mid); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── 7 KOMPETENZEN ──────────────────────────────────────────────────────────── */
#kompetenzen { background: var(--off); }
.kompetenzen-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}
.kompetenz-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 0.5px solid var(--border);
  border-radius: 100px;
  background: #fff;
  transition: transform 0.2s;
}
.kompetenz-badge:hover { transform: translateY(-2px); }
.kompetenz-badge.offline {
  border-color: rgba(231,58,66,0.35);
  background: rgba(231,58,66,0.04);
}
.badge-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
  min-width: 18px;
}
.badge-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.badge-offline {
  font-size: 10px;
  font-weight: 400;
  color: var(--red);
  opacity: 0.8;
  border-left: 1px solid rgba(231,58,66,0.3);
  padding-left: 0.5rem;
  margin-left: 0.1rem;
}

/* ── POS-GRID 3-COL ─────────────────────────────────────────────────────────── */
.pos-grid-3 { grid-template-columns: repeat(3, 1fr); }
/* auto: up to 12 cards, 3 columns → wraps naturally */
.pos-grid-auto { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .pos-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pos-grid-auto { grid-template-columns: repeat(2, 1fr); }
  .mh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pos-grid-3 { grid-template-columns: 1fr; }
  .pos-grid-auto { grid-template-columns: 1fr; }
  .kompetenzen-badges { gap: 0.5rem; }
  .kompetenz-badge { padding: 0.45rem 0.75rem; }
}

/* ── BERICHTET VON ──────────────────────────────────────────────────────────── */
/* ── AK LOGO STRIP (image-based) ────────────────────────────────────────────── */

.ak-logo-strip {
  margin-bottom: 2.5rem;
  padding: 2rem 2.5rem;
  background: #f7f7f5;
  border-radius: 10px;
  border: 0.5px solid var(--border);
}
.ak-logo-strip-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem;
}
.ak-logo-strip-row {
  display: flex; flex-wrap: wrap;
  gap: 1.5rem 2.5rem; align-items: center;
}
.ak-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 44px;
}
.ak-logo-item img {
  height: 44px; width: auto; max-width: 140px;
  object-fit: contain;
  filter: grayscale(0); opacity: 1;
  transition: filter 0.2s, opacity 0.2s;
}
.ak-logo-item img:hover { filter: grayscale(1); opacity: 0.5; }

/* Legacy text-based fallback (kept for backward compat) */
.berichtet-von { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 0.5px solid var(--border); }
.berichtet-von-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.berichtet-von-logos { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; }
.berichtet-logo { font-family: var(--font-head); font-size: 15px; font-weight: 400; color: var(--mid); letter-spacing: 0.03em; transition: color 0.2s; }
.berichtet-logo:hover { color: var(--black); }
