/* ==========================================================================
   Regional Events – Launch Page
   Design-Tokens 1:1 aus der Originalseite (regional-eventslaunch.onepage.me)
   ========================================================================== */

/* --------------------------------- Schrift --------------------------------
   Onest wird selbst ausgeliefert statt vom Google-CDN. Damit werden keine
   IP-Adressen der Besucher an Google übertragen – und die Schrift ist da,
   sobald die Seite da ist, ohne zweite Verbindung zu einem fremden Server.
   Eine Datei je Zeichensatz, variable Schrift für alle Gewichte.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/onest-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/onest-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Farben */
  /* Markenfarben laut Grafik-Briefing vom 16.09.2026 */
  --key1: #F5A623;          /* Sonnenblumen-Orange, nur als Akzent */
  --key2: #E09000;          /* kräftiger, für Hover               */
  --dark: #1A1A1A;          /* Fast-Schwarz für Text              */
  --black: #1A1A1A;
  --light: #F3F4F6;         /* helle Karten                       */
  --white: #FFFFFF;
  --navy: #293548;          /* dunkler Grund: Blaugrau statt Schwarz */
  --navy-2: #34425A;
  --orange-text: #8F5500;   /* Orange als Text auf hellem Grund   */
  --orange-soft: #FFF8EB;
  --orange-hell: #FFEFC2;
  --line: #E5E7EB;
  --muted: #5B6472;

  --card-orange: #FBA845;   /* Hero-CTA-Karten          */
  --card-tan: #EDC299;      /* „Was dich erwartet"      */
  --form-orange: #C98200;   /* Formular-Karten          */
  --field-tint: rgba(51, 51, 51, 0.05);
  --header-ring: #262626;

  /* Maße */
  --container: 1150px;
  --gutter: 24px;
  /* Abstand vom Bildschirmrand zur Container-Kante */
  --edge: max(var(--gutter), (100vw - var(--container)) / 2);
  --radius-card: 16px;
  --radius-btn: 8px;
  --radius-field: 6px;
  --header-h: 68px;

  /* Typografie – Werte skalieren zwischen 375px und 1280px Viewport,
     exakt wie im Original (48px → 28.23px usw.). */
  --fs-xl: clamp(28.23px, 20.03px + 2.185vw, 48px);
  --fs-lg: clamp(24px, 20.69px + 0.884vw, 32px);
  --fs-md: clamp(22px, 19.42px + 0.688vw, 28.23px);
  --fs-sm: clamp(20px, 18.34px + 0.442vw, 24px);
  --fs-lead: 18px;
  --fs-body: 16px;
  --fs-field: 15px;
  --fs-label: 12px;
}

/* ------------------------------- Reset ---------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Onest', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, fieldset, legend { margin: 0; }
fieldset { border: 0; padding: 0; min-inline-size: 0; }
a { color: inherit; }
button { font: inherit; }

@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; }
}

/* ------------------------------ Utilities ------------------------------- */

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.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;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.skip-link {
  position: absolute; top: -100px; left: 24px; z-index: 999;
  background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 8px 16px; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--key2); outline-offset: 3px; }

/* ----------------------------- Typografie ------------------------------- */

.h-xl, .h-lg, .h-sm {
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.28;
  color: var(--dark);
}
.h-xl { font-size: var(--fs-xl); }
.h-lg { font-size: var(--fs-lg); }
.h-sm { font-size: var(--fs-sm); }
.h-xl--accent { color: var(--key1); }

.lead  { font-size: var(--fs-lead); line-height: 1.5; }
.body  { font-size: var(--fs-body); line-height: 1.5; }

.label {
  display: inline-block;
  justify-self: start;
  align-self: start;
  background: var(--label-bg, var(--light));
  border-radius: 4px;
  padding: 4px 12px;
  font-size: var(--fs-label);
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
}

.eyebrow { font-size: var(--fs-body); line-height: 1.5; color: inherit; }

/* ------------------------------- Buttons -------------------------------- */

.btn {
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  min-height: 56px; padding: 7px 28px;
  border: 0; border-radius: var(--radius-btn);
  font-size: var(--fs-field); font-weight: 600; line-height: 1.5;
  text-align: center; text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn__label { font-size: inherit; font-weight: 600; }
.btn__label--lg { font-size: 17px; }
.btn__caption { font-size: var(--fs-label); font-weight: 400; letter-spacing: 0.5px; line-height: 18px; }

.btn--primary { background: var(--key1); color: var(--dark); }
.btn--primary:hover { background: var(--key2); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #1f1f1f; }
.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1px var(--header-ring); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn--header { min-height: 48px; padding: 6px 24px; font-size: 14px; }
.btn--hero { min-height: 61px; padding: 8px 31px; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* Aufmerksamkeit auf den Event-Button: ein ruhiger Puls statt hartem Blinken.
   Hartes Blinken ist schlecht lesbar und bei mehr als 3 Wechseln pro Sekunde
   ein Barrierefreiheitsproblem (WCAG 2.3.1). */
.btn--puls { position: relative; animation: btn-puls 2.4s ease-in-out infinite; }

@keyframes btn-puls {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 165, 0, 0); }
}

/* Beim Überfahren und bei Tastaturfokus ruhig stellen – dann ist die
   Aufmerksamkeit ohnehin da. */
.btn--puls:hover, .btn--puls:focus-visible { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .btn--puls { animation: none; box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.35); }
}

/* ------------------------------- Header --------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--black);
}
.site-header__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding-block: 8px;
}
.site-header__logo { display: block; flex: none; }
.site-header__logo img { width: 250px; height: 52px; object-fit: contain; }
.site-header__nav { display: flex; gap: 16px; flex-wrap: wrap; }

/* ------------------------------ Sections -------------------------------- */

.section { padding-block: 60px; }
.section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.card {
  border-radius: var(--radius-card);
  padding: 40px;
}
.card--light { background: var(--light); color: var(--dark); }

.card--image {
  position: relative; isolation: isolate;
  background-size: cover; background-position: center;
  color: var(--white);
}
.card--image::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 0, 0, 0.65);
  border-radius: inherit;
}
.card--image .h-lg, .card--image .body, .card--image .eyebrow { color: var(--white); }

/* ------------------------------- Marquee -------------------------------- */

.marquee {
  --item-w: 281px;
  --item-h: 500px;
  --items: 5;
  overflow: hidden;
}
.marquee--bleed { width: 100vw; margin-inline: calc(50% - 50vw); }
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 93.7s linear infinite;
  will-change: transform;
}
.marquee__group { display: flex; flex: none; }
.marquee__group img {
  width: var(--item-w); height: var(--item-h);
  object-fit: cover; flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(var(--item-w) * var(--items) * -1)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* --------------------------------- Hero --------------------------------- */

.hero {
  padding-block: 30px 0;
  background:
    radial-gradient(circle at 23% 49%, rgba(255, 199, 57, 0.10) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 47% 0%, rgb(242, 242, 242) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 63% 47%, rgba(255, 157, 32, 0.42) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 92% 23%, rgba(255, 174, 53, 0.05) 0%, rgba(0, 0, 0, 0) 30%),
    var(--white);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.hero__inner--bottom { padding-top: 0; }
.hero .marquee--bleed { margin-bottom: 8px; }
.hero__inner--bottom .btn:nth-of-type(1) { margin-bottom: 17px; }
.hero__inner--bottom .btn:nth-of-type(2) { margin-bottom: 20px; }
.hero__inner--bottom .btn:nth-of-type(3) { margin-bottom: 8px; }
.hero__regions { margin-bottom: 20px; }
.hero__text + .hero__text { margin-top: 24px; }

.hero__kicker {
  font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.31;
  color: var(--key2);
}

.hero__instagram {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-btn);
  background: var(--key1); color: var(--white);
}
.hero__instagram svg { width: 22px; height: 22px; }

.hero__lead, .hero__text { font-size: var(--fs-body); line-height: 1.5; color: var(--black); }
.hero__regions { font-size: 10px; line-height: 15px; color: var(--black); }

.hero .btn { max-width: 100%; }
.hero__inner--bottom .btn:nth-of-type(1) { width: 472px; }
.hero__inner--bottom .btn:nth-of-type(2) { width: 472px; }
.hero__inner--bottom .btn:nth-of-type(3) { width: 512px; }

.countdown { display: flex; gap: 32px; justify-content: center; }
.countdown[hidden] { display: none; }
.countdown__box { display: flex; flex-direction: column; align-items: center; }
.countdown__number { font-size: 32px; font-weight: 700; letter-spacing: -0.8px; line-height: 1.3; }
.countdown__label { font-size: var(--fs-label); letter-spacing: -0.8px; opacity: 0.8; }

.hero__cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
  margin-top: 32px;
}
.hero-card {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--card-orange); color: #010101;
  border-radius: var(--radius-card); padding: 32px;
}
.hero-card__title { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.8px; line-height: 1.3; }
.hero-card__text { font-size: var(--fs-body); line-height: 1.5; }
.hero-card__btn { margin-top: auto; align-self: flex-start; }

/* --------------------------- Was dich erwartet --------------------------- */

.section-intro { text-align: center; max-width: 904px; margin-inline: auto; display: grid; gap: 20px; }
.section-intro .h-xl { color: var(--black); }

.how-it-works {
  background:
    radial-gradient(circle at 3% 2%, rgba(255, 255, 255, 0.86) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 51% 100%, rgba(255, 255, 255, 0.7) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 23% 57%, rgba(194, 91, 0, 0.58) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 61% 0%, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 76% 44%, rgba(235, 148, 0, 0.33) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 100% 100%, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 100% 28%, rgba(255, 217, 76, 0.09) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 1% 100%, rgba(255, 255, 255, 0.89) 0%, rgba(0, 0, 0, 0) 70%),
    var(--white);
}

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.step-card {
  background: var(--card-tan); color: #010101;
  border-radius: var(--radius-card); padding: 32px;
  display: grid; gap: 60px; align-content: start;
  --label-bg: #E4A161;
}
.step-card__text { font-size: var(--fs-body); line-height: 1.5; overflow-wrap: anywhere; }
.step-card .label { color: #010101; }

/* ---------------------------- Formular-Sections -------------------------- */

.form-section { padding-block: 100px; }

/* Beide Spalten liegen auf einer großen orangen Karte (wie im Original). */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px;
  background: var(--key1);
  border-radius: var(--radius-card);
  padding: 40px;
  align-items: start;
}
.split__text { display: grid; gap: 16px; align-content: start; --label-bg: var(--form-orange); }
.split__text .body, .split__text .h-xl { color: var(--dark); }

.form-card {
  background: var(--form-orange); color: var(--dark);
  border-radius: var(--radius-card); padding: 40px;
}
.form-card .h-sm { margin-bottom: 24px; }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field--row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.field--phone { grid-template-columns: 56px 1fr; gap: 0; }
.field--phone .input--country { border-radius: var(--radius-field) 0 0 var(--radius-field); border-right: 0; padding-inline: 6px; }
.field--phone .input:not(.input--country) { border-radius: 0 var(--radius-field) var(--radius-field) 0; }

.input {
  width: 100%; height: 56px;
  padding: 0 17px;
  background: var(--white); color: var(--dark);
  border: 1px solid rgba(51, 51, 51, 0.12); border-radius: var(--radius-field);
  font-family: inherit; font-size: var(--fs-field); line-height: 1.5;
}
.input::placeholder { color: rgba(51, 51, 51, 0.3); }
.input:focus { outline: 2px solid var(--dark); outline-offset: 1px; }
select.input { appearance: none; padding-right: 32px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; }
select.input--country { background-image: none; padding-right: 6px; text-overflow: clip; }
.input--date::-webkit-calendar-picker-indicator { cursor: pointer; }

.field-label { font-size: var(--fs-field); font-weight: 600; line-height: 24px; color: var(--dark); }
.field-hint  { font-size: var(--fs-field); font-weight: 400; line-height: 24px; color: var(--dark); }

.choice-group { display: grid; gap: 8px; }
.choice-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 15px; }
.choice {
  display: flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 8px 16px;
  background: var(--field-tint); border-radius: var(--radius-field);
  font-size: var(--fs-field); line-height: 1.5; color: var(--dark);
  cursor: pointer;
}
.choice input { accent-color: var(--dark); width: 18px; height: 18px; flex: none; }
.choice:has(:checked) { background: rgba(51, 51, 51, 0.14); }
.choice-group > .choice { min-height: 60px; }

.form-status { font-size: var(--fs-field); line-height: 1.5; min-height: 1px; }

/* Fehlermeldung unter dem betroffenen Feld bzw. der Auswahlgruppe */
.feld-fehler {
  font-size: 13px; line-height: 1.4; font-weight: 600;
  color: #7f1d1d;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 4px; padding: 4px 8px;
  margin-top: -2px;
}
.input--fehler { border-color: #b91c1c; box-shadow: 0 0 0 1px #b91c1c; }
.choice-group--fehler .choice { box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.4); }

/* Bestätigung, die nach dem Absenden an die Stelle des Formulars tritt */
.form-erfolg {
  display: grid; justify-items: center; gap: 12px;
  text-align: center;
  background: var(--light); color: var(--dark);
  border-radius: 12px; padding: 40px 32px;
}
.form-erfolg[hidden] { display: none; }
.form-erfolg__haken {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--key1); color: var(--dark);
}
.form-erfolg__haken svg { width: 28px; height: 28px; }
.form-erfolg__titel {
  font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.28;
}
.form-erfolg__text { font-size: var(--fs-body); line-height: 1.5; max-width: 34em; }
.form-erfolg__zurueck { margin-top: 8px; }
.form-erfolg:focus { outline: none; }
.form-erfolg:focus-visible { outline: 2px solid var(--key2); outline-offset: 3px; }
.form-status--ok    { color: #14532d; font-weight: 600; }
.form-status--error { color: #7f1d1d; font-weight: 600; }
.crew__form-card .form-status--ok { color: #166534; }

/* ----------------------------- Crew-Bewerbung ---------------------------- */

.crew__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: stretch; }
.crew__intro { display: grid; gap: 16px; align-content: end; }

/* Deutlich abgesetzter Hinweis, damit die Aussage „kein Job“ nicht überlesen wird */
.hinweis {
  font-size: var(--fs-body); line-height: 1.5;
  background: var(--white);
  border-left: 4px solid var(--key1);
  border-radius: 6px;
  padding: 16px 18px;
}
.hinweis strong { font-weight: 600; }

/* ------------------------- Rechtstexte (Impressum) ----------------------- */

.rechtsseite { padding-block: 60px 80px; }
.rechtstext { max-width: 760px; }
.rechtstext .h-xl { color: var(--black); margin-bottom: 8px; }
.rechtstext .lead { color: var(--dark); margin-bottom: 40px; }
.rechtstext .h-sm { margin: 36px 0 10px; }
.rechtstext p,
.rechtstext address {
  font-size: var(--fs-body); line-height: 1.6; color: var(--dark);
  font-style: normal;
}
.rechtstext a { color: var(--key2); }
.rechtstext ul { margin: 12px 0 0; padding-left: 22px; }
.rechtstext li {
  font-size: var(--fs-body); line-height: 1.6; color: var(--dark);
  margin-bottom: 4px;
}
.rechtstext__zurueck { margin-top: 48px; }

/* Nummerierte Schritte im Affiliate-Abschnitt */
.ablauf { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ablauf li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
  font-size: var(--fs-body); line-height: 1.5;
}
.ablauf li > span {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  font-size: 14px; font-weight: 600;
}

/* Ankreuzfeld über die volle Breite, z.B. die Affiliate-Zusatzfrage */
.choice--breit { align-items: flex-start; padding: 14px 16px; }
.choice--breit span { line-height: 1.4; }
.choice--breit a { font-weight: 600; }

/* Mehrzeiliges Feld: die feste Höhe der einzeiligen Felder passt hier nicht */
.input--mehrzeilig {
  height: auto; min-height: 96px;
  padding: 14px 17px; resize: vertical;
  font-family: inherit;
}
.crew__form-card { background: transparent; padding: 40px; display: grid; gap: 16px; --label-bg: var(--light); }
.crew__form-card .h-lg { margin-bottom: 8px; }

/* -------------------------------- Vorteile ------------------------------- */

.advantages__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.advantages__card { display: grid; gap: 16px; align-content: start; overflow: hidden; }
.advantages__card--tall { min-height: 703px; }
.advantages__card .marquee { margin: 20px -40px -40px; }
.advantages__card .marquee__group img { border-radius: 0; }

/* -------------------------------- Services ------------------------------- */

.services__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.service-card { display: grid; gap: 16px; align-content: start; }
.service-card__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  background: var(--icon-bg, var(--key1));
  border-radius: 12px;
  color: var(--icon-color, var(--dark));
  margin-bottom: 14px;
}
.service-card__icon svg { width: 30px; height: 30px; }
.card--image .service-card__icon { --icon-bg: rgba(255, 255, 255, 0.18); --icon-color: var(--white); }

.services__cta {
  display: grid; grid-template-columns: 703px 335px; gap: 32px;
  background: var(--key1);
  border-radius: var(--radius-card);
  padding: 40px; margin-top: 16px;
  align-items: start;
}
.services__cta-main { display: grid; gap: 24px; justify-items: start; }

/* ------------------------------ Call to Action --------------------------- */

.cta__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.cta__card { display: grid; gap: 16px; justify-items: start; align-content: start; }
.cta__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.cta__list li { display: flex; align-items: center; gap: 8px; font-size: 15.2px; line-height: 22.8px; }
.cta__list svg { width: 17px; height: 17px; flex: none; }

/* --------------------------------- Footer -------------------------------- */

.site-footer { background: var(--black); color: var(--white); overflow: hidden; }


.site-footer__grid {
  display: grid;
  /* Marke breiter, die drei Listen gleich – füllt die Containerbreite aus. */
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 80px;
  align-items: start;
}
@media (min-width: 1201px) {
  .site-footer__grid:has(> :nth-child(5)) { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}
.site-footer__col { display: grid; gap: 12px; align-content: start; }
.site-footer__logo { width: 250px; height: 52px; object-fit: contain; }
.site-footer__heading { font-weight: 600; }
.site-footer__address { font-style: normal; }
.site-footer__small { font-size: 14px; line-height: 21px; }
.site-footer__link { text-decoration: none; padding-block: 8px; }
.site-footer__link:hover { color: var(--key1); }

.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 28px; padding-top: 32px; }

.fuer-dich .hero__cards { margin-top: 30px; }

.site-footer__bottom {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 48px; padding-block: 32px 40px;
}

/* ------------------------------ Breakpoints ------------------------------ */

@media (max-width: 1200px) {
  .services__cta { grid-template-columns: 1fr 335px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .split, .crew__grid, .advantages__grid, .services__grid, .cta__grid,
  .services__cta, .hero__cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { gap: 24px; }
  .services__cta { grid-template-columns: 1fr; }
  .form-section { padding-block: 60px; }
  .advantages__card--tall { min-height: 0; }
  .hero__inner--bottom .btn { width: 100% !important; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------- Handy-Feinschliff --------------------------- */

@media (max-width: 768px) {
  /* Safari auf dem iPhone zoomt beim Antippen in Felder, deren Schrift kleiner
     als 16px ist. Der Zoom bleibt danach hängen und verschiebt das Layout. */
  .input, .input--mehrzeilig, select.input { font-size: 16px; }

  /* Tippflächen auf die von Apple empfohlenen 44px bringen. */
  .site-footer__link { padding-block: 12px; }
  .hero__instagram { width: 44px; height: 44px; }
  .site-footer__small a { display: inline-block; padding-block: 6px; }
}

@media (max-width: 680px) {
  .steps { grid-template-columns: 1fr; }
  .choice-grid, .cta__list, .field--row { grid-template-columns: 1fr; }
  .site-header__inner { justify-content: center; }
  /* Beide Buttons passen nebeneinander in eine Zeile – wie im Original (Header 128px). */
  .site-header__nav { width: 100%; justify-content: center; gap: 12px; }
  .btn--header { padding: 6px 16px; }
  .card, .crew__form-card, .form-card { padding: 24px; }
  .advantages__card .marquee { margin: 20px -24px -24px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .countdown { gap: 20px; }
}

/* ==========================================================================
   Zielgruppen-Unterseiten (/tourismus-und-staedte, /veranstalter-und-clubs,
   /crew). Nutzen die Bausteine oben und ergänzen nur, was dort fehlt.
   Inhalte streng nach dem Grafik-Briefing vom 16.09.2026: keine Zahlen,
   keine Preise, keine Partner, keine Funktionen außerhalb des Starts.
   ========================================================================== */

.zg-hero { padding-block: 64px 48px; background:
    radial-gradient(circle at 80% 20%, rgba(255, 157, 32, 0.35) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 10% 90%, rgba(255, 199, 57, 0.18) 0%, rgba(0, 0, 0, 0) 55%),
    var(--white); }
.zg-hero__inner { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.zg-hero__text { display: grid; gap: 20px; justify-items: start; }
.zg-hero h1 { font-size: clamp(32px, 22px + 2.6vw, 56px); font-weight: 700; letter-spacing: -1px; line-height: 1.12; color: var(--black); }
.zg-hero h1 em { font-style: normal; color: var(--key2); }
.zg-hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.zg-hero__bild { display: flex; gap: 16px; justify-content: center; }
.zg-hero__bild img { width: 46%; max-width: 230px; height: auto; border-radius: 18px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); }
.zg-hero__bild img:nth-child(2) { margin-top: 48px; }

.zg-kicker { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  background: var(--black); color: var(--key1); border-radius: 14px; padding: 6px 14px; }

.zg-regionen { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.zg-regionen li { font-size: 14px; line-height: 1.4; padding: 6px 12px; border-radius: 999px; background: var(--light); color: var(--dark); }

.zg-abschnitt { padding-block: 64px; }
.zg-abschnitt--grau { background: var(--light); }
.zg-abschnitt--dunkel { background: var(--black); color: var(--white); }
.zg-abschnitt--dunkel .h-xl, .zg-abschnitt--dunkel .h-lg { color: var(--white); }
.zg-abschnitt__kopf { display: grid; gap: 14px; max-width: 760px; margin-bottom: 36px; }
.zg-abschnitt__kopf .h-xl { color: var(--black); }

.zg-mission { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.zg-mission__zitat { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.6px; line-height: 1.3; }
.zg-mission__zitat em { font-style: normal; color: var(--key1); }
.zg-mission__text { display: grid; gap: 14px; }

.zg-karten { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.zg-karten--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.zg-karte { display: grid; gap: 10px; align-content: start; background: var(--white); color: var(--dark);
  border-radius: var(--radius-card); padding: 28px; box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.08); }
.zg-abschnitt--grau .zg-karte { box-shadow: none; }
.zg-abschnitt--dunkel .zg-karte { background: #1a1a1a; color: var(--white); box-shadow: inset 0 0 0 1px rgba(255, 165, 0, 0.35); }
.zg-karte__icon { font-size: 28px; line-height: 1; }
.zg-karte__titel { font-size: var(--fs-sm); font-weight: 700; letter-spacing: -0.5px; line-height: 1.3; }
.zg-karte__marke { font-size: 13px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: #8F5500; }
.zg-abschnitt--dunkel .zg-karte__marke { color: var(--key1); }
.zg-karte p { font-size: var(--fs-body); line-height: 1.55; }

.zg-kategorien { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.zg-kategorien li { font-size: 15px; padding: 8px 14px; border-radius: 999px; background: var(--white); color: var(--dark); box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.1); }

.zg-schritte { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: schritt; }
.zg-schritte li { counter-increment: schritt; display: grid; gap: 8px; align-content: start; background: var(--key1); color: var(--dark); border-radius: var(--radius-card); padding: 28px; }
.zg-schritte li::before { content: counter(schritt); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--white); font-weight: 700; }
.zg-schritte strong { font-size: var(--fs-sm); letter-spacing: -0.5px; line-height: 1.3; }

.zg-screens { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
.zg-screens img { flex: none; width: 220px; height: auto; border-radius: 16px; scroll-snap-align: start; }

.zg-ehrlich { display: grid; gap: 10px; background: var(--white); border-left: 4px solid var(--key1); border-radius: 8px; padding: 22px 24px; color: var(--dark); }
.zg-ehrlich ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }

.zg-kontakt { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px; align-items: center;
  background: var(--key1); color: var(--dark); border-radius: var(--radius-card); padding: 44px; }
.zg-kontakt .h-xl { color: var(--dark); }
.zg-kontakt__text { display: grid; gap: 14px; }
.zg-kontakt__wege { display: grid; gap: 12px; }
.zg-kontakt__wege .btn { width: 100%; }

.zg-weiter { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.zg-weiter a { font-size: 15px; font-weight: 600; text-decoration: none; padding: 10px 16px; border-radius: 999px; background: var(--light); color: var(--dark); }
.zg-weiter a:hover { background: var(--key1); }

@media (max-width: 900px) {
  .zg-hero__inner, .zg-mission, .zg-kontakt { grid-template-columns: minmax(0, 1fr); }
  .zg-karten, .zg-schritte { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zg-hero__bild img { max-width: 180px; }
}
@media (max-width: 680px) {
  .zg-hero { padding-block: 40px 32px; }
  .zg-abschnitt { padding-block: 48px; }
  .zg-karten, .zg-karten--2, .zg-schritte { grid-template-columns: minmax(0, 1fr); }
  .zg-hero__buttons .btn { width: 100%; }
  .zg-kontakt { padding: 26px; }
  .zg-hero__bild img:nth-child(2) { margin-top: 28px; }
}


/* ==========================================================================
   Design 2026 – Markenauftritt nach Briefing und Verbände-Präsentation
   (16.09.2026): heller Grund, Blaugrau für dunkle Flächen, Orange als Akzent,
   echte App-Screenshots im Handy-Rahmen, keine selbstlaufenden Animationen.
   Die Regeln stehen bewusst am Ende und überschreiben den alten Stand.
   ========================================================================== */

body { color: var(--dark); background: var(--white); }
.h-xl, .h-lg, .h-sm { color: var(--dark); letter-spacing: -0.6px; }
.lead { color: var(--muted); }
.zg-abschnitt--dunkel .lead { color: #CBD2DC; }
:focus-visible { outline-color: var(--key2); }

/* ------------------------------- Buttons -------------------------------- */
.btn { border-radius: 12px; }
.btn--primary { background: var(--key1); color: var(--dark); box-shadow: 0 6px 18px rgba(245, 166, 35, 0.28); }
.btn--primary:hover { background: var(--key2); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: #1F2938; }
.btn__caption { opacity: 0.85; }

/* ------------------------------- Header --------------------------------- */
.site-header { background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-header__logo img { width: 210px; height: auto; }
.site-header__nav { align-items: center; gap: 6px; }
.site-header .btn--ghost { color: var(--dark); box-shadow: inset 0 0 0 1px var(--line); }
.site-header .btn--ghost:hover { background: var(--light); }
.nav-link { font-size: 15px; font-weight: 600; text-decoration: none; color: var(--dark); padding: 10px 12px; border-radius: 10px; }
.nav-link:hover { background: var(--orange-soft); color: var(--orange-text); }
.site-header .btn--header { margin-left: 6px; }
.btn--puls { animation: none; }

/* ------------------------------- Footer --------------------------------- */
.site-footer { background: var(--navy); color: #E5E9F0; }
.site-footer__logo { width: 230px; height: auto; background: var(--white); padding: 10px 14px; border-radius: 12px; box-sizing: content-box; }
.site-footer__heading { color: var(--white); }
.site-footer__link { color: #E5E9F0; }
.site-footer__link:hover { color: var(--key1); }
.site-footer__address { font-style: normal; line-height: 1.6; }
.site-footer__small a { color: #E5E9F0; }
.site-footer__bottom { border-top-color: rgba(255, 255, 255, 0.14); }
.site-footer__bottom .site-footer__link { padding: 0; }

/* ---------------------------- Kleine Bausteine -------------------------- */
.eyebrow-klein { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--orange-text); }
.zg-abschnitt--dunkel .eyebrow-klein { color: var(--key1); }
.zg-kicker { background: var(--navy); color: var(--key1); }
.label { background: var(--orange-hell); color: var(--orange-text); font-weight: 700; }
.hinweis { background: var(--white); border-left-color: var(--key1); color: var(--dark); }
.text-link { font-weight: 700; color: var(--orange-text); text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.haken { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.haken li { position: relative; padding-left: 30px; font-size: var(--fs-body); line-height: 1.5; }
.haken li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 700; background: var(--key1); color: var(--dark); }
.zg-regionen li { background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.zg-karte { box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 0 0 1px var(--line); border-radius: 18px; }
.zg-abschnitt--grau { background: #F7F7F5; }
.zg-abschnitt--grau .zg-karte { box-shadow: 0 8px 24px rgba(41, 53, 72, 0.06); }
.zg-abschnitt--dunkel { background: var(--navy); }
.zg-abschnitt--dunkel .zg-karte { background: var(--navy-2); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); }
.zg-karte.zitat .zg-karte__titel { font-size: var(--fs-md); }
.zg-karte.zitat p { color: var(--muted); }
.zg-schritte li { background: var(--white); box-shadow: 0 8px 24px rgba(41, 53, 72, 0.06); border-top: 4px solid var(--key1); }
.zg-schritte li::before { background: var(--key1); color: var(--dark); }
.zg-kontakt { background: var(--orange-soft); box-shadow: inset 0 0 0 1px var(--orange-hell); }
.zg-kontakt .zg-kicker { justify-self: start; }
.zg-hero { background:
    radial-gradient(circle at 85% 15%, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0) 55%),
    linear-gradient(180deg, var(--orange-soft) 0%, var(--white) 100%); }
.zg-hero h1 em, .home-hero h1 em { color: var(--orange-text); font-style: normal; }
.zg-hero__bild img { border-radius: 26px; border: 8px solid #111; box-shadow: 0 24px 50px rgba(41, 53, 72, 0.22); }

/* ------------------------------ Formulare ------------------------------- */
.form-section { padding-block: 72px; }
.split { background: var(--orange-soft); box-shadow: inset 0 0 0 1px var(--orange-hell); border-radius: 24px; padding: 48px; }
.split__text { gap: 18px; }
.split__text .body, .split__text .h-xl { color: var(--dark); }
.form-card { background: var(--white); border-radius: 20px; box-shadow: 0 18px 40px rgba(41, 53, 72, 0.1); }
.input { border-color: #D6DAE1; border-radius: 10px; }
.input:focus { outline: 2px solid var(--key1); outline-offset: 1px; }
.field-label, .field-hint { color: var(--dark); }
.choice { background: var(--light); border-radius: 10px; }
.choice:has(:checked) { background: var(--orange-hell); box-shadow: inset 0 0 0 1px var(--key1); }
.choice input { accent-color: var(--key2); }
.crew { background: var(--navy); }
.crew .card--light { background: transparent; color: var(--white); }
.crew .crew__intro .h-xl, .crew .crew__intro .body { color: var(--white); }
.crew .crew__intro { align-content: start; }
.crew__meetup { justify-self: start; }
.crew__form-card { background: var(--white); border-radius: 20px; }
.form-erfolg { background: var(--orange-soft); }
.ablauf li > span { background: var(--navy); }

/* -------------------------------- Startseite ---------------------------- */
.home-hero { padding-block: 56px 72px; overflow: hidden; background:
    radial-gradient(circle at 80% 30%, rgba(245, 166, 35, 0.28) 0%, rgba(245, 166, 35, 0) 50%),
    linear-gradient(180deg, var(--orange-soft) 0%, var(--white) 100%); }
.home-hero__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 40px; align-items: center; }
.home-hero__text { display: grid; gap: 22px; justify-items: start; }
.home-hero h1 { font-size: clamp(34px, 20px + 3.2vw, 62px); font-weight: 700; letter-spacing: -1.4px; line-height: 1.08; color: var(--dark); }
.home-hero .lead { font-size: 19px; max-width: 36em; }
.home-hero__bild { position: relative; min-height: 560px; }

.phone { border-radius: 34px; border: 9px solid #111; background: #111; overflow: hidden;
  box-shadow: 0 30px 60px rgba(41, 53, 72, 0.25); }
.phone img { display: block; width: 100%; height: auto; }
.home-hero__bild .phone { position: absolute; width: 270px; }
.phone--vorne { left: 8%; top: 20px; z-index: 2; }
.phone--hinten { right: 2%; top: 70px; transform: rotate(5deg); opacity: 0.96; }

.wege { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.weg { display: grid; align-content: start; gap: 10px; padding: 28px; border-radius: 20px; text-decoration: none; color: var(--dark);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.weg:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px var(--key1), 0 16px 32px rgba(41, 53, 72, 0.1); }
.weg__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--orange-soft); font-size: 26px; }
.weg__titel { font-size: var(--fs-sm); font-weight: 700; letter-spacing: -0.4px; line-height: 1.25; }
.weg__text { font-size: var(--fs-body); line-height: 1.5; color: var(--muted); }
.weg__aktion { margin-top: 6px; font-weight: 700; color: var(--orange-text); }
.weg--gross { background: var(--white); }

.screens { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.screen { margin: 0; display: grid; gap: 14px; align-content: start; }
.screen .phone { border-width: 7px; border-radius: 28px; box-shadow: 0 18px 36px rgba(41, 53, 72, 0.16); }
.screen figcaption { display: grid; gap: 4px; justify-items: start; }
.screen figcaption strong { font-size: 17px; line-height: 1.3; }
.screen figcaption > span:last-child { font-size: 15px; line-height: 1.45; color: var(--muted); }
.screen__tab { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange-text);
  background: var(--orange-soft); border-radius: 999px; padding: 3px 10px; }
.screen__badge { font-size: 12px; font-weight: 700; background: var(--key1); color: var(--dark); border-radius: 999px; padding: 3px 10px; }
.kategorien-block { display: grid; gap: 12px; margin-top: 32px; }

@media (max-width: 1100px) {
  .wege { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screens { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; }
  .screen { flex: none; width: 230px; scroll-snap-align: start; }
}
@media (max-width: 1000px) {
  .nav-link { display: none; }
}
@media (max-width: 900px) {
  .home-hero__inner { grid-template-columns: minmax(0, 1fr); }
  .home-hero__bild { min-height: 440px; }
  .home-hero__bild .phone { width: 210px; }
  .phone--vorne { left: calc(50% - 190px); }
  .phone--hinten { right: calc(50% - 190px); }
  .split { padding: 28px; }
}
@media (max-width: 680px) {
  .site-header__inner { justify-content: space-between; flex-wrap: nowrap; }
  .site-header__nav { width: auto; }
  .site-header__logo img { width: 160px; }
  .site-header .btn--ghost { display: none; }
  .wege { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .weg { grid-template-columns: 48px minmax(0, 1fr); column-gap: 14px; row-gap: 4px; padding: 18px; }
  .weg__icon { grid-row: span 3; width: 48px; height: 48px; font-size: 24px; }
  .weg__titel { font-size: 18px; }
  .weg__text { font-size: 15px; }
  .weg__aktion { margin-top: 2px; }
  .home-hero { padding-block: 32px 48px; }
  .home-hero__bild { min-height: 380px; }
  .home-hero__bild .phone { width: 175px; border-width: 7px; border-radius: 26px; }
  .phone--vorne { left: calc(50% - 165px); }
  .phone--hinten { right: calc(50% - 165px); top: 50px; }
  .split { padding: 20px; border-radius: 18px; }
  .form-card, .crew__form-card { padding: 22px; }
}

/* ---------------- App-Stores: „Bald verfügbar“ im Einstieg --------------- */
/* Eigene Knöpfe statt der offiziellen Store-Badges: Die App ist noch nicht in
   den Stores, ein offizielles „Laden im“-Badge würde etwas versprechen, das es
   noch nicht gibt. Beide Knöpfe führen zur Launch-Erinnerung. */
.stores { display: grid; gap: 10px; justify-items: start; }
.stores__titel { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 15px; font-weight: 600; color: var(--dark); }
.stores__bald { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  background: var(--key1); color: var(--dark); border-radius: 999px; padding: 3px 10px; }
.stores__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.store { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 7px 18px 7px 14px;
  background: #111; color: var(--white); border-radius: 12px; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease; }
.store:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2); }
.store svg { width: 26px; height: 26px; flex: none; }
.store span { display: grid; line-height: 1.1; text-align: left; }
.store small { font-size: 11px; opacity: 0.8; }
.store strong { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; }
@media (max-width: 680px) {
  .stores__buttons { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .store { justify-content: center; padding-inline: 10px; }
  .store strong { font-size: 16px; }
}
.form-erfolg__meet { margin-top: 4px; }
.form-erfolg__meet .btn__caption { text-transform: none; letter-spacing: 0; }

/* --------------------- Seite „Für Regionen & Netzwerke“ ------------------ */
.orbit { position: relative; aspect-ratio: 1; width: min(100%, 440px); justify-self: center;
  background: radial-gradient(circle at 50% 40%, var(--navy-2) 0%, var(--navy) 70%); border-radius: 32px;
  box-shadow: 0 30px 60px rgba(41, 53, 72, 0.25); }
.orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit__mitte { position: absolute; left: 50%; top: 50%; width: 26%; aspect-ratio: 1; transform: translate(-50%, -50%);
  display: grid; place-items: center; border-radius: 50%; background: var(--key1); font-size: clamp(30px, 6vw, 46px);
  box-shadow: 0 0 0 10px rgba(245, 166, 35, 0.18); }
.orbit__knoten { position: absolute; transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 2px;
  min-width: 96px; padding: 10px 12px; border-radius: 16px; background: var(--navy-2); color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16); font-weight: 700; font-size: 15px; }
.orbit__knoten b { font-size: 22px; line-height: 1; }
.orbit__knoten--oben { left: 50%; top: 14%; }
.orbit__knoten--unten { left: 50%; top: 86%; }
.orbit__knoten--links { left: 16%; top: 50%; }
.orbit__knoten--rechts { left: 84%; top: 50%; }

.typen { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.typ { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 16px; background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line); }
.typ__icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--orange-soft); font-size: 22px; }
.typ strong { display: block; font-size: 16px; line-height: 1.3; }
.typ small { display: block; margin-top: 2px; font-size: 14px; line-height: 1.4; color: var(--muted); }

.zg-band { margin-top: 20px; padding: 14px 18px; border-radius: 12px; background: var(--orange-soft); color: var(--orange-text); font-weight: 700; }
.zg-band--dunkel { background: var(--navy-2); color: var(--white); }

.app-erklaert { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 56px; align-items: center; }
.app-erklaert__bild .phone { max-width: 290px; margin-inline: auto; }
.app-erklaert__text { display: grid; gap: 18px; }
.punkte { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: punkt; }
.punkte li { counter-increment: punkt; display: grid; grid-template-columns: 38px 1fr; column-gap: 14px; }
.punkte li::before { content: counter(punkt); grid-row: span 2; display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; background: var(--orange-soft); color: var(--orange-text); font-weight: 700; }
.punkte strong { font-size: 18px; }
.punkte span { color: var(--muted); }

.wege-drei .zg-karte { gap: 12px; }
.nummer { font-size: 40px; font-weight: 700; line-height: 1; color: var(--key1); letter-spacing: -1px; }

.rollen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.rolle { display: grid; gap: 16px; align-content: start; padding: 28px; border-radius: 20px; background: var(--light); }
.rolle--du { background: var(--orange-soft); }
.rolle .eyebrow-klein { color: var(--navy); }
.rolle--du .eyebrow-klein { color: var(--orange-text); }

.wochen { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.wochen li { display: grid; gap: 8px; align-content: start; padding: 24px; border-radius: 18px; background: var(--white);
  box-shadow: 0 8px 24px rgba(41, 53, 72, 0.06); }
.wochen li:first-child { background: var(--orange-soft); }
.wochen span { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--orange-text); }
.wochen strong { font-size: var(--fs-sm); line-height: 1.25; letter-spacing: -0.4px; }
.wochen small { font-size: 15px; line-height: 1.45; color: var(--muted); }

@media (max-width: 1100px) {
  .typen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wochen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .app-erklaert, .rollen { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .orbit { width: min(100%, 360px); }
}
@media (max-width: 680px) {
  .typen, .wochen { grid-template-columns: minmax(0, 1fr); }
  .orbit__knoten { min-width: 78px; padding: 8px; font-size: 13px; }
  .orbit__knoten b { font-size: 18px; }
  .nummer { font-size: 32px; }
}
.zg-abschnitt--dunkel .zg-abschnitt__kopf .h-xl, .zg-abschnitt--dunkel .zg-karte__titel { color: var(--white); }
.zg-abschnitt--dunkel .zg-karte p { color: #CBD2DC; }
.site-footer .lead, .site-footer .body { color: #E5E9F0; }
.nav-link[aria-current="page"] { color: var(--orange-text); background: var(--orange-soft); }
.rechtstext a.btn { color: var(--white); }

/* ------------------------ Erklärvideo im Einstieg ------------------------ */
/* 9:16-Video im Handy-Rahmen. Startet stumm (Browser-Vorgabe), „Mit Ton
   Play-Button in der Mitte spielt es von vorn mit Ton. Bei reduzierter Bewegung startet es
   nicht von selbst. Auf dem Handy steht es direkt unter der Überschrift. */
.hero-video { margin: 0; display: grid; gap: 12px; justify-items: center; justify-self: center; }
.phone--video { position: relative; width: min(310px, 100%); aspect-ratio: 9 / 16; border-width: 10px; border-radius: 38px; }
.phone--video video { display: block; width: 100%; height: 100%; object-fit: cover; background: #111; }
/* Runder Play-Button in der Mitte: spielt das Video von vorn mit Ton. */
.hero-video__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 78px; height: 78px; padding: 0;
  border: 0; border-radius: 50%; cursor: pointer; color: var(--dark); background: var(--key1);
  box-shadow: 0 0 0 10px rgba(245, 166, 35, 0.28), 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease; }
.hero-video__play svg { width: 34px; height: 34px; margin-left: 5px; fill: currentColor; }
.hero-video__play:hover, .hero-video__play:focus-visible { transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 0 0 14px rgba(245, 166, 35, 0.32), 0 14px 32px rgba(0, 0, 0, 0.4); }
.hero-video__play[hidden] { display: none; }
.hero-video__text { font-size: 14px; color: var(--muted); text-align: center; }

@media (max-width: 900px) {
  /* Textblock auflösen, damit das Video zwischen Überschrift und Rest rutscht */
  .home-hero__inner, .zg-hero__inner { gap: 18px; }
  .home-hero__text, .zg-hero__text { display: contents; }
  .home-hero__text > *, .zg-hero__text > * { justify-self: start; }
  .home-hero .zg-kicker, .zg-hero .zg-kicker { order: -3; }
  .home-hero h1, .zg-hero h1 { order: -2; }
  .hero-video { order: -1; margin-block: 6px 10px; }
  .phone--video { width: min(250px, 72vw); border-width: 8px; border-radius: 32px; }
}

/* ==========================================================================
   Barrierefreiheit (17.09.2026)
   ========================================================================== */

/* Deutlicher Fokusrahmen – auch auf weißem und orangem Grund sichtbar */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.55); border-radius: 6px; }
.site-footer :focus-visible, .zg-abschnitt--dunkel :focus-visible, .crew :focus-visible { outline-color: var(--white); }
.skip-link:focus { top: 8px; left: 8px; background: var(--navy); color: var(--white); padding: 12px 18px; border-radius: 10px; z-index: 1000; }

/* Kopf: Navigation, Aktionen, Handy-Menü */
.site-header__inner { flex-wrap: wrap; }
.site-header__nav { order: 1; margin-left: auto; }
.site-header__aktionen { order: 2; display: flex; align-items: center; gap: 8px; }
.menue-knopf { display: none; align-items: center; gap: 6px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--white); color: var(--dark); font: inherit; font-weight: 700; font-size: 14px; cursor: pointer; }
.menue-knopf svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; fill: none; }
@media (max-width: 1000px) {
  .menue-knopf { display: inline-flex; }
  .site-header__aktionen { margin-left: auto; }
  .site-header__nav { display: none; order: 3; width: 100%; margin: 0; padding: 8px 0 12px; flex-direction: column; align-items: stretch; gap: 2px; border-top: 1px solid var(--line); }
  .site-header__nav.ist-offen { display: flex; }
  .site-header__nav.ist-offen .nav-link { display: block; padding: 12px; font-size: 16px; }
}
@media (max-width: 680px) {
  .site-header__inner { flex-wrap: wrap; }
  .site-header__aktionen .btn--header { padding: 6px 14px; }
  .site-header__logo img { width: 140px; }
}

/* Menü „Barrierefreiheit“ – rundes Symbol unten links */
.a11y { position: fixed; left: 16px; bottom: 16px; z-index: 900; }
.a11y__knopf { display: grid; place-items: center; width: 56px; height: 56px; padding: 0; border: 3px solid var(--white);
  border-radius: 50%; cursor: pointer; background: var(--key1); color: var(--navy); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); }
/* Orange in Markenfarbe (eine Pflichtfarbe gibt es nicht). Der dunkle Rand sorgt
   für 3:1 Kontrast zu hellem Grund, der weiße Ring für dunklen Grund (WCAG 1.4.11). */
.a11y__knopf { border-color: var(--navy); box-shadow: 0 0 0 2px var(--white), 0 8px 22px rgba(0, 0, 0, 0.3); }
.a11y__knopf:focus-visible { outline-color: var(--navy); box-shadow: 0 0 0 3px var(--white), 0 0 0 9px rgba(245, 166, 35, 0.55); }
.a11y__knopf svg { width: 34px; height: 34px; }
.a11y__knopf:hover { background: var(--key2); }
.a11y__panel { position: absolute; left: 0; bottom: 70px; width: min(320px, calc(100vw - 32px)); display: grid; gap: 8px;
  padding: 16px; border-radius: 16px; background: var(--white); color: var(--dark); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); border: 1px solid var(--line); }
.a11y__panel[hidden] { display: none; }
.a11y__kopf { display: flex; align-items: center; justify-content: space-between; }
.a11y__titel { font-size: 18px; font-weight: 700; }
.a11y__zu { width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--light); font-size: 18px; cursor: pointer; }
.a11y__zeile { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 6px 0; font-weight: 600; }
.a11y__stufen { display: inline-flex; align-items: center; gap: 8px; }
.a11y__stufen button { min-width: 48px; min-height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--light); font: inherit; font-weight: 700; cursor: pointer; }
.a11y__stufen [data-a11y-stufe] { min-width: 52px; text-align: center; }
.a11y__schalter, .a11y__reset { min-height: 48px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; text-align: left;
  background: var(--white); color: var(--dark); font: inherit; font-weight: 600; font-size: 15px; cursor: pointer; }
.a11y__schalter[aria-pressed="true"] { background: var(--key1); border-color: var(--key2); }
.a11y__schalter[aria-pressed="true"]::after { content: ' ✓'; }
.a11y__reset { text-align: center; background: var(--light); }
.a11y__meldung { font-size: 13px; color: var(--muted); min-height: 1px; }
.a11y__mehr { font-size: 14px; font-weight: 700; color: var(--orange-text); }

/* Einstellung: größere Schrift (skaliert die ganze Seite gleichmäßig) */
html.a11y-zoom body { zoom: var(--a11y-zoom); }

/* Einstellung: hoher Kontrast */
html.a11y-kontrast *:not(video):not(img):not(svg):not(path):not(circle) {
  background-image: none !important; background-color: #FFFFFF !important; color: #000000 !important;
  border-color: #000000 !important; box-shadow: none !important; text-shadow: none !important; }
html.a11y-kontrast :is(.btn, button, .store):not(.a11y__schalter):not(.a11y__zu):not(.a11y__reset):not(.a11y__stufen button),
html.a11y-kontrast :is(.btn, button, .store):not(.a11y__schalter):not(.a11y__zu):not(.a11y__reset):not(.a11y__stufen button) :is(span, strong, small) {
  background-color: #000000 !important; color: #FFFFFF !important; }
html.a11y-kontrast :is(button, .btn, .store) svg { background: transparent !important; fill: currentColor; }
html.a11y-kontrast .hero-video__play { border: 3px solid #FFFFFF !important; }
html.a11y-kontrast :is(.a11y__schalter, .a11y__zu, .a11y__reset, .a11y__stufen button) { border: 2px solid #000000 !important; }
html.a11y-kontrast .a11y__knopf { border: 3px solid #000000 !important; }
html.a11y-kontrast .a11y__schalter[aria-pressed="true"] { outline: 3px solid #000; outline-offset: 2px; }
html.a11y-kontrast .zg-karte, html.a11y-kontrast .weg, html.a11y-kontrast .form-card, html.a11y-kontrast .split,
html.a11y-kontrast .input, html.a11y-kontrast .choice, html.a11y-kontrast .zg-kontakt, html.a11y-kontrast .typ { border: 2px solid #000000 !important; }
html.a11y-kontrast a { text-decoration: underline !important; }
html.a11y-kontrast .site-footer__logo { background: #FFFFFF !important; }

/* Einstellung: Links hervorheben */
html.a11y-links a { text-decoration: underline !important; text-decoration-thickness: 2px !important; text-underline-offset: 3px !important; }
html.a11y-links a:not(.btn):not(.weg):not(.store) { background: #FFEFC2 !important; color: #1A1A1A !important; }
html.a11y-links .btn, html.a11y-links .weg, html.a11y-links .store { outline: 3px dashed var(--orange-text); outline-offset: 2px; }

/* Einstellung: lesbarer Text (WCAG 1.4.12 Textabstände) */
html.a11y-lesbar body :where(p, li, a, span, label, legend, input, textarea, select, button, h1, h2, h3, figcaption, address, small, strong) {
  line-height: 1.8 !important; letter-spacing: 0.06em !important; word-spacing: 0.16em !important; }
html.a11y-lesbar p { margin-bottom: 0.6em; }

/* Einstellung: Videos und Animationen stoppen */
html.a11y-ruhig *, html.a11y-ruhig *::before, html.a11y-ruhig *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

@media print { .a11y, .menue-knopf { display: none !important; } }
@media (max-width: 680px) {
  .site-header__inner { flex-wrap: wrap; row-gap: 0; }
  .site-header__logo { flex: 0 1 auto; min-width: 0; }
  .site-header__logo img { width: 128px; }
  .site-header__aktionen { flex: none; gap: 6px; }
  .menue-knopf { width: 44px; justify-content: center; padding: 0; }
  .menue-knopf__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
/* Links in Rechtstexten: dunkles Orange statt hellem (Kontrast ≥ 4,5:1) */
.rechtstext a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }

/* ------------------------------- Animationen ----------------------------- */
/* Nur wenn niemand „Bewegung reduzieren“ eingestellt hat. „Videos und
   Animationen stoppen“ (a11y-ruhig) schaltet alles weiter oben ab. */
@media (prefers-reduced-motion: no-preference) {
  /* Einstieg: Texte und Knöpfe kommen nacheinander, das Handy schwebt herein */
  .home-hero__text > *, .zg-hero__text > * { animation: rein-hoch 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .home-hero__text > :nth-child(2), .zg-hero__text > :nth-child(2) { animation-delay: 0.08s; }
  .home-hero__text > :nth-child(3), .zg-hero__text > :nth-child(3) { animation-delay: 0.16s; }
  .home-hero__text > :nth-child(4), .zg-hero__text > :nth-child(4) { animation-delay: 0.24s; }
  .home-hero__text > :nth-child(5), .zg-hero__text > :nth-child(5) { animation-delay: 0.32s; }
  .home-hero__text > :nth-child(n+6), .zg-hero__text > :nth-child(n+6) { animation-delay: 0.4s; }
  .hero-video { animation: rein-handy 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s both; }
  .hero-video .phone--video { animation: schweben 6s ease-in-out 1.2s infinite; }

  /* Regionen-Chips ploppen nacheinander auf */
  .zg-regionen li { animation: ploppen 0.45s cubic-bezier(0.3, 1.4, 0.5, 1) both; }
  .zg-regionen li:nth-child(1) { animation-delay: 0.5s; }
  .zg-regionen li:nth-child(2) { animation-delay: 0.57s; }
  .zg-regionen li:nth-child(3) { animation-delay: 0.64s; }
  .zg-regionen li:nth-child(4) { animation-delay: 0.71s; }
  .zg-regionen li:nth-child(5) { animation-delay: 0.78s; }
  .zg-regionen li:nth-child(6) { animation-delay: 0.85s; }

  /* Hervorgehobenes Wort in der Überschrift wird orange unterstrichen */
  .home-hero h1 em, .zg-hero h1 em { background: linear-gradient(var(--key1), var(--key1)) no-repeat 0 92% / 0% 0.14em;
    animation: unterstreichen 0.8s cubic-bezier(0.6, 0, 0.2, 1) 0.7s forwards; }

  /* „Bald“-Etikett leuchtet kurz auf */
  .stores__bald { animation: leuchten 2.2s ease-in-out 1.2s 2; }

  /* Beim Scrollen einblenden (Klassen setzt js/animationen.js) */
  [data-anim] { opacity: 0; transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--anim-verzug, 0ms); }
  [data-anim="hoch"] { transform: translateY(28px); }
  [data-anim="karte"] { transform: translateY(32px) scale(0.97); }
  [data-anim="handy"] { transform: translateY(48px) rotate(-2deg); }
  [data-anim="seite"] { transform: translateX(40px); }
  /* Auf schmalen Bildschirmen von unten einblenden – sonst schiebt die
     Animation die Seite kurzzeitig zur Seite. */
  @media (max-width: 900px) { [data-anim="seite"] { transform: translateY(28px); } }
  [data-anim].ist-sichtbar { opacity: 1; transform: none; }
  /* Nach dem Einblenden wieder die normalen, schnellen Hover-Übergänge */
  .weg[data-anim].ist-sichtbar, .zg-karte[data-anim].ist-sichtbar, .typ[data-anim].ist-sichtbar, .rolle[data-anim].ist-sichtbar {
    transition: opacity 0.7s ease var(--anim-verzug, 0ms), transform 0.2s ease, box-shadow 0.2s ease; }

  /* Hover: Karten heben sich, Symbole wippen */
  .zg-karte, .typ, .rolle, .wochen li, .screen .phone { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .zg-karte:hover, .typ:hover, .rolle:hover, .wochen li:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(41, 53, 72, 0.12); }
  .typ:hover { box-shadow: inset 0 0 0 2px var(--key1), 0 14px 28px rgba(41, 53, 72, 0.1); }
  .screen:hover .phone { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 26px 44px rgba(41, 53, 72, 0.22); }
  .weg:hover .weg__icon, .typ:hover .typ__icon { animation: wippen 0.5s ease; }
  .weg__aktion { transition: letter-spacing 0.2s ease; }
  .weg:hover .weg__aktion { letter-spacing: 0.3px; }

  /* Hauptknöpfe: Lichtstreifen beim Überfahren */
  .btn--primary { position: relative; overflow: hidden; }
  .btn--primary::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-120%); }
  .btn--primary:hover::after, .btn--primary:focus-visible::after { transform: translateX(120%); transition: transform 0.7s ease; }
  .btn:active { transform: scale(0.98); }
}

/* Lesefortschritt und Schatten am Header (Balken ist nur Dekoration) */
.lesefortschritt { position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--key1);
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }
.site-header { transition: box-shadow 0.25s ease; }
.site-header.ist-gescrollt { box-shadow: 0 8px 24px rgba(41, 53, 72, 0.1); }
html.a11y-ruhig [data-anim] { opacity: 1 !important; transform: none !important; }
html.a11y-ruhig .lesefortschritt { display: none; }

@keyframes rein-hoch { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes rein-handy { from { opacity: 0; transform: translateY(40px) rotate(3deg) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes schweben { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ploppen { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: none; } }
@keyframes unterstreichen { to { background-size: 100% 0.14em; } }
@keyframes leuchten { 0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); } 50% { box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.35); } }
@keyframes wippen { 0%, 100% { transform: none; } 30% { transform: rotate(-10deg) scale(1.08); } 60% { transform: rotate(6deg) scale(1.08); } }

/* ------------------------------ Häufige Fragen --------------------------- */
.faq__liste { display: grid; gap: 12px; max-width: 860px; }
.faq__eintrag { background: var(--white); border-radius: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.faq__eintrag[open] { box-shadow: inset 0 0 0 2px var(--key1); }
.faq__eintrag summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px;
  cursor: pointer; list-style: none; border-radius: 16px; }
.faq__eintrag summary::-webkit-details-marker { display: none; }
.faq__eintrag summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-text); font-size: 22px; font-weight: 700; line-height: 1; transition: transform 0.2s ease; }
.faq__eintrag[open] summary::after { transform: rotate(45deg); }
.faq__frage { margin: 0; font-size: 18px; line-height: 1.35; font-weight: 700; color: var(--dark); }
.faq__eintrag p { margin: 0; padding: 0 22px 20px; font-size: var(--fs-body); line-height: 1.6; color: var(--muted); }

/* --------------------- Regionen- und Städteseiten (/events) -------------- */
.brotkrumen ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 0; font-size: 14px; color: var(--muted); }
.brotkrumen li + li::before { content: "›"; margin: 0 8px; color: var(--muted); }
.brotkrumen a { color: var(--orange-text); text-decoration: none; font-weight: 600; }
.brotkrumen a:hover { text-decoration: underline; }
.orte-hero__bild .phone--video img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ort-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.ort-link { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 16px; text-decoration: none; color: var(--dark);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ort-link:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px var(--key1), 0 14px 28px rgba(41, 53, 72, 0.1); }
.ort-link__icon { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); font-size: 22px; }
.ort-link strong { display: block; font-size: 17px; line-height: 1.3; }
.ort-link small { display: block; margin-top: 2px; font-size: 14px; line-height: 1.4; color: var(--muted); }
.zg-regionen a { color: inherit; text-decoration: none; }
.zg-regionen li:has(a) { transition: background 0.2s ease, box-shadow 0.2s ease; }
.zg-regionen li:has(a):hover { background: var(--orange-soft); box-shadow: inset 0 0 0 1px var(--key1); }
.zg-abschnitt--dunkel .zg-hero__buttons { margin-top: 8px; }
@media (max-width: 1100px) { .ort-links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .ort-links { grid-template-columns: minmax(0, 1fr); } }
html.a11y-kontrast .ort-link { border: 2px solid #000000 !important; }
html.a11y-links .ort-link, html.a11y-links .zg-regionen a { outline: 3px dashed var(--orange-text); outline-offset: 2px; }
@media (max-width: 900px) {
  /* Auf dem Handy zuerst Pfad, Überschrift, Text und Knöpfe – das App-Bild entfällt */
  .orte-hero .brotkrumen { order: -3; }
  .orte-hero__bild { display: none; }
}
/* Textseiten ohne Bild im Einstieg (Über uns, Presse, Fragen) */
.zg-hero__inner--text { grid-template-columns: minmax(0, 1fr); }
.zg-hero__inner--text .zg-hero__text { max-width: 46em; }
blockquote.zg-band { margin: 0; font-weight: 400; line-height: 1.6; }

/* ------------------------------- Ratgeber -------------------------------- */
/* Artikel linksbündig wie der Einstieg darüber – begrenzt wird die Zeilenlänge
   der einzelnen Blöcke, nicht der ganze Container. */
.artikel__inhalt { display: grid; gap: 16px; justify-items: start; }
.artikel__inhalt > * { max-width: 44em; width: 100%; }
.artikel__inhalt .h-xl { margin-top: 8px; }
.artikel__zwischen { font-size: var(--fs-sm); font-weight: 700; letter-spacing: -0.4px; line-height: 1.3; margin-top: 12px; }
.artikel__liste, .artikel__schritte { display: grid; gap: 10px; margin: 0; padding-left: 0; list-style: none; }
/* Aufzählungszeichen absolut setzen: So bleibt der Text ein zusammenhängender
   Fließtext, auch wenn er mit <strong> beginnt. */
.artikel__liste li { position: relative; padding-left: 26px; font-size: var(--fs-body); line-height: 1.6; color: var(--muted); }
.artikel__liste li::before { content: "•"; position: absolute; left: 4px; top: 0; color: var(--key1); font-weight: 700; }
.artikel__liste li strong, .artikel__schritte li strong { color: var(--dark); }
.artikel__schritte { counter-reset: schritt2; }
.artikel__schritte li { counter-increment: schritt2; position: relative; padding-left: 40px; min-height: 26px;
  font-size: var(--fs-body); line-height: 1.6; color: var(--muted); }
.artikel__schritte li::before { content: counter(schritt2); position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-text); font-size: 14px; font-weight: 700; }
.artikel .body { color: var(--muted); }
/* Artikelabschnitte gehören zusammen: kleinerer Abstand als zwischen Kapiteln */
.artikel { padding-block: 26px; }
.artikel:first-of-type { padding-top: 52px; }
.artikel + .artikel .h-xl { margin-top: 10px; }
@media (max-width: 680px) { .artikel { padding-block: 20px; } }

/* ------------------------------ Bilder ----------------------------------- */
/* align-self: start und height: auto sind nötig, sonst streckt das Raster das Bild
   auf seine Originalhöhe und das Seitenverhältnis greift nicht. */
.zg-karte__bild { width: 100%; height: auto; align-self: start; aspect-ratio: 16 / 10; object-fit: cover;
  object-position: center 40%; border-radius: 12px; margin-bottom: 4px; background: var(--light); }
.zg-karte__bild--app { object-position: top center; }
.bildband { margin: 0; display: grid; gap: 10px; }
.bildband img { width: 100%; height: auto; align-self: start; aspect-ratio: 16 / 6; object-fit: cover; object-position: center 35%;
  border-radius: 18px; box-shadow: 0 14px 30px rgba(41, 53, 72, 0.14); }
.bildband figcaption { font-size: 14px; color: var(--muted); }
.bild-paar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; }
.bild-paar img { width: 100%; height: auto; align-self: start; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; box-shadow: 0 10px 24px rgba(41, 53, 72, 0.12); }
.meetup-karte .zg-karte__bild { aspect-ratio: 16 / 9; }
@media (max-width: 680px) {
  .bildband img { aspect-ratio: 4 / 3; }
  .bild-paar { grid-template-columns: minmax(0, 1fr); }
}
/* Das App-Bild im Einstieg erscheint auf dem Handy wieder – kleiner und unter dem Text */
@media (max-width: 900px) {
  .orte-hero__bild { display: grid; order: 6; }
  .orte-hero__bild .phone--video { width: min(190px, 52vw); border-width: 7px; border-radius: 28px; }
  .orte-hero__bild .hero-video__text { font-size: 13px; }
}
