/* ============================================================
   FF Scheiblingkirchen – Stylesheet
   Design-System aus dem Prototyp, responsiv umgesetzt.
   Schriften werden selbst gehostet (fonts.css) → DSGVO-freundlich.
   ============================================================ */

:root {
  --rot: #d21f2a;
  --rot-hell: #fdeaec;
  --dunkel: #0f1215;
  --dunkel2: #16191d;
  --text: #16191d;
  --text-mid: #2b3138;
  --gedaempft: #5c656e;
  --hellgrau: #8a939b;
  --flaeche: #ffffff;
  --grau: #f5f6f7;
  --rahmen: #e5e8eb;
  --seite: #eceef0;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--flaeche);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: 'Archivo', system-ui, sans-serif; margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, textarea, select, button { font-family: inherit; }
::selection { background: var(--rot); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rot); }
.muted { color: var(--gedaempft); }
.center { text-align: center; }
.pre-line { white-space: pre-line; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 8px; transition: background .15s, opacity .15s;
}
.btn-rot { background: var(--rot); color: #fff; }
.btn-rot:hover { background: #b91c26; }
.btn-dunkel { background: var(--dunkel2); color: #fff; }
.btn-dunkel:hover { opacity: .9; }
.btn-hell { background: var(--grau); color: var(--text); border: 1px solid var(--rahmen); }
.btn-hell:hover { background: #eceef0; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rahmen);
  transition: filter .5s ease;
}
.site-header .wrap { height: 76px; display: flex; align-items: center; gap: 14px; }
.logo { height: 46px; width: auto; cursor: pointer; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: 48px; }
.main-nav > a { font-size: 14.5px; font-weight: 600; color: var(--gedaempft); white-space: nowrap; }
.main-nav > a:hover, .main-nav > a.active { color: var(--rot); }

/* Aufklapp-Menü „Über uns" */
.nav-group { position: relative; display: flex; align-items: center; }
.nav-group > .nav-top { font-size: 14.5px; font-weight: 600; color: var(--gedaempft); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 27px 0; white-space: nowrap; }
.nav-group > .nav-top:hover, .nav-group > .nav-top.active { color: var(--rot); }
.nav-group .caret { font-size: 10px; transition: transform .15s; }
.nav-group:hover .caret, .nav-group:focus-within .caret { transform: rotate(180deg); }
.submenu { position: absolute; top: 100%; left: -14px; min-width: 200px; background: #fff; border: 1px solid var(--rahmen); border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.12); padding: 8px; display: none; flex-direction: column; gap: 2px; z-index: 95; }
.nav-group:hover .submenu, .nav-group:focus-within .submenu { display: flex; }
.submenu a { font-size: 14.5px; font-weight: 600; color: var(--text); padding: 10px 13px; border-radius: 8px; }
.submenu a:hover { background: var(--grau); color: var(--rot); }
.submenu a.active { color: var(--rot); }
.mobile-menu .sub { padding-left: 18px; font-weight: 500; color: var(--gedaempft); }
.cta-btn {
  margin-left: auto; background: var(--rot); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 18px; border-radius: 999px; letter-spacing: .3px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background .15s, transform .15s;
}
.cta-btn:hover { background: #b31a24; transform: translateY(-1px); }
.cta-btn > span { font-size: 16px; line-height: 1; }
.nav-toggle { display: none; }
.mobile-menu { display: none; } /* nur am Handy (siehe Media-Query) sichtbar */

/* ============================================================
   Banner (Trauer / Ankündigung)
   ============================================================ */
.trauer-hinweis {
  background: #14161a; color: #e7e9ec; text-align: center; padding: 15px 20px;
  cursor: pointer; border-bottom: 1px solid #2a2f34;
}
.trauer-hinweis .klein { letter-spacing: 3px; font-size: 11px; text-transform: uppercase; color: var(--hellgrau); }
.trauer-hinweis .gross { font-size: 15px; margin-top: 3px; }
.promo-banner {
  background: var(--rot); color: #fff; display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 14px 24px; flex-wrap: wrap; text-decoration: none;
}
.promo-banner .badge {
  background: rgba(255,255,255,.2); font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 5px;
}
.promo-banner .txt { font-size: 15.5px; font-weight: 600; }
.promo-banner .btn { background: #fff; color: var(--rot); padding: 9px 16px; border-radius: 7px; font-size: 14px; white-space: nowrap; }

/* „Letzter Einsatz"-Leiste unter dem Menü */
.einsatz-bar { display: block; background: var(--rot); color: #fff; text-decoration: none; transition: background .15s; }
.einsatz-bar:hover { background: #b91c26; }
.einsatz-bar .einsatz-bar-in { max-width: var(--maxw); margin: 0 auto; padding: 11px 32px; display: flex; align-items: center; gap: 12px; }
.einsatz-bar .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.2); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; white-space: nowrap; }
.einsatz-bar .titel { font-weight: 700; font-size: 15px; }
.einsatz-bar .datum { opacity: .85; font-size: 13.5px; white-space: nowrap; }
.einsatz-bar .pfeil { margin-left: auto; font-size: 18px; }
@media (max-width: 600px) {
  .einsatz-bar .einsatz-bar-in { padding: 10px 18px; gap: 9px; flex-wrap: wrap; }
  .einsatz-bar .titel { font-size: 14px; }
  .einsatz-bar .pfeil { margin-left: auto; }
}

/* Trauerschleife */
.trauerschleife { position: fixed; top: 0; left: 0; z-index: 150; width: 150px; height: 150px; overflow: hidden; pointer-events: none; }
.trauerschleife span {
  position: absolute; top: 34px; left: -46px; width: 200px; transform: rotate(-45deg);
  background: #0b0d0f; color: #cfd5da; text-align: center; font-size: 10.5px; font-weight: 700;
  letter-spacing: 3px; padding: 7px 0; box-shadow: 0 3px 10px rgba(0,0,0,.45);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: flex-end;
  background: var(--dunkel2); overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,17,21,.92) 0%, rgba(15,17,21,.6) 45%, rgba(15,17,21,.15) 100%); }
.hero .wrap { position: relative; width: 100%; padding-top: 0; padding-bottom: 68px; }
.hero .kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero .kicker .bar { width: 34px; height: 3px; background: var(--rot); }
.hero .kicker span { color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.hero h1 { color: #fff; font-size: 64px; font-weight: 900; letter-spacing: -1px; max-width: 780px; white-space: pre-line; }
.hero p { color: #d7dce0; font-size: 18px; line-height: 1.55; max-width: 540px; margin-top: 22px; }
.hero .cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* Innere Seiten-Köpfe (dunkel) */
.page-head { background: var(--dunkel); color: #fff; position: relative; overflow: hidden; }
.page-head.has-img { min-height: 320px; display: flex; align-items: flex-end; }
.page-head-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-head-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,17,21,.92) 0%, rgba(15,17,21,.6) 45%, rgba(15,17,21,.15) 100%); }
.page-head .wrap { position: relative; width: 100%; padding-top: 54px; padding-bottom: 46px; }
.page-head h1 { font-size: 48px; font-weight: 900; letter-spacing: -1px; margin-top: 10px; }
.page-head p { color: #b7bfc6; font-size: 16px; margin-top: 12px; max-width: 560px; }

/* Kennzahlen-Band */
.stats { background: var(--dunkel); }
.stats .wrap { padding: 26px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { border-left: 3px solid var(--rot); padding-left: 16px; }
.stat .num { font-family: 'Archivo'; font-weight: 800; font-size: 30px; color: #fff; }
.stat .lbl { font-size: 12.5px; color: var(--hellgrau); font-weight: 600; letter-spacing: .4px; }

/* ============================================================
   Karten (Einsätze / Termine)
   ============================================================ */
.section { padding: 74px 0 20px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: 40px; font-weight: 800; letter-spacing: -.6px; margin-top: 8px; }
.link-more { font-weight: 700; font-size: 14.5px; color: var(--text); border-bottom: 2px solid var(--rot); padding-bottom: 3px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border: 1px solid var(--rahmen); border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: box-shadow .2s, transform .2s; display: block; }
.card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.card .media { position: relative; height: 210px; overflow: hidden; background: var(--grau); }
.card .media img { width: 100%; height: 100%; object-fit: cover; }
.card .tag { position: absolute; top: 12px; left: 12px; background: var(--rot); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; }
.card .body { padding: 20px 22px 24px; }
.card .date { font-size: 12.5px; font-weight: 600; color: var(--hellgrau); letter-spacing: .4px; }
.card h3 { font-size: 20px; font-weight: 700; margin-top: 7px; }
.card .excerpt { font-size: 14.5px; line-height: 1.6; color: #4a545c; margin-top: 10px; }
.card .weiter { display: inline-block; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--rot); }
.card.klein .media { height: 180px; }
.card.klein h3 { font-size: 18.5px; }

/* Farbcodierung der Einsatzart: Brand rot · Technisch blau · Schadstoff grün · sonst grau */
.card .tag.kat-b, .badge-kat.kat-b { background: #d21f2a; }
.card .tag.kat-t, .badge-kat.kat-t { background: #1c5fa8; }
.card .tag.kat-s, .badge-kat.kat-s { background: #1c7a4a; }
.card .tag.kat-x, .badge-kat.kat-x { background: #5c656e; }

/* Platzhalter-Kachel (fehlendes Foto) */
.ph { background: repeating-linear-gradient(45deg,#eef0f2,#eef0f2 12px,#e6e9ec 12px,#e6e9ec 24px); display: flex; align-items: center; justify-content: center; font-family: ui-monospace, monospace; font-size: 12px; color: #9aa2a9; letter-spacing: 1px; }

/* Filterleiste: Art-Tabs links, Jahr-Auswahl rechts */
.filter-leiste { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
/* Kompakter Jahres-Schalter (gestyltes echtes <select>) */
.jahr-schalter { position: relative; display: inline-flex; align-items: center; }
.jahr-schalter .cal { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.jahr-schalter select { font: inherit; font-weight: 700; font-size: 14.5px; color: var(--text); cursor: pointer;
  -webkit-appearance: none; appearance: none; border: 1px solid var(--rahmen); border-radius: 999px;
  background: #fff; padding: 8px 46px 8px 40px; line-height: 1.2; transition: border-color .15s; }
.jahr-schalter select:hover { border-color: #c9ced3; }
.jahr-schalter select:focus { border-color: var(--rot); outline: none; }
.jahr-schalter .chev { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px;
  border-radius: 50%; background: var(--rot); display: flex; align-items: center; justify-content: center; pointer-events: none; }

/* Art-Filter (Alle/Einsätze/Übungen) */
.art-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
.art-tabs a { font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px; background: var(--grau); border: 1px solid var(--rahmen); color: var(--gedaempft); }
.art-tabs a:hover { border-color: var(--rot); color: var(--text); }
.art-tabs a.active { background: var(--dunkel2); color: #fff; border-color: var(--dunkel2); }

/* Jahres-Tabs (Einsätze) */
.jahr-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--rahmen); margin-bottom: 34px; flex-wrap: wrap; }
.jahr-tabs a { font-weight: 600; font-size: 15px; padding: 12px 18px; color: var(--hellgrau); }
.jahr-tabs a.active { font-weight: 700; color: var(--text); border-bottom: 3px solid var(--rot); }
.jahr-block { margin-bottom: 40px; }
.jahr-block > h2 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }

/* ============================================================
   Mission / Mitmach-Streifen
   ============================================================ */
.mission { max-width: var(--maxw); margin: 60px auto 0; padding: 0 32px; }
.mission-box {
  position: relative; overflow: hidden; border: 0; border-radius: 18px;
  padding: 56px 48px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  background: #0f1215; color: #fff;
}
.mission-box::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(105deg, rgba(15,17,21,.94) 0%, rgba(15,17,21,.8) 50%, rgba(15,17,21,.58) 100%),
    url('../img/mitmachen.jpg') center/cover;
}
.mission-box > * { position: relative; z-index: 1; }
.mission-box h2 { font-size: 30px; font-weight: 800; letter-spacing: -.4px; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.mission-box p { font-size: 15.5px; line-height: 1.65; color: #d7dbdf; margin-top: 14px; max-width: 460px; }
.mission-list { display: grid; gap: 12px; }
.mission-list div {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-radius: 12px; padding: 16px 18px; font-weight: 600; font-size: 14.5px;
}

/* Chronik / Zeitleiste (Über uns) */
.chronik-timeline { position: relative; margin-top: 28px; }
.chronik-timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, #d21f2a 0%, #e5e8eb 100%); }
.epoche { position: relative; padding: 0 0 30px 40px; }
.epoche:last-child { padding-bottom: 0; }
.epoche::before { content: ""; position: absolute; left: 0; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--rot); box-shadow: 0 0 0 4px #fff; }
.epoche .jahre { font-family: 'Archivo'; font-size: 22px; font-weight: 900; color: var(--rot); }
.epoche-card { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 14px; padding: 18px 22px; margin-top: 10px; }
.epoche-card h3 { font-size: 19px; font-weight: 800; }
.epoche-card p { font-size: 15px; line-height: 1.65; color: #4a545c; margin-top: 8px; }
.epoche-card img { width: 100%; max-height: 340px; object-fit: cover; border-radius: 10px; margin-top: 14px; display: block; }
.epoche-card .bu { font-size: 12.5px; font-style: italic; color: #8a939b; margin-top: 8px; }

/* Spenden-Abschnitt */
.spende { max-width: var(--maxw); margin: 60px auto 80px; padding: 0 32px; }
.spende-box { background: var(--dunkel); color: #fff; border-radius: 20px; padding: 54px 48px; display: grid; grid-template-columns: 1.25fr .9fr; gap: 48px; align-items: center; }
.spende-box h2 { font-size: 34px; font-weight: 800; letter-spacing: -.5px; margin-top: 8px; }
.spende-text > p { color: #c3c9ce; font-size: 15.5px; line-height: 1.7; margin-top: 16px; max-width: 520px; }
.spende-konto { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px 20px; margin-top: 24px; }
.spende-konto .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #8b949c; font-weight: 700; }
.spende-konto .name { font-weight: 800; margin-top: 8px; }
.spende-konto .iban { font-family: monospace; font-size: 18px; letter-spacing: 1px; margin-top: 4px; font-weight: 700; }
.spende-konto .sub { color: #8b949c; font-size: 13px; margin-top: 6px; }
.spende-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.spende-actions .btn-ghost { cursor: pointer; }
.spende-hint { display: none; color: #c3c9ce; font-size: 14px; line-height: 1.6; margin-top: 16px; }
.spende-qr { text-align: center; }
.qr-card { background: #fff; border-radius: 18px; padding: 16px; display: inline-block; }
.qr-card img { width: 230px; height: 230px; display: block; }
.qr-card.ph { width: 262px; height: 262px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #9aa2a9; font-weight: 800; font-size: 15px; text-align: center; border: 2px dashed #cdd3d8; }
.qr-card.ph span { font-weight: 500; font-size: 12px; margin-top: 6px; }
.qr-cap { font-weight: 700; margin-top: 16px; }
.qr-desc { color: #8b949c; font-size: 13.5px; line-height: 1.6; margin-top: 8px; max-width: 280px; margin: 8px auto 0; }

/* ============================================================
   Bericht-Detail
   ============================================================ */
.article-head { max-width: 860px; margin: 0 auto; padding: 34px 32px 0; }
.breadcrumb { font-size: 13px; color: var(--hellgrau); font-weight: 600; }
.breadcrumb a { cursor: pointer; }
.breadcrumb .now { color: var(--text); }
.badge-kat { display: inline-block; margin-top: 22px; background: var(--rot); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 6px 12px; border-radius: 6px; }
.article-head h1 { font-size: 44px; font-weight: 900; letter-spacing: -.8px; line-height: 1.05; margin-top: 16px; }
.meta { display: flex; gap: 26px; margin-top: 18px; flex-wrap: wrap; color: var(--gedaempft); font-size: 14px; font-weight: 600; }
.article-hero { max-width: 860px; margin: 26px auto 0; padding: 0 32px; }
.article-hero img { width: 100%; height: 440px; object-fit: cover; border-radius: 16px; }
.prose { max-width: 720px; margin: 40px auto 0; padding: 0 32px; font-size: 15px; line-height: 1.7; color: var(--text-mid); }
.prose .lead { font-weight: 600; font-size: 17px; line-height: 1.6; color: var(--text); }
.prose p + p { margin-top: 16px; }
.subhead { font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--hellgrau); }
.fahrzeug-chips { max-width: 720px; margin: 34px auto 0; padding: 0 32px; }
.fahrzeug-chips .row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; padding: 10px 16px; border-radius: 999px; background: var(--grau); border: 1px solid var(--rahmen); cursor: pointer; }
.chip:hover { border-color: var(--rot); }

/* Galerie (Masonry via CSS columns) */
.galerie-wrap { max-width: 860px; margin: 46px auto 0; padding: 0 32px 80px; }
.galerie { display: flex; gap: 14px; margin-top: 18px; align-items: flex-start; }
.gal-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.galerie img { width: 100%; height: auto; display: block; border-radius: 10px; cursor: zoom-in; }

/* Bericht-Detailseite: Hero + zweispaltig + Galerie */
.bericht-hero { position: relative; background: var(--dunkel); color: #fff; overflow: hidden; }
.bericht-hero.has-img { min-height: 340px; display: flex; align-items: flex-end; }
.bericht-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.bericht-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,17,21,.38) 0%, rgba(15,17,21,.5) 45%, rgba(15,17,21,.8) 100%); }
.bericht-hero .wrap { position: relative; width: 100%; max-width: 1100px; padding-top: 34px; padding-bottom: 32px; }
.bericht-hero .breadcrumb, .bericht-hero .breadcrumb a { color: #cdd2d7; }
.bericht-hero .breadcrumb a:hover { color: #fff; }
.bericht-hero .breadcrumb .now { color: #fff; }
.bericht-hero .badge-kat { display: inline-block; margin-top: 18px; }
.bericht-hero h1 { font-size: 60px; font-weight: 900; letter-spacing: -1.2px; line-height: 1.03; margin-top: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.bericht-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.bericht-meta .chip2 { display: inline-flex; align-items: center; gap: 8px; background: rgba(28,32,36,.72); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 14.5px; font-weight: 600; padding: 9px 15px; border-radius: 999px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

.bericht-body { max-width: 1100px; margin: 0 auto; padding: 46px 32px 20px; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.bericht-text .bericht-lead { font-size: 17px; font-weight: 700; line-height: 1.55; color: var(--text); }
.bericht-text p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-top: 15px; }
.bericht-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.bericht-card { border: 1px solid var(--rahmen); border-radius: 16px; padding: 22px 24px; }
.bericht-card.grau { background: var(--grau); }
.bericht-card h3 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #8b949c; }
.bericht-card dl { margin-top: 8px; }
.bericht-card dl > div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--rahmen); }
.bericht-card dl > div:last-child { border-bottom: 0; }
.bericht-card dt { font-weight: 600; color: var(--text-mid); font-size: 14.5px; }
.bericht-card dd { font-weight: 700; text-align: right; font-size: 14.5px; }
.fz-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-decoration: none; color: inherit; padding: 12px 0; border-bottom: 1px solid var(--rahmen); font-weight: 700; }
.fz-row:last-child { border-bottom: 0; }
.fz-row:hover { color: var(--rot); }
.fz-row .pfeil { color: var(--rot); flex: none; }
.bericht-galerie { max-width: 1100px; margin: 0 auto; padding: 26px 32px 80px; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(9,11,13,.92); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.6); }
.lb-btn { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; line-height: 1; }
.lb-close { top: 22px; right: 26px; width: 46px; height: 46px; font-size: 24px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 26px; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-count { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); color: #cfd5da; font-size: 14px; font-weight: 600; }

/* ============================================================
   Über uns / Werte
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 14px; padding: 26px 22px; }
.value .icon { font-size: 26px; }
.value h3 { font-size: 19px; font-weight: 800; margin-top: 12px; }
.value p { font-size: 14px; color: var(--gedaempft); margin-top: 6px; line-height: 1.5; }

/* Mitglied werden – Ablauf-Nummern & FAQ */
.num-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--rot); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; }
.faq { display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--rahmen); border-radius: 12px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq details:hover { border-color: #cfd4d9; box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.faq details[open] { border-color: var(--rot); box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .15s; }
.faq summary:hover { color: var(--rot); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: 0 0 auto; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--rot-hell); color: var(--rot); font-size: 22px; font-weight: 700; line-height: 1; transition: transform .2s, background .15s, color .15s; }
.faq summary:hover::after { background: var(--rot); color: #fff; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--rot); color: #fff; }
.faq details p { padding: 0 22px 22px; font-size: 15.5px; line-height: 1.7; color: var(--text-mid); }

/* Mannschaft */
.gruppenfoto { border-radius: 16px; }
.gruppenfoto.ph { height: 400px; }
.kommando { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.kommando .person { flex: 0 1 250px; text-align: center; }
.kommando .foto { width: 100%; aspect-ratio: 4 / 5; border-radius: 14px; object-fit: cover; object-position: center top; }
.kommando h3 { font-size: 17px; font-weight: 800; margin-top: 14px; }
.kommando .funktion { font-size: 13.5px; color: var(--rot); font-weight: 700; margin-top: 3px; }
.kommando .dienstgrad { font-size: 12.5px; color: var(--text-mid); font-weight: 600; margin-top: 2px; }
.crew-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.crew-box { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 16px; padding: 34px; }
.crew-box h3 { font-size: 22px; font-weight: 800; }
.crew-box p { font-size: 15px; color: var(--gedaempft); line-height: 1.6; margin-top: 10px; }

/* Fahrzeuge */
.fleet { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.fahrzeug { display: block; text-decoration: none; color: inherit; border: 1px solid var(--rahmen); border-radius: 16px; overflow: hidden; scroll-margin-top: 120px; transition: box-shadow .3s, transform .2s; }
.fahrzeug:hover { box-shadow: 0 12px 30px rgba(0,0,0,.10); transform: translateY(-3px); }
.fahrzeug:target { box-shadow: 0 0 0 3px var(--rot); }
.fahrzeug .media { height: 220px; }
.fahrzeug .media img { width: 100%; height: 100%; object-fit: cover; }
.fahrzeug .body { padding: 22px 24px 26px; }
.fahrzeug .typ { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--rot); }
.fahrzeug h3 { font-size: 24px; font-weight: 800; margin-top: 6px; }
.fahrzeug .weiter { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--rot); }
.spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.spec { background: var(--grau); border: 1px solid var(--rahmen); font-size: 13px; font-weight: 600; color: #4a545c; padding: 6px 12px; border-radius: 999px; }

/* Fahrzeug-Detailseite: Datenblatt-Layout */
.fz-head .wrap { max-width: 1100px; }
.breadcrumb-dark { color: #8b949c; }
.breadcrumb-dark a { color: #8b949c; }
.breadcrumb-dark a:hover { color: #fff; }
.breadcrumb-dark .now { color: #fff; }
.fz-head .eyebrow { display: block; margin-top: 18px; }
.fz-detail { max-width: 1100px; }
.fz-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.fz-foto { border-radius: 16px; overflow: hidden; }
.fz-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fz-foto.ph { min-height: 340px; display: flex; align-items: center; justify-content: center; color: #b3bac1; font-weight: 700; letter-spacing: 1px; font-size: 13px;
  background: repeating-linear-gradient(45deg, #eef0f2, #eef0f2 10px, #f6f7f8 10px, #f6f7f8 20px); border: 1px solid var(--rahmen); }
.fz-text { margin-top: 26px; }
.fz-text p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-top: 12px; max-width: 720px; }
.fz-daten { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 16px; padding: 24px 26px 12px; }
.fz-daten .subhead { font-size: 12px; letter-spacing: 2px; color: #8b949c; }
.fz-daten dl { margin-top: 8px; }
.fz-daten dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rahmen); }
.fz-daten dl > div:last-child { border-bottom: 0; }
.fz-daten dt { font-weight: 600; color: var(--text-mid); }
.fz-daten dd { font-weight: 700; text-align: right; }
.fz-ausstattung { margin-top: 40px; }
.fz-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.fz-tag { background: #fff; border: 1px solid var(--rahmen); border-radius: 10px; padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--text); }
.fz-einsaetze { margin-top: 44px; }
.fz-einsaetze .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.fz-einsatz-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; text-decoration: none; color: inherit;
  border: 1px solid var(--rahmen); border-radius: 12px; padding: 18px 22px; transition: box-shadow .2s, transform .2s; }
.fz-einsatz-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.08); transform: translateY(-2px); }
.fz-einsatz-card .datum { font-size: 13px; font-weight: 600; color: #8b949c; }
.fz-einsatz-card .titel { font-size: 15.5px; font-weight: 800; margin-top: 4px; }
.fz-einsatz-card .pfeil { color: var(--rot); font-size: 20px; font-weight: 800; flex: none; }

/* ============================================================
   Kontakt / Formulare
   ============================================================ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.form-box { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 18px; padding: 34px 36px; }
label { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; color: var(--gedaempft); margin-bottom: 7px; }
.field { width: 100%; padding: 12px 14px; border: 1px solid #d7dce0; border-radius: 9px; font-size: 15px; outline: none; background: #fff; }
.field:focus { border-color: var(--rot); }
textarea.field { resize: vertical; line-height: 1.6; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt { margin-top: 18px; }
.ds-check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 0; text-transform: none; font-weight: 500; font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.ds-check input { width: 18px; height: 18px; flex: none; margin-top: 1px; accent-color: var(--rot); }
.ds-check a { color: var(--rot); font-weight: 700; text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } /* Honeypot */
.hinweis-ok { background: #e7f6ee; border: 1px solid #b6e3ca; color: #1c7a4a; padding: 14px 18px; border-radius: 10px; font-weight: 600; }
.hinweis-fehler { background: var(--rot-hell); border: 1px solid #f3b6bb; color: #b3121d; padding: 14px 18px; border-radius: 10px; font-weight: 600; }
.notfall-box { margin-top: 22px; background: var(--rot); color: #fff; border-radius: 14px; padding: 20px 24px; }
.notfall-box .lbl { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }
.notfall-box .num { font-family: 'Archivo'; font-weight: 900; font-size: 34px; margin-top: 4px; }

/* ============================================================
   Gedenken-Seite
   ============================================================ */
.gedenken { background: #14161a; min-height: 82vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 70px 24px; text-align: center; }
.gedenken .strich { width: 60px; height: 3px; background: #3a4046; }
.gedenken .klein { letter-spacing: 5px; font-size: 13px; text-transform: uppercase; color: var(--hellgrau); margin-top: 30px; }
.gedenken .portrait { width: 150px; height: 150px; border-radius: 50%; margin-top: 30px; object-fit: cover; }
.gedenken h1 { color: #eef0f2; font-size: 40px; font-weight: 800; letter-spacing: -.5px; margin-top: 28px; }
.gedenken .rang { color: var(--hellgrau); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.gedenken .daten { color: var(--hellgrau); font-size: 16px; margin-top: 8px; }
.gedenken .gtext { max-width: 560px; color: #c2c8ce; font-size: 17px; line-height: 1.8; margin-top: 28px; }
.gedenken .signatur { color: #6b747c; font-size: 14px; margin-top: 26px; }

/* ============================================================
   Termine
   ============================================================ */
.termin-liste { display: grid; gap: 28px; }
.termin { border: 1px solid var(--rahmen); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 340px 1fr; }
.termin .plakat { min-height: 240px; cursor: pointer; }
.termin .plakat img { width: 100%; height: 100%; object-fit: cover; }
.termin .body { padding: 30px 34px; }
.termin .kopf { display: flex; align-items: center; gap: 14px; }
.termin .datumsbox { text-align: center; background: var(--rot); color: #fff; border-radius: 10px; padding: 8px 14px; line-height: 1; }
.termin .datumsbox .tag { font-family: 'Archivo'; font-weight: 900; font-size: 21px; }
.termin .datumsbox .mon { font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-top: 2px; }
.termin h2 { font-size: 26px; font-weight: 800; line-height: 1.1; }
.termin .infos { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; color: var(--gedaempft); font-size: 14.5px; font-weight: 600; }
.termin p { font-size: 15px; line-height: 1.65; color: #4a545c; margin-top: 14px; }
.leer-hinweis { color: var(--hellgrau); font-size: 16px; padding: 40px 0; }

/* Termin-Detail */
.termin-head .wrap { max-width: 1100px; }
.termin-badge { display: inline-block; margin-top: 16px; background: var(--rot); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.termin-head h1 { margin-top: 14px; }
.termin-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.termin-meta .pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: 14.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; }

.termin-detail { max-width: 1100px; }
.termin-grid { display: grid; grid-template-columns: 400px 1fr; gap: 48px; align-items: start; }
.plakat { border-radius: 14px; overflow: hidden; }
.plakat img { width: 100%; height: auto; border-radius: 14px; display: block; }
.plakat.ph { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; color: #b3bac1; font-weight: 700; letter-spacing: 1px; font-size: 13px; background: repeating-linear-gradient(45deg, #eef0f2, #eef0f2 10px, #f6f7f8 10px, #f6f7f8 20px); border: 1px solid var(--rahmen); }
.termin-back { display: block; text-align: center; margin-top: 16px; }

.termin-lead { font-weight: 600; font-size: 16px; line-height: 1.6; color: var(--text); }
.termin-text { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-top: 13px; }
.termin-sub { margin-top: 38px; color: #8b949c; font-size: 12px; letter-spacing: 2px; }

/* Programm-Timeline */
.programm { position: relative; margin-top: 18px; }
.programm::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 10px; width: 2px; background: var(--rahmen); }
.programm-item { position: relative; padding: 0 0 24px 58px; }
.programm-item:last-child { padding-bottom: 0; }
.tag-badge { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--dunkel2); color: #fff; font-size: 11.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.programm-item .zeit { color: var(--rot); font-size: 12.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.programm-item .titel { font-size: 17px; font-weight: 800; margin-top: 3px; }
.programm-item p { font-size: 14.5px; line-height: 1.6; color: var(--text-mid); margin-top: 7px; max-width: 640px; }

/* Gut zu wissen */
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.info-card { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 12px; padding: 16px 20px; }
.info-card .lbl { font-size: 13px; color: #8b949c; font-weight: 600; }
.info-card .wert { font-size: 15px; font-weight: 800; margin-top: 5px; }

/* Hinweis-Kasten */
.termin-hinweis { margin-top: 30px; background: var(--rot-hell); border: 1px solid #f3c9cd; color: #b02531; border-radius: 12px; padding: 18px 22px; font-weight: 600; line-height: 1.6; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--dunkel); color: #cfd5da; transition: filter .5s ease; margin-top: 74px; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-top: 56px; padding-bottom: 40px; }
.site-footer .logo { height: 44px; filter: brightness(0) invert(1); }
.site-footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer .menu { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.site-footer .menu a { color: #a9b1b8; }
.site-footer .menu a:hover { color: #fff; }
.site-footer address { font-size: 14px; line-height: 1.7; font-style: normal; color: var(--hellgrau); margin-top: 18px; }
.site-footer address b { color: #cfd5da; font-weight: 400; }
.notruf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; font-size: 14px; }
.notruf-grid h4 { color: var(--rot); }
.notruf-grid .item { display: flex; justify-content: space-between; border-bottom: 1px solid #262b30; padding-bottom: 6px; }
.notruf-grid .item span { color: var(--hellgrau); }
.notruf-grid .item b { color: #fff; }
.footer-bar { border-top: 1px solid #262b30; }
.footer-bar .wrap { padding: 18px 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #6b747c; }
.footer-bar a { cursor: pointer; }
.footer-bar a:hover { color: #cfd5da; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .cards, .fleet, .kommando, .values { grid-template-columns: repeat(2, 1fr); }
  .mission-box, .kontakt-grid, .crew-boxes, .termin-grid, .infos-grid, .bericht-body, .spende-box { grid-template-columns: 1fr; }
  .bericht-side { position: static; }
  .bericht-hero h1 { font-size: 44px; }
  .termin { grid-template-columns: 1fr; }
  .termin .plakat { min-height: 200px; }
  .hero h1 { font-size: 46px; }
  .page-head h1 { font-size: 36px; }
}

/* Navigation früher auf Hamburger umstellen (Tablet), damit „Über uns" & Notruf nicht gedrängt werden */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }                 /* „Mitglied werden" steckt im Menü */
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-header .wrap { height: 64px; }        /* schlichte Leiste: Logo + Hamburger */
  /* backdrop-filter würde den Header zum Bezugsrahmen für das fixe Overlay machen → deaktivieren. */
  .site-header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }

  /* Vollflächiges dunkles Overlay-Menü (deckt die ganze Seite ab) */
  #nav-check:checked ~ .mobile-menu {
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0; margin: 0;                       /* Desktop-margin-left/gap zurücksetzen */
    position: fixed; inset: 0; z-index: 200;
    background: #0f1215; color: #fff;
    padding: 14px 24px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
  .mobile-menu .mm-logo { height: 38px; width: auto; filter: brightness(0) invert(1); }
  .mobile-menu .mm-close { font-size: 26px; line-height: 1; color: #fff; cursor: pointer; padding: 8px; margin: -8px; }
  .mobile-menu > a { color: #fff; font-size: 19px; font-weight: 800; padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.10); text-decoration: none; }
  .mobile-menu > a.active { color: var(--rot); }
  .mobile-menu .mm-cta {
    margin-top: 16px; background: var(--rot); color: #fff; border-bottom: 0;
    justify-content: center; text-align: center; border-radius: 999px;
    font-size: 17px; font-weight: 800; padding: 15px; display: flex; align-items: center; gap: 8px;
  }
  .mobile-menu .mm-cta > span { font-size: 19px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .cards, .fleet, .kommando, .values, .grid-2, .fz-top, .fz-einsaetze .grid { grid-template-columns: 1fr; }
  /* Kennzahlen bleiben in EINER Reihe (4 Spalten), nur kompakter. */
  .stats .wrap { grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 16px; }
  .stat { padding-left: 9px; border-left-width: 2px; }
  .stat .num { font-size: 19px; }
  .stat .lbl { font-size: 9.5px; letter-spacing: 0; line-height: 1.25; }
  /* Ankündigungs-Banner am Handy kompakter (ganze Fläche ist Link). */
  .promo-banner { gap: 8px; padding: 11px 18px; }
  .promo-banner .txt { font-size: 15px; }
  /* Startseite entschlacken: Hero-Kicker & „Alle Tätigkeiten"-Link am Handy ausblenden. */
  .hero .kicker { display: none; }
  .section-head .link-more { display: none; }
  .hero { min-height: 460px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .section-head h2 { font-size: 28px; }
  .article-head h1, .termin-head h1 { font-size: 30px; }
  .bericht-hero h1 { font-size: 34px; }
  .bericht-hero.has-img { min-height: 280px; }
  .mission-box { padding: 28px 22px; }
  /* Spenden am Handy: QR weg (kann man am eigenen Gerät nicht scannen), dafür IBAN-Hinweis. */
  .spende-box { padding: 32px 22px; }
  .spende-box h2 { font-size: 26px; }
  .spende-qr { display: none; }
  .spende-hint { display: block; }
  .epoche { padding-left: 32px; }
  .galerie { flex-direction: column; }
  .site-footer .top { grid-template-columns: 1fr; gap: 30px; }
}
