/* Entwurf 2 — Hell. Rot bleibt die Signalfarbe aus dem Logo, aber sparsam. */
:root {
  /* Fuer Knoepfe ein dunkleres Rot: Weiss auf gesaettigtem Rot wirkt unschaerfer,
     als die reine Kontrastzahl vermuten laesst. */
  --rot: oklch(0.53 0.22 27);
  --rot-knopf: oklch(0.47 0.20 27);
  --rot-dunkel: oklch(0.41 0.18 27);
  --rot-blass: oklch(0.96 0.02 27);
  --tinte: oklch(0.22 0.012 250);
  --tinte-weich: oklch(0.42 0.012 250);
  --tinte-blass: oklch(0.58 0.01 250);
  --papier: oklch(1 0 0);
  --papier-warm: oklch(0.975 0.004 250);
  --linie: oklch(0.90 0.006 250);
  --radius: 10px;
  --radius-gross: 16px;
  --breite: 74rem;
  --schrift: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tempo: 220ms;
  --kurve: cubic-bezier(0.2, 0.6, 0.2, 1);
  --schatten: 0 1px 2px oklch(0.22 0.012 250 / 0.05), 0 8px 24px oklch(0.22 0.012 250 / 0.06);
  --schatten-hoch: 0 2px 4px oklch(0.22 0.012 250 / 0.06), 0 16px 40px oklch(0.22 0.012 250 / 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--schrift); font-size: 1.0625rem; line-height: 1.65;
  color: var(--tinte); background: var(--papier);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; }

.demo-banner {
  background: oklch(0.96 0.09 95); color: oklch(0.32 0.07 80);
  font-size: 0.8125rem; font-weight: 600; text-align: center; padding: 0.55rem 1rem;
  border-bottom: 1px solid oklch(0.88 0.09 95);
}

.huelle { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 48rem) { .huelle { padding-inline: 2rem; } }

/* ---------- Kopfzeile ---------- */
.kopf { position: sticky; top: 0; z-index: 50; background: oklch(1 0 0 / 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--linie); }
.kopf-inhalt { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.marke { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.marke-logo { height: 2.75rem; width: auto; display: block; transition: transform var(--tempo) var(--kurve); }
.marke:hover .marke-logo { transform: scale(1.03); }
@media (min-width: 48rem) { .marke-logo { height: 3.25rem; } }

.nav { display: none; gap: 0.15rem; align-items: center; }
@media (min-width: 56rem) { .nav { display: flex; } }
/* :not(.knopf) ist wichtig. Sonst gewinnt diese Regel gegen .knopf (hoehere Spezifitaet)
   und der Anmelde-Knopf in der Navigation bekaeme graue statt weisser Schrift. */
.nav a:not(.knopf):not(.kopf-insta) {
  text-decoration: none; font-weight: 600; font-size: 0.9375rem; color: var(--tinte-weich);
  padding: 0.55rem 0.85rem; border-radius: 8px;
  transition: color var(--tempo) var(--kurve), background var(--tempo) var(--kurve);
}
.nav a:not(.knopf):not(.kopf-insta):hover, .nav a:not(.knopf):not(.kopf-insta):focus-visible { color: var(--tinte); background: var(--papier-warm); }
.nav a[aria-current="page"]:not(.knopf) { color: var(--rot); }

.menue-knopf {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  background: none; border: 1px solid var(--linie); border-radius: 8px; color: var(--tinte); cursor: pointer;
}
@media (min-width: 56rem) { .menue-knopf { display: none; } }
.menue-knopf span, .menue-knopf span::before, .menue-knopf span::after {
  content: ""; display: block; width: 1.1rem; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--tempo) var(--kurve);
}
.menue-knopf span::before { transform: translateY(-6px); }
.menue-knopf span::after { transform: translateY(4px); }
.menue-knopf[aria-expanded="true"] span { background: transparent; }
.menue-knopf[aria-expanded="true"] span::before { transform: rotate(45deg); }
.menue-knopf[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

.menue { display: none; flex-direction: column; gap: 0.15rem; padding: 0.5rem 0 1.25rem; border-top: 1px solid var(--linie); }
.menue[data-offen="true"] { display: flex; }
@media (min-width: 56rem) { .menue { display: none !important; } }
.menue a { text-decoration: none; font-weight: 600; padding: 0.8rem 0.5rem; border-radius: 8px; }
.menue a:hover { background: var(--papier-warm); }

/* ---------- Knoepfe ---------- */
.knopf {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.5rem; border-radius: 999px;
  background: var(--rot-knopf); color: var(--papier);
  font-weight: 700; font-size: 1.0625rem; letter-spacing: 0.005em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--tempo) var(--kurve), transform var(--tempo) var(--kurve), box-shadow var(--tempo) var(--kurve);
}
.knopf:hover, .knopf:focus-visible { background: var(--rot-dunkel); transform: translateY(-2px); box-shadow: 0 8px 20px oklch(0.53 0.22 27 / 0.28); }
.knopf svg { width: 1.05em; height: 1.05em; transition: transform 320ms var(--kurve); }
.knopf:hover svg, .knopf:focus-visible svg { transform: translateX(4px); }
.knopf--still { background: var(--papier); color: var(--tinte); border: 1px solid var(--linie); }
.knopf--still:hover { background: var(--papier-warm); color: var(--tinte); box-shadow: var(--schatten); }

.ausfahr {
  display: inline-flex; align-items: center; gap: 0; overflow: hidden;
  background: var(--papier-warm); border: 1px solid var(--linie); border-radius: 999px;
  padding: 0.65rem; color: var(--tinte); text-decoration: none; font-weight: 600;
  transition: gap var(--tempo) var(--kurve), background var(--tempo) var(--kurve), color var(--tempo) var(--kurve), border-color var(--tempo) var(--kurve);
}
.ausfahr svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.ausfahr span { max-width: 0; opacity: 0; white-space: nowrap; transition: max-width 360ms var(--kurve), opacity 240ms var(--kurve); }
.ausfahr:hover, .ausfahr:focus-visible { gap: 0.55rem; background: var(--rot); color: var(--papier); border-color: var(--rot); }
.ausfahr:hover span, .ausfahr:focus-visible span { max-width: 14rem; opacity: 1; }

/* ---------- Titelbereich, geteilt ---------- */
.held { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.held-gitter { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56rem) { .held-gitter { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }
.held-marke {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rot-blass); color: var(--rot-dunkel);
  font-size: 0.8125rem; font-weight: 700; padding: 0.4rem 0.9rem;
  border-radius: 999px; margin-bottom: 1.25rem;
}
.held h1 {
  font-size: clamp(2.125rem, 5.5vw, 3.75rem); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 800; margin: 0 0 1.15rem; text-wrap: balance;
}
.held h1 em { font-style: normal; color: var(--rot); }
.held-text { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); color: var(--tinte-weich); margin: 0 0 2rem; max-width: 46ch; }
.held-knoepfe { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.held-bild { position: relative; }
/* Hochformat des Teams: Die Gesichter liegen bei rund einem Viertel der Bildhoehe.
   Ein Ausschnitt weiter unten zeigt nur Beine. */
.held-bild picture, .held-bild img {
  border-radius: var(--radius-gross); box-shadow: var(--schatten-hoch);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 26%;
}
@media (min-width: 56rem) { .held-bild picture, .held-bild img { aspect-ratio: 5 / 6; object-position: center 34%; } }
/* Kleine Kennzahl, die dem Bild Halt gibt */
.held-plakette {
  position: absolute; left: -0.5rem; bottom: -1.25rem;
  background: var(--papier); border-radius: var(--radius); box-shadow: var(--schatten-hoch);
  padding: 0.9rem 1.15rem; display: flex; align-items: center; gap: 0.85rem;
}
@media (min-width: 56rem) { .held-plakette { left: -1.75rem; } }
.held-plakette b { font-size: 1.75rem; line-height: 1; color: var(--rot); letter-spacing: -0.02em; }
.held-plakette span { font-size: 0.8125rem; color: var(--tinte-weich); line-height: 1.3; }

/* ---------- Abschnitte ---------- */
.block { padding-block: clamp(3.5rem, 8vw, 6rem); }
.block--warm { background: var(--papier-warm); }
.block-kopf { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.block-kopf--mitte { margin-inline: auto; text-align: center; }
.block-marke { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--rot); margin-bottom: 0.65rem; }
.block h1, .block h2 {
  font-size: clamp(1.625rem, 3.8vw, 2.5rem); line-height: 1.15; letter-spacing: -0.025em;
  font-weight: 800; margin: 0 0 0.9rem; text-wrap: balance;
}
.block-kopf p { color: var(--tinte-weich); margin: 0; font-size: 1.0625rem; }

/* ---------- Vorteile als Liste ---------- */
.punkte { display: grid; gap: 2rem; counter-reset: punkt; }
@media (min-width: 44rem) { .punkte { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; } }
.punkt { display: grid; grid-template-columns: auto 1fr; gap: 1.15rem; align-items: start; }
.punkt::before {
  counter-increment: punkt; content: "0" counter(punkt);
  font-size: 0.875rem; font-weight: 800; color: var(--rot);
  background: var(--rot-blass); width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: grid; place-items: center;
}
.punkt h3 { font-size: 1.125rem; margin: 0.35rem 0 0.4rem; letter-spacing: -0.01em; }
.punkt p { margin: 0; color: var(--tinte-weich); font-size: 0.9688rem; }

/* ---------- Zwei Spalten ---------- */
.zwei { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56rem) { .zwei { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.zwei--tausch > *:first-child { order: 2; }
@media (max-width: 55.99rem) { .zwei--tausch > *:first-child { order: 0; } }
.zwei-bild picture, .zwei-bild img { border-radius: var(--radius-gross); box-shadow: var(--schatten); width: 100%; }
.zwei p { color: var(--tinte-weich); }

/* ---------- Klassen als ruhige Liste ---------- */
.gruppen { display: grid; gap: 2.5rem; }
.gruppe-titel { display: flex; align-items: baseline; gap: 0.85rem; margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 2px solid var(--linie); }
.gruppe-titel h3 { font-size: 1.375rem; margin: 0; letter-spacing: -0.02em; }
.gruppe-titel span { font-size: 0.875rem; color: var(--tinte-blass); }
.klassen-liste { display: grid; gap: 0.75rem; }
@media (min-width: 48rem) { .klassen-liste { grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem; } }
.klasse {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: border-color var(--tempo) var(--kurve), box-shadow var(--tempo) var(--kurve), transform var(--tempo) var(--kurve);
}
.klasse:hover { border-color: oklch(0.78 0.06 27); box-shadow: var(--schatten); transform: translateY(-2px); }
.klasse-kopf { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.klasse-kuerzel {
  font-size: 0.75rem; font-weight: 800; color: var(--rot); background: var(--rot-blass);
  padding: 0.2rem 0.5rem; border-radius: 5px; flex-shrink: 0;
}
.klasse h4 { font-size: 1rem; margin: 0; }
.klasse p { margin: 0; font-size: 0.9375rem; color: var(--tinte-weich); }

/* ---------- Team, runde Bilder ---------- */
.team { display: grid; gap: 2rem 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 64rem) { .team { grid-template-columns: repeat(5, 1fr); } }
.person { text-align: center; }
.person-bild {
  width: clamp(6.5rem, 20vw, 9rem); aspect-ratio: 1; margin: 0 auto 1rem;
  border-radius: 999px; overflow: hidden; background: var(--papier-warm);
  box-shadow: var(--schatten); transition: transform var(--tempo) var(--kurve), box-shadow var(--tempo) var(--kurve);
}
.person:hover .person-bild { transform: translateY(-4px); box-shadow: var(--schatten-hoch); }
.person-bild img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.person-platzhalter { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2.25rem; font-weight: 800; color: var(--tinte-blass); background: var(--papier-warm); }
.person h3 { font-size: 1rem; margin: 0 0 0.15rem; }
.person p { margin: 0; font-size: 0.875rem; color: var(--tinte-weich); }
.person .klassen { color: var(--rot); font-weight: 700; font-size: 0.8125rem; margin-top: 0.3rem; }

/* ---------- Standorte ---------- */
.orte { display: grid; gap: 1.25rem; }
@media (min-width: 52rem) { .orte { grid-template-columns: repeat(3, 1fr); } }
.ort { background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.5rem; transition: box-shadow var(--tempo) var(--kurve), transform var(--tempo) var(--kurve); }
.ort:hover { box-shadow: var(--schatten); transform: translateY(-2px); }
.ort--ruht { background: var(--papier-warm); }
.ort-kopf { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; }
.ort h3 { font-size: 1.1875rem; margin: 0; letter-spacing: -0.01em; }
.ort-schild { font-size: 0.6875rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; white-space: nowrap; }
.ort-schild--haupt { background: var(--rot-blass); color: var(--rot-dunkel); }
.ort-schild--ruht { background: var(--linie); color: var(--tinte-weich); }
.ort-zeile { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.65rem; font-size: 0.9375rem; color: var(--tinte-weich); }
.ort-zeile svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--rot); }
.ort-karte { text-decoration: none; border-radius: 8px; margin-inline: -0.45rem; padding: 0.45rem; transition: background var(--tempo) var(--kurve); }
.ort-karte:hover, .ort-karte:focus-visible { background: var(--rot-blass); }
.ort-karte-hinweis { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.35rem; font-size: 0.8125rem; font-weight: 700; color: var(--rot); }
.ort-karte-hinweis svg { width: 0.9rem; height: 0.9rem; margin-top: 0; transition: transform var(--tempo) var(--kurve); }
.ort-karte:hover .ort-karte-hinweis svg { transform: translateX(3px); }
.ort-hinweis { background: var(--rot-blass); border-radius: 8px; padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--rot-dunkel); margin-top: 0.5rem; }

/* ---------- Fahrzeuge ---------- */
.flotte { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 52rem) { .flotte { grid-template-columns: repeat(4, 1fr); } }
.fahrzeug { transition: transform var(--tempo) var(--kurve); }
.fahrzeug:hover { transform: translateY(-4px); }
.fahrzeug-bild { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); box-shadow: var(--schatten); margin-bottom: 0.85rem; }
.fahrzeug-bild img { width: 100%; height: 100%; object-fit: cover; }
.fahrzeug h3 { font-size: 0.9375rem; margin: 0; }
.fahrzeug p { margin: 0.1rem 0 0; font-size: 0.8125rem; color: var(--tinte-weich); }

/* ---------- Ablauf ---------- */
.schritte { display: grid; gap: 1.5rem; counter-reset: schritt; }
@media (min-width: 52rem) { .schritte { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.schritt { position: relative; }
.schritt::before {
  counter-increment: schritt; content: counter(schritt);
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem; margin-bottom: 1rem;
  background: var(--rot); color: var(--papier); border-radius: 999px; font-weight: 800; font-size: 1.05rem;
}
.schritt h3 { font-size: 1.0625rem; margin: 0 0 0.4rem; }
.schritt p { margin: 0; font-size: 0.9375rem; color: var(--tinte-weich); }

/* ---------- Zahlenleiste und Einstiegshinweis ---------- */
.zahlen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
@media (min-width: 48rem) { .zahlen { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.zahl { text-align: center; }
.zahl b { display: block; font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 800; line-height: 1; color: var(--rot); letter-spacing: -0.03em; }
.zahl-einheit { display: block; font-size: 0.9375rem; font-weight: 700; margin-top: 0.35rem; }
.zahl-text { display: block; font-size: 0.8125rem; color: var(--tinte-weich); margin-top: 0.15rem; }

.einstieg {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--rot-blass); border-radius: var(--radius);
  padding: 1.15rem 1.35rem; max-width: 46rem; margin-top: 2.5rem;
}
.einstieg svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; color: var(--rot); margin-top: 0.15rem; }
.einstieg strong { display: block; margin-bottom: 0.2rem; color: var(--rot-dunkel); }
.einstieg p { margin: 0; color: var(--tinte-weich); font-size: 0.9375rem; }

/* ---------- Bestätigung nach dem Absenden ---------- */
.dank {
  background: var(--papier); border: 1px solid var(--rot); border-radius: var(--radius-gross);
  padding: 2rem 1.75rem; max-width: 40rem; text-align: center; box-shadow: var(--schatten);
}
.dank-zeichen {
  width: 3.25rem; height: 3.25rem; margin: 0 auto 1.15rem; display: grid; place-items: center;
  border-radius: 999px; background: var(--rot-knopf); color: var(--papier); font-size: 1.6rem; font-weight: 700;
}
.dank h3 { font-size: 1.375rem; margin: 0 0 0.6rem; letter-spacing: -0.02em; }
.dank p { margin: 0 0 0.9rem; color: var(--tinte-weich); }
.dank-demo { font-size: 0.875rem; background: var(--papier-warm); border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 1.25rem !important; }

/* ---------- Instagram ---------- */
.kopf-insta {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px;
  color: var(--tinte-weich); margin-inline: 0.4rem 0.65rem;
  transition: color var(--tempo) var(--kurve), background var(--tempo) var(--kurve);
}
.kopf-insta svg { width: 1.35rem; height: 1.35rem; }
.kopf-insta:hover, .kopf-insta:focus-visible { color: var(--rot); background: var(--papier-warm); }

.insta {
  display: grid; gap: 1.5rem; align-items: center; text-align: center;
  background: var(--papier); border-radius: var(--radius-gross); box-shadow: var(--schatten);
  padding: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 48rem) { .insta { grid-template-columns: auto 1fr auto; text-align: left; gap: 2rem; } }
.insta-zeichen {
  width: 3.5rem; height: 3.5rem; border-radius: 16px; margin-inline: auto;
  display: grid; place-items: center; color: var(--papier);
  background: linear-gradient(135deg, oklch(0.66 0.18 45), oklch(0.58 0.23 350), oklch(0.53 0.19 290));
}
.insta-zeichen svg { width: 1.85rem; height: 1.85rem; }
.insta h2 { font-size: clamp(1.25rem, 3vw, 1.625rem); margin: 0 0 0.35rem; letter-spacing: -0.02em; }
.insta p { margin: 0; color: var(--tinte-weich); font-size: 0.9688rem; }
.insta-name { color: var(--rot); font-weight: 700; }

/* ---------- Fragen ---------- */
.fragen { display: grid; gap: 0.6rem; max-width: 50rem; }
.frage { background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--tempo) var(--kurve); }
.frage[open] { box-shadow: var(--schatten); }
.frage summary { padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 700; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: ""; width: 0.6rem; height: 0.6rem; flex-shrink: 0;
  border-right: 2px solid var(--rot); border-bottom: 2px solid var(--rot);
  transform: rotate(45deg) translateY(-2px); transition: transform var(--tempo) var(--kurve);
}
.frage[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.frage summary:hover { background: var(--papier-warm); }
.frage p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--tinte-weich); font-size: 0.9375rem; }

/* ---------- Formular ---------- */
.formular { display: grid; gap: 1.25rem; max-width: 40rem; }
.feld { display: grid; gap: 0.4rem; }
.feld label { font-weight: 600; font-size: 0.9375rem; }
.feld input, .feld select, .feld textarea {
  font: inherit; font-size: 1rem; padding: 0.8rem 0.9rem;
  background: var(--papier); color: var(--tinte); border: 1px solid var(--linie); border-radius: 8px;
  transition: border-color var(--tempo) var(--kurve), box-shadow var(--tempo) var(--kurve);
}
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--rot); box-shadow: 0 0 0 3px oklch(0.53 0.22 27 / 0.15);
}
.feld-reihe { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .feld-reihe { grid-template-columns: 1fr 1fr; } }
.zustimmung { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9375rem; color: var(--tinte-weich); }
.zustimmung input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--rot); }
.hinweis-kasten { background: var(--rot-blass); border-radius: var(--radius); padding: 1.15rem 1.25rem; font-size: 0.9375rem; color: var(--rot-dunkel); }
.hinweis-kasten strong { display: block; margin-bottom: 0.3rem; color: var(--rot-dunkel); }
.honig { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- Aufruf-Streifen ---------- */
.streifen { background: var(--tinte); color: var(--papier); border-radius: var(--radius-gross); padding: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.streifen h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.streifen p { color: oklch(0.82 0.008 250); margin: 0 0 1.75rem; }

/* ---------- Fusszeile ---------- */
.fuss { background: var(--papier-warm); border-top: 1px solid var(--linie); padding-block: 3rem 2rem; }
.fuss-gitter { display: grid; gap: 2.25rem; margin-bottom: 2.5rem; }
@media (min-width: 52rem) { .fuss-gitter { grid-template-columns: 1.4fr 1fr 1fr; } }
.fuss h3 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tinte-blass); margin: 0 0 1rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.fuss a { color: var(--tinte-weich); text-decoration: none; transition: color var(--tempo) var(--kurve); }
.fuss a:hover { color: var(--rot); }
.fuss-kontakt { display: flex; gap: 0.6rem; align-items: center; font-size: 0.9375rem; }
.fuss-kontakt svg { width: 1.05rem; height: 1.05rem; color: var(--rot); flex-shrink: 0; }
.fuss-unten { border-top: 1px solid var(--linie); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.875rem; color: var(--tinte-blass); }

/* ---------- Bewegung ---------- */
[data-zeig] { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--kurve), transform 600ms var(--kurve); }
[data-zeig].sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-zeig] { opacity: 1; transform: none; }
}

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