/* ============================================================
   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; gap: 30px; margin-left: 48px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--gedaempft); }
.main-nav a:hover, .main-nav a.active { color: var(--rot); }
.notruf-btn {
  margin-left: auto; background: var(--rot); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 18px; border-radius: 999px; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px;
}
.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;
}
.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; }

/* 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; }
.page-head .wrap { 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; }

/* 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; }

/* Art-Filter (Alle/Einsätze/Übungen/Ausbildung) */
.art-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.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 { background: var(--grau); border: 1px solid var(--rahmen); border-radius: 18px; padding: 46px 48px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.mission-box h2 { font-size: 30px; font-weight: 800; letter-spacing: -.4px; }
.mission-box p { font-size: 15.5px; line-height: 1.65; color: #4a545c; margin-top: 14px; max-width: 460px; }
.mission-list { display: grid; gap: 12px; }
.mission-list div { background: #fff; border: 1px solid var(--rahmen); border-radius: 12px; padding: 16px 18px; font-weight: 600; font-size: 14.5px; }

/* ============================================================
   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: 17px; line-height: 1.75; color: var(--text-mid); }
.prose .lead { font-weight: 600; font-size: 19px; color: var(--text); }
.prose p + p { margin-top: 20px; }
.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 { column-count: 3; column-gap: 14px; margin-top: 18px; }
.galerie img { width: 100%; height: auto; display: block; border-radius: 10px; margin-bottom: 14px; break-inside: avoid; cursor: zoom-in; }

/* ============================================================
   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; }

/* Mannschaft */
.gruppenfoto { height: 400px; border-radius: 16px; }
.kommando { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.kommando .person { text-align: center; }
.kommando .foto { width: 100%; aspect-ratio: 1; border-radius: 14px; object-fit: cover; }
.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; }
.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 { border: 1px solid var(--rahmen); border-radius: 16px; overflow: hidden; scroll-margin-top: 120px; transition: box-shadow .3s; }
.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; }
.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; }

/* ============================================================
   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; }
.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-detail { display: grid; grid-template-columns: 400px 1fr; gap: 44px; margin-top: 26px; align-items: start; }
.termin-detail .plakat { aspect-ratio: 3/4; border-radius: 14px; }
.termin-detail .plakat img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.termin-detail h1 { font-size: 44px; font-weight: 900; letter-spacing: -.8px; line-height: 1.05; margin-top: 16px; }
.termin-detail .infos { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; color: var(--text-mid); font-size: 16px; font-weight: 600; }
.termin-detail p { font-size: 17px; line-height: 1.75; color: var(--text-mid); margin-top: 16px; }

/* ============================================================
   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); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .mission-box, .kontakt-grid, .crew-boxes, .termin-detail { grid-template-columns: 1fr; }
  .termin { grid-template-columns: 1fr; }
  .termin .plakat { min-height: 200px; }
  .hero h1 { font-size: 46px; }
  .page-head h1 { font-size: 36px; }
  .galerie { column-count: 2; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-header .wrap { gap: 10px; }
  .notruf-btn { margin-left: 0; }
  .cards, .fleet, .kommando, .values, .stats .wrap, .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 460px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .section-head h2 { font-size: 28px; }
  .article-head h1, .termin-detail h1 { font-size: 30px; }
  .mission-box { padding: 28px 22px; }
  .galerie { column-count: 1; }
  .site-footer .top { grid-template-columns: 1fr; gap: 30px; }

  /* Mobiles Menü (per Checkbox aufklappbar, ohne JS) */
  .site-header .wrap { flex-wrap: wrap; }
  #nav-check:checked ~ .mobile-menu {
    display: flex; flex-direction: column; gap: 4px;
    flex-basis: 100%; order: 10; margin: 6px 0 4px;
    border-top: 1px solid var(--rahmen); padding-top: 10px;
  }
  .mobile-menu a { padding: 10px 4px; font-size: 16px; }
}
