:root {
  /* Blau aufgegriffen von der aktuellen Homepage (#07509a) */
  --blau-900: #063b72;
  --blau-700: #07509a;
  --blau-500: #1166b0;
  --blau-300: #7fb3e0;
  --blau-100: #eaf4fc;
  --blau-50:  #f6faff;
  --gelb-500: #ffb22e;
  --gelb-400: #ffc45c;
  --koralle:  #ff6b5d;
  --koralle-text: #c0392b;
  --gruen:    #2faa6a;
  --text:     #1c2733;
  --text-mut: #56657a;
  --weiss:    #ffffff;
  --rand:     #dfe7f0;
  --schatten: 0 10px 30px rgba(45, 110, 169, 0.14);
  --schatten-sm: 0 4px 14px rgba(45, 110, 169, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Bewegung reduzieren, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ankerziele nicht unter dem fixen Header verstecken */
[id] { scroll-margin-top: 88px; }

/* Skip-Link: nur bei Tastatur-Fokus sichtbar */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blau-700); color: #fff; font-weight: 700;
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 0; text-decoration: none; outline: 3px solid var(--gelb-500); outline-offset: 2px; }

/* Einheitlicher, gut sichtbarer Tastatur-Fokus (WCAG 2.4.7 / 2.4.13) */
:focus-visible {
  outline: 3px solid var(--blau-500);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav-cta:focus-visible { outline-color: var(--blau-900); }
.btn-ghost:focus-visible,
.hero a:focus-visible { outline-color: #fff; outline-offset: 3px; }

/* Hohe Kontraste / erzwungene Farbschemata (WCAG 1.4.11) */
@media (forced-colors: active) {
  .btn, .nav-cta, .term-card.is-next, .fact, .info-line { border: 1px solid; }
  :focus-visible { outline: 3px solid CanvasText; }
}

/* Druckdarstellung */
@media print {
  header, .burger, .lightbox, .map-box iframe, .hero-actions, .skip-link { display: none !important; }
  .hero { background: #fff !important; color: #000 !important; }
  .hero h1, .hero .lead, .hero .meta span, .hero .label { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #333; }
  * { box-shadow: none !important; }
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--blau-900); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-mut); }

a { color: var(--blau-500); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--gelb-500); color: var(--blau-900); box-shadow: 0 8px 20px rgba(255,178,46,.35); }
.btn-primary:hover { background: var(--gelb-400); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: #fff; color: var(--blau-700); border: 1.5px solid var(--rand); box-shadow: var(--schatten-sm); }
.btn-outline:hover { border-color: var(--blau-300); }

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rand);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; }
.brand-lockup { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-lockup:hover { text-decoration: none; }
.brand-icon { width: 48px; height: 48px; object-fit: contain; display: block; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-titel { font-family: var(--font-display, inherit); font-weight: 800; font-size: 1.25rem; color: var(--blau-900); letter-spacing: -0.01em; }
.brand-sub { font-size: .78rem; font-weight: 600; color: var(--blau-500); margin-top: 1px; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { color: var(--text); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--blau-500); text-decoration: none; }
.nav-cta { background: var(--blau-500); color: #fff !important; padding: .6rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { background: var(--blau-700); }
.burger { display: none; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; background: none; border: 0; font-size: 1.7rem; color: var(--blau-900); cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: #063b72 url('../img/markt-hero-luft.jpg') center/cover no-repeat;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(110deg, rgba(6,45,90,.92) 0%, rgba(7,80,154,.62) 52%, rgba(7,80,154,.18) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.hero p.lead { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 36ch; margin-bottom: 1.6rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  padding: .35rem .9rem; border-radius: 999px; font-weight: 600; font-size: .9rem; margin-bottom: 1.2rem;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Nächster-Termin-Karte */
.next-card {
  background: #fff; color: var(--text);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--schatten);
}
.next-card .label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blau-500); }
.next-date { display: flex; align-items: center; gap: 1rem; margin: .6rem 0 1rem; }
.next-date .day { font-size: 3.2rem; font-weight: 800; color: var(--blau-900); line-height: 1; }
.next-date .mon { font-size: 1.05rem; font-weight: 700; color: var(--koralle-text); text-transform: uppercase; }
.next-date .yr  { color: var(--text-mut); font-size: .9rem; }
.countdown { display: flex; gap: .5rem; margin-bottom: 1.1rem; }
.cd-box { background: var(--blau-50); border: 1px solid var(--rand); border-radius: var(--radius-sm); padding: .5rem .2rem; text-align: center; flex: 1; }
.cd-box b { display: block; font-size: 1.4rem; color: var(--blau-900); }
.cd-box span { font-size: .7rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: .05em; }
.next-card .meta { display: flex; gap: 1.2rem; font-size: .9rem; color: var(--text-mut); margin-bottom: 1.1rem; flex-wrap: wrap; }
.next-card .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.next-card .btn { width: 100%; justify-content: center; }

/* ---------- QUICK-FACTS ---------- */
.facts { margin-top: -2.8rem; position: relative; z-index: 5; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fact {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--schatten-sm); text-align: center;
}
.fact .ic { width: 48px; height: 48px; margin: 0 auto .6rem; border-radius: 14px; display: grid; place-items: center; background: var(--blau-100); }
.fact b { display: block; color: var(--blau-900); font-size: 1.05rem; }
.fact span { font-size: .88rem; color: var(--text-mut); }

/* ---------- SECTION BASE ---------- */
section.block { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.sec-head { text-align: center; max-width: 60ch; margin: 0 auto 2.2rem; }
.sec-head .kicker { color: var(--blau-500); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.sec-head p { margin-top: .5rem; }

/* Zielgruppen-Karten */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.aud-card {
  border-radius: var(--radius); padding: 2rem; border: 1px solid var(--rand);
  position: relative; overflow: hidden;
}
.aud-card.visit { background: linear-gradient(160deg, var(--blau-50), #fff); }
.aud-card.sell  { background: linear-gradient(160deg, #fff7e9, #fff); }
.aud-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.aud-card ul { list-style: none; margin: 1rem 0 1.4rem; }
.aud-card li { display: flex; gap: .6rem; padding: .3rem 0; color: var(--text); }
.aud-card li::before { content: "✓"; color: var(--gruen); font-weight: 800; }
.aud-tag { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .7rem; border-radius: 999px; display: inline-block; margin-bottom: .8rem; }
.visit .aud-tag { background: var(--blau-100); color: var(--blau-700); }
.sell  .aud-tag { background: #ffe9c2; color: #8a5800; }

/* Termine ---------- */
.termine { background: var(--blau-50); }
.term-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.term-card {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius-sm);
  padding: 1.1rem; display: flex; align-items: center; gap: .9rem; transition: transform .15s, box-shadow .15s;
}
.term-card:hover { transform: translateY(-3px); box-shadow: var(--schatten-sm); }
.term-card.is-next { border-color: var(--gelb-500); box-shadow: 0 0 0 2px var(--gelb-400); }
.term-card.is-past { opacity: .5; filter: grayscale(.45); }
.term-card.is-past:hover { transform: none; box-shadow: none; }
.term-card.is-past .term-cal { background: #eef1f5; }
.term-card.is-past .term-cal b,
.term-card.is-past .term-cal span { color: var(--text-mut); }
.term-past-flag { font-size: .68rem; font-weight: 800; color: var(--text-mut); }
.term-cal { text-align: center; background: var(--blau-100); border-radius: 10px; padding: .5rem .65rem; flex: 0 0 auto; }
.term-cal b { display: block; font-size: 1.5rem; color: var(--blau-900); line-height: 1; }
.term-cal span { font-size: .72rem; color: var(--koralle-text); font-weight: 700; text-transform: uppercase; }
.term-info b { color: var(--text); }
.term-info span { display: block; font-size: .82rem; color: var(--text-mut); }
.term-next-flag { font-size: .68rem; font-weight: 800; color: #9a6400; }

/* Preise ---------- */
.preis-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.preis-list { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); box-shadow: var(--schatten-sm); overflow: hidden; }
.preis-row { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--rand); }
.preis-row:last-child { border-bottom: 0; }
.preis-row b { color: var(--blau-900); font-size: 1.05rem; }
.preis-row .amt { font-size: 1.25rem; font-weight: 800; color: var(--blau-500); white-space: nowrap; }
.preis-note { background: var(--blau-100); border-radius: var(--radius); padding: 1.5rem; }
.preis-note h3 { margin-bottom: .6rem; }
.link-pfeil { display: inline-block; color: var(--blau-700); font-weight: 700; text-decoration: none; }
.link-pfeil:hover { color: var(--blau-900); text-decoration: underline; }

/* Standgebühr-Beispiele (Verkaufsfläche erklärt) */
.preis-beispiele { margin-top: 2.4rem; }
.preis-beispiele > h3 { text-align: center; color: var(--blau-900); }
.preis-beispiele > p { text-align: center; max-width: 62ch; margin: .4rem auto 1.6rem; }
.beispiel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.beispiel {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius-sm);
  box-shadow: var(--schatten-sm); padding: 1.1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.beispiel .diagramm {
  width: 100%; min-height: 104px; background: var(--blau-50);
  border: 1px solid var(--rand); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 5px; padding: 12px 8px 6px; margin-bottom: .5rem;
}
.diagramm .reihe { display: flex; gap: 5px; justify-content: center; }
.diagramm .tisch {
  height: 20px; border-radius: 4px;
  background: linear-gradient(180deg, var(--gelb-400), var(--gelb-500));
  border: 1px solid #e0962a;
}
.diagramm .stange {
  height: 20px; border-radius: 4px;
  background: repeating-linear-gradient(45deg, var(--blau-300) 0, var(--blau-300) 4px, #fff 4px, #fff 8px);
  border: 1px dashed var(--blau-500);
}
.diagramm .lform { display: flex; align-items: flex-end; gap: 4px; }
.diagramm .stange.hoch { width: 18px; height: 44px; }
.diagramm .tisch.hoch { width: 18px; height: 44px; }
.diagramm .pavillon {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  width: 66px; height: 60px; padding: 6px; box-sizing: border-box;
  border: 2px dashed var(--blau-400); border-radius: 8px; background: rgba(17,102,176,.06);
}
.diagramm .pavillon .pav-label {
  position: absolute; top: 3px; left: 0; right: 0;
  font-size: .56rem; color: var(--blau-700); font-weight: 700; text-align: center;
}
.diagramm .front {
  width: 100%; border-top: 2px dashed var(--blau-300);
  margin-top: 5px; padding-top: 3px; font-size: .68rem; color: var(--blau-700);
}
.beispiel b { color: var(--blau-900); font-size: .98rem; }
.beispiel .masse { font-size: .8rem; color: var(--text-mut); }
.beispiel .preis { margin-top: .25rem; font-size: 1.3rem; font-weight: 800; color: var(--blau-500); }
.beispiel .hinweis { font-size: .72rem; color: #9a6400; font-weight: 700; line-height: 1.3; }
.preis-legende { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.1rem; font-size: .82rem; color: var(--text-mut); }
.preis-legende span { display: inline-flex; align-items: center; gap: .4rem; }
.preis-legende .sw { width: 16px; height: 12px; border-radius: 3px; }
.preis-legende .sw.tisch { background: linear-gradient(180deg, var(--gelb-400), var(--gelb-500)); border: 1px solid #e0962a; }
.preis-legende .sw.stange { background: repeating-linear-gradient(45deg, var(--blau-300) 0, var(--blau-300) 4px, #fff 4px, #fff 8px); border: 1px dashed var(--blau-500); }
.preis-legende .sw.pavillon { background: rgba(17,102,176,.06); border: 1.5px dashed var(--blau-400); }

/* Regeln (Akkordeon) ---------- */
.acc { max-width: 800px; margin: 0 auto; display: grid; gap: .7rem; }
details.rule { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius-sm); padding: .2rem 1.2rem; box-shadow: var(--schatten-sm); }
details.rule summary { cursor: pointer; font-weight: 700; color: var(--blau-900); padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.rule summary::-webkit-details-marker { display: none; }
details.rule summary::after { content: "+"; font-size: 1.5rem; color: var(--blau-500); font-weight: 400; }
details.rule[open] summary::after { content: "–"; }
details.rule p, details.rule ul { padding-bottom: 1rem; }
details.rule ul { margin-left: 1.1rem; color: var(--text-mut); }

/* Über uns ---------- */
.about { background: var(--blau-900); color: #fff; }
.about h2 { color: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.about p { color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.stat-row { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.stat b { font-size: 2rem; color: var(--gelb-400); display: block; line-height: 1; }
.stat span { font-size: .85rem; color: rgba(255,255,255,.75); }
.about-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 2rem; }
.about-card h3 { color: var(--gelb-400); }
.about-card ul { list-style: none; margin-top: 1rem; }
.about-card li { padding: .45rem 0; color: rgba(255,255,255,.9); display: flex; gap: .6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.about-card li::before { content: "♥"; color: var(--koralle); }

/* Kompakte Zeitleiste (Über uns) */
.about-timeline { display: flex; gap: 1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.about-timeline li { list-style: none; flex: 1 1 140px; min-width: 140px; padding-top: .9rem; border-top: 2px solid rgba(255,255,255,.22); position: relative; }
.about-timeline li::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--gelb-400); }
.about-timeline b { display: block; color: var(--gelb-400); font-size: 1.15rem; line-height: 1.1; }
.about-timeline span { display: block; color: rgba(255,255,255,.82); font-size: .86rem; margin-top: .2rem; }

/* Vertikale Zeitleiste (Vereinsseite, heller Hintergrund) */
.regel-doc ul.vita { max-width: 760px; margin: 1.5rem auto 0; list-style: none; }
.regel-doc ul.vita li { position: relative; padding: 0 0 1.8rem 2.2rem; border-left: 2px solid var(--rand); }
.regel-doc ul.vita li:last-child { padding-bottom: 0; }
.regel-doc ul.vita li::before { content: ""; position: absolute; left: -9px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--gelb-500); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--rand); }
.regel-doc ul.vita .jahr { display: block; font-weight: 800; color: var(--blau-700); font-size: 1.05rem; margin-bottom: .15rem; }
.regel-doc ul.vita p { margin: 0; color: var(--text); }

/* Anfahrt + Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.map-box { background: var(--blau-100); border-radius: var(--radius); min-height: 320px; overflow: hidden; border: 1px solid var(--rand); position: relative; }
.map-box iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
.map-link { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.94); color: var(--blau-700); font-size: .85rem; font-weight: 600; padding: .45rem .7rem; border-radius: 999px; box-shadow: var(--schatten-sm); text-decoration: none; }
.map-link:hover { background: #fff; color: var(--blau-900); }
.info-card { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--schatten-sm); }
.info-card h3 { margin-bottom: 1rem; }
.info-line { display: flex; gap: .8rem; padding: .55rem 0; border-bottom: 1px solid var(--rand); }
.info-line:last-child { border-bottom: 0; }
.info-line .ic { color: var(--blau-500); flex: 0 0 auto; }

/* Footer ---------- */
footer { background: #0a2138; color: rgba(255,255,255,.75); padding: 3rem 0 1.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
footer h4 { color: #fff; margin-bottom: .9rem; font-size: 1rem; }
footer a { color: rgba(255,255,255,.75); display: block; padding: .2rem 0; }
footer a:hover { color: var(--gelb-400); text-decoration: none; }
.foot-brand { display: flex; align-items: center; gap: .7rem; color: #fff; font-weight: 800; margin-bottom: .8rem; }
.foot-logo-mark {
  width: 42px; height: 42px; border: 1.6px solid rgba(255,255,255,.75); border-radius: 7px;
  background: rgba(255,255,255,.05); display: grid; place-items: center; flex: 0 0 auto;
}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .85rem; }

/* Social-Media-Links */
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.social a:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); transform: translateY(-2px); text-decoration: none; }
.social svg { width: 20px; height: 20px; fill: currentColor; }
.social-light a { background: var(--blau-50); border: 1px solid var(--rand); color: var(--blau-700); }
.social-light a:hover { background: var(--blau-100); border-color: var(--blau-300); }
.info-social { display: flex; align-items: center; gap: .7rem; padding-top: .9rem; margin-top: .3rem; border-top: 1px solid var(--rand); }
.info-social b { color: var(--text); font-size: .92rem; }

/* ---------- FÖRDERUNGEN (Unterseite) ---------- */
.subhero { background: var(--blau-900); color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem) 0; }
.subhero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .6rem; }
.subhero p { color: rgba(255,255,255,.85); max-width: 60ch; }
.subhero .crumb { display: inline-block; margin-bottom: 1rem; font-size: .9rem; color: rgba(255,255,255,.7); }
.subhero .crumb a { color: var(--gelb-400); }

.foerder-summary { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.4rem; }
.foerder-summary .stat b { font-size: 1.8rem; color: var(--gelb-400); display: block; line-height: 1; }
.foerder-summary .stat span { font-size: .85rem; color: rgba(255,255,255,.75); }

.foerder-list { max-width: 880px; margin: 0 auto; }
.foerder-year { margin-bottom: 2rem; }
.foerder-year > h2 {
  position: sticky; top: 72px; z-index: 10;
  background: var(--weiss); display: inline-block;
  font-size: 1.4rem; color: var(--blau-700);
  padding: .3rem .9rem; border-radius: 999px; border: 1px solid var(--rand);
  box-shadow: var(--schatten-sm); margin-bottom: 1rem;
}
.foerder-item {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.2rem;
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius-sm);
  padding: 1rem 1.3rem; margin-bottom: .7rem; box-shadow: var(--schatten-sm);
}
.foerder-item .ziel b { color: var(--blau-900); display: block; font-size: 1.02rem; }
.foerder-item .ziel span { color: var(--text-mut); font-size: .9rem; }
.foerder-item .betrag { color: var(--blau-500); font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.foerder-meilenstein {
  background: var(--blau-100); border: 1px dashed var(--blau-300); color: var(--blau-700);
  border-radius: var(--radius-sm); padding: 1rem 1.3rem; margin-bottom: .7rem; font-weight: 600;
}
.foerder-hinweis { background: var(--blau-50); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.4rem; color: var(--text-mut); font-size: .92rem; margin-top: 1.5rem; }

/* ---------- MARKTREGELN (Unterseite) ---------- */
.regel-doc { max-width: 820px; margin: 0 auto; }
.regel-doc h2 {
  font-size: 1.3rem; color: var(--blau-700); margin: 1.8rem 0 .6rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--blau-100);
}
.regel-doc h2:first-child { margin-top: 0; }
.regel-doc h3 { font-size: 1.05rem; color: var(--blau-900); margin: 1.2rem 0 .4rem; }
.regel-doc p { color: var(--text); margin-bottom: .8rem; }
.regel-doc ul { margin: 0 0 .8rem 1.3rem; color: var(--text); }
.regel-doc li { padding: .2rem 0; }

/* ---------- IMPRESSIONEN / GALERIE ---------- */
.galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.galerie-item { position: relative; padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten-sm); aspect-ratio: 4 / 3; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.galerie-item:hover img, .galerie-item:focus-visible img { transform: scale(1.06); }
.galerie-item:focus-visible { outline: 3px solid var(--blau-500); outline-offset: 2px; }
.galerie-jahr { position: absolute; left: 10px; bottom: 10px; background: rgba(6,45,90,.82); color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .02em; padding: .25rem .6rem; border-radius: 999px; pointer-events: none; }

/* ---------- LIGHTBOX ---------- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(6,45,90,.92); align-items: center; justify-content: center; padding: 4vh 4vw; }
.lightbox.offen { display: flex; }
.lb-figur { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lightbox .lb-bild { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-jahr { color: #fff; font-size: 1rem; font-weight: 700; background: rgba(255,255,255,.15); padding: .35rem 1rem; border-radius: 999px; }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.15); color: #fff; border: 0; cursor: pointer; border-radius: 999px; line-height: 1; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-close { top: 18px; right: 22px; width: 46px; height: 46px; font-size: 1.8rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid, .preis-grid, .about-grid, .contact-grid, .audience { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .term-grid { grid-template-columns: 1fr 1fr; }
  .beispiel-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: 1fr 1fr; }
  .nav { position: relative; }
  .nav-links { display: none; }
  .nav-links.offen {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--rand);
    box-shadow: var(--schatten-sm);
    padding: .6rem 1rem 1rem;
  }
  .nav-links.offen a { width: 100%; padding: .7rem .2rem; font-size: 1.05rem; }
  .nav-links.offen .nav-cta { width: auto; align-self: flex-start; margin-top: .4rem; }
  .burger { display: flex; }
  .burger.aktiv { color: var(--blau-500); }
  .brand-icon { width: 40px; height: 40px; }
  .brand-titel { font-size: 1.05rem; }
  .brand-sub { font-size: .72rem; }
}
@media (max-width: 540px) {
  .facts-grid, .term-grid { grid-template-columns: 1fr; }
  .facts { margin-top: 1.5rem; }
  .foerder-item { flex-direction: column; gap: .4rem; }
  .foerder-year > h2 { top: 64px; }
  [id] { scroll-margin-top: 72px; }
}
