/* WOLKENKAMM — Werkstatt für Marmorpapier (fiktive Demonstration)
 * Welt nach MXL-022 (Kinetic print poster), Vertrag nach MXL-040.
 * Warmes Papier, Tuschetype, gerechnetes Bad; Rosa streng rationiert.
 * Entwurfsvertrag: siehe Kopf von assets/marmor.js
 */

@import url("fonts/fonts.css");

:root {
  --papier: #f7f5ef;
  --flaeche: #ffffff;
  --tusche: #11130f;
  --grau: #72776d;        /* nur groß oder als Label */
  --grau-tief: #5c6156;   /* Fließtext zweiter Ordnung, AA auf Papier */
  --rosa: #f9d9f7;
  --kleister: #ece6d4;
  --linie: rgba(17, 19, 15, 0.16);
  --linie-zart: rgba(17, 19, 15, 0.09);

  --display: "Lexend Exa", "Arial Black", sans-serif;
  --text: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "Fragment Mono", "Courier New", monospace;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 14px; --sp-4: 22px;
  --sp-5: 34px; --sp-6: 52px; --sp-7: 80px; --sp-8: 118px;

  --rund: 18px;
  --mitte: 1240px;
  --schnell: 180ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --ruhigt: 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ── Grundlagen ─────────────────────────────────────────────────────── */

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

html {
  background: var(--papier);
  color: var(--tusche);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body { margin: 0; min-height: 100vh; }

::selection { background: var(--rosa); color: var(--tusche); }

a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

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

img, canvas, svg { max-width: 100%; display: block; }

.skip {
  position: absolute;
  left: var(--sp-3);
  top: -60px;
  z-index: 60;
  background: var(--tusche);
  color: var(--papier);
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: top var(--schnell);
}
.skip:focus-visible { top: var(--sp-3); outline-color: var(--tusche); outline-offset: 4px; }

/* ── Typegrammatik ──────────────────────────────────────────────────── */

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.5;
}

h1, h2, h3 { margin: 0; }

.riesig {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 1.02;
  font-size: clamp(30px, 4.6vw, 58px);
}

.h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.15;
}

.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; max-width: 62ch; }
.still { color: var(--grau-tief); }
p { margin: 0 0 var(--sp-3); max-width: 68ch; }

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

.kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) clamp(14px, 2.4vw, 30px);
}

.marke {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 44px;
}
.marke svg { width: 34px; height: 34px; flex: none; }
.marke b {
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.marke span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau-tief);
}

.menuetaste {
  display: none;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--tusche);
  background: var(--papier);
  color: var(--tusche);
  font: 600 15px/1 var(--text);
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
}

.menue { display: flex; gap: 4px; }
.menue a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background var(--schnell);
}
.menue a:hover { background: var(--linie-zart); }
.menue a[aria-current="page"] {
  background: var(--tusche);
  color: var(--papier);
}

@media (max-width: 780px) {
  .menuetaste { display: inline-flex; align-items: center; }
  .menue {
    display: none;
    position: absolute;
    right: 14px;
    top: 64px;
    z-index: 50;
    flex-direction: column;
    background: var(--flaeche);
    border: 1px solid var(--linie);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(17, 19, 15, 0.14);
  }
  .menue-offen .menue { display: flex; }
  .marke span { display: none; }
}

/* ── Plakat (Hero) ──────────────────────────────────────────────────── */

.plakat {
  padding: 0 clamp(10px, 1.8vw, 26px) clamp(10px, 1.8vw, 26px);
}

.plakat__platte {
  position: relative;
  border-radius: var(--rund);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 20%, #efe9d8 0%, var(--kleister) 55%, #e3dcc6 100%);
  border: 1px solid var(--linie);
  min-height: 520px;
  height: min(86svh, 900px);
  isolation: isolate;
}

.plakat__platte > canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Fallback-Poster ohne JavaScript/Canvas: gedruckte Adern aus CSS */
.plakat__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(52% 40% at 78% 24%, rgba(46, 64, 118, 0.85) 0 34%, transparent 35%),
    radial-gradient(38% 30% at 66% 68%, rgba(210, 121, 159, 0.8) 0 32%, transparent 33%),
    radial-gradient(30% 24% at 24% 70%, rgba(217, 185, 74, 0.85) 0 30%, transparent 31%),
    radial-gradient(44% 36% at 18% 26%, rgba(88, 127, 99, 0.8) 0 28%, transparent 29%),
    radial-gradient(20% 16% at 48% 46%, rgba(35, 36, 31, 0.85) 0 30%, transparent 31%);
  filter: blur(0.5px);
}
.plakat--lebt .plakat__poster { display: none; }

.plakat__inhalt {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 2.6vw, 34px);
  pointer-events: none;
}
.plakat__inhalt a,
.plakat__inhalt button { pointer-events: auto; }

.plakat__oben,
.plakat__unten {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.plakat__unten { align-items: flex-end; }

.zettelchen {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--tusche);
  max-width: min(46ch, 60vw);
}

.plakat__titel {
  font-size: clamp(54px, 12.2vw, 188px);
  margin: 0;
  color: var(--tusche);
}
.plakat__titel span {
  display: block;
  position: relative;
  width: fit-content;
}
.plakat__titel span:nth-child(2) { margin-left: clamp(18px, 7vw, 120px); }
.plakat__titel span:nth-child(3) { margin-left: clamp(6px, 2.5vw, 40px); }

/* Papierkontur hinter der Tusche, damit die Type auf jedem Bad besteht */
.plakat__titel span::before {
  content: attr(data-wort);
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-text-stroke: 0.085em var(--papier);
  text-shadow: 0 0 22px rgba(247, 245, 239, 0.55);
}

.plakat__zeile { max-width: 52ch; }

.plakat__aktionen {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Tasten ─────────────────────────────────────────────────────────── */

.taste {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--tusche);
  background: var(--papier);
  color: var(--tusche);
  font: 600 16px/1.2 var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--schnell), background var(--schnell), color var(--schnell);
}
.taste:hover { background: var(--rosa); }
.taste:active { transform: translateY(1px); }

.taste--haupt {
  background: var(--tusche);
  color: var(--papier);
}
.taste--haupt:hover { background: #262a22; color: var(--papier); }
.taste--haupt:focus-visible { outline-color: var(--tusche); }

@media (prefers-reduced-motion: reduce) {
  .taste, .skip, .menue a { transition: none; }
}

/* ── Beweiszeile unter dem Plakat ───────────────────────────────────── */

.beweis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  max-width: var(--mitte);
  margin: 0 auto;
  padding: var(--sp-4) clamp(14px, 2.4vw, 30px);
  border-bottom: 1px solid var(--linie-zart);
}
.beweis p { margin: 0; }

/* ── Bahnen ─────────────────────────────────────────────────────────── */

.bahn { padding: var(--sp-7) clamp(14px, 2.4vw, 30px); }
.bahn--eng { padding-top: var(--sp-6); }
.mitte { max-width: var(--mitte); margin: 0 auto; }

.kopfzeile {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.kopfzeile .mono { color: var(--grau-tief); display: block; margin-bottom: var(--sp-3); }
.kopfzeile > p { margin: 0; max-width: 44ch; }

/* ── Verfahren: vier Schritte ───────────────────────────────────────── */

.schritte {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 26px);
}

.schritt { min-width: 0; }

.schritt figure { margin: 0 0 var(--sp-3); position: relative; }

.schritt canvas {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: 12px;
  border: 1px solid var(--linie);
  background: var(--kleister);
}

.schritt--abgenommen canvas {
  transform: rotate(-2.2deg);
  border: 6px solid var(--flaeche);
  border-radius: 6px;
  box-shadow: 6px 14px 30px rgba(17, 19, 15, 0.18);
}

.schritt figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
}

.schritt .h3 { margin-bottom: var(--sp-2); }
.schritt p { font-size: 15.5px; color: var(--grau-tief); margin: 0; }

@media (max-width: 980px) {
  .schritte { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-5); }
}
@media (max-width: 480px) {
  .schritte { grid-template-columns: 1fr 1fr; gap: 12px; }
  .schritt p { font-size: 14.5px; }
}

/* ── Werkstatt-Erzählung ────────────────────────────────────────────── */

.erzaehlung {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.merkliste {
  border-top: 1px solid var(--tusche);
  margin: 0;
}
.merkliste div {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--linie-zart);
}
.merkliste dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--grau-tief); }
.merkliste dd { margin: 0; font-weight: 600; text-align: right; }

@media (max-width: 860px) {
  .erzaehlung { grid-template-columns: 1fr; }
}

/* ── Farben ─────────────────────────────────────────────────────────── */

.farben {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}

.farbe {
  background: var(--flaeche);
  border: 1px solid var(--linie-zart);
  border-radius: 14px;
  padding: var(--sp-4);
}

.farbe i {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.34), transparent 42%),
    var(--ton, var(--tusche));
  margin-bottom: var(--sp-3);
}

.farbe .h3 { font-size: 16px; }
.farbe p { font-size: 14.5px; color: var(--grau-tief); margin: 6px 0 10px; }
.farbe .mono { color: var(--grau-tief); font-size: 11px; }

@media (max-width: 980px) {
  .farben { grid-template-columns: repeat(2, 1fr); }
  .farbe:last-child { grid-column: span 2; }
}

/* ── Angebot ────────────────────────────────────────────────────────── */

.angebot { border-top: 1px solid var(--tusche); }

.angebot__zeile {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr) auto;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--linie-zart);
}
.angebot__zeile p { margin: 0; color: var(--grau-tief); font-size: 15.5px; }
.angebot__preis { font-family: var(--mono); font-size: 14px; letter-spacing: 0.03em; white-space: nowrap; }

@media (max-width: 780px) {
  .angebot__zeile { grid-template-columns: 1fr; gap: 6px; }
  .angebot__preis { justify-self: start; }
}

.nachsatz {
  margin-top: var(--sp-5);
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
}

/* ── Marmorierbad (bad.html) ────────────────────────────────────────── */

.bad {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: clamp(18px, 2.6vw, 36px);
  align-items: start;
}

.bad__wanne { position: relative; }

.bad__wanne canvas {
  width: 100%;
  aspect-ratio: 7 / 5;
  border-radius: var(--rund);
  border: 1px solid var(--linie);
  background: var(--kleister);
  cursor: crosshair;
  touch-action: manipulation;
}

.bad__wanne figcaption { position: absolute; top: 12px; left: 12px; }

.bad__status {
  margin-top: var(--sp-3);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.bad__status [role="status"] { margin: 0; font-weight: 600; min-height: 1.5em; }
.bad__status .mono { color: var(--grau-tief); }

.pult {
  background: var(--flaeche);
  border: 1px solid var(--linie-zart);
  border-radius: var(--rund);
  padding: clamp(16px, 2vw, 26px);
}

.pult fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 var(--sp-4);
}
.pult legend,
.pult .pult__titel {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grau-tief);
  margin-bottom: var(--sp-2);
  display: block;
  padding: 0;
}

.farbwahl { display: flex; gap: 8px; flex-wrap: wrap; }
.farbwahl label { position: relative; }
.farbwahl input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.farbwahl span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 8px;
  border: 1px solid var(--linie);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--papier);
}
.farbwahl i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ton);
  border: 1px solid rgba(17, 19, 15, 0.2);
}
.farbwahl input:checked + span {
  border-color: var(--tusche);
  box-shadow: inset 0 0 0 1.5px var(--tusche);
}
.farbwahl input:focus-visible + span {
  outline: 3px solid var(--tusche);
  outline-offset: 2px;
}

.pult__reihe { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-4); }

.werkzeug {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--tusche);
  background: var(--papier);
  color: var(--tusche);
  font: 600 14.5px/1.2 var(--text);
  cursor: pointer;
  transition: background var(--schnell);
}
.werkzeug:hover:not(:disabled) { background: var(--rosa); }
.werkzeug:disabled {
  border-color: var(--linie);
  color: var(--grau-tief);
  cursor: not-allowed;
  background: var(--flaeche);
}
.werkzeug--leise { border-color: var(--linie); }

.zettel {
  margin-top: var(--sp-4);
  border-top: 1px solid var(--tusche);
  padding-top: var(--sp-3);
  max-height: 300px;
  overflow: auto;
}
.zettel ol {
  margin: 0;
  padding: 0 0 0 1.6em;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ── Badrechner ─────────────────────────────────────────────────────── */

.rechner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(18px, 2.6vw, 40px);
  background: var(--flaeche);
  border: 1px solid var(--linie-zart);
  border-radius: var(--rund);
  padding: clamp(18px, 2.6vw, 36px);
}

.rechner label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.rechner select,
.rechner input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--tusche);
  border-radius: 10px;
  background: var(--papier);
  color: var(--tusche);
  font: 500 16px/1.2 var(--text);
  padding: 0 14px;
  margin-bottom: var(--sp-4);
}

.rechner__aus { border-top: 1px solid var(--tusche); }
.rechner__aus div {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 11px 0;
  border-bottom: 1px solid var(--linie-zart);
}
.rechner__aus dt { color: var(--grau-tief); }
.rechner__aus dd { margin: 0; font-family: var(--mono); font-size: 14px; text-align: right; }

@media (max-width: 900px) {
  .bad { grid-template-columns: 1fr; }
  .rechner { grid-template-columns: 1fr; }
}

/* ── Musterbuch ─────────────────────────────────────────────────────── */

.musterliste {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}

.muster {
  background: var(--flaeche);
  border: 1px solid var(--linie-zart);
  border-radius: var(--rund);
  padding: clamp(14px, 1.8vw, 22px);
  display: flex;
  flex-direction: column;
}

.muster figure { margin: 0 0 var(--sp-3); position: relative; }
.muster canvas {
  width: 100%;
  aspect-ratio: 5 / 7;
  border-radius: 10px;
  border: 1px solid var(--linie);
  background: var(--kleister);
}
.muster figcaption { position: absolute; top: 10px; left: 10px; }

.muster h3 { margin-bottom: var(--sp-2); }
.muster > p { font-size: 15px; color: var(--grau-tief); }

.muster details { margin: auto 0 var(--sp-3); }
.muster summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.muster summary::marker { color: var(--grau-tief); }
.muster details ol {
  margin: var(--sp-2) 0 0;
  padding-left: 1.6em;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.muster .taste { align-self: flex-start; }

@media (max-width: 980px) {
  .musterliste { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .musterliste { grid-template-columns: 1fr; }
}

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

.recht { max-width: 74ch; }
.recht h1 { margin-bottom: var(--sp-5); }
.recht h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: var(--sp-5) 0 var(--sp-2);
}
.merk {
  background: var(--rosa);
  border-radius: 14px;
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.merk p { margin: 0; max-width: none; }

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

.fuss {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--tusche);
  background: var(--flaeche);
}

.fuss__mitte {
  max-width: var(--mitte);
  margin: 0 auto;
  padding: var(--sp-6) clamp(14px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.fuss h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grau-tief);
  margin: 0 0 var(--sp-3);
}
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: 8px; }
.fuss address { font-style: normal; }
.fuss p { margin: 0; }

.fuss__demo {
  border-top: 1px solid var(--linie-zart);
  max-width: var(--mitte);
  margin: 0 auto;
  padding: var(--sp-4) clamp(14px, 2.4vw, 30px) var(--sp-6);
  color: var(--grau-tief);
  font-size: 14.5px;
  max-width: none;
}

@media (max-width: 860px) {
  .fuss__mitte { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fuss__mitte { grid-template-columns: 1fr; }
}

/* ── Kleinere Plakate (Unterseiten-Kopf) ────────────────────────────── */

.blatt {
  max-width: var(--mitte);
  margin: 0 auto;
  padding: var(--sp-6) clamp(14px, 2.4vw, 30px) 0;
}
.blatt .mono { color: var(--grau-tief); display: block; margin-bottom: var(--sp-3); }
.blatt h1 { margin-bottom: var(--sp-4); }
.blatt .lead { margin-bottom: 0; }

/* ── Mobil: Plakat ──────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .plakat__platte { height: min(78svh, 660px); min-height: 480px; }
  .plakat__titel { font-size: clamp(44px, 14.5vw, 96px); }
  .plakat__titel span:nth-child(2) { margin-left: 9vw; }
  .plakat__aktionen { justify-content: flex-start; }
  .zettelchen { max-width: 100%; }
  .plakat__zeile { order: 2; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .bahn { padding: var(--sp-6) 14px; }
}

/* ── Bewegung nur, wo sie erzählt ───────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .schritt--abgenommen canvas { transform: none; }
}
