/* ==========================================================================
   Herne macht grün 2026 – Elektro Sprick als Aussteller
   Mobile-first, keine Abhängigkeiten.

   Farblogik dieser Seite:
   Grün ist AKZENTFARBE, nicht Flächenfarbe. Es steht dort, wo es die
   Kooperation trägt – im Wort „grün", in der Subheadline, im Logo der Stadt
   Herne, in Icons und Auszeichnungen – und auf genau zwei dunklen Ankern
   (Sprick-Panel im Doppelprogramm, Abschluss-Sektion). Alle übrigen Flächen
   sind Weiß oder ein neutrales Hellgrau. Sprick-Rot bleibt ausschließlich
   AKTIONSFARBE (Buttons, Labels).

   Vorher trug die Seite Grün als Fläche (dunkelgrüner Hero, grün getönte
   Sektionen). Das war dem Kunden zu viel Grün und zu wenig schlicht – der
   Anlass gehört der Stadt, die Seite gehört Sprick.

   Das Grün ist nicht erfunden: #0a7d36 ist die Hausfarbe aus dem Logo der
   Stadt Herne (aus stadt_herne_logo_header.svg ausgelesen), die restliche
   Skala ist davon abgeleitet. Poppins, Rot #E30A1A, Pill-Buttons und
   16px-Karten kommen unverändert aus dem Sprick-CI.
   ========================================================================== */

/* ---------- Poppins, lokal gehostet (kein Google-CDN) -------------------- */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/poppins-800.woff2') format('woff2'); }

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Aktionsfarbe – Sprick-CI */
  --red: #e30a1a;
  --red-dark: #b80815;
  --red-soft: #fdedee;

  /* Themenfarbe – abgeleitet vom Herner Hausgrün #0a7d36 */
  --green-950: #052618;
  --green-900: #06301c;
  --green-800: #0a4a2b;
  --green-700: #0a7d36;
  --green-600: #0e8f3f;
  --green-500: #12a34a;
  --green-300: #7fd4a2;
  --green-100: #d9f0e2;
  --green-soft: #edf7f1;   /* nur noch für kleine Akzentflächen: Chips, Icons */

  --ink: #1a1a1a;
  --ink-deep: #080808;
  --gray-700: #3d3d44;
  --gray-600: #53535c;
  --gray-400: #8a8a93;
  --gray-300: #cfcfd4;
  --gray-200: #e6e6e6;
  --gray-100: #f5f5f5;
  --white: #fff;

  /* Ruhige Sektionsfläche. Ein Hauch Grünstich (G eine Stufe über R/B), damit
     die Seite thematisch zusammenhängt, ohne als „grüne Fläche" zu lesen. */
  --surface: #f5f7f5;

  /* Beim Energiewende-Tag standen diese drei als nackte Hex-Werte im CSS.
     Hier als Token, damit ein Farbwechsel eine Stelle bleibt. */
  --on-dark: #b9cdc1;        /* Fließtext auf dunkelgrünem Grund */
  --label-on-dark: #7fd4a2;  /* Label auf dunklem Grund */
  --gold: #f5a623;           /* Sterne */

  --fs-xs: .75rem;      /* 12px – Labels */
  --fs-sm: .8125rem;    /* 13px */
  --fs-base: .9375rem;  /* 15px – Fließtext */
  --fs-lead: 1.0625rem; /* 17px – Einleitungen */
  --fs-h3: 1.125rem;    /* 18px */

  --wrap: 1120px;
  --gutter: 1.25rem;
  --r-pill: 999px;
  --r-card: 16px;
  --r-input: 10px;

  --shadow-md: 0 2px 8px rgba(0,0,0,.05), 0 10px 26px rgba(0,0,0,.07);
  /* Auf hellem Grund reicht ein ruhiger Schatten – der frühere 28%-Schlagschatten
     stammt aus der Zeit, als die Karte auf dunkelgrüner Fläche lag. */
  --shadow-lift: 0 2px 6px rgba(8,20,14,.05), 0 14px 34px rgba(8,20,14,.10);
}
@media (min-width: 48rem) { :root { --gutter: 2rem; } }

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.015em; text-wrap: pretty; }
h1 { font-size: 2rem; line-height: 1.15; font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: 1.4375rem; line-height: 1.25; }
h3 { font-size: var(--fs-h3); line-height: 1.35; }
@media (min-width: 48rem) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.875rem; }
}
@media (min-width: 64rem) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.125rem; }
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--red); }
a:hover { color: var(--red-dark); }
strong, b { font-weight: 600; color: inherit; }
ul { margin: 0 0 1em; padding-left: 1.1em; }
li { margin-bottom: .35em; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 3rem; }
.section--tight { padding-block: 2rem; }
.section--soft { background: var(--surface); }
.section--dark { background: var(--green-900); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
@media (min-width: 48rem) {
  .section { padding-block: 4.5rem; }
  .section--tight { padding-block: 2.75rem; }
}

.head { margin-bottom: 2rem; }
.head--center { text-align: center; margin-inline: auto; max-width: 42rem; }
.head p { font-size: var(--fs-lead); color: var(--gray-600); margin-bottom: 0; }
.section--dark .head p { color: var(--on-dark); }

.label {
  display: block;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); margin-bottom: .6rem;
}
.section--dark .label { color: var(--label-on-dark); }

.grid { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 62rem) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-size: var(--fs-base); font-weight: 600; line-height: 1.2;
  padding: .8rem 1.4rem; border: 1.5px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.3); }
.section--dark .btn--ghost:hover { border-color: var(--white); color: var(--white); }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header__inner { display: flex; align-items: center; gap: .75rem; min-height: 3.75rem; }
.site-header__logo img { height: 2.15rem; width: auto; }
.site-header__cta { margin-left: auto; padding: .6rem 1.1rem; font-size: var(--fs-sm); }
@media (min-width: 56rem) {
  .site-header__inner { min-height: 4.25rem; }
  .site-header__logo img { height: 2.5rem; }
}

/* ==========================================================================
   Hero – hell und schlicht.
   Die Fläche ist ein neutrales Hellgrau, die weiße Formularkarte hebt sich
   davon durch Weiß und Schatten ab. Grün trägt hier nur die Typografie:
   das Wort „grün", die Subheadline, die Icons und das Logo der Stadt Herne.
   Der Anlass ist damit sichtbar, ohne dass die Seite grün gestrichen ist.
   ========================================================================== */
.hero {
  position: relative;
  background: var(--surface);
  /* Ein einziger, sehr flacher Grünschimmer oben rechts – gerade genug, dass
     die Fläche nicht wie unbeabsichtigtes Grau wirkt. */
  background-image: radial-gradient(70rem 34rem at 88% -25%, rgba(10,125,54,.09), transparent 62%);
  color: var(--gray-600);
  padding-block: 2rem 2.75rem;
  border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 62rem) { .hero { padding-block: 3rem 3.75rem; } }

.hero__inner { display: grid; gap: 1.75rem; }
@media (min-width: 62rem) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; gap: 2.75rem; align-items: start; }
}
@media (min-width: 75rem) { .hero__inner { gap: 3.25rem; } }

.hero h1 { color: var(--ink); margin-bottom: .45rem; }
/* „grün." bekommt das Herner Hausgrün – dieselbe Geste wie auf dem Key-Visual
   des Events, damit Anzeige und Landingpage als ein Stück lesen. Auf hellem
   Grund ist das der kräftige Ton #0a7d36, nicht das aufgehellte Grün. */
.hero h1 em { font-style: normal; color: var(--green-700); }

/* Kooperationszeile mit dem Logo der Stadt Herne. Steht bewusst VOR der H1:
   Der Anlass ist die Stadt, Sprick ist Gast – diese Reihenfolge sagt das,
   ohne dass es jemand ausformulieren muss. Das Logo steht frei statt in einer
   Pille, damit es die Größe bekommt, in der man es auch erkennt. */
.hero__eventmark {
  display: inline-flex; align-items: center; gap: .85rem;
  margin-bottom: 1.15rem;
}
.hero__eventmark img { height: 2rem; width: auto; }
.hero__eventmark-sep { align-self: stretch; width: 1px; background: var(--gray-300); }
.hero__eventmark-txt {
  font-size: var(--fs-xs); font-weight: 600; line-height: 1.4;
  letter-spacing: .02em; color: var(--gray-600);
}
@media (min-width: 62rem) {
  .hero__eventmark { gap: 1rem; margin-bottom: 1.4rem; }
  .hero__eventmark img { height: 2.5rem; }
}

.hero__tagline {
  font-size: 1.125rem; font-weight: 700; line-height: 1.35; color: var(--green-700);
  letter-spacing: -.01em; margin-bottom: .9rem;
}
@media (min-width: 62rem) { .hero__tagline { font-size: 1.3125rem; } }

.hero__lead { font-size: var(--fs-lead); color: var(--gray-600); margin-bottom: 1.5rem; max-width: 34rem; }

.hero__facts { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.hero__facts li { display: flex; align-items: center; gap: .65rem; margin: 0; font-size: var(--fs-base); color: var(--gray-600); }
.hero__facts svg { color: var(--green-700); flex: none; }
.hero__facts b { color: var(--ink); font-weight: 600; }

/* Siegel: drei sehr unterschiedliche Seitenverhältnisse (1:1, 4,5:1, 6:1).
   Gleiche Höhe ließe das quadratische TÜV-Siegel winzig wirken – deshalb je
   Siegel eine eigene, optisch abgestimmte Höhe. Die weiße Fläche bleibt: die
   Siegeldateien haben selbst weißen Grund und säßen auf dem Hellgrau als
   sichtbare Kästen. */
.hero__seals {
  display: flex; align-items: center; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--gray-200);
}
.hero__seals span {
  display: inline-flex; align-items: center;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
  padding: .45rem .7rem;
}
.hero__seals img { width: auto; }
.hero__seals .seal-tuev { height: 2.125rem; }
.hero__seals .seal-vde  { height: 1.125rem; }
.hero__seals .seal-eh   { height: 1.5rem; }
@media (min-width: 62rem) {
  .hero__seals .seal-tuev { height: 2.5rem; }
  .hero__seals .seal-vde  { height: 1.3125rem; }
  .hero__seals .seal-eh   { height: 1.75rem; }
}

.hero__trust { margin: 1rem 0 0; font-size: var(--fs-xs); line-height: 1.55; color: var(--gray-400); }
.hero__trust .stars { margin-right: .35rem; }
.hero__trust strong { color: var(--ink); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: .04em; }

/* ---------- Bildband ----------------------------------------------------- */
/* Steht frei zwischen Hero und Partnerleiste. Früher zog ein negativer
   Versatz das Bild in die Hero-Unterkante – auf der hellen Fläche gibt es
   keine Kante mehr, in die es greifen könnte, und das Bild klebte am
   ersten Bildschirm. Jetzt trägt es ringsum Luft. */
.photoband { margin: 2.5rem auto 0; position: relative; }
@media (min-width: 48rem) { .photoband { margin-top: 3.5rem; } }
/* 16:10 statt 16:8: Das Motiv ist 1,28:1, ein flacher Streifen schneidet
   zwangsläufig die Hälfte des Standes weg. Bei 16:10 bleiben Pavillondach mit
   Logo, der Monitor am linken Pfosten und der Tresen zusammen im Bild. */
.photoband img {
  width: 100%; border-radius: var(--r-card);
  aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 38%;
  box-shadow: var(--shadow-md);
}
@media (min-width: 48rem) { .photoband img { aspect-ratio: 16 / 10; object-position: 50% 42%; } }
.photoband figcaption {
  margin: .75rem .25rem 0;
  font-size: var(--fs-xs); color: var(--gray-400); text-align: center;
}

/* ---------- Formularkarte ------------------------------------------------ */
.form-card {
  background: var(--white); color: var(--gray-600);
  border: 1px solid var(--gray-200); border-radius: var(--r-card);
  padding: 1.35rem; box-shadow: var(--shadow-lift);
}
@media (min-width: 48rem) { .form-card { padding: 1.75rem; } }
.section--dark .form-card h2, .section--dark .form-card h3 { color: var(--ink); }
.section--soft .form-card, .section--dark .form-card { border: 1px solid transparent; }

.form-card__head { margin-bottom: 1.1rem; }
.form-card__head h2 { font-size: 1.25rem; margin-bottom: .3rem; }
.form-card__head p { font-size: var(--fs-sm); color: var(--gray-400); margin-bottom: 0; }
.form-card__free {
  display: inline-block; background: var(--green-soft); color: var(--green-700);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: var(--r-pill); margin-bottom: .7rem;
}

/* Vor- und Nachname nebeneinander, sobald Platz ist – zwei kurze Felder
   untereinander lassen das Formular unnötig lang wirken. */
.field-row { display: grid; gap: .85rem; }
@media (min-width: 24rem) { .field-row { grid-template-columns: 1fr 1fr; gap: .75rem; } }

.field { margin-bottom: .85rem; }
.field-row .field { margin-bottom: 0; }
.field label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
/* padding .8rem ergibt 44,6px Höhe – die Mindestgröße für Touch-Ziele. */
.field input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .85rem; border: 1.5px solid var(--gray-200); border-radius: var(--r-input);
  background: var(--white); transition: border-color .15s ease;
}
.field input::placeholder { color: var(--gray-300); }
.field input:focus { outline: none; border-color: var(--green-600); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field__hint { font-size: var(--fs-xs); line-height: 1.45; color: var(--gray-400); margin: .3rem 0 0; }
.field__error { display: none; font-size: var(--fs-xs); font-weight: 600; color: var(--red); margin: .3rem 0 0; }
.field input[aria-invalid="true"] ~ .field__error { display: block; }
/* Im Fehlerfall zählt die Korrektur, nicht die Erklärung. */
.field input[aria-invalid="true"] ~ .field__hint { display: none; }

/* Honeypot – unsichtbar für Menschen, ausfüllbar für Bots.
   Bewusst off-screen statt display:none, sonst überspringen ihn viele Bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: var(--fs-xs); line-height: 1.5; color: var(--gray-400); margin: .8rem 0 0; }
.form-note a { color: var(--gray-600); }
.form-status { display: none; margin: .8rem 0 0; padding: .7rem .85rem; border-radius: var(--r-input); font-size: var(--fs-sm); font-weight: 500; }
.form-status[data-state="error"] { display: block; background: var(--red-soft); color: var(--red-dark); }

/* ---------- Partnerleiste ------------------------------------------------ */
.partners { text-align: center; }
.partners__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.25rem; }
.partners__logos { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
/* Die beiden Marken haben stark abweichende Seitenverhältnisse: die Herner
   Wortmarke ist 6:1, das Sprick-Logo 1,5:1. Gleiche Höhe ließe Sprick winzig
   wirken – deshalb ist das Sprick-Logo deutlich höher gesetzt, damit beide
   optisch gleich viel Gewicht bekommen. */
.partners__logos img { width: auto; }
.partners__logos .logo-herne { height: 1.75rem; }
.partners__logos .logo-sprick { height: 2.5rem; }
.partners__sep { width: 1px; height: 2.25rem; background: var(--gray-200); }
@media (min-width: 48rem) {
  .partners__logos { gap: 2.75rem; }
  .partners__logos .logo-herne { height: 2.125rem; }
  .partners__logos .logo-sprick { height: 3.125rem; }
  .partners__sep { height: 2.75rem; }
}

/* ---------- Zahlenleiste ------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 1rem; text-align: center; }
@media (min-width: 48rem) { .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.facts__num { display: block; font-size: 1.375rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.facts__lbl { display: block; font-size: var(--fs-xs); color: var(--gray-400); margin-top: .1rem; }
@media (min-width: 48rem) { .facts__num { font-size: 1.625rem; } }

/* ==========================================================================
   Doppelprogramm – die wichtigste neue Komponente dieser Seite.
   Zwei Spalten machen ohne einen Satz Erklärung klar, wer was macht:
   links das Programm der Stadt, rechts der Sprick-Stand.
   ========================================================================== */
.duo { display: grid; gap: 1.25rem; }
@media (min-width: 56rem) { .duo { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }

.duo__panel {
  border-radius: var(--r-card); padding: 1.35rem;
  display: flex; flex-direction: column;
}
@media (min-width: 48rem) { .duo__panel { padding: 1.75rem; } }
/* Stadt-Panel: hell und zurückhaltend – es ist der Rahmen, nicht die Botschaft. */
.duo__panel--city { background: var(--white); border: 1px solid var(--gray-200); }
/* Sprick-Panel: dunkelgrün – der Grund, warum jemand das Formular ausfüllt. */
.duo__panel--sprick { background: var(--green-900); color: var(--on-dark); }
.duo__panel--sprick h3 { color: var(--white); }

.duo__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .85rem;
}
.duo__panel--city .duo__eyebrow { color: var(--green-700); }
.duo__panel--sprick .duo__eyebrow { color: var(--label-on-dark); }
.duo__eyebrow img { height: 1.1rem; width: auto; }

.duo__panel h3 { font-size: 1.1875rem; margin-bottom: .5rem; }
.duo__panel > p { font-size: var(--fs-sm); margin-bottom: 1.1rem; }

.duo__list { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: .55rem; }
.duo__list li { display: flex; align-items: flex-start; gap: .6rem; margin: 0; font-size: var(--fs-sm); line-height: 1.5; }
.duo__list svg { flex: none; width: 1.05rem; height: 1.05rem; margin-top: .2rem; }
.duo__panel--city .duo__list svg { color: var(--green-600); }
.duo__panel--sprick .duo__list svg { color: var(--green-300); }
.duo__list b { font-weight: 600; }
.duo__panel--city .duo__list b { color: var(--ink); }
.duo__panel--sprick .duo__list b { color: var(--white); }

.duo__foot { margin-top: auto; padding-top: 1.1rem; font-size: var(--fs-xs); line-height: 1.55; }
.duo__panel--city .duo__foot { border-top: 1px solid var(--gray-200); color: var(--gray-400); }
.duo__panel--sprick .duo__foot { border-top: 1px solid rgba(255,255,255,.14); color: rgba(185,205,193,.85); }

/* ==========================================================================
   Tagesablauf – waagerecht ab Tablet, senkrecht auf dem Handy.
   Die Linie liegt hinter den Punkten, nicht zwischen ihnen: so bleibt sie
   auch dann durchgehend, wenn die Spalten unterschiedlich hoch werden.
   ========================================================================== */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; position: relative; }
.timeline li { margin: 0; position: relative; padding-left: 2.25rem; }
.timeline__dot {
  position: absolute; left: 0; top: .1rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-700); color: var(--white);
  font-size: .625rem; font-weight: 700;
}
.timeline__time { display: block; font-size: var(--fs-sm); font-weight: 700; color: var(--green-700); letter-spacing: .02em; }
.timeline h3 { font-size: var(--fs-base); font-weight: 600; margin: .1rem 0 .2rem; }
.timeline p { font-size: var(--fs-sm); margin: 0; }

@media (min-width: 56rem) {
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; padding-top: 2.5rem; }
  .timeline::before {
    content: ""; position: absolute; left: 0; right: 0; top: .625rem; height: 2px;
    background: linear-gradient(90deg, var(--green-100), var(--green-500), var(--green-100));
    border-radius: 2px;
  }
  .timeline li { padding-left: 0; }
  .timeline__dot { top: -2.5rem; left: 0; }
}

/* ---------- Karten ------------------------------------------------------- */
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-card); padding: 1.25rem; }
.section--soft .card { border-color: transparent; }
.card__icon {
  width: 2.4rem; height: 2.4rem; border-radius: 10px; display: grid; place-items: center;
  margin-bottom: .85rem; background: var(--green-soft); color: var(--green-700);
}
.card__icon svg { width: 1.2rem; height: 1.2rem; }
.card h3 { margin-bottom: .3rem; }
.card p { font-size: var(--fs-sm); color: var(--gray-600); margin-bottom: 0; }

/* ---------- Hinweiskarte („Bringen Sie mit") ----------------------------- */
.note-card {
  background: var(--white); border: 1px solid var(--gray-200); border-left: 3px solid var(--green-600);
  border-radius: var(--r-card); padding: 1.25rem;
}
@media (min-width: 48rem) { .note-card { padding: 1.75rem; } }
.note-card h3 { margin-bottom: .5rem; }
.note-card p { font-size: var(--fs-sm); }
.note-card__list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
@media (min-width: 40rem) { .note-card__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
.note-card__list li { display: flex; align-items: flex-start; gap: .6rem; margin: 0; font-size: var(--fs-sm); }
.note-card__list svg { flex: none; width: 1.1rem; height: 1.1rem; color: var(--green-600); margin-top: .2rem; }
.note-card__list b { display: block; color: var(--ink); font-weight: 600; }
.note-card__fine { font-size: var(--fs-xs); line-height: 1.5; color: var(--gray-400); margin-top: 1rem; }

/* ==========================================================================
   Anreise – bewusst Rad / Bus & Bahn / zu Fuß statt Parkplatz-Versprechen.
   Der Friedrich-Ebert-Platz ist Innenstadt, und der Aktionstag gehört zur
   Europäischen Mobilitätswoche: „kostenlose Parkplätze" wäre hier sachlich
   falsch und thematisch daneben.
   ========================================================================== */
.arrive { display: grid; gap: 1rem; }
@media (min-width: 48rem) { .arrive { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.arrive__item { background: var(--white); border-radius: var(--r-card); padding: 1.15rem; border: 1px solid var(--gray-200); }
.section--soft .arrive__item { border-color: transparent; }
.arrive__item svg { width: 1.5rem; height: 1.5rem; color: var(--green-700); margin-bottom: .6rem; }
.arrive__item b { display: block; color: var(--ink); font-weight: 600; font-size: var(--fs-base); margin-bottom: .15rem; }
.arrive__item p { font-size: var(--fs-sm); margin: 0; }

/* ---------- Split -------------------------------------------------------- */
.split { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 56rem) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.split__media img { border-radius: var(--r-card); width: 100%; }

/* ---------- Stimmen ------------------------------------------------------ */
.quote { background: var(--white); border-radius: var(--r-card); padding: 1.25rem; display: flex; flex-direction: column; }
.quote__stars { color: var(--gold); font-size: var(--fs-sm); letter-spacing: .08em; margin-bottom: .6rem; }
.quote p { font-size: var(--fs-sm); color: var(--gray-600); flex: 1; }
.quote__by { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--gray-200); font-size: var(--fs-xs); }
.quote__by b { display: block; color: var(--ink); font-weight: 600; }
.quote__by span { color: var(--gray-400); }

/* ---------- Ort ---------------------------------------------------------- */
.venue { display: grid; gap: 1.75rem; }
@media (min-width: 56rem) { .venue { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }
.venue__list { list-style: none; padding: 0; margin: 0; }
.venue__list li { display: flex; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--gray-200); margin: 0; }
.venue__list li:last-child { border-bottom: 0; }
.venue__list svg { flex: none; color: var(--green-700); margin-top: .15rem; }
.venue__list b { display: block; color: var(--ink); font-weight: 600; font-size: var(--fs-base); }
.venue__list span { font-size: var(--fs-sm); color: var(--gray-400); }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { max-width: 44rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1rem 2rem 1rem 0;
  font-size: var(--fs-base); font-weight: 600; color: var(--ink); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 1.3rem;
  width: .5rem; height: .5rem;
  border-right: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.45rem; }
.faq__body { padding: 0 1.5rem 1.15rem 0; font-size: var(--fs-sm); color: var(--gray-600); }

/* ---------- Abschluss ---------------------------------------------------- */
.finale { display: grid; gap: 1.75rem; }
@media (min-width: 56rem) { .finale { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }
.finale__form { max-width: 26rem; width: 100%; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--ink-deep); color: var(--gray-400); padding-block: 2.5rem 5.5rem; font-size: var(--fs-sm); }
@media (min-width: 52rem) { .site-footer { padding-bottom: 2.5rem; } }
.site-footer__inner { display: grid; gap: 1.75rem; }
@media (min-width: 46rem) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img { height: 2rem; width: auto; margin-bottom: .85rem; }
.site-footer h4 { color: var(--white); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.site-footer a { color: #b8b8bd; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer__legal { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--fs-xs); line-height: 1.6; }

/* ---------- Sticky Mobile-CTA -------------------------------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-200);
  padding: .6rem var(--gutter); padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: .75rem;
  transform: translateY(110%); transition: transform .22s ease;
}
.mobile-cta[data-visible="true"] { transform: translateY(0); }
.mobile-cta__txt { font-size: var(--fs-xs); line-height: 1.3; color: var(--gray-400); }
.mobile-cta__txt b { display: block; color: var(--ink); font-size: var(--fs-sm); font-weight: 600; }
.mobile-cta .btn { margin-left: auto; flex: none; }
@media (min-width: 52rem) { .mobile-cta { display: none; } }

/* ---------- Danke-Seite -------------------------------------------------- */
.thanks { padding-block: 2.5rem; text-align: center; }
@media (min-width: 48rem) { .thanks { padding-block: 4rem; } }
.thanks__check {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; margin: 0 auto 1.25rem;
  display: grid; place-items: center; background: var(--green-soft); color: var(--green-700);
}
.thanks__check svg { width: 1.75rem; height: 1.75rem; }
.thanks__lead { max-width: 34rem; margin-inline: auto; font-size: var(--fs-lead); color: var(--gray-600); }

.ticket {
  max-width: 30rem; margin: 2rem auto 0; text-align: left;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.ticket__top { background: var(--green-900); color: var(--on-dark); padding: 1.15rem 1.35rem; }
.ticket__brand { height: 1.35rem; width: auto; margin-bottom: .7rem; opacity: .95; }
.ticket__top h2 { color: var(--white); font-size: 1.125rem; margin-bottom: .15rem; }
.ticket__top p { font-size: var(--fs-sm); margin: 0; }
.ticket__body { padding: 1.35rem; }
.ticket__row { display: flex; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--gray-200); }
.ticket__row:last-of-type { border-bottom: 0; }
.ticket__row svg { flex: none; color: var(--green-700); margin-top: .15rem; }
.ticket__row b { display: block; color: var(--ink); font-weight: 600; font-size: var(--fs-base); }
.ticket__row span { font-size: var(--fs-sm); color: var(--gray-400); }
.ticket__actions { display: grid; gap: .55rem; margin-top: 1.1rem; }
@media (min-width: 30rem) { .ticket__actions { grid-template-columns: 1fr 1fr; } }
.ticket__alt { margin: .85rem 0 0; font-size: var(--fs-xs); color: var(--gray-400); text-align: center; }
.ticket__alt a { color: var(--gray-600); text-decoration: underline; text-underline-offset: 2px; }
.ticket__alt a:hover { color: var(--ink); }

.share-status { min-height: 1.25rem; margin: .85rem 0 0; font-size: var(--fs-sm); font-weight: 500; color: var(--gray-600); }
.share-status[data-state="error"] { color: var(--red-dark); }

.center { text-align: center; }
.stack-cta { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
