/* =========================================================================
   188-stgb.de — Stylesheet
   Design: modern & klar in Anlehnung an omegawatches.com — viel Weißraum,
   ruhige Grotesk, großzügige Lesegrößen, durchgehend LINKSBÜNDIG, Laufweite
   ~1000px. Das Antiquierte lebt ausschließlich im Fraktur-Logo. Ein tiefes
   Weinrot (aus dem Logo) ist der einzige Akzent.
   ========================================================================= */

/* ---------- Schriften: lokal gehostet (keine Übertragung an Dritte) ------ */
/* Hanken Grotesk + Spectral, Subsets latin + latin-ext, woff2. Bezogen via
   google-webfonts-helper; ersetzt die früher von Google geladenen Webfonts. */
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin_latin-ext-600.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin_latin-ext-700.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin_latin-ext-800.woff2") format("woff2"); }
@font-face { font-family: "Spectral"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/spectral-v15-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "Spectral"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/spectral-v15-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "Spectral"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/spectral-v15-latin_latin-ext-600.woff2") format("woff2"); }
@font-face { font-family: "Spectral"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/spectral-v15-latin_latin-ext-italic.woff2") format("woff2"); }
@font-face { font-family: "Spectral"; font-style: italic; font-weight: 500; font-display: swap;
  src: url("../fonts/spectral-v15-latin_latin-ext-500italic.woff2") format("woff2"); }

/* ---------- Design-Tokens ------------------------------------------------ */
:root {
  /* Flächen — heller/cleaner als zuvor, Richtung Omega */
  --paper:        #FBFAF7;
  --paper-2:      #F4F1EA;
  --paper-3:      #EEE9DF;

  /* Tinte */
  --ink:          #1A1815;
  --ink-soft:     #4A463F;
  --ink-faint:    #837B6F;

  /* Akzent — Weinrot aus dem Logo */
  --wine:         #6E1B23;
  --wine-deep:    #4A0D13;
  --wine-bright:  #8E2230;
  --wine-tint:    #F4E5E3;

  /* Sekundär / Status */
  --gold:         #9A7B4F;
  --green:        #2F5D3A;
  --green-tint:   #E5EDE2;
  --amber:        #9C6B1E;
  --amber-tint:   #F3E9D6;
  --slate:        #5C5A57;
  --slate-tint:   #EAE7E1;

  /* Linien */
  --line:         #E6DECF;
  --line-strong:  #D5CAB6;

  /* Typografie — modern, klar; Serif nur fürs Gesetzeszitat */
  --font-sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-serif:   "Spectral", Georgia, serif;

  /* Maße — Laufweite ~1000px */
  --max:          1040px;
  --measure:      66ch;
  --gut:          clamp(1.25rem, 5vw, 2.5rem);
  --nav-h:        66px;
  --radius:       3px;
  --shadow:       0 1px 2px rgba(26,24,21,.04),
                  0 18px 40px -18px rgba(26,24,21,.16);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);   /* größer & klarer */
  line-height: 1.7;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}
img { max-width: 100%; display: block; }
a { color: var(--wine); text-underline-offset: 2px; }
a:hover { color: var(--wine-bright); }
strong, b { font-weight: 700; }

/* ---------- Layout ------------------------------------------------------- */
.wrap { width: min(100% - 2 * var(--gut), var(--max)); margin-inline: auto; }
.measure { max-width: var(--measure); }
section { padding-block: clamp(3.25rem, 7vw, 6rem); scroll-margin-top: calc(var(--nav-h) + 12px); }
.rule { height: 1px; background: var(--line); border: 0; }

.kicker {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wine); font-weight: 700; margin: 0 0 1.1rem;
}

/* ---------- Sticky-Navigation ------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav__inner {
  width: min(100% - 2 * var(--gut), var(--max)); margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.site-nav__brand {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-sans); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -0.01em; color: var(--wine); text-decoration: none;
  transition: color .18s ease;
}
.site-nav__brand:hover { color: var(--wine-deep); }
.site-nav__links {
  margin-left: auto;
  display: flex; align-items: stretch; gap: clamp(.85rem, 2vw, 1.9rem);
}
/* zweizeilig: Vorname klein oben, Nachname kräftig unten */
.site-nav__links a {
  display: flex; flex-direction: column; justify-content: center; gap: 1px;
  color: var(--ink-soft); text-decoration: none; white-space: nowrap;
  font-size: .95rem; font-weight: 700; line-height: 1.12;
  border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
}
.nav-first { font-size: .7rem; font-weight: 500; letter-spacing: .03em; color: var(--ink-faint); }
.nav-last  { font-size: .95rem; font-weight: 700; letter-spacing: -0.01em; }
.site-nav__links a:hover,
.site-nav__links a:hover .nav-first,
.site-nav__links a:hover .nav-last { color: var(--wine); }
.site-nav__links a.is-active { border-bottom-color: var(--wine); color: var(--ink); }
.site-nav__links a.is-active .nav-last { color: var(--ink); }
.site-nav__links a.is-soon,
.site-nav__links a.is-soon .nav-first,
.site-nav__links a.is-soon .nav-last { color: var(--ink-faint); }
/* dezenter senkrechter Trenner zwischen Themen- und Personen-Punkten (Desktop) */
.site-nav__links a:nth-child(3) { position: relative; }
.site-nav__links a:nth-child(3)::before {
  content: ""; position: absolute; top: 50%;
  left: calc(clamp(.85rem, 2vw, 1.9rem) / -2);
  transform: translate(-50%, -50%);
  width: 1px; height: 1.1rem; background: var(--line-strong);
}
/* Burger-Button — nur auf dem Handy sichtbar (siehe Media-Query) */
.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: 0; cursor: pointer; color: var(--ink);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.site-nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (linksbündig) ------------------------------------------ */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 5rem); }
.hero__brand {
  font-family: var(--font-sans); font-weight: 800; color: var(--wine);
  font-size: clamp(2.4rem, 1.7rem + 3vw, 3.8rem);
  letter-spacing: -0.03em; line-height: 1;
  margin: 0 0 clamp(1.25rem, 3.5vw, 2rem);
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.7rem, 1.5rem + 6vw, 5.4rem);
  line-height: 1.04; letter-spacing: -0.025em;
  margin: 0; max-width: 26ch; color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--wine); font-size: 0.85em; }
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
  line-height: 1.5; color: var(--ink-soft);
  margin: 1.8rem 0 0; white-space: nowrap;   /* eine Zeile auf der Startseite */
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 2rem 3.5rem;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
}
.stat__num {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  font-weight: 700; color: var(--wine); line-height: 1;
  font-feature-settings: "tnum" 1;
}
.stat__lab {
  font-size: .82rem; letter-spacing: .04em; color: var(--ink-faint);
  margin-top: .6rem; max-width: 24ch;
}

/* ---------- Einleitung (Editorial) -------------------------------------- */
.essay { max-width: 64ch; font-family: var(--font-serif); }
.essay p { margin: 0 0 1.35rem; font-size: clamp(1.12rem, 1rem + 0.5vw, 1.3rem); line-height: 1.75; color: var(--ink); }
.essay p:last-child { margin-bottom: 0; }
.essay h3 {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2rem); line-height: 1.15;
  color: var(--ink); margin: clamp(2.4rem, 5vw, 3.4rem) 0 1rem;
}
.essay h3:first-child { margin-top: 0; }
.essay h3::before { content: ""; display: block; width: 2.5rem; height: 3px; background: var(--wine); margin-bottom: 1rem; }
.essay .lead::first-letter {
  font-family: var(--font-sans); font-weight: 800; float: left; color: var(--wine);
  font-size: 3.6em; line-height: .78; padding: .06em .12em 0 0;
}
.essay strong.eur { font-family: var(--font-sans); font-weight: 700; color: var(--wine); font-feature-settings: "tnum" 1; }
.essay sup { line-height: 0; }
.essay sup a { font-family: var(--font-sans); font-weight: 700; font-size: .95em; text-decoration: none; color: var(--wine); }
.essay sup a:hover { color: var(--wine-bright); text-decoration: underline; }
.essay .welcome {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); color: var(--wine); margin-top: 1.8rem;
}

/* Pull-Quote */
.pullquote {
  margin: clamp(2.75rem, 7vw, 4.5rem) 0; padding: 0 0 0 clamp(1.25rem, 4vw, 2.5rem);
  border-left: 4px solid var(--wine); position: relative; max-width: 64ch;  /* volle Textbreite wie der Fließtext */
}
.pullquote blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 1.05rem + 1.4vw, 2.05rem); line-height: 1.34;
  color: var(--ink); margin: 0; letter-spacing: -0.01em;
}
.pullquote cite {
  display: block; margin-top: 1.2rem; font-family: var(--font-sans); font-style: normal;
  font-size: .95rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-faint);
}

/* ---------- Datengrafik (Balkendiagramm) -------------------------------- */
.chart { margin: 0; }
.chart svg { width: 100%; height: auto; display: block; }
.chart .bar { fill: var(--wine); }
.chart .bar:last-of-type { fill: var(--wine-deep); }
.chart .grid { stroke: var(--line); stroke-width: 1; }
.chart .axis { stroke: var(--line-strong); stroke-width: 1.5; }
.chart .gl  { font-family: var(--font-sans); fill: var(--ink-faint); font-size: 14px; text-anchor: end; }
.chart .val { font-family: var(--font-sans); font-weight: 700; fill: var(--ink); font-size: 21px; text-anchor: middle; font-feature-settings: "tnum" 1; }
.chart .yr  { font-family: var(--font-sans); font-weight: 600; fill: var(--ink-faint); font-size: 18px; text-anchor: middle; }
.chart figcaption { margin-top: 1.2rem; font-size: .92rem; color: var(--ink-faint); max-width: var(--measure); line-height: 1.55; }

/* ---------- Sektionskopf ------------------------------------------------ */
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h1,
.section-head h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--ink);
}
.section-head p { color: var(--ink-soft); max-width: var(--measure); margin: 1.1rem 0 0; }

/* ---------- Gesetzestext ------------------------------------------------- */
.law {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--wine);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.law + .law { margin-top: clamp(1rem, 2.5vw, 1.5rem); }
.law__title {
  font-size: .92rem; letter-spacing: .04em; color: var(--wine);
  font-weight: 700; margin: 0 0 1.5rem;
}
.law__title span { display: block; font-size: 1.35rem; margin-top: .35rem; color: var(--ink); letter-spacing: -0.01em; }
.law__text { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.75; }
.law__text p { margin: 0 0 1.15rem; }
.law__text p:last-child { margin-bottom: 0; }
.law__text .abs { font-family: var(--font-sans); font-weight: 700; color: var(--wine); margin-right: .35em; }
.law__text .ref { color: var(--ink-faint); font-style: italic; }

/* Tatbestandsmerkmale — Subsumtion, je Merkmal ein kurzer Block */
.merkmale { margin-top: 2rem; }
.merkmal { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.merkmal h3 {
  font-family: var(--font-sans); font-weight: 700; font-size: 1.2rem;
  letter-spacing: -0.01em; line-height: 1.25; margin: 0 0 .7rem;
}
.merkmal__n { color: var(--wine); font-weight: 800; margin-right: .5em; }
.merkmal__zitat {
  font-family: var(--font-serif); font-style: italic; color: var(--ink-soft);
  border-left: 2px solid var(--line-strong); padding-left: .9rem; margin: 0 0 .8rem;
}
.merkmal p { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.7; margin: 0 0 .7rem; }
.merkmal p:last-child { margin-bottom: 0; }
.merkmal--key {
  background: var(--wine-tint); border-top: 0; border-radius: var(--radius);
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem); margin: 1.25rem 0;
}
.merkmal__tag {
  font-family: var(--font-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--wine); margin: 0 0 .5rem;
}

/* Zeitleiste (Geschichte) — Jahr links, Ereignis rechts, verbindende Linie */
.timeline { list-style: none; margin: 2.2rem 0 0; padding: 0; }
.timeline > li { position: relative; padding: 0 0 1.7rem 6.2rem; min-height: 1.4rem; }
.timeline > li::before {
  content: ""; position: absolute; left: 4.3rem; top: .45rem; bottom: -.3rem;
  width: 2px; background: var(--line-strong);
}
.timeline > li:last-child::before { display: none; }
.timeline > li::after {
  content: ""; position: absolute; left: calc(4.3rem - 4px); top: .35rem;
  width: 10px; height: 10px; border-radius: 50%; background: var(--wine);
}
.timeline__year {
  position: absolute; left: 0; top: 0; width: 3.5rem; text-align: right;
  font-family: var(--font-sans); font-weight: 800; color: var(--wine); font-size: 1.05rem;
}
.timeline__body { font-family: var(--font-serif); line-height: 1.6; }
.timeline__body b { font-family: var(--font-sans); font-weight: 700; color: var(--ink); }

/* §185 vs §188 */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.75rem; }
.compare__card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 1.6rem;
}
.compare__card--accent { border-color: var(--wine); background: var(--wine-tint); }
.compare__para { font-weight: 700; font-size: 1.5rem; color: var(--wine); letter-spacing: -0.01em; }
.compare__who { font-weight: 700; font-size: 1.05rem; margin: .5rem 0 .7rem; }
.compare__txt { font-size: .98rem; color: var(--ink-soft); margin: 0; }
.compare__pen {
  font-size: .9rem; color: var(--ink-faint); margin-top: 1rem;
  padding-top: 1rem; border-top: 1px dashed var(--line-strong);
}
.compare__pen b { color: var(--wine); }

/* „mehr dazu“-Verweis auf eine Unterseite */
.more-link {
  display: inline-block; margin-top: 1.3rem;
  font-family: var(--font-sans); font-weight: 700; color: var(--wine);
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.more-link:hover { color: var(--wine-deep); border-bottom-color: var(--wine); }

/* ---------- Nachschlagewerk: Steuerung ---------------------------------- */
.controls { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-bottom: 1.5rem; }
.filter { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  font-family: var(--font-sans); font-size: .88rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--ink-soft); cursor: pointer; transition: all .18s ease;
}
.chip:hover { border-color: var(--wine); color: var(--wine); }
.chip[aria-pressed="true"] { background: var(--wine); border-color: var(--wine); color: #fff; }
.controls__count { margin-left: auto; font-size: .88rem; color: var(--ink-faint); }

/* ---------- Tabelle ------------------------------------------------------
   Einheitliche, größere Lesegröße. Spaltenbreiten via <colgroup> im HTML:
   Äußerung breit, Ergebnis schmal.                                          */
.table-shell { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.faelle { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 1.05rem; table-layout: fixed; }
.faelle col.col-aussage  { width: 44%; }
.faelle col.col-ergebnis { width: 14%; }
.faelle col.col-strafe   { width: 13%; }
.faelle col.col-stand    { width: 14%; }
.faelle col.col-beleg    { width: 15%; }
.faelle td { word-wrap: break-word; overflow-wrap: break-word; }
.faelle thead th {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); text-align: left; padding: 1.05rem 1.2rem;
  background: var(--paper-2); border-bottom: 1px solid var(--line-strong); white-space: nowrap;
}
.faelle tbody td { padding: 1.35rem 1.2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.faelle tbody tr:last-child td { border-bottom: 0; }
.faelle tbody tr { transition: background .15s ease; }
.faelle tbody tr:hover { background: var(--paper-3); }

.cell-aussage .quote { font-size: 1.3rem; line-height: 1.35; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.cell-aussage .quote::before { content: "\201E"; color: var(--gold); }
.cell-aussage .quote::after  { content: "\201C"; color: var(--gold); }
/* Beschreibung statt wörtlichem Zitat — gleiche Optik, ohne Anführungszeichen */
.cell-aussage .desc { font-size: 1.3rem; line-height: 1.35; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.cell-aussage .meta { font-size: 1rem; color: var(--ink-faint); margin-top: .6rem; }
.cell-aussage .verlauf { font-size: 1.05rem; color: var(--ink-soft); margin-top: .7rem; line-height: 1.5; }
.cell-aussage .note {
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem;
  color: var(--ink-soft); margin-top: .8rem; line-height: 1.55;
  padding-left: .95rem; border-left: 2px solid var(--line-strong);
}

.cell-strafe .amount { font-weight: 700; font-feature-settings: "tnum" 1; font-size: 1.25rem; color: var(--ink); white-space: nowrap; }
.cell-strafe .amount.is-zero { color: var(--green); }
.cell-strafe .amount.is-open { color: var(--amber); }
.cell-strafe .detail { font-size: .85rem; color: var(--ink-faint); margin-top: .35rem; }
.cell-strafe .hd-tag {
  display: inline-block; margin-top: .55rem;
  font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .01em;
  color: #fff; background: var(--wine); padding: .28em .62em; border-radius: 6px;
  line-height: 1.25; hyphens: manual;
}
.cell-strafe .hd-tag::before { content: "⌂ "; }

.badge {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .95rem; font-weight: 700; padding: .38em .7em; border-radius: 8px;
  line-height: 1.2; white-space: nowrap;          /* nie umbrechen */
}
.badge::before { content: ""; width: .5em; height: .5em; border-radius: 50%; background: currentColor; align-self: center; }
.badge--verurteilt     { color: var(--wine);  background: var(--wine-tint); }
.badge--freispruch     { color: var(--green); background: var(--green-tint); }
.badge--anhaengig      { color: var(--amber); background: var(--amber-tint); }
.badge--eingestellt,
.badge--zurueckgezogen,
.badge--keine-verfolgung { color: var(--slate); background: var(--slate-tint); }
.badge--hausdurchsuchung { color: #fff; background: var(--wine); }
/* diese beiden Labels dürfen umbrechen — sonst zu breit für die Ergebnis-Spalte */
.badge--hausdurchsuchung,
.badge--keine-verfolgung { white-space: normal; hyphens: manual; text-align: left; }

.stand { font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); }
.stand small {
  display: block; font-weight: 500; color: var(--ink-faint);
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .35rem;
}

.beleg { font-size: 1.05rem; line-height: 1.45; }
.beleg a { font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.beleg .src-type { display: flex; align-items: center; gap: .4em; margin-top: .55rem; font-size: .85rem; color: var(--ink-faint); }
.beleg-tba { font-style: italic; color: var(--ink-faint); }
.src-dot { width: .6em; height: .6em; border-radius: 50%; flex: none; }
.src-dot--primaer       { background: var(--green); }
.src-dot--etabliert     { background: var(--gold);  }
.src-dot--meinungsstark { background: var(--amber); }

/* ---------- Legende / Callout ------------------------------------------- */
.legend {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2.5rem; margin-top: 2.25rem; font-size: .92rem; color: var(--ink-soft);
}
.legend h4 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .8rem; font-weight: 700; }
.legend ul { margin: 0; padding: 0; list-style: none; }
.legend li { margin: 0 0 .5rem; display: flex; gap: .55em; align-items: baseline; }

.callout {
  margin-top: 2.5rem; padding: 1.5rem 1.75rem;
  background: var(--wine-tint); border-left: 4px solid var(--wine); border-radius: var(--radius);
  font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.6;
}
.callout b { color: var(--wine); font-family: var(--font-sans); }

/* ---------- Übersichtskarten (Home) ------------------------------------- */
.overview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.pol-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 1.6rem 1.6rem 1.4rem;
  text-decoration: none; color: inherit;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pol-card:hover { border-color: var(--wine); transform: translateY(-2px); box-shadow: var(--shadow); }
.pol-card__rank { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.pol-card__name { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: .5rem 0 .15rem; color: var(--ink); line-height: 1.1; }
.pol-card__partei { font-size: .95rem; color: var(--ink-faint); }
.pol-card__anzeigen { margin-top: 1rem; font-size: 1.05rem; color: var(--wine); font-weight: 600; }
.pol-card__count {
  margin-top: auto; padding-top: 1rem; font-size: .95rem; font-weight: 600;
  color: var(--ink-soft); display: flex; align-items: center; gap: .5em;
}
.pol-card__count::after { content: "\2192"; margin-left: auto; color: var(--wine); font-size: 1.2rem; transition: transform .18s ease; }
.pol-card:hover .pol-card__count::after { transform: translateX(4px); }
.pol-card__count.is-soon { color: var(--ink-faint); font-weight: 500; }

/* ---------- Politiker-Platzhalter (in Vorbereitung) --------------------- */
.soon-block {
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem); background: var(--paper-2); color: var(--ink-soft);
  font-size: 1.1rem; line-height: 1.6;
}
.soon-block .count { font-weight: 700; color: var(--wine); }

/* ---------- Footer ------------------------------------------------------- */
.site-foot {
  border-top: 1px solid var(--line); margin-top: 2rem;
  padding-block: clamp(2.5rem, 5vw, 4rem); font-size: .9rem; color: var(--ink-faint);
}
.site-foot__logo { font-family: var(--font-sans); font-weight: 800; font-size: 1.5rem; color: var(--wine); letter-spacing: -0.02em; margin-bottom: 1.1rem; }
.site-foot p { max-width: var(--measure); }
.site-foot a { color: var(--ink-soft); }

/* Footer: „Fall melden“-Aufruf */
.foot-cta {
  margin: 1.4rem 0 2rem; padding: 1.5rem 1.7rem; max-width: var(--measure);
  background: var(--paper-2); border-left: 3px solid var(--wine); border-radius: var(--radius);
}
.foot-cta h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.2rem; margin: 0 0 .5rem; color: var(--ink); }
.foot-cta p { margin: 0 0 1rem; font-size: .98rem; color: var(--ink-soft); }
.foot-mail {
  display: inline-block; font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem;
  color: var(--wine); text-decoration: none; border-bottom: 2px solid var(--wine);
}
.foot-mail:hover { color: var(--wine-bright); }
.foot-meta { margin-top: 1.4rem; }
.foot-meta a { color: var(--ink-soft); font-weight: 600; text-underline-offset: 2px; }

/* ---------- Reveal (dezent, einmalig) ----------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
  .reveal:nth-child(2) { animation-delay: .07s; }
  .reveal:nth-child(3) { animation-delay: .14s; }
  .reveal:nth-child(4) { animation-delay: .21s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- Responsiv ---------------------------------------------------- */
@media (max-width: 820px) {
  .compare { grid-template-columns: 1fr; }
  .hero__sub { white-space: normal; }           /* auf dem Handy darf der Untertitel umbrechen */
  .nav-toggle {
    display: inline-flex; margin: 0;
    position: absolute; right: var(--gut, 1.2rem); top: 50%; transform: translateY(-50%);
  }
  .site-nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    margin-left: 0; gap: 0; flex-direction: column; align-items: stretch;
    background: color-mix(in srgb, var(--paper) 97%, transparent);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 26px -14px rgba(0,0,0,.22);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .26s ease, visibility 0s linear .26s;
  }
  .site-nav.is-open .site-nav__links {
    max-height: 80vh; visibility: visible; transition: max-height .26s ease;
  }
  .site-nav__links a {
    flex-direction: row; align-items: baseline; gap: .45rem;
    padding: 1rem var(--gut); border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
  }
  .site-nav__links a:last-child { border-bottom: 0; }
  .site-nav__links a.is-active {
    border-bottom-color: var(--line); border-left-color: var(--wine); background: var(--wine-tint);
  }
  .nav-first { display: inline; font-size: .95rem; }   /* im Burger-Menü voller Vorname */
  .nav-last  { font-size: 1.05rem; }
  .site-nav__links a:nth-child(3)::before { display: none; }   /* Trenner nur auf Desktop */

  .faelle thead { position: absolute; left: -9999px; }
  .faelle, .faelle tbody, .faelle tr, .faelle td { display: block; width: 100%; }
  .faelle tbody tr { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; background: var(--paper); }
  .faelle tbody td { border-bottom: 1px dashed var(--line); padding: .9rem 1.1rem; }
  .faelle tbody tr td:last-child { border-bottom: 0; }
  .faelle tbody td::before {
    content: attr(data-label); display: block;
    font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-faint); margin-bottom: .45rem; font-weight: 700;
  }
  .cell-aussage { max-width: none; }
  .table-shell { border: 0; box-shadow: none; }
}

@media (max-width: 560px) {
  .site-nav__brand { font-size: 1.2rem; }
}
