/* ============================================================================
   Festkiste — Startseite · Stilblatt
   Farben Kombination 08, Schriften Kombination 05: Bodoni Moda (Display) + Jost (Text).
   Netz gegen Überlauf liegt auf main, nie auf html/body (CLAUDE.md § 4).
   ========================================================================== */

:root {
  --papier: #FAF3EC;
  --papier-dunkel: #F8E7D4;
  --band: rgba(236, 162, 79, .15); /* = --papier-dunkel über Creme, aber durchsichtig für das Lichtermeer */
  --tinte: #283B13;
  --tinte-weich: #46571E;
  --messing: #CD6B14;
  --messing-tief: #AC6114; /* tiefes Terrakotta, Leitfarbe: Knöpfe, Kursiv, Marke; Weiss darauf 4,69:1 */
  --messing-text: #8B5814; /* Terrakotta für kleinen Text, gerechnet 4,77:1 auf der hellsten Band-Fläche, 5,45:1 auf Creme */
  --messing-hell: #ECA24F;
  --salbei: #5A6926;
  --linie: rgba(40, 59, 19, .14);
  --fokus: #283B13;
  --w: 1200px;
  --pad: clamp(1.1rem, 4vw, 3.5rem);
  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --text: "Jost", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-variant-numeric: lining-nums;
}
figure, figcaption, blockquote, dl, dd, p, h1, h2, h3, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; max-width: 100%; }
a { color: inherit; }

/* Fokus sichtbar, für Tastatur */
:focus-visible { outline: 3px solid var(--fokus); outline-offset: 3px; border-radius: 4px; }
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--tinte); color: var(--papier); padding: .7rem 1rem; border-radius: 6px;
}
.skip:focus { top: 1rem; }

/* Netz: nur auf main, Kopf und Fuss bleiben fixed-fähig */
main { overflow-x: clip; }

.wrap { width: min(100% - 2 * var(--pad), var(--w)); margin-inline: auto; }

/* ---------- Typografie -------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.015em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.6rem, 10.4vw, 6.2rem); }
h2 { font-size: clamp(2.1rem, 5.8vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.9vw, 1.8rem); line-height: 1.15; }
@media (max-width: 27rem) { h1, h2, h3 { hyphens: auto; -webkit-hyphens: auto; } }
em.kursiv, .kursiv { font-style: italic; color: var(--messing-tief); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--messing-text);
}
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: currentColor; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; max-width: 34ch; }
.zugabe { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--tinte-weich); }
.klein { font-size: .9rem; color: var(--tinte-weich); }

/* ---------- Knöpfe ------------------------------------------------------ */
.btn {
  --bg: var(--tinte); --fg: var(--papier);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.1rem; padding: .85rem 1.5rem; border-radius: 999px;
  background: var(--bg); color: var(--fg); text-decoration: none; font-weight: 600;
  border: 2px solid var(--bg); cursor: pointer; position: relative;
  transition: transform .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn:hover { background: var(--messing-tief); border-color: var(--messing-tief); }
.btn--ghost { --bg: transparent; --fg: var(--tinte); border-color: var(--tinte); }
.btn--ghost:hover { background: var(--tinte); color: var(--papier); }
.btn--messing { --bg: var(--messing-tief); --fg: #fff; }
.btn--messing:hover { background: var(--tinte); border-color: var(--tinte); }
.btn svg { width: 1.2rem; height: 1.2rem; flex: none; }
.btn .btn__text { display: inline-block; transition: transform .35s var(--ease); }

/* ---------- Kopf -------------------------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--papier) 96%, transparent); /* ohne backdrop-filter: der Blur wurde bei jedem Scroll neu gemalt */
  border-bottom: 1px solid var(--linie);
}
.kopf__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.2rem; }
.marke { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--display); font-size: 1.45rem; font-weight: 600; min-height: 44px; }
.marke__zeichen { width: auto; height: 2.9rem; flex: none; } /* Zeichen aus dem Logo, Marke/Logo/logo_anpassen.py (24.09.2026) */
.marke small { font-family: var(--text); font-size: .85rem; letter-spacing: .01em; color: var(--tinte-weich); font-weight: 400; margin-left: .3rem; white-space: nowrap; } /* Satz der Marke wie im Logo: Jost, normale Schreibung */
.nav { display: none; gap: 1.6rem; }
.nav a { text-decoration: none; font-weight: 500; padding: .6rem 0; position: relative; white-space: nowrap; } /* «Audio-Telefon» brach bei 896 px am Bindestrich um (24.09.2026) */
@media (min-width: 56rem) and (max-width: 64rem) { .nav { gap: 1.1rem; } }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .2rem; height: 2px; background: var(--messing); transition: right .3s var(--ease); }
.nav a:hover::after { right: 0; }
@media (min-width: 56rem) { .nav { display: flex; } }
.kopf .btn { min-height: 44px; padding: .55rem 1.1rem; white-space: nowrap; }
/* Instagram in der Kopfzeile (24.09.2026); unter 24 rem Kurzform des Knopfs, sonst fehlen bei 360 px rund 12 px */
.kopf__rechts { display: flex; align-items: center; gap: .35rem; flex: none; }
.kopf__insta { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--messing-tief); text-decoration: none; }
.kopf__insta:hover { background: color-mix(in srgb, var(--messing-hell) 25%, transparent); }
.kopf__insta svg { width: 1.45rem; height: 1.45rem; }
.knopf-kurz { display: none; }
@media (max-width: 24rem) { .knopf-lang { display: none; } .knopf-kurz { display: inline; } }
@media (min-width: 56rem) and (max-width: 79.99rem) { .marke small { display: none; } } /* neben dem Menü erst ab 80 rem Platz (gemessen 24.09.2026: bei 896 und 1024 px brach die Kopfzeile um) */
@media (max-width: 30rem) { .marke small { display: none; } .kopf .btn { padding: .5rem .9rem; font-size: .95rem; } }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 56rem);
  display: grid; align-items: end;
  background-color: #EAE5D8; /* echte Farbe unter Foto und Schleier auf der Textseite, Kontrastmessung sieht sie */
  color: var(--tinte);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5rem), 0 100%);
  padding-bottom: 6rem;
}
@media (min-width: 56rem) { .hero { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7rem), 0 100%); padding-bottom: 8rem; } }
.hero__foto { position: absolute; inset: 0; z-index: -3; background: #ECA24F; overflow: clip; }
.hero__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 55%; }
/* Kein Rauschfilter über der ganzen Hero-Fläche: feTurbulence + multiply kostete auf dem
   simulierten Mobilgerät Hauptthread-Zeit (Lighthouse 07.09.2026, mainthread 6,5 s). Das Korn
   kommt später mit dem echten Foto. */
.hero__bild { position: absolute; inset: 0; z-index: -2; overflow: clip; } /* Bildzuschnitt: das Telefon darf rechts angeschnitten sein */
.hero__telefon {
  position: absolute; right: -6%; bottom: 9%;
  width: clamp(16rem, 42vw, 34rem); opacity: .92;
  filter: drop-shadow(0 30px 40px rgba(40, 59, 19, .35));
}
/* schmal: das Telefon schaut oben rechts herein, dort steht kein Text (gemessen 07.09.2026: unten lag es unter der Schlusszeile) */
@media (max-width: 56rem) { .hero__telefon { bottom: auto; top: 1.5rem; right: -12%; width: 13rem; opacity: .8; } .hero__in { padding-top: 9.5rem; } }
.hero__canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.hero__schleier {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(250, 243, 236, .97) 0%, rgba(250, 243, 236, .93) 40%, rgba(250, 243, 236, .55) 62%, rgba(250, 243, 236, .1) 85%);
}
@media (max-width: 56rem) { .hero__schleier { background: linear-gradient(180deg, rgba(250, 243, 236, .55) 0%, rgba(250, 243, 236, .95) 34%, rgba(250, 243, 236, .97) 100%); } .hero__foto img { object-position: 60% 30%; } }
.hero__in { position: relative; z-index: 1; padding-top: 7rem; }
.hero__in > * { max-width: 44rem; }
.hero h1 { margin: 1rem 0 1.4rem; }
.hero h1 .zeile { display: block; }
.hero h1 .zeile--2 { padding-left: clamp(.6rem, 6vw, 4rem); }
.hero__knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.2rem; }
.hero__schluss { font-size: .95rem; color: var(--tinte-weich); }

/* gestaffeltes Auftauchen im Hero: Endzustand sichtbar, Skript setzt Startzustand.
   Die H1 bleibt von der ersten Millisekunde an sichtbar (opacity 1) — sie ist der grösste
   Paint; unsichtbar gestartet verschob sie den LCP auf 3,8 s (Lighthouse 07.09.2026). */
.hero [data-auftauchen] { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .hero [data-auftauchen]:not(.da) { opacity: 0; transform: translateY(14px); }
.hero [data-h1-sichtbar] { animation: h1-heben 1s var(--ease) both; }
@keyframes h1-heben { from { transform: translateY(12px); } to { transform: none; } }

/* ---------- Vertrauensanker -------------------------------------------- */
.anker { padding: 1rem 0 4rem; }
.anker__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .anker__grid { grid-template-columns: 1.3fr 1fr 1fr 1.15fr; align-items: start; } }
.anker__grid > li { min-width: 0; padding: 1rem 0 0; border-top: 2px solid var(--tinte); }
.anker__grid > li:nth-child(2) { margin-top: 1.5rem; }
.anker__grid > li:nth-child(4) { margin-top: 3rem; }
.anker__grid strong { display: block; font-family: var(--display); font-size: 1.3rem; font-weight: 500; margin-bottom: .35rem; }
.anker__zugabe { margin-top: 2.2rem; max-width: 52ch; padding-left: 1rem; border-left: 3px solid var(--messing); }

/* ---------- Laufband ---------------------------------------------------- */
.ticker { overflow: hidden; border-block: 1px solid var(--linie); padding: .8rem 0; background: var(--band); }
.ticker__spur { display: flex; gap: 3rem; width: max-content; animation: lauf 38s linear infinite; }
.ticker span { font-family: var(--display); font-style: italic; font-size: 1.3rem; white-space: nowrap; color: var(--tinte-weich); }
.ticker span::after { content: "·"; margin-left: 3rem; color: var(--messing); }
@keyframes lauf { to { transform: translateX(-50%); } }

/* ---------- Problem & Lösung (Bildpaar mit Überlappung) ----------------- */
.problem { padding: 5rem 0 4rem; }
.problem__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) {
  .problem__grid { grid-template-columns: 7fr 5fr; gap: 4rem; align-items: center; }
  .problem__text { order: 2; }
}
.problem__text p + p { margin-top: 1rem; }
.problem__text .loesung { margin-top: 2rem; padding: 1.4rem 1.5rem; background: var(--tinte); color: var(--papier); border-radius: 14px; transform: rotate(-1deg) scale(.985); } /* scale hält das gedrehte Rechteck im Container (gemessen: +2 px bei 360) */
.problem__text .loesung p { color: var(--papier); }
.bildpaar { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: auto; }
.bildpaar .bild--hoch { grid-column: 1 / 9; grid-row: 1; aspect-ratio: 3 / 4; }
.bildpaar .bild--quer { grid-column: 5 / 13; grid-row: 1; margin-top: 62%; aspect-ratio: 5 / 3; z-index: 1; box-shadow: 0 30px 60px -20px rgba(40, 59, 19, .45); }
.bildpaar .stempel {
  position: absolute; left: -.5rem; bottom: 12%; z-index: 2;
  width: 6.4rem; height: 6.4rem; border-radius: 50%; background: var(--messing-tief);
  color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-style: italic; font-size: .95rem; line-height: 1.1; padding: .6rem;
  animation: dreh 24s linear infinite;
}
@keyframes dreh { to { transform: rotate(360deg); } }

/* Platzhalter-Bilder mit Bildidee */
.bild {
  position: relative; overflow: hidden; border-radius: 12px; min-width: 0;
  background: linear-gradient(150deg, #EAE5D8 0%, #ECA24F 55%, #5A6926 100%);
  isolation: isolate;
}
.bild::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bild > svg, .bild > img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; transition: transform 1.2s var(--ease); }
.bild > img { object-fit: cover; }
.bild:hover > svg, .bild:hover > img { transform: scale(1.03); }
.textlink { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--messing); padding-bottom: .1rem; display: inline-block; min-height: 44px; line-height: 44px; }
.textlink:hover { color: var(--messing-text); }
.karte__cta { margin-top: 1rem; }
.ablauf__cta { margin-top: 2.5rem; }
.ablauf__hinter { position: absolute; inset: 0; z-index: 0; overflow: clip; }
.ablauf__hinter img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.6); }

/* Natascha */
.natascha { padding: 4rem 0 3rem; }
.natascha__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) { .natascha__grid { grid-template-columns: 4fr 7fr; gap: 4rem; align-items: center; } }
.bild--portrait { aspect-ratio: 4 / 5; max-width: 22rem; transform: rotate(-2deg) scale(.96); } /* scale hält das gedrehte Rechteck im Container (gemessen: +7 px bei 360) */
.natascha p + p { margin-top: 1rem; }
.natascha__logo { display: block; width: min(15rem, 100%); height: auto; margin: 1.6rem 0 1.8rem; position: relative; z-index: 1; background: var(--papier); border-radius: 1.5rem; box-shadow: 0 0 1.4rem 1.1rem var(--papier); } /* ganzes Logo als Stempel unter der Unterschrift (24.09.2026); Creme-Grund mit weichem Rand, damit kein Licht und kein Zweig hinter dem Logo durchscheint */

/* Bald im Verleih */
.bald { padding: 5rem 0 3rem; }
.bald__kopf { max-width: 60ch; margin-bottom: 2.5rem; }
.bald__kopf .lead { margin-top: 1rem; }
.bald__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .bald__grid { grid-template-columns: 1fr 1fr 1fr; } .bald__grid > li:nth-child(2) { margin-top: 2.5rem; } }
.bald__karte { min-width: 0; }
.bald__karte h3 { margin: 1rem 0 .4rem; }
.bald__karte p { color: var(--tinte-weich); }
.bild--klein { aspect-ratio: 3 / 2; }
.bald__cta { margin-top: 2rem; }
.fuss__nachweis { margin-top: 1rem; font-size: .8rem; max-width: 60ch; }
.fuss__insta { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; margin-top: .3rem; font-weight: 600; } /* Instagram in der Fusszeile (24.09.2026) */
.fuss__insta svg { width: 1.15rem; height: 1.15rem; flex: none; }
.bild figcaption {
  position: absolute; left: .8rem; bottom: .8rem; right: .8rem; z-index: 2;
  font-size: .78rem; line-height: 1.35; color: #fff;
  background: rgba(40, 59, 19, .82); padding: .5rem .7rem; border-radius: 6px;
}
.bild figcaption b { color: var(--messing-hell); font-weight: 600; }
.bild--dunkel { background: linear-gradient(160deg, #283B13 0%, #283B13 70%); }

/* ---------- Leistungen (Broken Grid) ----------------------------------- */
.leistungen { padding: 4rem 0 5rem; }
.leistungen__kopf { display: grid; gap: 1.2rem; margin-bottom: 2.5rem; }
@media (min-width: 56rem) { .leistungen__kopf { grid-template-columns: 5fr 4fr; align-items: end; } }
.leistungen__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .leistungen__grid { grid-template-columns: repeat(6, 1fr); } }
.karte {
  min-width: 0; padding: 1.5rem 1.4rem 1.6rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--linie); position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
}
.karte:hover { box-shadow: 0 24px 48px -24px rgba(40, 59, 19, .35); }
.karte h3 { margin: .9rem 0 .5rem; overflow-wrap: break-word; }
.karte p { color: var(--tinte-weich); }
.karte .ico { width: 3rem; height: 3rem; color: var(--messing-tief); }
.karte:hover .ico { animation: wipp .7s var(--ease); }
@keyframes wipp { 30% { transform: rotate(-6deg) scale(1.06); } 60% { transform: rotate(4deg); } }
@media (min-width: 46rem) {
  .karte--1 { grid-column: 1 / 5; }
  .karte--2 { grid-column: 5 / 7; margin-top: 2.5rem; }
  .karte--3 { grid-column: 1 / 3; margin-top: -1.5rem; }
  .karte--4 { grid-column: 3 / 7; }
  .karte--5 { grid-column: 1 / 4; margin-top: 1.5rem; }
  .karte--6 { grid-column: 4 / 7; margin-top: -1rem; }
  .karte--7 { grid-column: 1 / 7; display: flex; gap: 1.5rem; align-items: flex-start; margin-top: .5rem; }
  .karte--7 .ico { flex: none; width: 3.6rem; height: 3.6rem; margin-top: .3rem; }
  .karte--7 h3 { margin-top: 0; }
}
.karte--7 { background: var(--papier-dunkel); }
.karte--messing { background: var(--messing-tief); color: #fff; border-color: transparent; }
.karte--messing p, .karte--messing h3 { color: #fff; }
.karte--messing .ico { color: #fff; }
.karte .preis { display: block; margin-top: .9rem; font-family: var(--display); font-size: 1.35rem; line-height: 1.15; }
.karte .preis small { display: block; font-family: var(--text); font-size: .8rem; margin-top: .15rem; color: inherit; opacity: .85; }

/* ---------- Zahlen vor hohem Zuschnitt ---------------------------------- */
.zahlen { padding: 3rem 0 5rem; }
.zahlen__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) { .zahlen__grid { grid-template-columns: 4fr 7fr; align-items: center; } }
.zahlen .bild--hoch2 { aspect-ratio: 3 / 5; max-height: 34rem; }
.zahlen__liste { display: grid; gap: 1.6rem; }
@media (min-width: 40rem) { .zahlen__liste { grid-template-columns: 1fr 1fr; } .zahlen__liste > li:nth-child(3) { grid-column: 2; } }
.zahl { border-top: 2px solid var(--tinte); padding-top: .8rem; min-width: 0; }
.zahl b { display: block; font-family: var(--display); font-size: clamp(3rem, 8vw, 5rem); line-height: 1; font-weight: 500; color: var(--messing-tief); font-variant-numeric: tabular-nums; }
.zahl b small { font-size: .35em; margin-left: .2em; color: var(--tinte); }
.zahl span { display: block; margin-top: .4rem; }
.zahl .quelle { font-size: .8rem; color: var(--tinte-weich); }

/* ---------- Hörprobe ---------------------------------------------------- */
.beweis { padding: 2rem 0 5rem; }
.beweis__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) { .beweis__grid { grid-template-columns: 5fr 6fr; align-items: center; } }
.beweis .bild--quadrat { aspect-ratio: 1; max-width: 26rem; }
.player {
  border: 1px solid var(--linie); border-radius: 18px; background: #fff; padding: 1.4rem;
  display: grid; gap: 1rem;
}
.player__kopf { display: flex; align-items: center; gap: 1rem; }
.player__play { width: 3.2rem; height: 3.2rem; border-radius: 50%; border: 2px solid var(--tinte); background: transparent; display: grid; place-items: center; cursor: not-allowed; opacity: .55; }
.player__play svg { width: 1.2rem; height: 1.2rem; }
.player__welle { height: 4.5rem; width: 100%; }
.player .hinweis { font-size: .9rem; color: var(--tinte-weich); border-left: 3px solid var(--messing); padding-left: .8rem; }
blockquote.zitat { font-family: var(--display); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.25; }
blockquote.zitat footer { font-family: var(--text); font-style: normal; font-size: .9rem; margin-top: .8rem; color: var(--tinte-weich); }

/* ---------- Ablauf (dunkel) -------------------------------------------- */
.ablauf { background: var(--tinte); color: var(--papier); padding: 5rem 0; position: relative; }
.ablauf .eyebrow { color: var(--messing-hell); }
.ablauf__kopf { display: grid; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 56rem) { .ablauf__kopf { grid-template-columns: 6fr 5fr; align-items: end; } }
.ablauf__kopf .lead { color: #FAF3EC; }
.schritte { display: grid; gap: 1.5rem; grid-template-columns: 1fr; counter-reset: s; }
@media (min-width: 46rem) { .schritte { grid-template-columns: repeat(3, 1fr); gap: 2rem; } .schritte > li:nth-child(2) { margin-top: 3rem; } .schritte > li:nth-child(3) { margin-top: 6rem; } }
.schritt { position: relative; padding: 1.6rem 0 0; border-top: 1px solid rgba(250, 243, 236, .25); min-width: 0; }
.schritt::before {
  counter-increment: s; content: "0" counter(s);
  font-family: var(--display); font-size: 4.2rem; line-height: 1; font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px var(--messing-hell);
  display: block; margin-bottom: .4rem;
}
.schritt .ico { width: 2.6rem; height: 2.6rem; color: var(--messing-hell); margin-bottom: .8rem; }
.schritt h3 { color: #fff; margin-bottom: .5rem; }
.schritt p { color: #FAF3EC; }
.nicht { margin-top: 3rem; padding: 1.4rem 1.5rem; border: 1px dashed rgba(250, 243, 236, .45); border-radius: 14px; max-width: 60ch; }
.nicht h3 { color: var(--messing-hell); font-size: 1.15rem; margin-bottom: .6rem; }
.nicht li { padding-left: 1.2rem; position: relative; margin: .3rem 0; color: #FAF3EC; }
.nicht li::before { content: "—"; position: absolute; left: 0; color: var(--messing-hell); }
.ablauf .bild--hinter { position: absolute; inset: 0; z-index: 0; border-radius: 0; opacity: .18; background: linear-gradient(160deg, #5A6926, #283B13); }
.ablauf .wrap { position: relative; z-index: 1; }

/* ---------- Fragen ------------------------------------------------------ */
.fragen { padding: 5rem 0; }
.fragen__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) { .fragen__grid { grid-template-columns: 4fr 7fr; align-items: start; } .fragen__seite { position: sticky; top: 6rem; } }
.fragen .bild--breit { aspect-ratio: 4 / 3; margin-top: 1.5rem; }
details { border-top: 1px solid var(--linie); }
details:last-of-type { border-bottom: 1px solid var(--linie); }
summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 0; font-family: var(--display); font-size: 1.25rem; font-weight: 500; min-height: 44px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: none; width: 2rem; height: 2rem; border: 1px solid var(--tinte); border-radius: 50%; display: grid; place-items: center; font-family: var(--text); font-size: 1.2rem; transition: background .3s, color .3s; }
/* kein rotate: das gedrehte Quadrat ragte 6 px über den Container (gemessen 06.09.2026 bei 360 px) */
details[open] summary::after { content: "–"; background: var(--tinte); color: var(--papier); }
details p { padding: 0 0 1.2rem; color: var(--tinte-weich); max-width: 60ch; }

/* ---------- Kontakt ----------------------------------------------------- */
.kontakt { padding: 4rem 0 6rem; }
.kontakt__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.kontakt__grid > * { min-width: 0; } /* sonst bläht langer Inhalt die Spalte auf (24.09.2026) */
.formular__status { overflow-wrap: anywhere; }
@media (min-width: 56rem) { .kontakt__grid { grid-template-columns: 5fr 6fr; gap: 4rem; } }
.kontakt__wege { display: grid; gap: .8rem; margin-top: 1.5rem; }
.weg { display: flex; align-items: center; gap: .9rem; padding: .9rem 1rem; border: 1px solid var(--linie); border-radius: 12px; text-decoration: none; background: #fff; min-height: 44px; transition: transform .4s var(--ease); }
.weg:hover { transform: translateX(4px); }
.weg svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--messing-tief); }
.weg b { display: block; }
.weg span { font-size: .9rem; color: var(--tinte-weich); }
.formular { background: #fff; border: 1px solid var(--linie); border-radius: 18px; padding: 1.5rem; display: grid; gap: 1rem; }
.formular h3 { font-size: 1.4rem; }
.feld { display: grid; gap: .35rem; min-width: 0; }
.feld[hidden] { display: none; } /* display:grid überstimmte hidden: Kilometer- und Stickname-Feld waren immer sichtbar (gemessen 24.09.2026) */
.feld label { font-size: .9rem; font-weight: 600; }
.feld input, .feld select, .feld textarea {
  width: 100%; min-width: 0; min-height: 44px; padding: .65rem .8rem; border: 1px solid #77824A; border-radius: 8px; background: #fff;
}
.feld textarea { min-height: 6rem; resize: vertical; }
.formular .zwei { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 30rem) { .formular .zwei { grid-template-columns: 1fr 1fr; } }
.formular fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.formular legend { font-size: .9rem; font-weight: 600; margin-bottom: .4rem; }
.wahl { display: flex; flex-wrap: wrap; gap: .5rem; }
.wahl label { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; padding: .4rem .9rem; border: 1px solid #77824A; border-radius: 999px; cursor: pointer; }
.wahl input { width: 1.35rem; height: 1.35rem; min-height: 0; accent-color: var(--messing-tief); } /* Tappfläche ist das umschliessende Label, 44 px */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formular .klein { font-size: .82rem; }

/* ---------- Fuss -------------------------------------------------------- */
.fuss { border-top: 1px solid var(--linie); padding: 2.5rem 0 7rem; font-size: .92rem; color: var(--tinte-weich); }
.fuss__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .fuss__grid { grid-template-columns: 2fr 1fr 1fr; } }
.fuss a { text-decoration: none; }
.fuss a:hover { color: var(--messing-text); }
.fuss li { margin: .25rem 0; }
.fuss li a { display: inline-flex; align-items: center; min-height: 44px; padding: .4rem 0; }

/* schwebender WhatsApp-Knopf: ausserhalb von main, bleibt fixed */
.schwebend {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 50;
  display: inline-flex; align-items: center; gap: .6rem; min-height: 3.4rem; padding: .7rem 1.1rem .7rem .9rem;
  background: #1F7A4D; color: #fff; text-decoration: none; border-radius: 999px; font-weight: 600;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .45);
}
.schwebend svg { width: 1.6rem; height: 1.6rem; }
.schwebend span { display: none; }
@media (min-width: 40rem) { .schwebend span { display: inline; } }

/* ---------- Reveals ----------------------------------------------------- */
[data-reveal] { transition: opacity var(--d, .8s) var(--ease), transform var(--d, .8s) var(--ease); transition-delay: var(--v, 0s); }
.js [data-reveal]:not(.da) { opacity: 0; transform: translateY(22px); }
.js [data-reveal="links"]:not(.da) { transform: translateX(-24px); }
.js [data-reveal="rechts"]:not(.da) { transform: translateX(24px); }
.js [data-reveal="zoom"]:not(.da) { transform: scale(.96); }
/* Icons zeichnen sich */
.ico path, .ico circle, .ico line, .ico rect, .ico polyline { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.js .ico [data-strich] { stroke-dasharray: 120; stroke-dashoffset: 120; transition: stroke-dashoffset 1.3s var(--ease); }
.js .da .ico [data-strich], .js .ico.da [data-strich] { stroke-dashoffset: 0; }

/* ---------- Bewegung aus --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-property: opacity !important; transition-duration: .4s !important; }
  .js [data-reveal]:not(.da), .js .hero [data-auftauchen]:not(.da) { transform: none; }
  .js .ico [data-strich] { stroke-dashoffset: 0; }
  .btn, .karte, .weg, .bild > svg { transform: none !important; }
}

/* Lichtermeer: feste Ebene hinter allem Inhalt (lichtermeer.js). body hat keinen eigenen Stapelkontext
   und html keinen Hintergrund, deshalb liegt z-index:-1 über dem Creme der Seite und unter dem Inhalt. */
.lichtermeer { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: .8; } /* Natascha 24.09.2026: «etwas transparenter, nur bisschen» */
/* Lichtfleck am Zeiger (lichtermeer.js), hinter dem Inhalt. Schein höchstens Sonne 25 %: kleine
   Terrakotta-Schrift darüber bleibt bei 4,64 : 1 (gerechnet 23.09.2026). */
.zeigerlicht { position: fixed; left: 0; top: 0; z-index: -1; width: 46vmin; height: 46vmin; min-width: 260px; min-height: 260px; border-radius: 50%; pointer-events: none; background: radial-gradient(closest-side, rgba(244, 184, 96, .25), rgba(236, 162, 79, .12) 55%, transparent); opacity: 0; transition: opacity .6s; will-change: transform; }
.zeigerlicht.an { opacity: 1; }
