/* =============================================================
   NWAG-NRW e.V. — Base-CSS  v0.1
   Master-Prompt §4 (Tokens) · §5 (Sektionen) · §6 (Footer)
   §7 (Mobile-Backstop) · §11 (Scroll-to-Top FAB)
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --primary:        #F27405;        /* Logo-Orange — Haupt-CTA */
  --primary-hover:  #d96604;
  --accent:         #2AB0BF;        /* Wasserblau / Türkis */
  --accent-dark:    #0F3B40;        /* Petrol — Header/Footer-Tiefe */
  --warm:           #A66832;        /* Erdton */
  --deep:           #592507;        /* Tiefbraun — Schatten */

  /* Neutrals */
  --bg:             #f7f9fb;
  --surface:        #ffffff;
  --surface-soft:   #eef4f6;
  --text:           #0F3B40;
  --text-muted:     #5a7079;
  --text-on-dark:   #f7f9fb;
  --border:         #d8e3e6;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(1rem, 4vw, 3rem);
  --section-pad:    clamp(4rem, 8vw, 7rem);
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 8px rgba(15,59,64,.06);
  --shadow-md:      0 8px 24px rgba(15,59,64,.10);
  --shadow-lg:      0 18px 48px rgba(15,59,64,.16);

  /* Type */
  --font-headline:  'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 160px; font-size: calc(100% * var(--font-scale, 1)); }

/* ============================================================
   A11y v3.1 — Bedienhilfen (Schriftgröße / Kontrast / Farben)
   ============================================================ */
:root[data-font-scale="small"]  { --font-scale: 0.875; }
:root[data-font-scale="normal"] { --font-scale: 1; }
:root[data-font-scale="large"]  { --font-scale: 1.15; }
:root[data-font-scale="xlarge"] { --font-scale: 1.30; }

:root[data-theme="dark"] {
  --bg:           #121a1c;
  --surface:      #1a2426;
  --surface-soft: #1f2c2f;
  --text:         #ecf2f3;
  --text-muted:   #9fb3b8;
  --border:       #2c3a3d;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.35);
  --shadow-md:    0 8px 24px rgba(0,0,0,.45);
  --shadow-lg:    0 18px 48px rgba(0,0,0,.55);
}
:root[data-theme="dark"] body { background: var(--bg); color: var(--text); }
:root[data-theme="dark"] .sc-section--alt { background: var(--surface-soft); }
:root[data-theme="dark"] .sc-card,
:root[data-theme="dark"] .sc-form--light fieldset,
:root[data-theme="dark"] .sc-form--light input,
:root[data-theme="dark"] .sc-form--light select,
:root[data-theme="dark"] .sc-form--light textarea { background: var(--surface); color: var(--text); border-color: var(--border); }
:root[data-theme="dark"] .sc-form--light label { color: var(--text); }
:root[data-theme="dark"] .sc-form--light .sc-form__check { background: var(--surface); }
/* FAQ-Items im Dark Mode: vollständig transparent — KEINE Box-Optik mehr.
   Im Light Mode markiert ein `border-top: 1px solid var(--border)` jede Frage,
   im Dark Mode wirkt das auf dunklem Petrol jedoch wie abgegrenzte Kästen.
   Daher Border + Background hart auf transparent zwingen — die Items
   schmiegen sich in die Section wie Fließtext. */
:root[data-theme="dark"] .sc-faq__item,
:root[data-theme="dark"] .sc-faq__item:last-child {
  background: transparent !important;
  background-color: transparent !important;
  border-top: 1px solid rgba(255,255,255,.05) !important;   /* haarfein, nur als kleiner Hinweis */
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
}
:root[data-theme="dark"] .sc-faq__item:first-child {
  border-top: none !important;     /* erste Frage komplett ohne Linie oben */
}
:root[data-theme="dark"] .sc-faq__item summary { color: var(--text); }
:root[data-theme="dark"] .sc-faq__item summary:hover { color: var(--primary); }
:root[data-theme="dark"] .sc-faq__item__body,
:root[data-theme="dark"] .sc-faq__answer p { color: var(--text-muted); }

:root[data-contrast="high"][data-theme="light"] {
  --text:         #000000;
  --text-muted:   #1a1a1a;
  --bg:           #ffffff;
  --surface:      #ffffff;
  --surface-soft: #f3f5f6;
  --border:       #000000;
  --primary:      #c45200;
}
:root[data-contrast="high"][data-theme="dark"] {
  --text:         #ffffff;
  --text-muted:   #e6e6e6;
  --bg:           #000000;
  --surface:      #0a0a0a;
  --surface-soft: #141414;
  --border:       #ffffff;
  --primary:      #ffa45a;
}
:root[data-contrast="high"] body { background: var(--bg); color: var(--text); }
:root[data-contrast="high"] a:not(.btn) { text-decoration: underline; }
:root[data-contrast="high"] .btn { border: 2px solid currentColor; }

body, .sc-section--alt, .sc-card, .sc-form--light fieldset,
.sc-form--light input, .sc-form--light select, .sc-form--light textarea,
.sc-form--light .sc-form__check, .sc-faq__item {
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* Trigger-Button (Floating, oberhalb Scroll-to-Top) */
.nwag-a11y-trigger {
  position: fixed; right: 1.2rem; bottom: 5rem;
  z-index: 1100;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-dark); color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, background .2s ease;
}
.nwag-a11y-trigger svg { width: 24px; height: 24px; }
.nwag-a11y-trigger:hover { transform: translateY(-2px); background: var(--primary); }
.nwag-a11y-trigger:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
:root[data-theme="dark"] .nwag-a11y-trigger { background: var(--primary); border-color: var(--accent-dark); }

/* Mobile-Backdrop */
.nwag-a11y-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 1099; opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.nwag-a11y-backdrop.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 700px) { .nwag-a11y-backdrop { display: none; } }

/* Panel */
.nwag-a11y-panel {
  position: fixed;
  right: 1.2rem; bottom: calc(5rem + 56px + .5rem);
  z-index: 1101;
  width: min(360px, calc(100vw - 2.4rem));
  background: var(--surface); color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: scale(0.95) translateY(8px); transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nwag-a11y-panel[aria-hidden="false"] { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.nwag-a11y-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem .75rem;
  border-bottom: 1px solid var(--border);
}
.nwag-a11y-panel__title {
  margin: 0; font-family: var(--font-headline);
  font-size: 1.1rem; font-weight: 700; color: var(--text);
}
.nwag-a11y-panel__close {
  background: none; border: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; cursor: pointer; color: var(--text-muted);
}
.nwag-a11y-panel__close:hover { background: var(--surface-soft); color: var(--text); }
.nwag-a11y-panel__close svg { width: 18px; height: 18px; }
.nwag-a11y-panel__body { padding: 1rem 1.1rem 1.2rem; }

/* Optionen */
.nwag-a11y-group { border: 0; padding: 0; margin: 0 0 1.1rem; }
.nwag-a11y-group legend {
  font-family: var(--font-headline);
  font-weight: 700; font-size: .95rem; color: var(--text);
  padding: 0; margin-bottom: .55rem;
}
.nwag-a11y-options { display: flex; flex-wrap: wrap; gap: .45rem; }
.nwag-a11y-options button {
  flex: 0 1 auto;
  padding: .5rem .85rem;
  font-size: .9rem; font-family: var(--font-body);
  background: var(--surface); color: var(--text);
  border: 2px solid var(--border); border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.nwag-a11y-options button:hover { border-color: var(--primary); color: var(--primary); }
.nwag-a11y-options button[aria-pressed="true"] {
  background: var(--accent-dark); color: #fff; border-color: var(--accent-dark);
}
:root[data-theme="dark"] .nwag-a11y-options button[aria-pressed="true"] {
  background: var(--primary); border-color: var(--primary);
}
.nwag-a11y-options button:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.nwag-a11y-hint {
  margin: .55rem 0 0; font-size: .8rem; color: var(--text-muted); line-height: 1.45;
}
.nwag-a11y-reset {
  display: block; width: 100%;
  padding: .65rem 1rem; font-size: .88rem; font-family: var(--font-body);
  background: transparent; color: var(--text-muted);
  border: 1px dashed var(--border); border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nwag-a11y-reset:hover { background: var(--surface-soft); color: var(--text); }
.nwag-a11y-reset:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* Reduced-Motion: keine Übergänge */
@media (prefers-reduced-motion: reduce) {
  body, .sc-section--alt, .sc-card, .sc-form--light fieldset,
  .sc-form--light input, .sc-form--light select, .sc-form--light textarea,
  .sc-form--light .sc-form__check, .sc-faq__item,
  .nwag-a11y-panel, .nwag-a11y-backdrop, .nwag-a11y-trigger,
  .nwag-a11y-options button, .nwag-a11y-reset { transition: none !important; }
}

/* ============================================================
   A11y v3.2 — Polish: Panel-Layout, Scroll-Stack, Dark Mode Fixes
   ============================================================ */

/* (1) Panel kompakt halten — independent von der globalen Schriftgröße.
       Alle Maße sind in absoluten Pixeln, damit das Panel egal bei welchem
       font-scale (klein/normal/groß/sehr groß) immer dieselbe Form hat und
       NICHT scrollen muss. Verwenden wir rem-Werte, wachsen sie mit
       html { font-size } mit — das war der Grund, warum xlarge das Panel
       gesprengt hat. */
.nwag-a11y-panel {
  width: 340px;
  max-width: calc(100vw - 32px);
  font-size: 14px;
  line-height: 1.4;
  /* Override früherer rem-basierter Werte aus dem v3.1-Block */
  border-radius: 16px;
}
.nwag-a11y-panel * { font-size: inherit; }
.nwag-a11y-panel__head {
  padding: 14px 18px 10px;
}
.nwag-a11y-panel__title { font-size: 16px; }
.nwag-a11y-panel__close { width: 30px; height: 30px; }
.nwag-a11y-panel__close svg { width: 16px; height: 16px; }
.nwag-a11y-panel__body { padding: 12px 18px 16px; }
.nwag-a11y-group { margin: 0 0 14px; }
.nwag-a11y-group legend { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.nwag-a11y-options { gap: 6px; }
.nwag-a11y-options button { padding: 7px 12px; font-size: 13px; border-radius: 7px; }
.nwag-a11y-hint { font-size: 12px; margin-top: 8px; line-height: 1.4; }
.nwag-a11y-reset { padding: 9px 12px; font-size: 13px; border-radius: 7px; }

/* Mobile: zentriert als Modal — Panel-Maße bleiben unabhängig von font-scale */
@media (max-width: 699px) {
  .nwag-a11y-panel {
    right: 16px; left: 16px; bottom: auto; top: 50%;
    transform: translate(0, -50%) scale(.95);
    transform-origin: center;
    width: auto;
    max-width: none;
  }
  .nwag-a11y-panel[aria-hidden="false"] { transform: translate(0, -50%) scale(1); }
}

/* (2) Scroll-to-Top + A11y-Trigger einheitlich rechts unten, gestapelt.
       Stack-Reihenfolge: A11y-Trigger immer unten, Scroll-to-Top oberhalb
       (nur sichtbar nach 400px-Scroll). Gleiches Design, nur Icon verschieden. */
.sc-stt {
  left: auto !important;
  right: 20px !important;
  bottom: calc(20px + 48px + 12px + env(safe-area-inset-bottom,0px)) !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--accent-dark) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  box-shadow: var(--shadow-md) !important;
}
.sc-stt:hover {
  background: var(--primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
  animation: none !important;
}
.sc-stt.sc-stt--show { animation: none !important; }
.nwag-a11y-trigger {
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 14px;   /* fixe Größe, unabhängig vom html-font-scale */
}
.nwag-a11y-trigger svg { width: 24px; height: 24px; }
.nwag-a11y-panel { bottom: calc(20px + 48px + 12px + 48px + 12px); right: 20px; }
@media (max-width: 699px) {
  .nwag-a11y-panel { bottom: auto; }   /* Mobile: zentriert, siehe (1) */
}
:root[data-theme="dark"] .sc-stt {
  background: var(--primary) !important;
  border-color: var(--accent-dark) !important;
}
:root[data-theme="dark"] .sc-stt:hover {
  background: var(--primary-hover) !important;
}

/* (3) Header im Dark Mode: dunkler Hintergrund, weißes Burger-Icon.
       Logo-Swap erfolgt per JS (siehe nwag-a11y-v01.js). */
:root[data-theme="dark"] .sc-header {
  background: rgba(15, 26, 28, .94);
  border-bottom-color: var(--border);
}
:root[data-theme="dark"] .sc-nav__toggle { color: #fff; }
:root[data-theme="dark"] .sc-nav__links a { color: var(--text); }
:root[data-theme="dark"] .sc-nav__links a:hover { color: var(--primary); }

/* (4) Im Dark Mode: alle Section-Headlines und sonstige accent-dark-Texte
       auf hellen Text mappen. Brand-Akzente (--accent Türkis) bleiben. */
:root[data-theme="dark"] .sc-section__head h2,
:root[data-theme="dark"] .sc-card h3,
:root[data-theme="dark"] .sc-cookie__head h3,
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4 { color: var(--text); }
/* Body-Content-Links nur in <main> auf Orange färben — Buttons + Footer + Header
   sind explizit ausgenommen, weil sie ihre eigene Farbgebung haben. */
:root[data-theme="dark"] main a:not(.btn) { color: var(--primary); }
:root[data-theme="dark"] main a:not(.btn):hover { color: var(--primary-hover); }
:root[data-theme="dark"] .sc-form__recaptcha-note a:not(.btn) { color: var(--primary); }
:root[data-theme="dark"] .sc-form--light .sc-form__check a:not(.btn) { color: var(--primary); }

/* Buttons im Dark Mode: garantiert weißer Text auf farbigem Hintergrund.
   Überschreibt versehentlich greifende Link-Color-Regeln durch hohe Spezifität +
   `.btn.btn--…` Doppelung. */
:root[data-theme="dark"] .btn.btn--primary,
:root[data-theme="dark"] a.btn.btn--primary { color: #fff !important; }
:root[data-theme="dark"] .btn.btn--on-dark,
:root[data-theme="dark"] a.btn.btn--on-dark { color: var(--accent-dark) !important; }
:root[data-theme="dark"] .btn.btn--secondary,
:root[data-theme="dark"] a.btn.btn--secondary { color: var(--text) !important; }

/* Footer-Links: Footer hat IMMER dunklen Hintergrund — Links bleiben hell. */
:root[data-theme="dark"] .sc-footer a { color: var(--text-on-dark); }
:root[data-theme="dark"] .sc-footer a:hover { color: var(--primary); }

/* (5) Cookie-Banner im Dark Mode: dunkler Hintergrund, heller Text. */
:root[data-theme="dark"] .sc-cookie {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
:root[data-theme="dark"] .sc-cookie p,
:root[data-theme="dark"] .sc-cookie__head h3 { color: var(--text); }
:root[data-theme="dark"] .sc-cookie__head-icon { background: rgba(242,116,5,.22); }
:root[data-theme="dark"] .sc-cookie__close { color: var(--text-muted); }
:root[data-theme="dark"] .sc-cookie__close:hover { background: var(--surface-soft); color: var(--text); }
:root[data-theme="dark"] .sc-cookie__btn--ghost { color: var(--text-muted); }
:root[data-theme="dark"] .sc-cookie__btn--ghost:hover { color: var(--text); }

/* (6) High-Contrast: Cookie-Banner mit hartem Border, garantiert lesbar.
       Greift auf beide Theme-Varianten. */
:root[data-contrast="high"] .sc-cookie {
  background: var(--surface);
  color: var(--text);
  border: 3px solid var(--border);
  box-shadow: 0 0 0 1px var(--text);
}
:root[data-contrast="high"] .sc-cookie p,
:root[data-contrast="high"] .sc-cookie__head h3 { color: var(--text); }
:root[data-contrast="high"] .sc-cookie__head-icon { background: var(--surface-soft); border: 2px solid var(--text); }
:root[data-contrast="high"] .sc-cookie__btn { border: 2px solid currentColor; }
:root[data-contrast="high"] .nwag-a11y-trigger,
:root[data-contrast="high"] .sc-stt { border-width: 3px !important; }
html, body {
  background: var(--accent-dark);   /* matcht den Footer — kein heller Strich beim Bouncen */
  overflow-x: hidden;
  max-width: 100%;
}
body { background: var(--bg); }       /* Inhalt hat weiterhin den hellen BG */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  color: var(--accent-dark);
  margin: 0 0 .6em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
p  { margin: 0 0 1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-muted); }

/* ---------- 3. Container ---------- */
.container-main {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;  /* keine Farb-Transitions — Farben bleiben konstant */
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary — Orange. Hover = Glow-Schatten in Brand-Farbe, Farbe konstant. */
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(242,116,5,.30);
}
.btn--primary:hover {
  background: var(--primary);     /* unverändert */
  color: #fff;                    /* unverändert */
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(242,116,5,.18),
    0 14px 32px rgba(242,116,5,.55),
    0 4px 12px rgba(242,116,5,.35);
  text-decoration: none;
}

/* Ghost — Outline. Hover = Schatten + Border-Glow in Wasserblau, BG bleibt transparent. */
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: 0 0 0 0 rgba(42,176,191,0);
}
.btn--ghost:hover {
  background: transparent;        /* unverändert */
  color: var(--text);             /* unverändert */
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(42,176,191,.15),
    0 10px 26px rgba(42,176,191,.30);
  text-decoration: none;
}

/* On-Dark — Weiß auf dunklem Hintergrund. Hover = weißer Glow. */
.btn--on-dark {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(255,255,255,.20);
}
.btn--on-dark:hover {
  background: #fff;               /* unverändert */
  color: var(--accent-dark);      /* unverändert */
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.20),
    0 14px 32px rgba(255,255,255,.40);
  text-decoration: none;
}

/* ---------- 5. Header / Nav ---------- */
.sc-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 140px;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.sc-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.sc-nav__brand { display: flex; align-items: center; gap: .75rem; }
.sc-nav__brand picture,
.sc-nav__brand img { height: 112px; width: auto; display: block; }
.sc-nav__brand picture img { height: 100%; width: auto; }
.sc-nav__brand:hover { text-decoration: none; }
.sc-nav__brand,
.sc-nav__brand img,
.sc-footer__brand-logo,
.sc-footer__brand-logo img,
.sc-drawer__brand,
.sc-drawer__brand img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Drawer-Logo (weiße Logo-Variante auf petrol-BG) */
.sc-drawer__brand { display: flex; align-items: center; margin-bottom: 1.5rem; }
.sc-drawer__brand img,
.sc-drawer__brand picture { height: 88px; width: auto; display: block; }
.sc-nav__links {
  display: none;
  gap: .35rem;
  list-style: none; padding: 0; margin: 0;
  align-items: center;
}
.sc-nav__links a {
  color: var(--accent-dark);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  padding: .55rem 1rem;
  border-radius: 999px;
  position: relative;
  transition: color .2s, background-color .2s;
}
.sc-nav__links a:hover {
  color: var(--primary);
  background: rgba(242,116,5,.08);
  text-decoration: none;
}
.sc-nav__links a[aria-current="page"] {
  color: var(--primary);
  background: rgba(242,116,5,.12);
}
.sc-nav__cta { display: none; }

/* ============================================================
   Breadcrumbs (v2.7) — sichtbarer Pfad für Regionen-Hub-Seiten
   ============================================================ */
.sc-breadcrumb {
  background: var(--accent-dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.sc-breadcrumb__inner {
  padding-block: .85rem;
  font-family: var(--font-headline);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
}
.sc-breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .35rem .55rem;
}
.sc-breadcrumb li { display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap; }
.sc-breadcrumb li + li::before {
  content: "›";
  color: rgba(255,255,255,.35);
  font-size: 1.1em;
}
.sc-breadcrumb a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s;
}
.sc-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.sc-breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* Breadcrumb-Mobile: kompakter, kein 2-Zeilen-Problem mit den Trennern.
   Strategie: auf <700px werden die mittleren Pfad-Stationen ausgeblendet,
   sodass nur Start › … › Aktuelle Seite gezeigt wird. Das verhindert
   alleinstehende ›-Zeichen in Folgezeilen. */
@media (max-width: 699px) {
  .sc-breadcrumb__inner {
    padding-block: .65rem;
    font-size: .72rem;
    letter-spacing: .02em;
  }
  .sc-breadcrumb ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;       /* Firefox */
    gap: .25rem .4rem;
    padding-bottom: .15rem;
  }
  .sc-breadcrumb ol::-webkit-scrollbar { display: none; }   /* WebKit */
  .sc-breadcrumb li { gap: .35rem; }
  .sc-breadcrumb li + li::before { font-size: 1em; }
  .sc-breadcrumb [aria-current="page"] { white-space: normal; }
}

/* ============================================================
   Page-Loader (v2.6) — Vollbild-Overlay beim ersten Page-Load
   pro Browser-Session. Wird per JS via sessionStorage gesteuert,
   sodass interne Verlinkungen keinen erneuten Loader auslösen.
   ============================================================ */
.sc-loader {
  position: fixed; inset: 0;
  background: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.6rem;
  z-index: 9999;
  transition: opacity .55s ease, visibility .55s ease;
}
.sc-loader__logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  animation: sc-loader-bob 1.6s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
}
.sc-loader__text {
  color: rgba(255,255,255,.85);
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: .15em;
}
.sc-loader__text::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  text-align: left;
  animation: sc-loader-dots 1.4s steps(4) infinite;
}
@keyframes sc-loader-dots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}
@keyframes sc-loader-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.03); }
}
body.is-loaded .sc-loader { opacity: 0; visibility: hidden; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .sc-loader__logo { animation: none; }
  .sc-loader__text::after { animation: none; content: "..."; }
}

.sc-nav__toggle {
  background: none; border: none; padding: .5rem;
  cursor: pointer; color: var(--text);
  position: relative;
  z-index: 60; /* über dem Drawer-Backdrop */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sc-nav__toggle svg { width: 28px; height: 28px; }
/* Hamburger ↔ X Toggle anhand aria-expanded — robust mit !important */
.sc-nav__toggle .icon-burger { display: block !important; }
.sc-nav__toggle .icon-close  { display: none  !important; }
.sc-nav__toggle[aria-expanded="true"] .icon-burger { display: none  !important; }
.sc-nav__toggle[aria-expanded="true"] .icon-close  { display: block !important; }

@media (min-width: 1024px) {
  .sc-nav__links { display: flex; }
  /* Desktop: CTA-Button immer sichtbar (User-Wunsch v2.6) */
  .sc-nav__cta {
    display: inline-flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }
  .sc-nav__toggle { display: none; }
}

/* Mobile-Drawer */
.sc-drawer {
  position: fixed; inset: 0; background: var(--accent-dark); color: var(--text-on-dark);
  z-index: 60; padding: 5rem var(--container-pad) 2rem;
  display: none; flex-direction: column; gap: 1.5rem;
  overflow-y: auto;
}
.sc-drawer[aria-hidden="false"] { display: flex; }
.sc-drawer__close {
  position: absolute; top: 1rem; right: var(--container-pad);
  background: none; border: none; color: #fff; padding: .5rem; cursor: pointer;
}
.sc-drawer__close svg { width: 28px; height: 28px; }
.sc-drawer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.sc-drawer__links a {
  color: #fff; font-family: var(--font-headline); font-size: 1.6rem; font-weight: 600;
}
.sc-drawer__cta { margin-top: auto; padding-top: 2rem; }

/* ---------- 6. Sektion-Defaults ---------- */
section { padding-block: var(--section-pad); }
.sc-section--alt { background: var(--surface-soft); }
.sc-section--dark { background: var(--accent-dark); color: var(--text-on-dark); }
.sc-section--dark h1, .sc-section--dark h2, .sc-section--dark h3 { color: #fff; }

.sc-eyebrow {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .8rem;
}
.sc-section--dark .sc-eyebrow { color: var(--accent); }

/* ---------- 7. Hero (Startseite — füllt volle erste Ansicht, Slideshow im Background) ---------- */
.sc-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;            /* dynamic viewport unit für Mobile-Browser */
  display: flex; align-items: flex-end;
  padding-block: 140px clamp(3rem, 8vw, 5rem);  /* top-padding hinter fixed Header */
  margin-top: 0;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  overflow: hidden;
}
.sc-hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.sc-hero__media.is-active { opacity: 1; }
.sc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,59,64,0) 30%, rgba(15,59,64,.85) 100%);
  z-index: 1;
}
/* Inhalt linksbündig (wie auf Subseiten) — Text-Maxbreite am Text selbst */
.sc-hero__content {
  position: relative; z-index: 2;
  width: 100%;
}
.sc-hero h1 { color: #fff; max-width: 16ch; }
.sc-hero__sub {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  max-width: 56ch;
}
.sc-hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.sc-hero__trust {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-family: var(--font-headline);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sc-hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.sc-hero__trust span::before {
  content: ""; width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
}

/* ---------- 8. Karten / Grids ---------- */
.sc-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sc-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .sc-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .sc-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.sc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.sc-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sc-card__icon svg { width: 24px; height: 24px; }
.sc-card h3 { margin: 0; }
.sc-card p { margin: 0; color: var(--text-muted); }
.sc-card__link {
  margin-top: auto;
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: .35rem;
}
.sc-card__link:hover { color: var(--primary-hover); text-decoration: none; }
.sc-card__link::after { content: "→"; transition: transform .2s; }
.sc-card:hover .sc-card__link::after { transform: translateX(4px); }

/* ---------- 9. Geschichte (2-Spalten Komposition) ---------- */
.sc-geschichte__grid {
  display: grid; gap: 3rem 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .sc-geschichte__grid { grid-template-columns: 1.05fr 1fr; gap: 3rem 5rem; }
}
.sc-geschichte__media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.sc-geschichte__media--inset {
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  width: 52%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg);
  display: none;
}
@media (min-width: 900px) { .sc-geschichte__media--inset { display: block; } }
.sc-geschichte__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem;
  margin-top: 1.6rem;
}
.sc-stat {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: left;
  display: flex; align-items: baseline; gap: .8rem;
  transition: border-color .2s, background-color .2s;
}
.sc-stat:hover {
  border-color: var(--primary);
  background: rgba(242,116,5,.04);
}
.sc-stat__num {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--primary);
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}
.sc-stat__label { font-size: .9rem; color: var(--text-muted); display: inline-block; line-height: 1.3; }

/* ---------- 10. Ablauf 4-Step ---------- */
.sc-ablauf__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .sc-ablauf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sc-ablauf__grid { grid-template-columns: repeat(4, 1fr); } }
.sc-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  position: relative;
  counter-increment: step;
}
.sc-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--font-headline);
  font-weight: 800; font-size: 1.6rem;
  color: var(--accent);
  opacity: .5;
}
.sc-step h3 { margin: 0 0 .5rem; padding-right: 2.5rem; font-size: 1.15rem; }
.sc-step p { margin: 0; color: var(--text-muted); font-size: .95rem; }

/* ---------- 11. FAQ (details/summary) ---------- */
.sc-faq__list { max-width: 820px; margin-inline: auto; }
.sc-faq__item {
  border-top: 1px solid var(--border);
  padding-block: .5rem;
}
.sc-faq__item:last-child { border-bottom: 1px solid var(--border); }
.sc-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1rem;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .2s;
}
.sc-faq__item summary::-webkit-details-marker { display: none; }
.sc-faq__item summary::after {
  content: "+";
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform .25s;
  flex-shrink: 0;
}
.sc-faq__item[open] summary::after { transform: rotate(45deg); }
.sc-faq__item summary:hover { color: var(--primary); }
.sc-faq__item__body { padding-block: 0 1.2rem; color: var(--text-muted); }
.sc-faq__item__body p { margin: 0; }

/* ---------- 12. Kontakt-Block (warmes Tiefbraun, hebt sich vom Footer-Petrol ab) ---------- */
.sc-contact {
  background:
    linear-gradient(180deg, #6b2e0a 0%, var(--deep) 55%, #401a04 100%);
  color: var(--text-on-dark);
  position: relative;
}
.sc-contact::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(242,116,5,.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(255,255,255,.05), transparent 50%);
  pointer-events: none;
}
.sc-contact > * { position: relative; }
.sc-contact h2, .sc-contact h3 { color: #fff; max-width: none; }
.sc-contact .lead { color: #fff; max-width: 56ch; }
.sc-contact__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .sc-contact__grid { grid-template-columns: 1fr 1.1fr; }
}
.sc-contact__info,
.sc-contact__info p,
.sc-contact__info li { color: #fff; }
.sc-contact__info a { color: var(--primary); font-weight: 600; }
.sc-contact__info a:hover { color: #fff; }
.sc-contact__list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 1.1rem; }
.sc-contact__list li { display: flex; gap: .85rem; align-items: flex-start; }
.sc-contact__list svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.sc-form { display: flex; flex-direction: column; gap: 1rem; }
.sc-form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .sc-form__row { grid-template-columns: 1fr 1fr; } }
.sc-form label {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .35rem;
  display: block;
}
.sc-form input,
.sc-form textarea,
.sc-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .8rem 1rem;
  height: 48px;            /* einheitliche Höhe für Inputs/Selects */
  line-height: 1.4;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: border-color .2s, background-color .2s;
  box-sizing: border-box;
}
/* Selects: identische Höhe wie Text-Inputs (appearance:none + custom Pfeil) */
.sc-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1,1 6,7 11,1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.sc-form select:not(.has-value) { color: rgba(255,255,255,.55); }
.sc-form input:focus, .sc-form textarea:focus, .sc-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,.10);
}
.sc-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(242,116,5,.6);
}
.sc-form textarea { min-height: 130px; height: auto; resize: vertical; }
/* Datenschutz-Checkbox: groß + links neben mehrzeiligem Text */
.sc-form__check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding: .8rem 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255,255,255,.86);
}
.sc-form__check input[type="checkbox"] {
  width: 28px; height: 28px;
  flex-shrink: 0; margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.sc-form__check a { color: var(--primary); font-weight: 600; }
.sc-form__check a:hover { color: #fff; }
/* Honeypot */
.sc-form__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.sc-form__status {
  margin-top: .5rem; font-size: .9rem;
  padding: .8rem 1rem; border-radius: var(--radius); display: none;
}
.sc-form__status--ok { display: block; background: rgba(42,176,191,.15); color: #c8eef2; border: 1px solid var(--accent); }
.sc-form__status--err { display: block; background: rgba(242,116,5,.15); color: #ffd5b0; border: 1px solid var(--primary); }

/* Light-Variante des Forms (auf hellem BG für Mitgliedsantrag) */
.sc-form--light { counter-reset: fieldset; }
.sc-form--light label {
  color: var(--text-muted);
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sc-form--light input,
.sc-form--light select,
.sc-form--light textarea {
  background-color: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  height: 48px;
  line-height: 1.4;
  box-sizing: border-box;
}
/* Light-Select: dunkler Pfeil + nicht wiederholen + sauber positioniert */
.sc-form--light select {
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.sc-form--light textarea { min-height: 130px; height: auto; }
/* Date-Inputs: Mobile-Native-Picker auf identische Größe wie Text-Input zwingen */
.sc-form--light input[type="date"],
.sc-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  height: 48px;
  line-height: 1.4;
  min-height: 48px;
  max-height: 48px;
  font-family: var(--font-body);
}
input[type="date"]::-webkit-date-and-time-value { text-align: left; }
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}
.sc-form--light select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%230F3B40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1,1 6,7 11,1'/></svg>");
}
.sc-form--light input:focus,
.sc-form--light select:focus,
.sc-form--light textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242,116,5,.18);
}
.sc-form--light input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(242,116,5,.6);
}
.sc-form--light fieldset {
  border: none; padding: clamp(1.4rem, 2.2vw, 2rem); margin: 0 0 1.6rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.sc-form--light legend {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex; align-items: center; gap: .7rem;
  counter-increment: fieldset;
}
.sc-form--light legend::before {
  content: counter(fieldset);
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.sc-form--light .sc-form__check {
  background: var(--surface-soft);
  padding: .9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; gap: .65rem; align-items: flex-start;
  margin-bottom: .55rem;
  color: var(--text);
  font-size: .92rem;
  transition: border-color .2s, background-color .2s;
  box-sizing: border-box;
  width: 100%;
}
.sc-form--light .sc-form__check span {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.sc-form--light .sc-form__check:hover { border-color: var(--accent); }
.sc-form--light .sc-form__check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--primary);
}
.sc-form--light .sc-form__check a { color: var(--accent-dark); text-decoration: underline; }
.sc-form--light .sc-form__status { color: var(--text); }
.sc-form--light .sc-form__status--ok { background: rgba(42,176,191,.12); color: var(--accent-dark); border-color: var(--accent); }
.sc-form--light .sc-form__status--err { background: rgba(242,116,5,.10); color: var(--deep); border-color: var(--primary); }

/* aria-invalid: Visuelle Markierung für fehlende/ungültige Pflichtfelder.
   Wird vom Form-Submit-Helper /data/nwag-forms-v01.js gesetzt, sobald ein
   required-Feld leer ist. Nutzer:in soll auf einen Blick sehen, was fehlt. */
.sc-form input[aria-invalid="true"],
.sc-form select[aria-invalid="true"],
.sc-form textarea[aria-invalid="true"] {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(242,116,5,.18) !important;
  background-color: rgba(242,116,5,.04);
}
.sc-form .sc-form__check input[type="checkbox"][aria-invalid="true"] {
  outline: 3px solid rgba(242,116,5,.55);
  outline-offset: 3px;
}
.sc-form .sc-form__check:has(input[aria-invalid="true"]) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242,116,5,.15);
}

/* ---------- 13. Footer ---------- */
.sc-footer {
  background: var(--accent-dark);
  color: var(--text-on-dark);
  padding-block: 0;
  position: relative;
  /* Optische Abgrenzung gegen den Kontakt-Block oben:
     dezenter orangener Akzentbalken über die volle Breite */
  border-top: 4px solid var(--primary);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.18);
}

/* Brand-Block (oberste Footer-Sektion: Logo links, Tagline rechts — kompakt) */
.sc-footer__brand-block {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-block: clamp(2rem, 3vw, 3rem);     /* kompakter — vorher 3.5/5.5rem */
}
.sc-footer__brand-block-inner {
  display: grid;
  gap: 1.2rem 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .sc-footer__brand-block-inner { grid-template-columns: auto 1fr; gap: 1.5rem 2.5rem; }
}
.sc-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.sc-footer__brand-logo picture,
.sc-footer__brand-logo img {
  height: clamp(110px, 14vw, 150px);    /* moderat — vorher 180-260px */
  width: auto;
  display: block;
  transition: opacity .3s ease;
}
/* Hover-Crossfade: weißes Logo idle → orangenes Logo on-hover */
.sc-footer__brand-logo .logo-hover {
  position: absolute;
  inset: 0;
  width: auto;
  opacity: 0;
}
.sc-footer__brand-logo:hover .logo-default { opacity: 0; }
.sc-footer__brand-logo:hover .logo-hover   { opacity: 1; }

.sc-footer__brand-tagline {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 38ch;
  text-wrap: balance;
}

/* Sponsoren-Strip */
.sc-footer__sponsors {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}
.sc-footer__sponsors-label {
  text-align: center;
  font-family: var(--font-headline);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 2rem;
}
.sc-footer__sponsors-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
@media (min-width: 600px) { .sc-footer__sponsors-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .sc-footer__sponsors-list { grid-template-columns: repeat(5, 1fr); gap: 1rem 2rem; } }
.sc-footer__sponsors-item { display: flex; align-items: center; justify-content: center; }
.sc-footer__sponsors-item a {
  display: flex; align-items: center; justify-content: center;
  opacity: .85;
  transition: opacity .3s, transform .3s, filter .3s;
  padding: .8rem 1rem;
  filter: drop-shadow(0 0 0 transparent);
}
.sc-footer__sponsors-item a:hover {
  opacity: 1;
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.45)) drop-shadow(0 2px 6px rgba(0,0,0,.3));
  text-decoration: none;
}
.sc-footer__sponsors-item img {
  height: 50px; width: auto; max-width: 200px;
  object-fit: contain; display: block;
}
.sc-footer__sponsors-item--bymueller img { height: 30px; max-width: 220px; }

/* Top-Block (4-Spalten-Grid darunter) */
.sc-footer__top {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .sc-footer__top { grid-template-columns: repeat(4, 1fr); } }
.sc-footer__col h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.sc-footer__col p, .sc-footer__col li, .sc-footer__col a { color: rgba(255,255,255,.78); }
.sc-footer__col a:hover { color: #fff; text-decoration: underline; }
.sc-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }

/* Social-Icons im Footer */
.sc-social {
  list-style: none; padding: 0; margin: .9rem 0 0;
  display: flex !important; flex-direction: row !important;
  gap: .6rem;
  flex-wrap: wrap;
}
.sc-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}
.sc-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.sc-social svg { width: 18px; height: 18px; }

/* EIN konsolidiertes Akkordeon mit drei Spalten innen */
.sc-footer__acc {
  border-top: 1px solid rgba(255,255,255,.12);
}
.sc-acc { border-bottom: 1px solid rgba(255,255,255,.12); }
.sc-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
  cursor: pointer;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  list-style: none;
}
.sc-acc summary::-webkit-details-marker { display: none; }
.sc-acc summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .25s;
}
.sc-acc[open] summary::after { transform: rotate(45deg); }

/* Body: 3 Themen-Gruppen nebeneinander, jede mit Headline + Linkliste */
.sc-acc-body {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: .5rem 2rem;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) and (max-width: 1023px) { .sc-acc-body { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sc-acc-body { grid-template-columns: repeat(3, 1fr); } }
.sc-acc-group h5 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
}
.sc-acc-group ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: .5rem;
  font-size: .94rem;
}
.sc-acc-group a { color: rgba(255,255,255,.75); }
.sc-acc-group a:hover { color: #fff; text-decoration: underline; }

/* Legal-Row (sweet.catering-Stil — links 3 Zeilen, rechts Impressum/Datenschutz) */
.sc-footer__legalrow {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.2rem;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.sc-footer__legal-left { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .25rem; }
.sc-footer__legal-left b { font-weight: 700; color: rgba(255,255,255,.85); }
.sc-footer__legal-left .sl { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; }
.sc-footer__legal-left .sl button {
  background: none; border: none; padding: 0; cursor: pointer; font: inherit;
  color: rgba(255,255,255,.7);
}
.sc-footer__legal-right { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; }
.sc-footer__legal-right span { color: rgba(255,255,255,.4); }
.sc-footer__legalrow a { color: rgba(255,255,255,.7); }
.sc-footer__legalrow a:hover,
.sc-footer__legalrow button:hover { color: #fff; text-decoration: underline; }
@media (min-width: 768px) {
  .sc-footer__legalrow { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .sc-footer__legal-left { align-items: flex-start; text-align: left; }
  .sc-footer__legal-left .sl { justify-content: flex-start; }
  .sc-footer__legal-right { justify-content: flex-end; }
}

/* ---------- 13b. Slider / Galerie ---------- */
.sc-slider {
  position: relative;
  overflow: hidden;
}
.sc-slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: .5rem;
  padding-inline: var(--container-pad);
  margin-inline: calc(-1 * var(--container-pad));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.sc-slider__track::-webkit-scrollbar { height: 8px; }
.sc-slider__track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.sc-slider__slide {
  flex: 0 0 clamp(280px, 68vw, 460px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  background: var(--surface-soft);
}
.sc-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.sc-slider__slide:hover img { transform: scale(1.04); }
.sc-slider__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem .9rem;
  background: linear-gradient(180deg, rgba(15,59,64,0) 0%, rgba(15,59,64,.9) 100%);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .95rem;
  font-weight: 600;
  pointer-events: none;
}

/* Galerie-Grid (Veranstaltungen, Chronik) */
.sc-gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .sc-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
@media (min-width: 1024px) { .sc-gallery { grid-template-columns: repeat(4, 1fr); } }
.sc-gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-soft);
  position: relative;
}
.sc-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease, filter .35s ease;
}
.sc-gallery__item:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* Asymmetrisches Mosaic-Grid (Startseite "Eindrücke") */
.sc-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
}
@media (min-width: 700px) {
  .sc-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .sc-mosaic { grid-auto-rows: 240px; }
}
.sc-mosaic__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-soft);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.sc-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease, filter .35s ease;
}
.sc-mosaic__item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.sc-mosaic__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem .8rem;
  background: linear-gradient(180deg, rgba(15,59,64,0) 0%, rgba(15,59,64,.92) 100%);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .95rem;
  font-weight: 600;
  pointer-events: none;
}
/* Variants — verschiedene Größen für asymmetrische Optik */
@media (min-width: 700px) {
  .sc-mosaic__item--tall { grid-row: span 2; }
  .sc-mosaic__item--wide { grid-column: span 2; }
}

/* Page-Hero (Subseiten — feste Mindesthöhe, gleicher Abstand oben/unten,
   wächst bei Bedarf mit dem Inhalt mit, z.B. wenn Eyebrow + H1 + Lead + Buttons
   gemeinsam mehr Platz brauchen wie auf den Stadtseiten ab v2.9) */
.sc-page-hero {
  margin-top: 140px;
  min-height: 360px;
  padding-block: 2.5rem;     /* Puffer oben/unten damit Buttons nie abgeschnitten werden */
  background-color: var(--accent-dark);
  background-size: cover;
  background-position: center;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;       /* zentriert, wenn Inhalt < 360px */
}
.sc-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: .6rem;
}
.sc-page-hero p {
  margin-top: .4rem;
}
.sc-page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,59,64,.78) 0%, rgba(15,59,64,.55) 100%);
  pointer-events: none;
}
.sc-page-hero > * { position: relative; z-index: 1; width: 100%; }
.sc-page-hero h1 { color: #fff; max-width: 18ch; }
.sc-page-hero p { color: rgba(255,255,255,.88); max-width: 56ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.sc-page-hero .sc-eyebrow { color: var(--primary); }

/* ---------- 13b1. Photon-Adress-Autocomplete (Komoot) ---------- */
.sc-address-wrap { position: relative; }
.sc-address-suggestions {
  position: absolute; left: 0; right: 0; top: 100%;
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none; padding: 0;
  max-height: 280px; overflow-y: auto;
  z-index: 30;
  display: none;
}
.sc-address-suggestions.is-open { display: block; }
.sc-address-suggestions li {
  padding: .65rem 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--surface-soft);
  transition: background-color .12s;
}
.sc-address-suggestions li:last-child { border-bottom: 0; }
.sc-address-suggestions li:hover,
.sc-address-suggestions li[aria-selected="true"] {
  background: rgba(242,116,5,.08);
  color: var(--accent-dark);
}
.sc-address-suggestions li small {
  display: block;
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 1px;
}

/* ---------- 13c. Cookie-Banner als Modal (sweet.catering-Stil) ---------- */
.sc-cookie-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,59,64,.72);
  backdrop-filter: blur(4px);
  z-index: 95;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.sc-cookie-backdrop.is-open { display: flex; }

.sc-cookie {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  max-width: 540px; width: 100%;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  position: relative;
  animation: sc-cookie-in .3s ease;
}
@keyframes sc-cookie-in {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
.sc-cookie__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s, color .2s;
}
.sc-cookie__close:hover { background: var(--surface-soft); color: var(--text); }
.sc-cookie__close svg { width: 18px; height: 18px; }

.sc-cookie__head {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1rem;
}
.sc-cookie__head-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(242,116,5,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sc-cookie__head h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--accent-dark);
}
.sc-cookie p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text);
}
.sc-cookie p a { color: var(--primary); font-weight: 600; }
.sc-cookie p a:hover { color: var(--primary-hover); }

.sc-cookie__btns {
  display: flex; flex-direction: column;
  gap: .4rem;
  margin-top: 1rem;
}
.sc-cookie__btn {
  background: var(--primary); color: #fff; border: none;
  padding: 1rem 1.4rem; border-radius: 999px;
  font-family: var(--font-headline); font-weight: 700; cursor: pointer;
  font-size: 1.02rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(242,116,5,.30);
}
.sc-cookie__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px rgba(242,116,5,.18), 0 14px 32px rgba(242,116,5,.45);
}
.sc-cookie__btn--ghost {
  background: transparent; color: var(--text-muted);
  border: none;
  font-weight: 500;
  font-size: .92rem;
  padding: .8rem 1rem;
  box-shadow: none;
}
.sc-cookie__btn--ghost:hover {
  background: var(--surface-soft);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

/* ---------- 13d. Lightbox-Galerie ---------- */
.sc-lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 22, 26, .82);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem 4rem;
  animation: sc-lb-in .25s ease;
}
.sc-lightbox.sc-lightbox--open { display: flex; }
@keyframes sc-lb-in { from { opacity: 0; } to { opacity: 1; } }

.sc-lightbox__stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.sc-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  display: block;
  background: var(--accent-dark);
  animation: sc-lb-img .35s ease;
}
@keyframes sc-lb-img { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.sc-lightbox__caption {
  position: absolute; left: 0; right: 0; bottom: -2.5rem;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-family: var(--font-headline);
  font-size: .95rem;
}
.sc-lightbox__btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s, transform .2s, border-color .2s;
  z-index: 2;
}
.sc-lightbox__btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: scale(1.08);
}
.sc-lightbox__btn svg { width: 22px; height: 22px; }
.sc-lightbox__close { top: 1.5rem; right: 1.5rem; }
.sc-lightbox__prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.sc-lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.sc-lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.sc-lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
.sc-lightbox__counter {
  position: absolute; top: 1.5rem; left: 1.5rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-headline);
  font-size: .9rem;
  letter-spacing: .04em;
}
@media (max-width: 600px) {
  .sc-lightbox { padding: 1rem .5rem; }
  .sc-lightbox__close { top: .8rem; right: .8rem; }
  .sc-lightbox__prev { left: .25rem; }
  .sc-lightbox__next { right: .25rem; }
  .sc-lightbox__btn { width: 40px; height: 40px; }
}
body.sc-lightbox-locked { overflow: hidden; }

/* Cursor-Hinweis auf Galerie- und Slider-Bilder, die als Lightbox-Trigger dienen */
.sc-gallery__item,
.sc-slider__slide { cursor: zoom-in; }

/* ============================================================
   13e. Mobile-Polish (Desktop bleibt unverändert)
   ============================================================ */
@media (max-width: 1023px) {
  /* Header schmaler */
  .sc-header { height: 80px; }
  .sc-nav__brand picture,
  .sc-nav__brand img { height: 56px; }

  /* Mobile-CTA neben Logo, links vom Toggle.
     Sichtbarkeit erst zeitgleich mit dem Scroll-to-Top-Button
     (gleiche Schwelle 400px) — Body bekommt `.is-scrolled-far` per JS. */
  .sc-nav__cta {
    display: inline-flex;
    padding: .55rem 1rem;
    font-size: .92rem;
    margin-right: .35rem;
    opacity: 0;
    transform: translateY(-4px) scale(.92);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .25s, transform .25s;
  }
  body.is-scrolled-far .sc-nav__cta {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }
  .sc-nav__toggle { padding: .35rem; }
  .sc-mobile-cta { display: none !important; }

  /* Hero-Bereich: padding-top auf neue Header-Höhe */
  .sc-hero { padding-top: 80px; padding-bottom: clamp(2rem, 6vw, 4rem); }
  .sc-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); max-width: 14ch; }
  .sc-hero__sub { font-size: 1rem; max-width: 42ch; }
  /* Hero-Buttons auf Mobile auf Header-CTA-Größe reduzieren (User-Wunsch v2.6).
     Beide Buttons identisch breit: Container auf fit-content,
     Kinder strecken sich auf die Breite des breitesten Buttons. */
  .sc-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    width: fit-content;
  }
  .sc-hero__ctas .btn {
    padding: .55rem 1.1rem;
    font-size: .92rem;
    justify-content: center;
  }
  .sc-hero__trust { gap: .8rem; font-size: .75rem; }

  /* Page-Hero schmaler */
  .sc-page-hero { margin-top: 80px; min-height: 360px; padding: 4rem 0 2.5rem; }
  .sc-page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  /* Drawer beginnt UNTER dem Header (top:80px) — Logo + CTA bleiben sichtbar */
  .sc-drawer {
    inset: 80px 0 0 0;          /* top, right, bottom, left */
    padding: 0;
    overflow: hidden;
  }
  .sc-drawer[aria-hidden="false"] { display: flex; flex-direction: column; }
  /* Topbar im Drawer wird komplett ausgeblendet — Header bleibt darüber */
  .sc-drawer__topbar { display: none !important; }
  /* CTA-Box im Drawer raus — Header-CTA reicht */
  .sc-drawer__cta { display: none !important; }
  /* Mobile-Drawer-Items: Downloads + Mitmachen ausblenden (nicht relevant in mobiler Top-Nav) */
  .sc-drawer__links li.is-secondary { display: none; }
  /* Menü zentriert + volle Breite anklickbar */
  .sc-drawer nav[aria-label*="mobil"] {
    flex: 1;
    display: flex; align-items: center;
    padding: 1rem 0;
    min-height: 0;
  }
  .sc-drawer__links {
    width: 100%;
    gap: .35rem !important;
    flex-direction: column;
    padding: 0 !important;
  }
  .sc-drawer__links li { width: 100%; }
  .sc-drawer__links a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: var(--radius);
    font-size: clamp(1.1rem, 5.5vw, 1.4rem) !important;
    font-weight: 700;
    color: #fff !important;
    transition: background-color .2s;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .sc-drawer__links a:hover,
  .sc-drawer__links a:active { background: rgba(255,255,255,.06); }

  /* Footer-Brand-Block: Logo + Tagline nebeneinander */
  .sc-footer__brand-block-inner {
    grid-template-columns: auto 1fr !important;
    gap: 1rem !important;
    align-items: center;
  }
  .sc-footer__brand-logo picture,
  .sc-footer__brand-logo img { height: 84px !important; }
  .sc-footer__brand-tagline {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    max-width: none !important;
  }

  /* Mosaic-Galerie: 7. Bild ausblenden, sauberes 2x3-Layout */
  .sc-mosaic { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 160px; }
  .sc-mosaic__item:nth-child(7) { display: none; }
  .sc-mosaic__item--tall { grid-row: span 1 !important; }
  .sc-mosaic__item--wide { grid-column: span 1 !important; }

  /* Sponsoren-Strip: 4 Logos statt 5 */
  .sc-footer__sponsors-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
  .sc-footer__sponsors-item:nth-child(5) { display: none; }

  /* Social-Icons als 2x2-Grid */
  .sc-social {
    display: grid !important;
    grid-template-columns: repeat(2, max-content) !important;
    gap: .6rem !important;
  }

  /* Footer-Copyright auf Mobile kürzer */
  .sc-footer__copyright-long { display: none; }
  .sc-footer__copyright-short { display: inline; }

  /* Mitmachen-Buttons auf Mobile gleich breit + gestapelt */
  .sc-section .container-main p > .btn {
    display: block; width: 100%;
    text-align: center; justify-content: center;
    margin-bottom: .8rem;
  }
  .sc-section .container-main p > .btn:last-child { margin-bottom: 0; }
}
@media (min-width: 1024px) {
  .sc-footer__copyright-short { display: none; }
  .sc-footer__copyright-long { display: inline; }
}

/* Desktop: Hero-Buttons gleich breit über einheitliche min-width */
@media (min-width: 1024px) {
  .sc-hero__ctas .btn { min-width: 280px; justify-content: center; }
}

/* reCAPTCHA-Badge unsichtbar (Hinweis kommt im Form-Footer) */
.grecaptcha-badge { visibility: hidden !important; }

/* reCAPTCHA-Hinweis im Form-Footer */
.sc-form__recaptcha-note {
  margin-top: .5rem;
  font-size: .75rem;
  line-height: 1.4;
  color: rgba(255,255,255,.55);
}
.sc-form__recaptcha-note a { color: rgba(255,255,255,.85); }
.sc-form--light .sc-form__recaptcha-note { color: var(--text-muted); }
.sc-form--light .sc-form__recaptcha-note a { color: var(--accent-dark); }

/* ---------- 14. Scroll-to-Top FAB (Master-Prompt §11.1) ---------- */
.sc-stt {
  position: fixed; left: 1.25rem; bottom: calc(1.25rem + env(safe-area-inset-bottom,0px));
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); border: 1.5px solid #fff; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(24px) scale(.6) rotate(-30deg);
  transition: opacity .35s ease, transform .45s cubic-bezier(.34,1.56,.64,1),
              background-color .25s, box-shadow .25s, border-color .25s;
  z-index: 90;
  box-shadow: 0 6px 22px rgba(242,116,5,.5), 0 2px 6px rgba(0,0,0,.25);
  -webkit-tap-highlight-color: transparent;
}
.sc-stt.sc-stt--show {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1) rotate(0deg);
  animation: sc-stt-wiggle 7s ease-in-out 3.5s infinite;
}
.sc-stt:hover {
  background: var(--primary-hover);
  animation: none;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 14px 28px rgba(242,116,5,.6), 0 4px 10px rgba(0,0,0,.35);
}
.sc-stt:hover svg { animation: sc-stt-bounce .55s ease-in-out infinite; }
.sc-stt:active { transform: translateY(-1px) scale(.94); transition-duration: .1s; }
.sc-stt.sc-stt--fly svg { animation: sc-stt-rocket .65s cubic-bezier(.55,0,.55,1) forwards; }
.sc-stt svg { display: block; will-change: transform; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.45)); }
@media (prefers-reduced-motion: reduce) {
  .sc-stt, .sc-stt.sc-stt--show, .sc-stt:hover svg, .sc-stt.sc-stt--fly svg { animation: none !important; }
}
@keyframes sc-stt-wiggle {
  0%,86%,100% { transform: translateY(0) rotate(0); }
  88% { transform: translateY(-4px) rotate(-12deg); }
  91% { transform: translateY(-4px) rotate(10deg); }
  94% { transform: translateY(-2px) rotate(-6deg); }
  97% { transform: translateY(0) rotate(0); }
}
@keyframes sc-stt-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes sc-stt-rocket {
  0% { transform: translateY(0); opacity: 1; }
  45% { transform: translateY(-26px); opacity: 0; }
  46% { transform: translateY(22px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- 15. Utilities ---------- */
.sc-eyebrow + h2 { margin-top: 0; }
.sc-section__head { max-width: 760px; margin-bottom: 2.5rem; }
.sc-section__head--center { margin-inline: auto; text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--primary); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius);
  z-index: 100;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* Sticky Mobile-CTA (auf Mobile dezent unten) */
.sc-mobile-cta {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom,0px));
  right: 1rem;
  z-index: 80;
  display: none;
}
@media (max-width: 1023px) {
  .sc-mobile-cta { display: inline-flex; }
  .sc-mobile-cta .btn { box-shadow: 0 8px 24px rgba(15,59,64,.25); }

  /* Mitgliedsantrag-Bestätigungen: schmaleres Padding und sicherer Wort-Umbruch
     (Texte enthalten lange Wörter wie HUNDEHAFTPFLICHTVERSICHERUNG) */
  .sc-form--light fieldset {
    padding: 1rem;
  }
  .sc-form--light .sc-form__check {
    padding: .75rem .8rem;
    gap: .5rem;
  }
  .sc-form--light .sc-form__check span {
    font-size: .88rem;
    line-height: 1.4;
  }
}
