/* ============================================================
   Website Wolfgang Klußmann — Bürgermeister für Wietze
   Design-Tokens (Quelle: Farbcodes.docx, Strategie SRC-006/007,
   Prototyp-Referenz). Blau führt, Sand als Akzent, kein Grün.
   ============================================================ */

:root {
  /* Farben */
  --blau: #315F96;          /* Primärblau — Navigation, Buttons, Headlines */
  --blau-d: #25496F;        /* Dunkleres Blau für Hover/Aktiv */
  --tief: #202E3A;          /* Dunkelblau — Text, Footer */
  --sand: #B08542;          /* Sand — Akzent für Belege/Zahlen (statt Grün) */
  --sand-l: #F5EFE4;        /* Heller Sand — Flächen */
  --grau: #F4F3EF;          /* Warmes Hellgrau — Sektionsflächen */
  --line: #E1DFD9;          /* Linien */
  --muted: #6E7580;         /* Sekundärtext */
  --weiss: #FFFFFF;
  --gold: #E5C68C;          /* Akzent auf dunklen Flächen */

  /* Typografie */
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 52px; --sp-8: 92px;

  /* Radius / Shadow */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 12px;  --r-xl: 14px;
  --shadow-1: 0 6px 24px rgba(32,46,58,.13);
  --shadow-2: 0 14px 34px rgba(49,95,150,.28);
  --shadow-3: 0 16px 38px rgba(32,46,58,.18);

  /* Layout */
  --container: 1180px;
  --header-h: 74px;
  --bp-md: 1000px;
  --bp-sm: 760px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .18s;
}

/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 4px); }
body {
  background: var(--weiss);
  color: var(--tief);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Skip-Link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--tief); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Fokus sichtbar */
:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============ Header / Navigation ============ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 20px;
  letter-spacing: -.01em; color: var(--blau); text-decoration: none; line-height: 1.1;
}
.brand span {
  display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 2px;
}
.menu { display: flex; gap: 28px; align-items: center; }
.menu > li { position: relative; }
.menu a {
  position: relative; text-decoration: none; font-size: 15px; font-weight: 600;
  letter-spacing: .008em; padding: 8px 0; display: block; transition: color var(--dur) var(--ease);
}
.menu a:hover { color: var(--blau); }
.menu > li > a:not(.navcta)::after {
  position: absolute; right: 0; bottom: 2px; left: 0; height: 2px;
  background: var(--blau); content: ""; opacity: 0; transform: scaleX(.4);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.menu > li > a:not(.navcta):hover::after,
.menu > li > a:not(.navcta):focus-visible::after { opacity: 1; transform: scaleX(1); }
.menu .drop {
  position: absolute; top: 100%; left: -16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 8px; min-width: 230px;
  box-shadow: var(--shadow-1);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all var(--dur) var(--ease); list-style: none;
}
.menu > li:hover .drop,
.menu > li:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { padding: 8px 12px; border-radius: var(--r-sm); font-size: 14px; }
.drop a:hover { background: var(--grau); }
.caret { font-size: 9px; margin-left: 5px; color: var(--muted); }
.navcta {
  background: var(--blau); color: #fff !important;
  padding: 10px 20px !important; border-radius: var(--r-sm);
  font-weight: 650 !important; font-size: 14.5px !important;
}
.navcta:hover { background: var(--blau-d); }
.burger {
  display: none; background: none; border: 0; font-size: 24px;
  cursor: pointer; color: var(--tief); line-height: 1; padding: 6px;
}
#mob { display: none; border-top: 1px solid var(--line); background: #fff; padding: 10px 0; }
#mob a { display: block; padding: 11px 28px; text-decoration: none; font-size: 15px; font-weight: 500; }
#mob a:hover { color: var(--blau); background: var(--grau); }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: clamp(560px, 66vh, 760px);
  display: flex; align-items: center; overflow: hidden; background: var(--tief);
}
.hero > .container, .band > .container, .band2 > .container {
  width: 100%; flex: 1 1 auto;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 6%; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(23,38,52,.96) 0%, rgba(25,42,58,.91) 30%,
    rgba(30,50,68,.56) 52%, rgba(30,50,68,.16) 72%, rgba(30,50,68,0) 100%);
}
.hero-in { position: relative; z-index: 2; padding: 90px 0; max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02; font-weight: 700; letter-spacing: -.028em;
  color: #fff; margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.5;
  color: rgba(255,255,255,.93); max-width: 44ch; margin-bottom: 12px;
}
.hero-meta { font-size: 14.5px; color: rgba(255,255,255,.66); margin-bottom: 34px; }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--r-sm);
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: all var(--dur) var(--ease); cursor: pointer; border: 1.5px solid transparent;
}
.btn-p { background: #fff; color: var(--blau); }
.btn-p:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.btn-s { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-s:hover { background: #fff; color: var(--blau); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blau); border-color: var(--blau); }
.btn-outline:hover { background: var(--blau); color: #fff; }
.btn-blue { background: var(--blau); color: #fff; border-color: var(--blau); }
.btn-blue:hover { background: var(--blau-d); border-color: var(--blau-d); }

/* ============ Zahlenleiste ============ */
.zahlen { background: var(--blau); color: #fff; padding: 52px 0; }
.z-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.z { text-align: center; padding: 0 8px; border-right: 1px solid rgba(255,255,255,.16); }
.z:last-child { border-right: 0; }
.z b {
  display: block; font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin-bottom: 8px;
}
.z span { display: block; font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,.82); }
.z-note { text-align: center; margin-top: 30px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ============ Sektionen ============ */
section { padding: var(--sp-8) 0; }
.sec-grau { background: var(--grau); }
.sec-blau { background: var(--blau); color: #fff; }
.sec-head { margin-bottom: 44px; }
.sec-head.c { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.kick {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 14px;
}
.sec-blau .kick { color: var(--gold); }
h2 {
  font-family: var(--serif); font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.14; font-weight: 700; letter-spacing: -.02em;
  color: var(--blau); margin-bottom: 16px;
}
.sec-blau h2 { color: #fff; }
h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
.lead { font-size: 17.5px; line-height: 1.66; }
p + p { margin-top: 15px; }

/* ============ Antrieb / Über mich ============ */
.antrieb { display: grid; grid-template-columns: 1.22fr .88fr; gap: 62px; align-items: start; }
.pull {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.32; font-weight: 600; color: var(--blau);
  border-left: 3px solid var(--sand); padding-left: 24px; margin: 28px 0;
}
.figure { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.figure img { width: 100%; }
.figcap { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.sig { margin-top: 30px; }
.sig img { width: 190px; opacity: .92; }
.sig span { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============ Social ============ */
.social { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.social-lab {
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.social-profile {
  min-height: 64px; padding: 10px 15px 10px 10px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--blau);
  display: flex; align-items: center; gap: 13px; text-decoration: none;
  transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.social-profile:hover {
  background: var(--blau); border-color: var(--blau); color: #fff;
  box-shadow: var(--shadow-1); transform: translateY(-2px);
}
.social-avatar {
  width: 46px; height: 46px; padding: 2px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blau));
  position: relative; flex: 0 0 auto;
}
.social-avatar > img { width: 100%; height: 100%; border: 2px solid #fff; border-radius: 50%; object-fit: cover; }
.social-avatar > svg {
  position: absolute; right: -3px; bottom: -2px; width: 18px; height: 18px;
  padding: 3px; border: 2px solid #fff; border-radius: 50%;
  background: var(--blau); color: #fff; fill: currentColor;
}
.social-avatar-facebook { background: #1877f2; }
.social-avatar-facebook > svg {
  background: #1877f2;
}
.social-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.social-copy strong { font-size: 14px; font-weight: 650; }
.social-copy > span { margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.social-profile:hover .social-copy > span { color: rgba(255,255,255,.72); }
.social-arrow { margin-left: auto; font-size: 20px; line-height: 1; transition: transform var(--dur); }
.social-profile:hover .social-arrow { transform: translateX(3px); }

#mein-antrieb { scroll-margin-top: calc(var(--header-h) + 18px); }

/* ============ Video-Features ============ */
.video-feature {
  display: grid; grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px); align-items: center;
  margin-top: 56px; padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: var(--sand-l); box-shadow: 0 10px 32px rgba(32,46,58,.08);
}
.video-feature[id] { scroll-margin-top: calc(var(--header-h) + 18px); }
.video-feature-reverse { grid-template-columns: minmax(0, 1fr) minmax(240px, 340px); }
#themen .video-feature { margin-top: 0; margin-bottom: 48px; background: var(--weiss); }
.video-shell {
  width: min(100%, 340px); margin: 0 auto; overflow: hidden;
  border-radius: var(--r-lg); background: var(--tief); box-shadow: var(--shadow-3);
}
.video-shell video { display: block; width: 100%; height: auto; aspect-ratio: 9 / 16; background: var(--tief); }
.video-copy { max-width: 620px; }
.video-copy h3 {
  margin-bottom: 16px; color: var(--blau);
  font-size: clamp(27px, 3vw, 38px); line-height: 1.14;
}
.video-copy > p:not(.video-meta) { font-size: 17px; line-height: 1.65; }
.video-meta {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px; font-weight: 600;
}

/* ============ Themen-Kacheln ============ */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  background: var(--blau); border: 1px solid var(--blau); border-radius: var(--r-lg);
  text-decoration: none; display: flex; flex-direction: column;
  transition: all var(--dur) var(--ease); overflow: hidden;
}
.tile:hover { border-color: var(--blau-d); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.tile .thumb { aspect-ratio: 4 / 3; background: var(--sand-l); overflow: hidden; position: relative; }
.tile .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tile .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.tile h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 7px; line-height: 1.25; color: #fff; }
.tile p { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.5; flex: 1; }
.tile .arr { font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 14px; }

/* ============ Themen-Sektionen (Bilanz/Ziele) ============ */
.themen-detail-intro { padding: 72px 0 0; }
.themen-detail-intro .sec-head {
  max-width: 820px; margin-bottom: 0; padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.themen-detail-intro + .thema { padding-top: 44px; }
@media (min-width: 860px) {
  .themen-detail-intro h2 { font-size: 33px; white-space: nowrap; }
}
.thema { scroll-margin-top: calc(var(--header-h) + 10px); }
.thema-head { margin-bottom: 18px; }
.thema-nr {
  display: flex; align-items: center; gap: 10px; width: fit-content; margin-bottom: 8px;
  font-family: var(--sans); font-size: 11.5px; line-height: 1; font-weight: 700;
  color: var(--sand); letter-spacing: .16em; text-transform: uppercase;
}
.thema-nr::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .65; }
.thema-head h2 { margin-bottom: 0; }
.thema-lead { margin-bottom: 34px; }
.bz-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 0; }
.bz {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
}
.bz-grid > .bz { border-bottom: 0; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.bz-head {
  display: flex; align-items: center; gap: 10px; padding: 18px 26px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.bz-head .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.bz.bz-done .bz-head { color: var(--sand); }
.bz.bz-done .dot { background: var(--sand); }
.bz.bz-plan .bz-head { color: var(--blau); }
.bz.bz-plan .dot { background: var(--blau); }
.bz ul { padding: 10px 26px 24px; flex: 1; }
.bz li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.bz li:last-child { border-bottom: 0; padding-bottom: 0; }
.bz .tagz {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-bottom: 7px;
}
.bz-done .tagz { background: var(--sand-l); color: var(--sand); }
.bz-plan .tagz { background: #EAF0F7; color: var(--blau); }
.bz b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.bz span { font-size: 14px; color: var(--muted); line-height: 1.55; }
.bz-foot {
  background: var(--grau); padding: 18px 26px;
  font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--blau);
}
.bz > .bz-foot { display: none; }
.bz-foot-shared {
  grid-column: 1 / -1; border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.thema-luecke {
  margin-top: 20px; background: var(--sand-l); border: 1px dashed var(--sand);
  border-radius: var(--r-md); padding: 16px 22px; font-size: 14px; color: var(--tief);
}
.thema-luecke b { color: var(--sand); }

/* ============ Große Themenansicht ============ */
.js .themen-detail-intro,
.js .thema { display: none; }
.theme-source-store { display: none !important; }
.theme-modal-backdrop {
  position: fixed; z-index: 200; inset: 0; display: grid; place-items: center;
  padding: 32px; background: rgba(20,32,43,.68); backdrop-filter: blur(5px);
}
.theme-modal-backdrop[hidden] { display: none; }
.theme-modal {
  position: relative; width: min(1160px, 100%); height: min(840px, calc(100svh - 64px));
  display: grid; grid-template-columns: minmax(0, 1fr) 28px; grid-template-rows: 58px minmax(0, 1fr);
  overflow: hidden; padding: 0; background: #fff; border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.32); animation: theme-modal-in .25s ease both;
}
@keyframes theme-modal-in { from { opacity: 0; transform: translateY(18px) scale(.985); } }
.theme-modal-bar {
  grid-column: 1 / -1; position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px 0 24px; border-bottom: 1px solid var(--line); background: #fff;
}
.theme-modal-bar > span {
  color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.theme-modal-close {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0 0 2px;
  border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--tief);
  font-family: Arial, sans-serif; font-size: 25px; line-height: 1; cursor: pointer;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
}
.theme-modal-close:hover { border-color: var(--blau); background: var(--blau); color: #fff; }
.theme-modal-scroll {
  grid-column: 1; grid-row: 2; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
  scrollbar-width: none; -ms-overflow-style: none;
}
.theme-modal-scroll::-webkit-scrollbar { display: none; }

/* Eigene Scrollleiste mit Pfeil-Buttons: sieht auf jedem Betriebssystem/Browser
   gleich aus, statt der stark variierenden nativen Scrollbar. */
.theme-scrollbar {
  grid-column: 2; grid-row: 2; display: none; flex-direction: column; align-items: center;
  padding: 6px 0; background: var(--grau); border-left: 1px solid var(--line);
}
.theme-modal.has-scroll .theme-scrollbar { display: flex; }
.theme-scrollbar-btn {
  display: grid; place-items: center; width: 22px; height: 22px; flex: none;
  border: 0; border-radius: 5px; background: transparent; color: var(--muted); cursor: pointer;
  transition: background var(--dur), color var(--dur);
}
.theme-scrollbar-btn:hover { background: #fff; color: var(--blau); }
.theme-scrollbar-btn svg { width: 9px; height: 9px; display: block; }
.theme-scrollbar-track {
  position: relative; flex: 1; width: 6px; margin: 6px 0;
  background: var(--line); border-radius: 999px; cursor: pointer;
}
.theme-scrollbar-thumb {
  position: absolute; left: 0; width: 100%; border-radius: 999px;
  background: #b0b8c1; cursor: grab; touch-action: none;
  transition: background var(--dur);
}
.theme-scrollbar-thumb:hover, .theme-scrollbar-thumb.is-dragging { background: var(--blau); cursor: grabbing; }
.theme-modal-content .thema {
  display: block; padding: 0 0 clamp(46px, 6vw, 74px); background: #fff; scroll-margin-top: 0;
}
.theme-modal-content .thema > .container {
  width: 100%; max-width: none; padding: clamp(40px, 5vw, 64px) clamp(46px, 6vw, 74px) 0;
}
.theme-editorial-stage {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .95fr);
  align-items: stretch; background: var(--blau);
}
.theme-visual { min-width: 0; height: auto; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; background: var(--grau); }
.theme-visual img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.theme-editorial-note {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(30px, 4vw, 48px); overflow: hidden; color: #fff;
}
.theme-editorial-note::before {
  content: ""; position: absolute; width: 190px; height: 190px; top: -72px; right: -76px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
}
.theme-editorial-note span {
  color: rgba(255,255,255,.66); font-size: 10px; font-weight: 700; letter-spacing: .12em;
}
.theme-editorial-note strong {
  margin-top: 12px; font-family: var(--serif); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.08;
}
.theme-editorial-note i { width: 42px; height: 2px; margin-top: 22px; background: var(--gold); }
.theme-modal-content .thema-head {
  padding-right: 0;
}
.theme-modal-content .thema-lead { max-width: 880px; }
.theme-modal-content .bz-grid { align-items: start; }
.theme-modal-content .bz-grid > .bz { border-bottom: 1px solid var(--line); border-radius: var(--r-xl); }
.theme-modal-content .bz > .bz-foot { display: none; }
.theme-modal-content .bz-foot-shared { display: block; }
.theme-modal-content .bz ul { padding: 8px 24px 18px; }
.theme-modal-content .bz li { padding: 0; }
.theme-modal-content .bz details { border-bottom: 1px solid var(--line); }
.theme-modal-content .bz li:last-child details { border-bottom: 0; }
.theme-modal-content .bz summary {
  position: relative; list-style: none; padding: 15px 30px 15px 0; cursor: pointer;
}
.theme-modal-content .bz summary::-webkit-details-marker { display: none; }
.theme-modal-content .bz summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%;
  background: var(--grau); color: var(--blau); font-size: 17px; font-weight: 500;
}
.theme-modal-content .bz details[open] summary::after { content: "−"; }
.theme-modal-content .bz summary .tagz { margin: 0 9px 0 0; vertical-align: 1px; }
.theme-modal-content .bz summary b { display: inline; margin: 0; }
.theme-modal-content .theme-item-detail {
  display: block; padding: 0 30px 16px 0; color: var(--muted); font-size: 14px; line-height: 1.6;
}
body.theme-modal-open { overflow: hidden; }

/* ============ Zitatbänder ============ */
.band {
  position: relative; height: clamp(520px, 38vw, 1440px); display: flex; align-items: center;
  overflow: hidden; background: var(--tief);
}
.band-bg { position: absolute; inset: 0; }
.band-bg picture { display: block; width: 100%; height: 100%; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 88%; }
.band-veil {
  position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(18,30,42,.90) 0%, rgba(18,30,42,.80) 26%,
    rgba(20,33,45,.44) 40%, rgba(23,38,52,.10) 52%, rgba(23,38,52,0) 60%);
}
.band-in {
  position: relative; z-index: 2; max-width: 620px; padding: 76px 0;
  text-shadow: 0 1px 3px rgba(10,18,26,.55), 0 6px 30px rgba(10,18,26,.5);
}
.band-q {
  font-family: var(--serif); font-size: clamp(24px, 2.8vw, 33px);
  line-height: 1.24; font-weight: 600; color: #fff; letter-spacing: -.02em; margin-bottom: 16px;
}
.band-s { font-size: 16px; color: rgba(255,255,255,.78); }

.band2 {
  position: relative; height: clamp(520px, 38vw, 1440px);
  display: flex; align-items: center; overflow: hidden; background: var(--grau);
}
.band2 .band-bg img { object-position: 0% 14%; }
.band2-veil { position: absolute; inset: 0; background: none; }
.band2-in { position: relative; z-index: 2; max-width: 540px; padding: 80px 0; margin-left: 0; }
.band2-mark { font-family: var(--serif); font-size: 52px; line-height: .6; color: var(--sand); display: block; margin-bottom: 18px; }
.band2-q {
  font-family: var(--serif); font-size: clamp(25px, 3vw, 36px);
  line-height: 1.22; font-weight: 600; color: #16232F; letter-spacing: -.022em; margin-bottom: 22px;
  max-width: 9em;
}
.band2-k { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #8A6220; }

/* ============ Wahl 2026 ============ */
.wahl { position: relative; background: var(--tief); color: #fff; overflow: hidden; }
.wahl-bg { position: absolute; inset: 0; }
.wahl-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.wahl-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,44,.93) 0%, rgba(20,32,44,.88) 42%, rgba(20,32,44,.90) 100%);
}
.wahl > .container { position: relative; z-index: 2; }
.wahl .sec-head h2 { color: #fff; }
.wahl .sec-head .kick { color: var(--gold); }
.wahl-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.wahltag {
  background: rgba(255,255,255,.07); backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg);
  padding: 32px; text-align: center;
}
.wahltag .d { font-family: var(--serif); font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.wahltag .m { font-size: 16px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; color: var(--gold); }
.wahltag .y { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 10px; }
.wahltag .cd {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px; color: rgba(255,255,255,.78);
}
.termin { display: flex; gap: 22px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.13); align-items: baseline; }
.termin:last-of-type { border-bottom: 0; }
.termin .dt { flex: none; width: 118px; font-size: 13.5px; color: var(--gold); font-weight: 600; }
.termin .dt small { display: block; color: rgba(255,255,255,.55); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.termin .ti h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 3px; }
.termin .ti p { font-size: 14px; color: rgba(255,255,255,.66); }

/* ============ Feed ============ */
.feed { background: var(--grau); }
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 34px; }
.feed-item {
  position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1; background: #ddd;
  transition: transform var(--dur), box-shadow var(--dur);
}
.feed-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.feed-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; }
.feed-item .ig {
  position: absolute; right: 10px; top: 10px; width: 26px; height: 26px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: var(--blau);
}
.feed-item .ig svg { width: 15px; height: 15px; fill: currentColor; }
.feed-media-type {
  position: absolute; left: 10px; bottom: 10px; padding: 5px 8px; border-radius: var(--r-sm);
  background: rgba(13,37,64,.88); color: #fff; font-size: 11px; font-weight: 650; letter-spacing: .02em;
}
.feed-grid.is-live .feed-item { background: var(--sand-l); }
.feed-cta { text-align: center; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 9px; background: var(--blau); color: #fff;
  padding: 14px 26px; border-radius: var(--r-sm); text-decoration: none; font-weight: 600; font-size: 15px;
  transition: background var(--dur), transform var(--dur);
}
.btn-ig:hover { background: var(--blau-d); transform: translateY(-1px); }
.btn-ig svg { width: 18px; height: 18px; fill: currentColor; }
.feed-hint { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ============ Kontakt ============ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.promise { background: var(--sand-l); border-radius: var(--r-lg); padding: 28px 30px; margin-bottom: 26px; }
.promise b { font-family: var(--serif); font-size: 22px; color: var(--sand); display: block; margin-bottom: 8px; }
.promise p { font-size: 15px; }
.kontakt-card { background: var(--sand-l); border-radius: var(--r-lg); padding: 36px 38px; }
.kontakt-card h3 { font-size: 24px; margin-bottom: 10px; }
.kontakt-card > p { color: var(--muted); font-size: 15px; }
.kontakt-card .btn { width: 100%; margin: 24px 0 20px; text-align: center; }
.kontakt-fallback a { color: var(--blau); font-weight: 700; overflow-wrap: anywhere; }
.kontakt-card .hint { margin-top: 16px; font-size: 12.5px; }
.kontakt-card .hint a { color: var(--blau); }
.kontakt-hinweis { font-size: 12.5px; color: var(--muted); margin-top: 18px; }

/* ============ FAQ ============ */
.faq { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  position: relative; list-style: none; cursor: pointer; padding: 22px 46px 22px 0;
  font-family: var(--serif); font-size: 18.5px; font-weight: 600; color: var(--tief);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%;
  background: var(--sand-l); color: var(--blau); font-size: 18px; font-weight: 500;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a { padding: 0 46px 24px 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-a a { color: var(--blau); font-weight: 700; }

/* ============ Rechtliche Seiten ============ */
.legal-page { background: var(--grau); }
.legal-back { color: var(--blau); font-size: 14px; font-weight: 600; text-decoration: none; }
.legal-back:hover { color: var(--blau-d); text-decoration: underline; }
.legal-main { padding: 72px 0 96px; }
.legal-wrap { max-width: 840px; }
.legal-wrap > h1 {
  color: var(--tief); font-size: clamp(38px, 6vw, 58px); margin-bottom: 28px;
}
.legal-wrap section {
  background: var(--weiss); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 36px; margin-top: 22px;
  font-size: 17.5px; line-height: 1.72;
}
.legal-wrap h2 {
  color: var(--blau); font-size: clamp(22px, 3vw, 28px); margin-bottom: 14px;
}
.legal-wrap p + p, .legal-wrap address + p { margin-top: 14px; }
.legal-wrap address { margin-top: 14px; font-style: normal; }
.legal-wrap a { color: var(--blau); overflow-wrap: anywhere; }
.legal-wrap code { font-size: .92em; }
.legal-warning {
  background: #FFF3CD; border: 2px solid #D39E00; border-radius: var(--r-lg);
  color: #5F4500; padding: 20px 24px; margin-bottom: 34px;
  font-size: 17px; line-height: 1.65;
}
.legal-warning strong { display: block; font-family: var(--serif); font-size: 20px; }
.placeholder { background: #FFF3CD; color: #5F4500; padding: 1px 4px; border-radius: 3px; }
.legal-note {
  background: var(--sand-l); border-left: 4px solid var(--sand); padding: 18px 20px;
  margin: 18px 0;
}
.legal-data { margin-top: 18px; }
.legal-data > div { border-top: 1px solid var(--line); padding: 12px 0; }
.legal-data dt { font-weight: 700; }
.legal-data dd { color: var(--muted); }
.legal-updated { color: var(--muted); font-size: 13px; margin-top: 28px; }
.legal-footer { padding: 24px 0; }
.legal-footer .f-bot { padding-top: 0; }
.legal-footer a[aria-current="page"] { color: #fff; }

/* ============ Footer ============ */
footer {
  position: relative; background: var(--tief); color: rgba(255,255,255,.68);
  padding: 56px 0 32px; font-size: 14px; overflow: hidden;
}
.f-bg { position: absolute; inset: 0; }
.f-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.f-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,44,.93) 0%, rgba(20,32,44,.90) 50%, rgba(20,32,44,.95) 100%);
}
footer .container { position: relative; z-index: 1; }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.13); }
.f-brand { font-family: var(--serif); font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 10px; }
footer h5 { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
footer li { margin-bottom: 9px; }
footer a { text-decoration: none; transition: color var(--dur); }
footer a:hover { color: #fff; }
.f-bot {
  padding-top: 24px; display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5);
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero { min-height: clamp(480px, 58vh, 620px); }
  .hero-bg img { object-position: 68% 6%; }
  .hero-veil { background: linear-gradient(105deg, rgba(23,38,52,.97) 0%, rgba(25,42,58,.92) 34%, rgba(30,50,68,.54) 60%, rgba(30,50,68,.14) 82%, rgba(30,50,68,0) 100%); }
  .hero-in { padding: 64px 0; max-width: 62%; }
  .z-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 10px; }
  .z:nth-child(3n) { border-right: 0; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .antrieb, .wahl-grid, .kontakt-grid, .bz-grid { grid-template-columns: 1fr; gap: 40px; }
  .video-feature { grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: 34px; }
  .video-feature-reverse { grid-template-columns: minmax(0, 1fr) minmax(220px, 300px); }
  .bz-grid > .bz { border-bottom: 1px solid var(--line); border-radius: var(--r-xl); }
  .bz > .bz-foot { display: block; }
  .bz-foot-shared { display: none; }
  .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .band2-in { max-width: 60%; margin-left: 0; }
  .band2 .band-bg img { object-position: 62% 14%; }
}

@media (max-width: 900px) {
  .menu { display: none; }
  .burger { display: block; }
}

@media (max-width: 760px) {
  .band { display: block; height: auto; background: var(--tief); }
  .band > .band-bg { position: relative; inset: auto; width: 100%; height: auto; }
  .band > .band-bg picture { height: auto; }
  .band > .band-bg img { width: 100%; height: auto; object-fit: contain; object-position: center; }
  .band-veil { display: none; }
  .band-in { max-width: none; padding: 32px 0 38px; text-shadow: none; }
  .band-q { font-size: 24px; line-height: 1.2; margin-bottom: 18px; }
  .band-s { font-size: 14px; }
  .hero { min-height: auto; display: block; }
  .hero-bg { position: relative; inset: auto; width: 100%; height: auto; }
  .hero-bg img { width: 100%; height: auto; max-height: 64svh; object-fit: cover; object-position: 50% 8%; }
  .hero-veil {
    position: absolute; top: auto; bottom: 0; left: 0; right: 0; height: 34%;
    background: linear-gradient(180deg, rgba(23,38,52,0) 0%, rgba(23,38,52,.5) 100%);
    pointer-events: none;
  }
  .hero-in { padding: 40px 0 54px; max-width: none; }
  section { padding: 64px 0; }
  .themen-detail-intro { padding-top: 56px; }
  .themen-detail-intro .sec-head { padding-bottom: 36px; }
  .themen-detail-intro + .thema { padding-top: 36px; }
  .container { padding: 0 20px; }
  .legal-main { padding: 48px 0 64px; }
  .legal-wrap section { padding: 24px 20px; font-size: 16.5px; }
  .z-grid { grid-template-columns: 1fr 1fr; }
  .z:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.16); }
  .z:nth-child(2n) { border-right: 0; }
  .tiles { grid-template-columns: 1fr; }
  .video-feature { grid-template-columns: 1fr; margin-top: 42px; padding: 22px; }
  .video-feature-reverse { grid-template-columns: 1fr; }
  #themen .video-feature { margin-bottom: 38px; }
  .video-feature-reverse .video-copy { order: 2; }
  .video-feature-reverse .video-shell { order: 1; }
  .video-shell { width: min(100%, 360px); }
  .video-copy h3 { font-size: 28px; }
  .termin { flex-direction: column; gap: 6px; }
  .termin .dt { width: auto; }
  .band2 { display: block; height: auto; min-height: 0; background: var(--grau); }
  .band2 .band-bg { position: relative; inset: auto; width: 100%; height: auto; }
  .band2 .band-bg picture { height: auto; }
  .band2 .band-bg img { width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; }
  .band2-veil { display: none; }
  .band2-in { padding: 32px 0 38px; max-width: none; margin-left: 0; }
  .band2-q { max-width: none; font-size: 24px; line-height: 1.2; margin-bottom: 18px; }
  .band2-mark { font-size: 38px; margin-bottom: 12px; }
  .band2-k { font-size: 11px; letter-spacing: .18em; }
  #kontakt { padding-top: 48px; padding-bottom: 56px; }
  #kontakt .sec-head { margin-bottom: 28px; }
  #kontakt .kontakt-grid { gap: 32px; }
  #kontakt .promise {
    padding: 22px 22px 22px 24px; margin-bottom: 22px;
    border-left: 4px solid var(--sand); border-radius: var(--r-md);
    box-shadow: 0 8px 24px rgba(23,38,52,.06);
  }
  #kontakt .promise b { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
  #kontakt .promise p { font-size: 14.5px; line-height: 1.55; }
  #kontakt .lead { font-size: 16.5px; line-height: 1.55; }
  #kontakt .btn-outline { width: 100%; margin-top: 10px !important; text-align: center; }
  #kontakt .kontakt-hinweis { line-height: 1.5; margin-top: 14px; }
  .feed-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .theme-modal-backdrop { padding: 0; align-items: end; }
  .theme-modal {
    width: 100%; height: 94svh; grid-template-rows: 54px minmax(0, 1fr);
    border-right: 0; border-bottom: 0; border-left: 0; border-radius: 16px 16px 0 0;
  }
  .theme-modal-bar { padding-left: 18px; }
  .theme-modal-content .thema { padding: 0 0 32px; }
  .theme-modal-content .thema > .container { padding: 30px 20px 0; }
  .theme-editorial-stage { display: block; }
  .theme-visual { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .theme-editorial-note { padding: 18px 20px 20px; }
  .theme-editorial-note strong { margin-top: 7px; font-size: 22px; }
  .theme-editorial-note i { margin-top: 12px; }
  .theme-modal-content .thema-head h2 { font-size: 34px; }
  .theme-modal-content .thema-lead { margin-bottom: 24px; font-size: 16px; line-height: 1.6; }
  .theme-modal-content .bz-grid { gap: 20px; }
  .theme-modal-content .bz ul { padding-right: 18px; padding-left: 18px; }
  .theme-modal-content .bz-head,
  .theme-modal-content .bz-foot { padding-right: 18px; padding-left: 18px; }
  .theme-modal-content .bz > .bz-foot { display: none; }
  .theme-modal-content .bz-foot-shared { display: block; }
}

@media (max-width: 420px) {
  .container { padding-right: 16px; padding-left: 16px; }
  .brand { font-size: 18px; }
  .brand span { font-size: 9.5px; }
  .hero-in { padding: 34px 0 46px; }
  h1 { font-size: 34px; }
  .btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .zahlen { padding: 44px 0; }
  .kontakt-card, .promise, .wahltag { padding-right: 20px; padding-left: 20px; }
  .social-links { grid-template-columns: 1fr; }
}

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
