/* ============================================================
   IMPULS – Websites für Gastgeber
   Statische Seite, vorbereitet für All-Inkl (kein Build nötig)
   Schriften liegen lokal in /schriften – keine externen Aufrufe
   ============================================================ */

@font-face {
  font-family: "Manrope";
  src: url("schriften/manrope-normal.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("schriften/fraunces-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("schriften/fraunces-italic.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --nacht: #0d1412;
  --nacht-2: #16241f;
  --nacht-3: #1e302a;
  --papier: #f9f6f0;
  --sand: #efe8db;
  --sand-tief: #e4dac8;
  --tinte: #16201d;
  --grau: #5e6c67;
  --grau-hell: #8d9a95;

  --glut: #f0a23c;
  --glut-tief: #d4832a;
  --koralle: #e2603f;
  --see: #2fb8a0;

  --linie: rgba(22, 32, 29, .13);
  --linie-dunkel: rgba(255, 255, 255, .14);

  --verlauf: linear-gradient(115deg, #f0a23c 0%, #e2603f 55%, #d4483f 100%);
  --verlauf-kalt: linear-gradient(115deg, #2fb8a0 0%, #3aa1b8 100%);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", system-ui, sans-serif;

  --rund: 16px;
  --rund-gross: 26px;
  --schatten: 0 30px 70px -34px rgba(13, 20, 18, .45);
  --schatten-tief: 0 44px 90px -40px rgba(13, 20, 18, .6);
  --kopf-h: 74px;
  --takt: clamp(72px, 9vw, 132px);
}

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

html {
  scroll-behavior: smooth; scroll-padding-top: calc(var(--kopf-h) + 16px);
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .18vw, 1.09rem);
  line-height: 1.68;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.05rem, 4.9vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.25; }
em { font-style: italic; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--nacht); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--glut); outline-offset: 3px; border-radius: 4px; }

/* Breite über Innenabstand statt über vw – so bleibt der Rand auf jedem
   Gerät gleich, auch wenn der Besucher die Schrift kleiner stellt. */
.huelle {
  width: 100%; max-width: 1220px; margin-inline: auto; position: relative;
  padding-inline: clamp(20px, 4vw, 48px);
}
.huelle--schmal { max-width: calc(860px + 2 * clamp(20px, 4vw, 48px)); }

/* Rasterfelder dürfen unter ihre Mindestbreite schrumpfen – sonst schiebt
   ein einzelner langer Text die ganze Spalte über den Bildschirmrand. */
.held__gitter > *, .rechner > *, .probe > *, .kontakt > *,
.karten > *, .sorgen > *, .ablage__gitter > *, .bausteine__reihe > *,
.formular > *, .preis > *, .schritte > * { min-width: 0; }

/* ───────────────────────── Bausteine ───────────────────────── */

.augenbraue {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--glut-tief); margin-bottom: 20px;
}
.augenbraue::before { content: ""; width: 26px; height: 2px; background: var(--verlauf); border-radius: 2px; }

.abschnitt--dunkel .augenbraue { color: var(--glut); }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .005em;
  border: 1.6px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.knopf--voll {
  background: var(--verlauf); color: #2a1405;
  box-shadow: 0 14px 30px -14px rgba(212, 131, 42, .8);
}
.knopf--voll:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(212, 131, 42, .9); }
.knopf--rand { border-color: var(--linie); color: var(--tinte); background: rgba(255,255,255,.5); }
.knopf--rand:hover { border-color: var(--tinte); transform: translateY(-2px); }
.abschnitt--dunkel .knopf--rand { border-color: var(--linie-dunkel); color: #f2f5f3; background: rgba(255,255,255,.05); }
.abschnitt--dunkel .knopf--rand:hover { border-color: rgba(255,255,255,.55); }
.knopf--klein { padding: 11px 20px; font-size: .87rem; }
.knopf--gross { padding: 18px 36px; font-size: 1.02rem; }
.knopf--breit { width: 100%; }
.knopf[disabled] { opacity: .4; cursor: not-allowed; box-shadow: none; transform: none; }

.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.72); border: 1px solid var(--linie);
  font-size: .8rem; font-weight: 600; letter-spacing: .01em; color: var(--grau);
  backdrop-filter: blur(6px);
}
.chip__punkt {
  width: 9px; height: 9px; border-radius: 50%; background: var(--see);
  box-shadow: 0 0 0 0 rgba(47,184,160,.6); animation: pochen 2.6s infinite;
}
@keyframes pochen {
  0% { box-shadow: 0 0 0 0 rgba(47,184,160,.55); }
  70% { box-shadow: 0 0 0 11px rgba(47,184,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,184,160,0); }
}

.pkt { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.pkt--frei { background: #cfd8d4; }
.pkt--belegt { background: var(--koralle); }
.pkt--anfrage { background: repeating-linear-gradient(45deg, var(--glut) 0 3px, #fff 3px 6px); }
.pkt--wahl { background: var(--nacht); }

/* ───────────────────────── Kopf ───────────────────────── */

.kopf {
  position: sticky; top: 0; z-index: 100;
  height: var(--kopf-h);
  background: rgba(249, 246, 240, .78);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.kopf.ist-gescrollt { border-bottom-color: var(--linie); background: rgba(249,246,240,.92); }
.kopf__innen { display: flex; align-items: center; gap: 22px; height: var(--kopf-h); }

/* flex: none – sonst quetscht die Kopfzeile bei mittleren Breiten das Logo
   schmal, während die Höhe stehen bleibt. */
.marke { display: flex; align-items: center; margin-right: auto; flex: none; }
.marke__bild { height: 46px; width: auto; max-width: none; }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 9px 13px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--grau);
  transition: color .18s ease, background .18s ease;
}
.nav a:hover, .nav a.ist-aktiv { color: var(--tinte); background: rgba(22,32,29,.06); }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 11px; width: 22px; height: 2px; background: var(--tinte); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ───────────────────────── Held ───────────────────────── */

.held {
  position: relative;
  padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, #fbf9f4 0%, var(--papier) 45%, var(--sand) 100%);
  overflow: hidden;
}
.puls { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.held__gitter {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .95fr);
  gap: clamp(30px, 3.6vw, 54px); align-items: center;
}
.held__text { position: relative; z-index: 2; }
.held h1 { margin: 22px 0 24px; }
.held h1 em { font-style: italic; color: var(--glut-tief); }
.held__vorspann { font-size: clamp(1.03rem, 1.15vw, 1.16rem); color: #3b4844; max-width: 34em; }
.held__vorspann strong { font-weight: 700; color: var(--tinte); box-shadow: inset 0 -.42em 0 rgba(240,162,60,.28); }
.held__knoepfe { display: flex; flex-wrap: wrap; gap: 13px; margin: 30px 0 34px; }

.held__belege {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  padding-top: 24px; border-top: 1px solid var(--linie);
}
.held__belege li { display: flex; flex-direction: column; }
.held__belege strong { font-family: var(--serif); font-size: 1.42rem; font-weight: 600; line-height: 1.1; }
.held__belege span { font-size: .78rem; color: var(--grau); }

.held__hinweis {
  position: relative; z-index: 2;
  width: min(1220px, 90vw); margin: clamp(34px, 5vw, 58px) auto 0;
  font-size: .8rem; color: var(--grau-hell); letter-spacing: .02em;
}

/* Browserfenster */
.fenster {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid rgba(22,32,29,.1);
  box-shadow: var(--schatten-tief);
}
.fenster__leiste {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #eceae5; border-bottom: 1px solid rgba(22,32,29,.08);
}
.fenster__leiste i { width: 9px; height: 9px; border-radius: 50%; background: #cdc9c1; }
.fenster__leiste i:first-child { background: #e2603f; }
.fenster__leiste i:nth-child(2) { background: #f0a23c; }
.fenster__leiste i:nth-child(3) { background: #2fb8a0; }
.fenster__adresse {
  margin-left: 10px; font-size: .72rem; color: #7c837f; letter-spacing: .02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  /* ohne min-width:0 kann das Flex-Element nicht schrumpfen und die
     lange Adresse schiebt das ganze Fenster über den Bildschirmrand */
  flex: 0 1 auto; min-width: 0;
}
.fenster__demo {
  margin-left: auto; flex: none; padding: 3px 10px; border-radius: 999px;
  background: var(--verlauf); color: #2a1405;
  font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}

.fuss__demo {
  font-size: .8rem; line-height: 1.6; color: #7c8a85;
  padding: 16px 18px; border-radius: 12px; background: rgba(255,255,255,.04);
  max-width: 78ch;
}

/* Anklickbare Bildschirmfotos der Demo */
.fenster__link { display: block; position: relative; }
.fenster__link::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(13, 20, 18, .38); opacity: 0; transition: opacity .25s ease;
}
.fenster__link:hover::after, .fenster__link:focus-visible::after { opacity: 1; }
.fenster__oeffnen {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  transform: translate(-50%, -44%) scale(.94);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; white-space: nowrap;
  background: var(--verlauf); color: #2a1405; font-weight: 800; font-size: .95rem;
  box-shadow: 0 20px 44px -18px rgba(13, 20, 18, .8);
  opacity: 0; transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.3,1);
}
.fenster__oeffnen i { font-style: normal; }
.fenster__link:hover .fenster__oeffnen,
.fenster__link:focus-visible .fenster__oeffnen { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (hover: none) {
  .fenster__oeffnen { opacity: 1; transform: translate(-50%, -50%) scale(1); padding: 11px 20px; font-size: .84rem; }
}

.held__buehne { position: relative; z-index: 2; }
.fenster--gross { transform: perspective(1400px) rotateY(-6deg) rotateX(1.5deg); }

.schwebe {
  position: absolute; border-radius: 14px; background: #fff;
  border: 1px solid rgba(22,32,29,.09);
  box-shadow: 0 26px 50px -26px rgba(13,20,18,.5);
  animation: schweben 7s ease-in-out infinite;
}
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.schwebe--kalender { left: -6%; bottom: -7%; width: 220px; padding: 14px 15px 12px; }
.schwebe--meldung {
  right: -4%; top: -5%; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px 13px 14px; animation-delay: -3.5s; max-width: 290px;
}
.schwebe__titel { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--grau); margin-bottom: 9px; }
.schwebe__fuss { font-size: .63rem; color: var(--grau); margin-top: 9px; display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }
.schwebe__fuss .pkt { width: 8px; height: 8px; margin-right: 2px; }
.schwebe__symbol {
  flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--verlauf); color: #fff; font-size: 1rem;
}
.schwebe--meldung strong { display: block; font-size: .86rem; }
.schwebe--meldung span { display: block; font-size: .74rem; color: var(--grau); line-height: 1.4; }

.mini-kal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.mini-kal i {
  aspect-ratio: 1; border-radius: 3px; background: #eceae5;
}
.mini-kal i.ist-belegt { background: var(--koralle); opacity: .85; }
.mini-kal i.ist-anfrage { background: repeating-linear-gradient(45deg, var(--glut) 0 3px, #fff 3px 6px); }

/* ───────────────────────── Abschnitte ───────────────────────── */

.abschnitt { padding: var(--takt) 0; position: relative; }
.abschnitt--sand { background: var(--sand); }
.abschnitt--dunkel { background: var(--nacht); color: #e7ece9; }
.abschnitt--dunkel h2, .abschnitt--dunkel h3 { color: #fbfaf7; }

.kopfzeile { max-width: 40ch; margin-bottom: clamp(38px, 5vw, 62px); }
.kopfzeile h2 + .kopfzeile__text { margin-top: 20px; }
.kopfzeile__text { color: var(--grau); max-width: 56ch; font-size: 1.03rem; }
.abschnitt--dunkel .kopfzeile__text { color: #a9b8b2; }
.kopfzeile__text em { color: var(--glut); font-style: italic; }
.kopfzeile--mitte { max-width: 58ch; margin-inline: auto; text-align: center; }
.kopfzeile--mitte .kopfzeile__text { margin-inline: auto; }

/* ───────────────────────── Sorgen ───────────────────────── */

.sorgen { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1px; background: var(--linie-dunkel); border: 1px solid var(--linie-dunkel); border-radius: var(--rund-gross); overflow: hidden; }
.sorgen li { background: var(--nacht); padding: clamp(26px, 3vw, 38px); transition: background .3s ease; }
.sorgen li:hover { background: var(--nacht-2); }
.sorgen__zahl {
  display: block; font-family: var(--serif); font-size: .9rem; font-weight: 600;
  letter-spacing: .1em; color: var(--glut); margin-bottom: 14px;
}
.sorgen h3 { margin-bottom: 10px; }
.sorgen p { color: #a3b2ac; font-size: .96rem; }

.uebergang {
  margin-top: clamp(38px, 5vw, 58px); text-align: center;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); color: #fbfaf7;
}
.uebergang span { display: block; background: var(--verlauf); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ───────────────────────── Rechner ───────────────────────── */

.rechner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(24px, 3vw, 44px); align-items: start;
}
.rechner__regler {
  background: rgba(255,255,255,.72); border: 1px solid var(--linie);
  border-radius: var(--rund-gross); padding: clamp(24px, 3vw, 38px);
}
.regler + .regler { margin-top: 26px; }
.regler label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: .9rem; font-weight: 600; color: var(--grau); margin-bottom: 12px;
}
.regler output {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--tinte);
  font-variant-numeric: tabular-nums;
}
.regler__notiz { margin-top: 24px; font-size: .8rem; color: var(--grau-hell); line-height: 1.5; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--glut) var(--fuell, 50%), rgba(22,32,29,.13) var(--fuell, 50%));
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--glut-tief);
  box-shadow: 0 5px 14px -4px rgba(13,20,18,.4); cursor: grab;
  transition: transform .15s ease;
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.14); cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2.5px solid var(--glut-tief);
  box-shadow: 0 5px 14px -4px rgba(13,20,18,.4);
}

.rechner__ergebnis {
  background: var(--nacht); color: #e7ece9; border-radius: var(--rund-gross);
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--schatten);
}
.ergebnis__label { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #93a49e; font-weight: 700; }
.ergebnis__label strong { color: var(--glut); }
.ergebnis__zahl {
  font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 3.3rem); font-weight: 600; line-height: 1.05;
  margin: 8px 0 12px; color: #fff; font-variant-numeric: tabular-nums;
}
.ergebnis__zahl--gut { background: var(--verlauf-kalt); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ergebnis__balken { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.ergebnis__anteil { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--verlauf); transition: width .5s cubic-bezier(.2,.8,.3,1); }
.ergebnis__unter { font-size: .88rem; color: #93a49e; margin-top: 10px; }
.rechner__ergebnis hr { border: 0; border-top: 1px solid var(--linie-dunkel); margin: 26px 0; }

.ergebnis__vergleich {
  margin: 24px 0 22px; padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid var(--linie-dunkel);
}
.ergebnis__vergleich > div { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .92rem; }
.ergebnis__vergleich span { color: #93a49e; }
.ergebnis__amort { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--linie-dunkel); display: block !important; }
.ergebnis__amort strong { color: var(--see); }
.ergebnis__klein { font-size: .76rem; color: #7f908a; margin-top: 14px; line-height: 1.5; }

/* ───────────────────────── Karten ───────────────────────── */

.karten { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 18px; }
.karte {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--rund-gross);
  padding: clamp(24px, 2.4vw, 32px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--schatten); border-color: rgba(240,162,60,.5); }
.karte--gross { background: linear-gradient(140deg, #fff 0%, #fdf6ea 100%); }
/* Die große Karte spannt nur über zwei Spalten, wenn es auch zwei gibt */
@media (min-width: 820px) { .karte--gross { grid-column: span 2; } }
.karte__symbol {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(240,162,60,.14); margin-bottom: 20px;
}
.karte__symbol svg { width: 24px; height: 24px; fill: none; stroke: var(--glut-tief); stroke-width: 1.7; stroke-linejoin: round; }
.karte h3 { margin-bottom: 10px; }
.karte p { color: var(--grau); font-size: .95rem; }
.karte__marke {
  display: inline-block; margin-bottom: 10px; padding: 4px 11px; border-radius: 999px;
  background: rgba(240,162,60,.16); color: #a3661a !important;
  font-size: .7rem !important; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}

/* ───────────────────────── Bausteine (Zusatzmodule) ───────────────────────── */

.bausteine { margin-top: 22px; }
.bausteine__titel {
  text-align: center; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--grau); margin-bottom: 18px;
}
.bausteine__reihe { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 18px; }
.baustein {
  background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--glut);
  border-radius: var(--rund); padding: clamp(22px, 2.4vw, 30px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.baustein:hover { transform: translateY(-4px); box-shadow: var(--schatten); }
.baustein__kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.baustein__preis { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; line-height: 1.1; white-space: nowrap; }
.baustein__preis span { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; color: var(--grau); }
.baustein ul li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: .93rem; color: var(--grau); }
.baustein ul li::before {
  content: ""; position: absolute; left: 2px; top: .42em; width: 13px; height: 8px;
  border-left: 2.2px solid var(--see); border-bottom: 2.2px solid var(--see);
  transform: rotate(-45deg); border-radius: 1px;
}
.baustein__link { display: inline-block; margin-top: 14px; font-size: .86rem; font-weight: 700; color: var(--glut-tief); }
.baustein__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.bausteine__summe {
  margin-top: 20px; text-align: center; font-size: .95rem; color: var(--grau);
  background: rgba(47,184,160,.1); border-radius: var(--rund); padding: 16px 22px;
}
.bausteine__summe strong { color: var(--tinte); }

/* ───────────────────────── Schau (Demo-Reiter) ───────────────────────── */

.schau { border-radius: var(--rund-gross); }
.schau__reiter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.schau__reiter button {
  padding: 10px 20px; border-radius: 999px; font-size: .88rem; font-weight: 700;
  color: #a9b8b2; border: 1px solid var(--linie-dunkel); transition: all .2s ease;
}
.schau__reiter button:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.schau__reiter button.ist-aktiv { background: var(--verlauf); color: #2a1405; border-color: transparent; }

.schau__buehne { position: relative; }
.fenster--schau { border-color: rgba(255,255,255,.12); animation: einblenden .45s ease; }
@keyframes einblenden { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.schau__text { margin-top: 20px; }
.schau__beschreibung { color: #a9b8b2; font-size: .96rem; max-width: 70ch; }
.schau__beschreibung strong { color: #fbfaf7; }

.demo-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: clamp(30px, 4vw, 44px); }
.demo-link {
  display: block; padding: 22px 24px; border-radius: var(--rund);
  border: 1px solid var(--linie-dunkel); background: rgba(255,255,255,.04);
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.demo-link:hover { background: rgba(255,255,255,.09); border-color: rgba(240,162,60,.6); transform: translateY(-3px); }
.demo-link strong { display: block; margin-bottom: 5px; color: #fbfaf7; }
.demo-link strong::after { content: " ↗"; color: var(--glut); font-weight: 400; }
.demo-link span { font-size: .85rem; color: #93a49e; }
.demo-link code { background: rgba(240,162,60,.16); color: var(--glut); padding: 1px 7px; border-radius: 5px; font-size: .82em; }
.demo-link--betont { background: rgba(240,162,60,.09); border-color: rgba(240,162,60,.35); }
.demo-hinweis { margin-top: 16px; font-size: .84rem; color: #93a49e; }

/* ───────────────────────── Probe (Live-Test) ───────────────────────── */

.probe { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 20px; align-items: start; }
.probe__seite {
  border-radius: var(--rund-gross); border: 1px solid var(--linie); background: #fff;
  padding: clamp(20px, 2.4vw, 30px); box-shadow: var(--schatten);
}
.probe__seite--wirt { background: var(--nacht); border-color: transparent; color: #e7ece9; }
.probe__kopf { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.probe__rolle {
  font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--glut-tief); background: rgba(240,162,60,.14); padding: 6px 12px; border-radius: 999px;
}
.probe__rolle--wirt { color: var(--see); background: rgba(47,184,160,.14); }
.probe__pfad { font-size: .78rem; color: var(--grau-hell); font-family: ui-monospace, "Consolas", monospace; }
.probe__kopf select {
  border: 1px solid var(--linie); border-radius: 10px; padding: 9px 12px; background: #fff;
  font-size: .86rem; font-weight: 600; cursor: pointer; max-width: 100%;
}

.kal__kopf { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.kal__kopf strong { font-family: var(--serif); font-size: 1.15rem; }
.kal__kopf button {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--linie);
  display: grid; place-items: center; color: var(--grau); transition: all .18s ease;
}
.kal__kopf button:hover:not([disabled]) { background: var(--sand); color: var(--tinte); }
.kal__kopf button[disabled] { opacity: .3; cursor: not-allowed; }
.kal__wochentage, .kal__raster { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.kal__wochentage span { text-align: center; font-size: .7rem; font-weight: 700; color: var(--grau-hell); letter-spacing: .05em; padding-bottom: 6px; }
.kal__tag {
  aspect-ratio: 1 / .92; border-radius: 9px; display: grid; place-items: center;
  font-size: .84rem; font-weight: 600; background: #f2f0ec; color: var(--tinte);
  border: 1.5px solid transparent; transition: all .16s ease; position: relative;
}
.kal__tag--leer { background: none; }
.kal__tag--frei { cursor: pointer; }
.kal__tag--frei:hover { background: var(--sand-tief); transform: translateY(-1px); }
.kal__tag--vergangen { color: #c3c8c5; background: #f7f6f4; cursor: not-allowed; }
.kal__tag--belegt { background: rgba(226,96,63,.16); color: #b6462a; cursor: not-allowed; text-decoration: line-through; }
.kal__tag--anfrage { background: repeating-linear-gradient(45deg, rgba(240,162,60,.35) 0 5px, rgba(255,255,255,.9) 5px 10px); color: #8a6117; cursor: not-allowed; }
.kal__tag--wahl { background: var(--nacht); color: #fff; }
.kal__tag--spanne { background: rgba(22,32,29,.1); }
.kal__tag--start { border-radius: 9px 3px 3px 9px; }
.kal__tag--ende { border-radius: 3px 9px 9px 3px; }
.kal__legende { margin-top: 14px; font-size: .74rem; color: var(--grau); display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; }

.probe__auswahl { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--linie); }
.probe__leer { font-size: .9rem; color: var(--grau); margin-bottom: 16px; }
.probe__daten { margin-bottom: 16px; }
.probe__daten > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: .93rem; border-bottom: 1px dashed var(--linie); }
.probe__daten dt { color: var(--grau); }
.probe__daten dd { font-weight: 700; }
.probe__summe { border-bottom: 0 !important; padding-top: 12px !important; }
.probe__summe dt { font-weight: 700; color: var(--tinte) !important; }
.probe__summe dd { font-family: var(--serif); font-size: 1.4rem; }
.probe__warnung {
  font-size: .86rem; color: #b6462a; background: rgba(226,96,63,.1);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 14px;
}
.probe__klein { font-size: .76rem; color: var(--grau-hell); margin-top: 12px; text-align: center; }

.wirt__leer { font-size: .9rem; color: #93a49e; text-align: center; padding: 32px 16px; border: 1px dashed var(--linie-dunkel); border-radius: 14px; }
.wirt__leer span { display: block; font-size: 1.7rem; margin-bottom: 10px; opacity: .55; }
.wirt__leer small { font-size: .82em; opacity: .8; }

.wirt__liste li {
  border: 1px solid var(--linie-dunkel); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px;
  background: rgba(255,255,255,.05); animation: eintreffen .45s cubic-bezier(.2,.9,.3,1);
}
@keyframes eintreffen { from { opacity: 0; transform: translateX(16px) scale(.97); } to { opacity: 1; transform: none; } }
.wirt__zeile { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.wirt__liste strong { color: #fbfaf7; font-size: .96rem; }
.wirt__marke {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; background: rgba(240,162,60,.2); color: var(--glut);
}
.wirt__marke--ok { background: rgba(47,184,160,.2); color: var(--see); }
.wirt__marke--nein { background: rgba(226,96,63,.2); color: #ef8b6d; }
.wirt__detail { font-size: .85rem; color: #93a49e; margin: 6px 0 12px; }
.wirt__knoepfe { display: flex; gap: 8px; flex-wrap: wrap; }
.wirt__knoepfe button {
  padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 700;
  border: 1px solid var(--linie-dunkel); color: #e7ece9; transition: all .18s ease;
}
.wirt__knoepfe button:hover { border-color: rgba(255,255,255,.5); }
.wirt__knoepfe button.ist-ja { background: var(--see); color: #06231e; border-color: transparent; }
.wirt__knoepfe button.ist-ja:hover { filter: brightness(1.08); }
.wirt__fuss { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--linie-dunkel); font-size: .88rem; color: #93a49e; }
.wirt__fuss strong { color: #e7ece9; display: block; margin-bottom: 8px; font-size: .88rem; }
.wirt__fuss li { padding-left: 20px; position: relative; margin-bottom: 5px; }
.wirt__fuss li::before { content: "→"; position: absolute; left: 0; color: var(--see); }

.probe__fazit {
  margin-top: clamp(28px, 4vw, 42px); text-align: center; color: var(--grau);
  max-width: 62ch; margin-inline: auto; font-size: .98rem;
}

/* ───────────────────────── Schritte ───────────────────────── */

.schritte { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: s; }
.schritte li { position: relative; padding: 30px 26px 26px; background: rgba(255,255,255,.6); border: 1px solid var(--linie); border-radius: var(--rund-gross); }
.schritte__nr {
  position: absolute; top: -20px; left: 26px;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--nacht); color: #fff; font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
}
.schritte h3 { margin: 12px 0 10px; }
.schritte p { font-size: .93rem; color: var(--grau); }
.schritte__zeit { display: inline-block; margin-top: 14px; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--glut-tief); }

/* ───────────────────────── Unterlagen hochladen ───────────────────────── */

.ablage {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--rund-gross);
  padding: clamp(24px, 3vw, 44px); box-shadow: var(--schatten);
}
.ablage__kopf {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
  padding-bottom: clamp(24px, 3vw, 34px); margin-bottom: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid var(--linie);
}
.ablage .feld label { color: var(--grau); }
.ablage .feld input, .ablage .feld textarea {
  background: #fbfaf7; border-color: var(--linie); color: var(--tinte);
}
.ablage .feld input::placeholder, .ablage .feld textarea::placeholder { color: #a9b2af; }
.ablage .feld input:focus, .ablage .feld textarea:focus { background: #fff; border-color: var(--glut); }

.ablage__gitter { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 2.6vw, 32px); }
.ablage__block--breit { grid-column: 1 / -1; }
.ablage__block h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.ablage__zahl {
  flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--nacht); color: #fff; font-family: var(--sans); font-size: .86rem; font-weight: 800;
}
.ablage__klein { font-size: .88rem; color: var(--grau); margin-bottom: 16px; }

.zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: clamp(26px, 3vw, 40px) 20px; text-align: center; cursor: pointer;
  border: 2px dashed rgba(22, 32, 29, .2); border-radius: var(--rund); background: #fbfaf7;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.zone:hover, .zone:focus-visible { border-color: var(--glut); background: rgba(240, 162, 60, .07); }
.zone.ist-bereit { border-color: var(--glut); background: rgba(240, 162, 60, .14); transform: scale(1.01); }
.zone svg { width: 30px; height: 30px; fill: none; stroke: var(--glut-tief); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.zone p { font-size: .92rem; }
.zone strong { display: block; }
.zone span { display: block; font-size: .82rem; color: var(--grau); margin-top: 2px; }
.zone--flach { flex-direction: row; padding: 18px 22px; text-align: left; margin-top: 16px; }
.zone--flach p { display: flex; flex-direction: column; }

.liste { margin-top: 14px; }
.liste li {
  display: flex; align-items: center; gap: 12px; padding: 9px 12px; margin-bottom: 7px;
  background: #f6f4f0; border: 1px solid var(--linie); border-radius: 11px; font-size: .86rem;
  animation: einblenden .25s ease;
}
.liste__bild {
  flex: none; width: 38px; height: 38px; border-radius: 8px; object-fit: cover;
  background: #e6e2da; display: grid; place-items: center; font-size: .6rem; font-weight: 800;
  color: var(--grau); letter-spacing: .04em; overflow: hidden;
}
.liste__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.liste__gross { color: var(--grau); font-size: .78rem; white-space: nowrap; }
.liste__weg {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  color: var(--grau); font-size: 1.05rem; line-height: 1; transition: background .18s ease, color .18s ease;
}
.liste__weg:hover { background: rgba(226, 96, 63, .16); color: #b6462a; }
.liste li.ist-zuviel { border-color: rgba(226, 96, 63, .5); background: rgba(226, 96, 63, .09); }
.liste li.ist-zuviel .liste__gross { color: #b6462a; font-weight: 700; }

.ablage__fuss { margin-top: clamp(26px, 3vw, 36px); padding-top: clamp(22px, 2.6vw, 30px); border-top: 1px solid var(--linie); }
.ablage__summe { font-size: .9rem; color: var(--grau); margin-bottom: 16px; }
.ablage__summe strong { color: var(--tinte); }
.haken--hell { color: var(--grau); }
.haken--hell a { color: var(--glut-tief); }
.ablage__balken {
  height: 8px; border-radius: 999px; background: rgba(22, 32, 29, .1);
  overflow: hidden; margin: 18px 0 4px;
}
.ablage__balken span { display: block; height: 100%; width: 0; background: var(--verlauf); transition: width .2s ease; }
.ablage__aktion { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.ablage__aktion .formular__pflicht { color: var(--grau); }
.ablage .formular__meldung { margin-top: 16px; }
.ablage .formular__meldung.ist-ok { background: rgba(47, 184, 160, .16); color: #1c6455; }
.ablage .formular__meldung.ist-fehler { background: rgba(226, 96, 63, .13); color: #a63f22; }

/* ───────────────────────── Preis ───────────────────────── */

.preis {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(24px, 3vw, 48px);
  background: #fff; border: 1px solid var(--linie); border-radius: var(--rund-gross);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--schatten);
}
.preis__trenner { width: 1px; background: var(--linie); }
.preis__label { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--grau); }
.preis__wert { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.2rem); font-weight: 600; line-height: 1.1; margin: 10px 0 22px; }
.preis__wert span { display: block; font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--grau); letter-spacing: .02em; }
.preis ul li { padding-left: 28px; position: relative; margin-bottom: 10px; font-size: .95rem; }
.preis ul li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 15px; height: 9px;
  border-left: 2.4px solid var(--see); border-bottom: 2.4px solid var(--see);
  transform: rotate(-45deg); border-radius: 1px;
}
.preis__extra { margin-top: 20px; padding: 14px 16px; border-radius: 12px; background: rgba(47,184,160,.1); font-size: .88rem; color: #1c6455; }
.preis__notiz { text-align: center; margin-top: 22px; font-size: .84rem; color: var(--grau); }
.preis__cta { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 32px; }

/* ───────────────────────── Zitatband ───────────────────────── */

.band { position: relative; padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; isolation: isolate; }
.band__bild { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(13,20,18,.88) 0%, rgba(13,20,18,.62) 60%, rgba(13,20,18,.4) 100%); }
.band__innen { max-width: 46ch; color: #fff; }
.band blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 2rem); line-height: 1.32; font-style: italic; }
.band__wer { margin-top: 20px; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--glut); font-weight: 700; }

/* ───────────────────────── Fragen ───────────────────────── */

.fragen details { border-bottom: 1px solid var(--linie); }
.fragen summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; cursor: pointer; font-weight: 700; font-size: 1.03rem; list-style: none;
}
.fragen summary::-webkit-details-marker { display: none; }
.fragen summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--linie); display: grid; place-items: center;
  font-weight: 400; font-size: 1.25rem; color: var(--grau); transition: transform .25s ease, background .25s ease, color .25s ease;
}
.fragen details[open] summary::after { transform: rotate(45deg); background: var(--nacht); color: #fff; border-color: transparent; }
.fragen details p { padding-bottom: 24px; color: var(--grau); max-width: 68ch; animation: einblenden .3s ease; }

/* ───────────────────────── Kontakt ───────────────────────── */

.kontakt { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(30px, 4vw, 64px); align-items: start; }
.kontakt__text p { color: #a9b8b2; margin-top: 18px; }
.kontakt__punkte { margin-top: 24px; }
.kontakt__punkte li { padding-left: 26px; position: relative; margin-bottom: 9px; font-size: .93rem; color: #cbd6d2; }
.kontakt__punkte li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 13px; height: 8px;
  border-left: 2.2px solid var(--see); border-bottom: 2.2px solid var(--see); transform: rotate(-45deg);
}
.kontakt__direkt { margin-top: 30px; font-size: .92rem; }
.kontakt__direkt a { color: var(--glut); font-weight: 700; border-bottom: 1px solid rgba(240,162,60,.4); }

.formular {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid var(--linie-dunkel);
  border-radius: var(--rund-gross); padding: clamp(24px, 3vw, 36px);
}
.feld--voll { grid-column: 1 / -1; }
.feld label { display: block; font-size: .82rem; font-weight: 700; color: #a9b8b2; margin-bottom: 7px; }
.feld input, .feld select, .feld textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  background: rgba(255,255,255,.06); border: 1.5px solid var(--linie-dunkel); color: #f2f5f3;
  transition: border-color .18s ease, background .18s ease;
}
.feld textarea { resize: vertical; min-height: 120px; }
.feld input::placeholder, .feld textarea::placeholder { color: #6f7f79; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--glut); background: rgba(255,255,255,.1);
}
.feld input:user-invalid, .feld textarea:user-invalid { border-color: #e2603f; }
.feld select option { background: var(--nacht); color: #f2f5f3; }

.haken { display: flex; gap: 12px; align-items: flex-start; font-size: .84rem; color: #a9b8b2; line-height: 1.5; }
.haken input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--glut); }
.haken a { color: var(--glut); text-decoration: underline; }
.honig { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formular__fuss { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.formular__pflicht { font-size: .78rem; color: #7f908a; }
.formular__meldung { padding: 14px 18px; border-radius: 12px; font-size: .92rem; }
.formular__meldung.ist-ok { background: rgba(47,184,160,.15); color: #7fe0cb; }
.formular__meldung.ist-fehler { background: rgba(226,96,63,.15); color: #f0a58c; }

/* ───────────────────────── Fuß ───────────────────────── */

.fuss { background: #0a100e; color: #8d9a95; padding: clamp(48px, 6vw, 72px) 0 40px; }
.fuss__innen { display: grid; gap: 30px; }
.fuss__marke { max-width: 46ch; }
.fuss__logo { height: 52px; width: auto; margin-bottom: 18px; }
.fuss__marke p { font-size: .88rem; line-height: 1.6; }
.fuss__nav { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); font-size: .89rem; }
.fuss__nav a:hover { color: var(--glut); }
.fuss__zeile { font-size: .82rem; }
.fuss__zeile a { color: var(--glut); }

/* ───────────────────────── Rechtstexte ───────────────────────── */

.rechtstext h1 { margin-bottom: 28px; }
.rechtstext h2 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin: 42px 0 12px; }
.rechtstext p { color: var(--grau); margin-bottom: 14px; }
.rechtstext a { color: var(--glut-tief); text-decoration: underline; text-underline-offset: 3px; }
.rechtstext em {
  font-style: normal; color: #a63f22; background: rgba(226,96,63,.12);
  padding: 1px 7px; border-radius: 6px; font-size: .93em;
}
.platzhalter {
  background: rgba(240,162,60,.16); border-left: 4px solid var(--glut);
  padding: 16px 20px; border-radius: 0 12px 12px 0; color: var(--tinte) !important;
  font-size: .93rem; margin-bottom: 30px;
}
.rechtstext__liste li { position: relative; padding-left: 24px; margin-bottom: 9px; color: var(--grau); }
.rechtstext__liste li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--glut); }
.rechtstext__zurueck { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--linie); }

/* ───────────────────────── Einblenden beim Scrollen ───────────────────────── */

[data-zeig] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
[data-zeig].ist-sichtbar { opacity: 1; transform: none; }

/* ───────────────────────── Breite Bildschirme & unten ───────────────────────── */

@media (max-width: 1080px) {
  .held__gitter { grid-template-columns: minmax(0, 1fr); }
  .held__buehne { margin-top: 20px; }
  .fenster--gross { transform: none; }
  .schwebe--kalender { left: auto; right: 2%; bottom: -10%; }
  .schwebe--meldung { right: auto; left: 0; top: -6%; }
  .rechner, .probe, .kontakt { grid-template-columns: minmax(0, 1fr); }
  .preis { grid-template-columns: minmax(0, 1fr); }
  .preis__trenner { width: auto; height: 1px; }
}

/* Zwischen 900 und 1100 px wird es in der Kopfzeile eng – dort tritt die
   Schaltfläche zurück, die Navigation ist wichtiger. */
@media (max-width: 1100px) {
  .kopf__cta { display: none; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--kopf-h) 0 auto; flex-direction: column; gap: 0;
    background: var(--papier); border-bottom: 1px solid var(--linie);
    padding: 10px 5vw 24px; box-shadow: var(--schatten);
    transform: translateY(-130%); transition: transform .3s cubic-bezier(.3,.8,.3,1);
    max-height: calc(100vh - var(--kopf-h)); overflow-y: auto;
  }
  .nav.ist-offen { transform: none; }
  .nav a { padding: 14px 8px; border-radius: 10px; font-size: 1rem; border-bottom: 1px solid var(--linie); }
  .nav a:last-child { border-bottom: 0; }
  .burger { display: block; }
  .kopf__cta { display: none; }
}

@media (max-width: 620px) {
  :root { --takt: 62px; }
  .held__belege { gap: 14px 22px; }
  .held__belege li { min-width: 44%; }
  .schwebe--kalender { display: none; }
  .schwebe--meldung { position: static; margin-top: 14px; max-width: none; animation: none; }
  .sorgen { border-radius: var(--rund); }
  .demo-link { padding: 18px 20px; }
  .probe__seite { padding: 18px; }
  .kal__tag { border-radius: 7px; font-size: .78rem; }
}

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

@media print {
  .kopf, .puls, .schwebe, .demo-links, .formular { display: none; }
  body { background: #fff; }
  .abschnitt--dunkel { background: #fff; color: #000; }
}
