/* Krelle Umzüge – Relaunch 2026
   Gestaltungsidee "Signaletik": Anthrazit RAL 7016 als Grundfläche, Gelb als Signal,
   kantige Geometrie, Archivo Expanded als Stimme. Angelehnt an Fahrzeugbeschriftung
   und Verkehrszeichen – nicht an Umzugsfirmen-Vorlagen.
   Webdesign & Umsetzung: Polar Marketing GmbH */

/* ---------- Schriften: lokal ausgeliefert, keine Verbindung zu Google ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-var.woff2') format('woff2-variations');
  font-weight: 400 800;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
  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: 'Inter';
  src: url('../fonts/inter-latin-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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;
}

/* ---------- Tokens ---------- */
:root {
  --anthrazit: #383e42;   /* RAL 7016 */
  --tinte:     #23282b;
  --nacht:     #171a1d;
  --stahl:     #565f66;

  --gelb:      #ffc20e;
  --gelb-tief: #dfa600;

  --weiss:  #ffffff;
  --kreide: #f1f2f3;        /* helle Fläche, z. B. Formularfelder */
  --kreide-tief: #e2e5e8;   /* Abschnittsgrund – bewusst dunkler als die Karten darauf */
  --nebel:  #e4e6e8;
  --linie:  #d5d8db;
  --text:   #1e2225;
  --leise:  #626b71;

  --breite: 1440px;   /* im Onboarding standen 1240 – auf Wunsch verbreitert */
  --kante:  3px;            /* kantig statt rund – das ist Absicht */
  --tempo:  .22s cubic-bezier(.2,.7,.3,1);

  --display: 'Archivo', 'Inter', system-ui, sans-serif;
  --brot:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Warnbalken-Schraffur, das Motiv der Fahrzeugflotte */
  --schraffur: repeating-linear-gradient(-45deg,
                 var(--gelb) 0 14px, var(--tinte) 14px 28px);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--brot);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  margin: 0 0 .5em; font-family: var(--display); color: var(--tinte);
  overflow-wrap: break-word;
}

h1, h2 {
  font-weight: 800;
  font-stretch: 112%;          /* breit gelaufen – Signalwirkung */
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 1rem + 3.3vw, 3.55rem); font-stretch: 104%; }
h2 { font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3rem); }
h3 {
  font-size: 1.16rem; font-weight: 700; font-stretch: 105%;
  letter-spacing: -.01em; line-height: 1.2;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Kleines Versal-Label – das wiederkehrende Ordnungselement */
.marker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display);
  font-size: .74rem; font-weight: 700; font-stretch: 88%;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gelb-tief);
  margin-bottom: 18px;
}
.marker::before { content: ""; width: 26px; height: 3px; background: var(--gelb); }
.auf-dunkel .marker, .sektion-dunkel .marker { color: var(--gelb); }

.container { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: 28px; }
/* Auf einem 1440er Monitor ist der Rahmen genau so breit wie der Bildschirm –
   ohne etwas mehr Innenabstand klebte das Logo am Rand. */
@media (min-width: 1200px) { .container { padding-inline: 44px; } }
@media (max-width: 600px) { .container { padding-inline: 20px; } }

.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;
}
:focus-visible { outline: 3px solid var(--gelb); outline-offset: 3px; }

/* ---------- Schaltflächen: kantig, nicht als Pille ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 16px 28px;
  border: 2px solid transparent; border-radius: var(--kante);
  font-family: var(--display);
  font-size: .92rem; font-weight: 700; font-stretch: 100%;
  letter-spacing: .06em; text-transform: uppercase; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: background var(--tempo), color var(--tempo), border-color var(--tempo), box-shadow var(--tempo);
}
.btn-gelb { background: var(--gelb); color: var(--tinte); }
.btn-gelb:hover { background: var(--weiss); }
.btn-dunkel { background: var(--tinte); color: var(--weiss); }
.btn-dunkel:hover { background: var(--nacht); }
.btn-linie-hell { border-color: rgba(255,255,255,.35); color: var(--weiss); }
.btn-linie-hell:hover { border-color: var(--gelb); color: var(--gelb); }
.btn-linie { border-color: var(--linie); color: var(--tinte); background: var(--weiss); }
.btn-linie:hover { border-color: var(--tinte); }
.btn-gross { padding: 19px 34px; font-size: 1rem; }
/* Icons in Schaltflächen: feste Größe, optisch leicht abgesetzt, nie gestaucht */
.btn svg { flex: 0 0 auto; opacity: .85; }
.btn:hover svg { opacity: 1; }
.btn-gross svg { width: 19px; height: 19px; }
.btn-voll { width: 100%; }

/* ---------- Kopf ---------- */
.leiste {
  background: var(--nacht); color: rgba(255,255,255,.68);
  font-size: .82rem; letter-spacing: .01em;
}
.leiste .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.leiste ul { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.leiste li { display: flex; align-items: center; gap: .5em; }
.leiste a { color: inherit; text-decoration: none; }
.leiste a:hover { color: var(--gelb); }
.leiste strong { color: var(--weiss); font-weight: 600; }
/* Spezifitaet: .leiste ul setzt display:flex – deshalb hier mitfuehren */
@media (max-width: 880px) {
  .leiste .leiste-zweit, .leiste li.leiste-zweit { display: none; }
}

.kopf { position: sticky; top: 0; z-index: 60; background: var(--anthrazit); }
.kopf::after { content: ""; display: block; height: 3px; background: var(--schraffur); }
.kopf .container { display: flex; align-items: center; gap: 30px; min-height: 88px; }
.marke img { width: 224px; height: auto; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav a {
  position: relative; display: block; padding: 8px 0;
  font-family: var(--display);
  font-size: .84rem; font-weight: 600; font-stretch: 95%;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none;
  transition: color var(--tempo);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--gelb); transition: width var(--tempo);
}
.nav a:hover { color: var(--weiss); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--weiss); }

.nav-schalter {
  display: none; margin-left: auto; color: var(--weiss);
  background: transparent; border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--kante); padding: 10px 12px; cursor: pointer;
}
.nav-schalter span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0; }

@media (max-width: 1020px) {
  .kopf .container { min-height: 74px; gap: 16px; flex-wrap: wrap; }
  .marke img { width: 178px; }
  .nav-schalter { display: block; }
  .nav { display: none; width: 100%; order: 3; margin: 0 0 14px; }
  .kopf.offen .nav { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .nav a::after { display: none; }
  .kopf-cta { display: none; }
  .kopf.offen .kopf-cta { display: block; order: 4; width: 100%; margin-bottom: 18px; }
}

/* ---------- Abschnitte ---------- */
.sektion { padding: clamp(64px, 8vw, 116px) 0; }
.sektion-kreide { background: var(--kreide-tief); }
.sektion-dunkel { background: var(--anthrazit); color: rgba(255,255,255,.8); }
.sektion-dunkel h2, .sektion-dunkel h3 { color: var(--weiss); }

.kopfzeile { max-width: 760px; margin-bottom: clamp(36px, 4.5vw, 64px); }
.kopfzeile.weit { max-width: none; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
/* Die Überschrift trägt sonst ihren Grundabstand mit in die Zelle – dann sitzt das
   Element rechts tiefer als die Schrift links. Ohne den Abstand stehen beide bündig. */
.kopfzeile.weit h2 { margin-bottom: 0; }
/* Nur der Fließtext braucht den optischen Ausgleich nach unten. Vorher traf die
   Regel auch die Schaltfläche und überschrieb deren unteren Innenabstand. */
.kopfzeile.weit > p:last-child { padding-bottom: .12em; }
@media (max-width: 820px) { .kopfzeile.weit { grid-template-columns: 1fr; align-items: start; } }
.kopfzeile p { color: var(--leise); font-size: 1.06rem; margin: 0; }
.sektion-dunkel .kopfzeile p { color: rgba(255,255,255,.68); }

/* ---------- Held ---------- */
.held { position: relative; background: var(--anthrazit); color: var(--weiss); overflow: hidden; }
.held::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 520px at 88% 0%, rgba(255,194,14,.14), transparent 60%);
  pointer-events: none;
}
.held .container { position: relative; z-index: 2; }
.held-raster {
  display: grid; grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr);
  gap: clamp(32px, 5vw, 76px); align-items: center;
  padding: clamp(60px, 7.5vw, 116px) 0 clamp(76px, 9vw, 130px);
}
@media (max-width: 980px) { .held-raster { grid-template-columns: 1fr; padding-bottom: 64px; } }

.held h1 { color: var(--weiss); margin-bottom: .32em; }
.held h1 .zeile-gelb { color: var(--gelb); display: block; }
.held-text { font-size: clamp(1.04rem, .98rem + .4vw, 1.22rem); color: rgba(255,255,255,.78); max-width: 33em; }
.held-knoepfe { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Bildfläche bricht aus dem Raster und überlappt den nächsten Abschnitt */
.held-bild { position: relative; }
.held-bild .rahmen {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--kante);
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.34);
}
.held-bild .rahmen img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.held-bild .warnkante {
  position: absolute; left: -14px; bottom: -14px; width: 128px; height: 14px;
  background: var(--schraffur); z-index: 3;
}
@media (max-width: 980px) { .held-bild .rahmen { aspect-ratio: 16 / 10; } }

/* Foto in einem Abschnitt, mit derselben Kante wie der Held */
.bildrahmen {
  position: relative; margin: 0; border-radius: var(--kante); overflow: hidden;
  box-shadow: 0 24px 56px rgba(30,34,37,.16);
}
.bildrahmen img { width: 100%; height: auto; display: block; }
.sektion-dunkel .bildrahmen { box-shadow: 0 24px 56px rgba(0,0,0,.35); }

/* Platzhalter, bis der Kunde Fotos liefert */
.platz {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 26px;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), var(--stahl);
  border: 1px dashed rgba(255,255,255,.34);
  color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.5;
}
.platz b { font-family: var(--display); font-stretch: 100%; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.platz-hell {
  background: repeating-linear-gradient(-45deg, rgba(30,34,37,.05) 0 10px, transparent 10px 20px), var(--nebel);
  border-color: var(--linie); color: var(--leise);
}
.platz-flaeche { position: relative; aspect-ratio: 3 / 2; border-radius: var(--kante); overflow: hidden; }

/* ---------- Laufband ---------- */
.laufband {
  background: var(--gelb); color: var(--tinte);
  border-block: 3px solid var(--tinte);
  overflow: hidden; padding: 13px 0;
}
.laufband-spur { display: flex; width: max-content; animation: laufen 42s linear infinite; }
.laufband:hover .laufband-spur { animation-play-state: paused; }
.laufband ul { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
.laufband li {
  display: flex; align-items: center; gap: 30px; padding-right: 30px;
  font-family: var(--display); font-weight: 700; font-stretch: 104%;
  font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.laufband li::after { content: ""; width: 7px; height: 7px; background: var(--tinte); transform: rotate(45deg); }
@keyframes laufen { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .laufband-spur { animation: none; }
  .laufband { overflow-x: auto; }
}

/* ---------- Leistungen: Bento statt Kachelreihe ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.feld {
  position: relative; display: flex; flex-direction: column;
  grid-column: span 2;
  min-height: 224px; padding: 28px 26px 24px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--kante);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color var(--tempo), transform var(--tempo), box-shadow var(--tempo);
}
.feld::before {
  content: ""; position: absolute; left: 0; top: 0; width: 0; height: 4px;
  background: var(--gelb); transition: width var(--tempo);
}
.feld:hover { border-color: var(--tinte); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(30,34,37,.1); }
.feld:hover::before { width: 100%; }
.feld-nr {
  font-family: var(--display); font-weight: 700; font-stretch: 88%;
  font-size: .76rem; letter-spacing: .2em; color: var(--leise); margin-bottom: 16px;
}
.feld h3 { margin-bottom: .45em; }
.feld p { color: var(--leise); font-size: .96rem; margin: 0; }
.feld-pfeil {
  margin-top: auto; padding-top: 20px;
  font-family: var(--display); font-weight: 700; font-stretch: 96%;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5em;
  transition: gap var(--tempo), color var(--tempo);
}
.feld:hover .feld-pfeil { gap: 1em; color: var(--gelb-tief); }

/* Hauptgeschäft bekommt Gewicht: dunkel, doppelt hoch */
.feld-gross {
  grid-column: span 3; grid-row: span 2;
  background-color: var(--anthrazit); background-size: cover; background-position: 50% 60%;
  border-color: var(--anthrazit); color: var(--weiss);
  justify-content: flex-end; min-height: 100%;
}
/* Foto abdunkeln, damit der Text sicher lesbar bleibt */
.feld-gross::before {
  content: ""; position: absolute; inset: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(35,40,43,.62) 0%, rgba(35,40,43,.88) 62%, rgba(35,40,43,.96) 100%);
  transition: none;
}
.feld-gross:hover::before { width: 100%; }
.feld-gross > * { position: relative; z-index: 1; }
.feld-gross::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 190px; height: 190px;
  border: 3px solid rgba(255,194,14,.22); transform: rotate(45deg);
}
.feld-gross h3 { color: var(--weiss); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); font-stretch: 110%; text-transform: uppercase; letter-spacing: -.02em; }
.feld-gross p { color: rgba(255,255,255,.72); font-size: 1.02rem; max-width: 30em; }
.feld-gross .feld-nr { color: var(--gelb); }
.feld-gross:hover { border-color: var(--gelb); transform: translateY(-3px); }
.feld-breit { grid-column: span 3; }
@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feld, .feld-breit, .feld-gross { grid-column: span 1; grid-row: auto; }
  .feld-gross { grid-column: span 2; min-height: 260px; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .feld-gross { grid-column: span 1; }
}

/* ---------- Ablauf: Zeitachse mit Konturziffern ---------- */
.achse { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.etappe { position: relative; padding: 42px 26px 0 0; }
.etappe::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--linie);
}
.etappe::after {
  content: ""; position: absolute; left: 0; top: -6px; width: 15px; height: 15px;
  background: var(--gelb); transform: rotate(45deg);
}
.sektion-dunkel .etappe::before { background: rgba(255,255,255,.18); }
.etappe-nr {
  display: block; font-family: var(--display); font-weight: 800; font-stretch: 118%;
  font-size: clamp(2.6rem, 2rem + 2vw, 4rem); line-height: .9; margin-bottom: 14px;
  color: transparent; -webkit-text-stroke: 2px var(--linie);
}
.sektion-dunkel .etappe-nr { -webkit-text-stroke-color: rgba(255,255,255,.32); }
.etappe h3 { margin-bottom: .35em; }
.etappe p { color: var(--leise); font-size: .96rem; }
.sektion-dunkel .etappe p { color: rgba(255,255,255,.68); }
@media (max-width: 900px) { .achse { grid-template-columns: repeat(2, 1fr); row-gap: 40px; } }
@media (max-width: 520px) { .achse { grid-template-columns: 1fr; } }

/* ---------- Bewertungen ---------- */
.note-raster { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(28px,4vw,64px); align-items: center; }
@media (max-width: 900px) { .note-raster { grid-template-columns: 1fr; } }
.note-block { position: relative; padding: 38px 34px; background: var(--tinte); color: var(--weiss); border-radius: var(--kante); }
.note-block::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--schraffur); }
.note-zahl {
  display: block; font-family: var(--display); font-weight: 800; font-stretch: 116%;
  font-size: clamp(4.4rem, 3rem + 7vw, 8rem); line-height: .82; letter-spacing: -.04em;
  color: var(--gelb);
}
.sterne { display: flex; gap: 4px; color: var(--gelb); margin: 18px 0 10px; }
.note-block p { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0 0 22px; }

.stimmen { display: grid; gap: 14px; }
.stimme { background: var(--weiss); border: 1px solid var(--linie); border-left: 4px solid var(--gelb); border-radius: var(--kante); padding: 22px 26px; }
.stimme blockquote { margin: 0 0 12px; font-size: 1rem; }
.stimme figcaption { font-size: .86rem; color: var(--leise); font-weight: 600; letter-spacing: .02em; }
.stimme .sterne { margin: 0 0 12px; }
.stimme .sterne svg { width: 15px; height: 15px; }

/* ---------- Zertifikate ---------- */
.siegel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 780px) { .siegel { grid-template-columns: repeat(2, 1fr); } }
.siegel > * {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 124px; padding: 20px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--kante);
  color: var(--leise); font-size: .84rem; font-weight: 600; text-decoration: none;
  font-family: var(--display); font-stretch: 92%; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color var(--tempo), color var(--tempo);
}
.siegel a:hover { border-color: var(--tinte); color: var(--tinte); }
.siegel .siegel-bild { padding: 16px; }
.siegel .siegel-bild img { max-height: 88px; width: auto; object-fit: contain; }

/* ---------- Preise ---------- */
.preis-raster { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(30px,5vw,72px); align-items: center; }
@media (max-width: 940px) { .preis-raster { grid-template-columns: 1fr; } }
.haken { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 0; }
.haken li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14);
}
.haken li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.haken svg { flex: 0 0 auto; margin-top: 3px; color: var(--gelb); }
.hell .haken li { border-color: var(--linie); }
.hell .haken svg { color: var(--gelb-tief); }

/* ---------- Formular ---------- */
/* Im Kontaktabschnitt bekommt das Formular mehr Breite als die Textspalte –
   die Feldpaare brauchen den Platz, der Text daneben nicht. */
#angebot { padding-block: clamp(40px, 4vw, 60px); }
#angebot .preis-raster {
  align-items: start;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
}
@media (max-width: 940px) { #angebot .preis-raster { grid-template-columns: 1fr; } }
.formular {
  position: relative; background: var(--weiss);
  border: 1px solid var(--linie); border-radius: var(--kante);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 24px 60px rgba(30,34,37,.1);
}
.formular::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 6px; background: var(--schraffur); border-radius: var(--kante) var(--kante) 0 0; }
.paar { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
/* Adresse braucht mehr Platz als die Etage daneben */
.paar-adresse { grid-template-columns: 1.7fr 1fr; }
@media (max-width: 620px) { .paar, .paar-adresse { grid-template-columns: 1fr; } }
.feld-zeile { margin-bottom: 11px; }
.feld-zeile label {
  display: block; margin-bottom: 5px;
  font-family: var(--display); font-size: .74rem; font-weight: 700; font-stretch: 92%;
  letter-spacing: .12em; text-transform: uppercase; color: var(--tinte);
}
.feld-zeile .optional { color: var(--leise); font-weight: 500; letter-spacing: .08em; }
.feld-zeile input, .feld-zeile select, .feld-zeile textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 11px 14px; background: var(--kreide);
  border: 1px solid transparent; border-bottom: 2px solid var(--linie);
  border-radius: var(--kante) var(--kante) 0 0;
  transition: border-color var(--tempo), background var(--tempo);
}
.feld-zeile textarea { min-height: 66px; resize: vertical; }
.feld-zeile input:focus, .feld-zeile select:focus, .feld-zeile textarea:focus {
  outline: none; background: var(--weiss); border-bottom-color: var(--gelb);
}
.hinweis { font-size: .86rem; color: var(--leise); }
.einwilligung { display: flex; align-items: flex-start; gap: 12px; font-size: .86rem; line-height: 1.45; color: var(--leise); margin: 4px 0 16px; }
.einwilligung input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--tinte); }
.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.kontaktwege { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 0; }
.kontaktwege li { border-top: 1px solid var(--linie); }
.kontaktwege li:last-child { border-bottom: 1px solid var(--linie); }
/* Ganze Zeile ist der Link – Symbol, Haupt- und Zusatzzeile gleichermaßen anklickbar */
.kontaktwege .kontaktweg {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; text-decoration: none; color: inherit;
  border-radius: var(--kante);
}
.kontaktwege svg { color: var(--gelb-tief); flex: 0 0 auto; transition: transform var(--tempo); }
.kontaktwege .kontaktweg:hover svg { transform: scale(1.12); }
/* Alle drei Kontaktwege gleich gesetzt: eine Hauptzeile, darunter der Zusatz */
.kontaktwege .haupt {
  display: block; text-decoration: none; color: var(--tinte);
  font-family: var(--display); font-size: 1.14rem; font-weight: 700; font-stretch: 102%;
  letter-spacing: -.01em; line-height: 1.25;
  transition: color var(--tempo);
}
.kontaktwege .kontaktweg:hover .haupt { color: var(--gelb-tief); }
.kontaktwege .hinweis { display: block; margin-top: 3px; }

/* ---------- FAQ: nur Linien ---------- */
.faq { border-top: 2px solid var(--tinte); }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 24px 62px 24px 0;
  font-family: var(--display); font-size: clamp(1.02rem,.98rem + .25vw,1.2rem);
  font-weight: 700; font-stretch: 102%; letter-spacing: -.01em; color: var(--tinte);
}
.faq summary::-webkit-details-marker { display: none; }
/* Plus zum Aufklappen: größer und beide Striche anthrazit, gemeinsame Mitte rechts 17 px */
.faq summary::before,
.faq summary::after {
  content: ""; position: absolute; top: 50%;
  background: var(--tinte); border-radius: 1px;
  transition: opacity var(--tempo), transform var(--tempo);
}
.faq summary::after  { right: 6px; width: 22px; height: 3px; margin-top: -1.5px; }   /* waagerecht */
.faq summary::before { right: 15.5px; width: 3px; height: 22px; margin-top: -11px; } /* senkrecht */
.faq details[open] summary::before { opacity: 0; transform: rotate(90deg); }
.faq .antwort { padding: 0 60px 26px 0; color: var(--leise); max-width: 62ch; }

/* ---------- Abschluss ---------- */
.schluss { position: relative; background: var(--gelb); color: var(--tinte); overflow: hidden; }
.schluss::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(35,40,43,.05) 0 22px, transparent 22px 44px); }
.schluss .container { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding-block: clamp(46px, 6vw, 80px); }
@media (max-width: 820px) { .schluss .container { grid-template-columns: 1fr; } }
.schluss h2 { color: var(--tinte); margin-bottom: .2em; }
.schluss p { margin: 0; font-size: 1.06rem; }
.schluss-knoepfe { display: flex; flex-wrap: wrap; gap: 13px; }

/* ---------- Fuß ---------- */
.fuss { background: var(--nacht); color: rgba(255,255,255,.66); font-size: .94rem; }
.fuss-raster { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 44px; padding: clamp(54px,6vw,80px) 0 46px; }
@media (max-width: 940px) { .fuss-raster { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .fuss-raster { grid-template-columns: 1fr; } }
.fuss-marke { display: inline-block; margin-bottom: 20px; }
.fuss-marke img { width: 196px; transition: opacity var(--tempo); }
.fuss-marke:hover img { opacity: .75; }
.fuss h3 {
  font-size: .74rem; font-weight: 700; font-stretch: 90%; letter-spacing: .2em;
  text-transform: uppercase; color: var(--weiss); margin-bottom: 18px;
}
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.fuss li a { display: flex; align-items: flex-start; gap: 10px; }
.fuss li svg { flex: 0 0 auto; margin-top: 4px; }
/* Pfeile in den Linkspalten sind Zierrat und bleiben zurückhaltend … */
.fuss-raster li svg { color: rgba(255,255,255,.3); transition: color var(--tempo), transform var(--tempo); }
.fuss-raster li:hover svg { color: var(--gelb); transform: translateX(2px); }
/* … die Kontaktzeichen tragen Bedeutung und dürfen die Akzentfarbe haben */
.fuss-kontakt svg { color: var(--gelb) !important; opacity: .8; }
.fuss-kontakt li:hover svg { opacity: 1; transform: none; }
.fuss a { color: rgba(255,255,255,.66); text-decoration: none; }
.fuss a:hover { color: var(--gelb); }
.fuss address { font-style: normal; line-height: 1.65; }
.fuss-unten {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.fuss-unten nav { display: flex; flex-wrap: wrap; gap: 22px; }
/* Urheberhinweis läuft in der Copyright-Zeile mit, wie bei areal4 */
.fuss-credit { font-size: .82rem; opacity: .85; }

/* ---------- Schwebender Direktkontakt ----------
   Am Rechner eine Leiste am rechten Rand, die Beschriftung fährt beim Überfahren aus.
   Auf dem Handy eine Leiste am unteren Rand – dort ist der Daumen. */
.schweber {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 65; display: grid; gap: 2px;
  /* Ohne das dehnt das Raster alle Kacheln auf die Breite der breitesten –
     dann wachsen beim Ausklappen eines Punktes optisch alle drei mit. */
  justify-items: end;
}
.schweber-punkt {
  display: flex; align-items: center;
  background: var(--tinte); color: var(--gelb);
  text-decoration: none; overflow: hidden;
  border-radius: var(--kante) 0 0 var(--kante);
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  transition: background var(--tempo), color var(--tempo);
}
.schweber-symbol { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; }
.schweber-text {
  white-space: nowrap; max-width: 0; padding-right: 0; opacity: 0;
  font-family: var(--display); font-size: .82rem; font-weight: 700; font-stretch: 98%;
  letter-spacing: .06em; text-transform: uppercase;
  transition: max-width .32s cubic-bezier(.2,.7,.25,1), padding var(--tempo), opacity var(--tempo);
}
.schweber-punkt:hover, .schweber-punkt:focus-visible { background: var(--gelb); color: var(--tinte); }
.schweber-punkt:hover .schweber-text, .schweber-punkt:focus-visible .schweber-text {
  max-width: 240px; padding-right: 20px; opacity: 1;
}
/* Immer nur einer offen: liegt der Zeiger auf der Leiste, klappt ein noch fokussierter
   anderer Punkt wieder zu. Sonst stünden zwei Beschriftungen gleichzeitig heraus. */
.schweber:hover .schweber-punkt:focus-visible:not(:hover) .schweber-text {
  max-width: 0; padding-right: 0; opacity: 0;
}
.schweber:hover .schweber-punkt:focus-visible:not(:hover) { background: var(--tinte); color: var(--gelb); }
.schweber:hover .schweber-wa:focus-visible:not(:hover) { color: #25d366; }
/* Grün bleibt WhatsApp vorbehalten – so im Onboarding festgelegt */
.schweber-wa { color: #25d366; }
.schweber-wa:hover, .schweber-wa:focus-visible { background: #25d366; color: var(--weiss); }

@media (max-width: 760px) {
  .schweber {
    top: auto; bottom: 0; left: 0; right: 0; transform: none;
    grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1px;
    border-top: 3px solid var(--gelb);
    justify-items: stretch;   /* auf dem Handy sollen sie die Breite teilen */
  }
  .schweber-punkt {
    flex-direction: column; justify-content: center; gap: 3px;
    padding: 9px 4px; border-radius: 0; box-shadow: none;
  }
  .schweber-symbol { width: auto; height: auto; }
  .schweber-text { max-width: none; padding: 0; opacity: 1; font-size: .68rem; letter-spacing: .04em; }
  /* Platz schaffen, damit die Leiste nichts verdeckt */
  body { padding-bottom: 68px; }
}

/* ---------- Zurück nach oben ---------- */
.nach-oben {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--tinte); color: var(--gelb);
  border: 2px solid transparent; border-radius: var(--kante);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity var(--tempo), transform var(--tempo), visibility var(--tempo),
              background var(--tempo), color var(--tempo);
}
.nach-oben.sichtbar { opacity: 1; visibility: visible; transform: none; }
.nach-oben:hover { background: var(--gelb); color: var(--tinte); }
@media (max-width: 760px) {
  /* über der Kontaktleiste, nicht dahinter */
  .nach-oben { right: 16px; bottom: 82px; width: 46px; height: 46px; }
}
/* Ohne JavaScript erscheint die Schaltfläche nie – dann soll sie auch nicht stören. */
.nach-oben:focus-visible { opacity: 1; visibility: visible; transform: none; }

/* ---------- Textseiten ---------- */
.schmal { max-width: 720px; }

/* ==========================================================================
   Bewegung
   Grundsatz: Ohne JavaScript und bei prefers-reduced-motion ist alles sofort
   sichtbar. Erst die Klasse .bewegung am <html> (vom Inline-Skript gesetzt)
   schaltet die Auftritte frei. Nichts blendet ein, was man nicht auch
   statisch lesen kann.
   ========================================================================== */

/* ---- Auftritt beim Scrollen: Grundvariante ---- */
.bewegung .auf {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .62s cubic-bezier(.2,.7,.25,1), transform .62s cubic-bezier(.2,.7,.25,1);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.bewegung .auf.da { opacity: 1; transform: none; }

/* ---- Variante: Überschrift klappt hinter einer Kante hervor ----
   Wichtig: geklippt werden die KINDER, nie das beobachtete Element selbst.
   Ein Element mit clip-path: inset(0 0 100% 0) hat keine sichtbare Fläche mehr –
   der IntersectionObserver meldet es dann nie als sichtbar und der Auftritt
   löst nie aus. Die Überschrift verhinderte so ihr eigenes Erscheinen. */
.bewegung .auf-klipp > * {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(14px);
  transition: opacity .5s ease, clip-path .8s cubic-bezier(.16,.84,.3,1), transform .8s cubic-bezier(.16,.84,.3,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.bewegung .auf-klipp > :nth-child(2) { transition-delay: calc(var(--i, 0) * 70ms + 90ms); }
.bewegung .auf-klipp.da > * { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }

/* ---- Variante: Bild wird von einem gelben Balken freigewischt ---- */
.wischen { position: relative; overflow: hidden; border-radius: var(--kante); }
.wischen img { display: block; width: 100%; }
.bewegung .wischen::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: var(--gelb);
  transform: translateX(0);
  transition: transform .82s cubic-bezier(.72,0,.24,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.bewegung .wischen.da::after { transform: translateX(101%); }
.bewegung .wischen img { transform: scale(1.09); transition: transform 1.25s cubic-bezier(.16,.84,.3,1); transition-delay: calc(var(--i, 0) * 70ms + 180ms); }
.bewegung .wischen.da img { transform: none; }

/* ---- Auftritt des Helds ----
   Bewusst als CSS-Animation mit animation-fill-mode: both, nicht über eine Klasse,
   die JavaScript nachträglich setzt. Der Held ist der wichtigste Bereich der Seite —
   er darf nicht davon abhängen, dass ein Skript rechtzeitig läuft. */
@keyframes auftritt {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes zeileHoch {
  from { transform: translateY(105%); }
  to   { transform: none; }
}
@keyframes wischWeg {
  from { transform: translateX(0); }
  to   { transform: translateX(101%); }
}
@keyframes bildRuhe {
  from { transform: scale(1.09); }
  to   { transform: none; }
}

.bewegung [data-auftritt] {
  animation: auftritt .7s cubic-bezier(.2,.7,.25,1) both;
  animation-delay: calc(var(--i, 0) * 90ms);
}

/* Überschrift zeilenweise: jede Zeile schiebt sich hinter ihrer Kante hervor */
.zeilen { display: block; }
.zeile { display: block; overflow: hidden; padding-bottom: .04em; }
.zeile > span { display: block; }
.bewegung .zeile > span {
  animation: zeileHoch .85s cubic-bezier(.16,.84,.3,1) both;
  animation-delay: calc(var(--i, 0) * 95ms);
}

/* Bild im Held wischt ohne Zutun von JavaScript frei */
.bewegung .wischen-sofort::after {
  animation: wischWeg .82s cubic-bezier(.72,0,.24,1) both;
  animation-delay: calc(var(--i, 0) * 70ms + 120ms);
  transition: none;
}
.bewegung .wischen-sofort img {
  animation: bildRuhe 1.25s cubic-bezier(.16,.84,.3,1) both;
  animation-delay: calc(var(--i, 0) * 70ms + 300ms);
  transition: none;
}

/* ---- Kopfzeile schrumpft beim Scrollen ---- */
.kopf { transition: min-height var(--tempo), background-color var(--tempo), box-shadow var(--tempo); }
.kopf .container { transition: min-height .28s cubic-bezier(.2,.7,.25,1); }
.kopf .marke img { transition: width .28s cubic-bezier(.2,.7,.25,1); }
.kopf.geschrumpft { background: rgba(35,40,43,.94); backdrop-filter: blur(9px); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.kopf.geschrumpft .container { min-height: 64px; }
.kopf.geschrumpft .marke img { width: 176px; }
@media (max-width: 1020px) {
  .kopf.geschrumpft .container { min-height: 60px; }
  .kopf.geschrumpft .marke img { width: 150px; }
}

/* ---- Laufband startet erst, wenn es sichtbar ist ---- */
.laufband-spur { animation-play-state: paused; }
.laufband.da .laufband-spur { animation-play-state: running; }

/* ---- Zahl im Notenblock zählt hoch ---- */
.note-zahl { font-variant-numeric: tabular-nums; }

/* ---- Kachel-Hover etwas lebendiger ---- */
.feld { transition: border-color var(--tempo), transform .3s cubic-bezier(.2,.7,.25,1), box-shadow .3s ease; }
.feld-symbol, .karte-symbol { transition: transform var(--tempo); }

/* ---- Alles zurück auf Anfang, wenn der Nutzer keine Bewegung will ---- */
@media (prefers-reduced-motion: reduce) {
  .bewegung .auf, .bewegung .auf-klipp > *, .bewegung [data-auftritt],
  .bewegung .zeile > span, .bewegung .wischen img {
    opacity: 1 !important; transform: none !important; clip-path: none !important;
    transition: none !important; animation: none !important;
  }
  .bewegung .wischen::after, .bewegung .wischen-sofort::after { display: none; }
  .laufband-spur { animation: none; }
}
