/* =========================================================
   Classic Car Subi Auto — Design-System «Restaurierungshalle»
   Oldtimer-Restauration, Weinbergstrasse 108, 8006 Zürich
   Der Betrieb hat KEINE Website — es gibt keine Design-DNA zum
   Weiterentwickeln. Bewusst hell und galerieartig gehalten:
   ein restauriertes Fahrzeug ist ein Ausstellungsstück, kein Werkzeug.
   Akzent ist Oxidrot — die Farbe der Grundierung unter jedem Lack.
   Schrift: Spectral (Display) + Familjen Grotesk (Text).
   ========================================================= */

:root {
  --kalk: #f4f2ef;
  --kalk-tief: #e7e3dd;
  --weiss: #fffefc;
  --kohle: #1a1917;
  --kohle-weich: #625d56;
  --oxid: #9a4433;        /* Rostschutz-Grundierung */
  --oxid-tief: #7a3527;
  --messing: #a98b4f;

  --ff-display: "Spectral", Georgia, serif;
  --ff-text: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;

  --linie: rgba(26, 25, 23, .14);
  --linie-hell: rgba(244, 242, 239, .2);

  --mw: 1200px;
  --mw-schmal: 740px;
  --pad-sektion: clamp(56px, 7vw, 96px);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--kalk);
  color: var(--kohle);
  font-family: var(--ff-text);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
  padding-bottom: .06em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.65rem); }
h3 { font-size: clamp(1.14rem, 1.8vw, 1.42rem); }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--oxid); color: #fff; }
:focus-visible { outline: 3px solid var(--oxid); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--kohle); color: var(--kalk); padding: 12px 20px;
  text-decoration: none; font-weight: 700; transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: min(100% - 40px, var(--mw)); margin-inline: auto; }
.wrap-schmal { width: min(100% - 40px, var(--mw-schmal)); margin-inline: auto; }
.sektion { padding-block: var(--pad-sektion); }
.sektion--eng { padding-block: clamp(38px, 4.6vw, 62px); }
.sektion--kalk { background: var(--kalk-tief); border-block: 1px solid var(--linie); }

/* ---------- Brand-Mark: die Grundierungs-Marke ----------
   Zwei Striche über Kreuz — die Markierung, die auf jedem Blech
   vor dem Schweissen sitzt. 0 KB. */
.marke-kreuz {
  display: inline-block; position: relative;
  width: 13px; height: 13px; flex: 0 0 auto;
}
.marke-kreuz::before, .marke-kreuz::after {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 13px; height: 1.8px; background: var(--oxid);
}
.marke-kreuz::after { transform: rotate(90deg); }
.marke-kreuz--hell::before, .marke-kreuz--hell::after { background: var(--messing); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--ff-text);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--oxid); margin: 0 0 18px;
}
.eyebrow--hell { color: var(--messing); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--ff-text);
  font-size: .95rem; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer;
  border-radius: var(--radius);
  background: var(--oxid); color: #fff;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--oxid-tief); box-shadow: 0 10px 22px rgba(154,68,51,.28); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--kohle { background: var(--kohle); color: var(--kalk); }
.btn--kohle:hover { background: #000; box-shadow: 0 10px 22px rgba(0,0,0,.3); }

.btn--linie {
  background: transparent; color: var(--kohle);
  box-shadow: inset 0 0 0 1.5px var(--linie);
}
.btn--linie:hover { background: transparent; color: var(--oxid); box-shadow: inset 0 0 0 1.5px var(--oxid); }

.btn--linie-hell {
  background: transparent; color: var(--kalk);
  box-shadow: inset 0 0 0 1.5px var(--linie-hell);
}
.btn--linie-hell:hover { background: rgba(244,242,239,.1); box-shadow: inset 0 0 0 1.5px var(--messing); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .94rem; text-decoration: none;
  color: var(--oxid); border-bottom: 1.5px solid var(--oxid);
  padding-bottom: 2px; transition: gap .16s ease, color .16s ease;
}
.textlink:hover { gap: 13px; color: var(--oxid-tief); }

/* ---------- Kopfzeile ---------- */
.kopf {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244, 242, 239, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
}
.kopf__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}
.marke {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--kohle);
  font-family: var(--ff-display);
  font-size: 1.18rem; font-weight: 600; line-height: 1.18;
}
.marke__sub {
  display: block; font-family: var(--ff-text);
  font-size: .61rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--kohle-weich); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  text-decoration: none; color: var(--kohle);
  font-size: .93rem; font-weight: 500;
  padding: 9px 12px; border-radius: var(--radius);
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover { color: var(--oxid); background: rgba(154,68,51,.09); }
.nav a[aria-current="page"] { color: var(--oxid); box-shadow: inset 0 -2px 0 var(--oxid); }
/* Die Textfarbe muss hier stehen: ".nav a" ist spezifischer als ".btn"
   und faerbte den Knopf sonst dunkel auf dunklem Grund — unlesbar. */
.nav .btn,
.nav .btn[aria-current="page"] { margin-left: 10px; padding: 11px 19px; color: #fff; box-shadow: none; }
.nav .btn:hover { color: #fff; }

.burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--kohle); transition: transform .22s ease, opacity .22s ease; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto; z-index: 89;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--kalk); padding: 10px 20px 24px;
    border-bottom: 1px solid var(--linie);
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 14px 6px; font-size: 1rem; border-bottom: 1px solid var(--linie); }
  .nav a[aria-current="page"] { box-shadow: none; }
  .nav .btn { margin: 16px 0 0; justify-content: center; }
}

/* ---------- Hero: Galerie-Bühne ---------- */
.hero {
  padding-block: clamp(60px, 9vw, 118px) clamp(42px, 5.4vw, 70px);
  position: relative; overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { max-width: 15ch; }
.hero__lead {
  font-family: var(--ff-display);
  font-size: clamp(1.12rem, 1.85vw, 1.4rem);
  font-weight: 400; line-height: 1.5;
  max-width: 44ch; margin: 22px 0 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.maske { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
.maske > span { display: block; }

/* Hairline-Raster als einziges Deko-Element */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--linie) 1px, transparent 1px),
    linear-gradient(90deg, var(--linie) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .5; pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 90% at 82% 18%, #000 0%, transparent 68%);
  mask-image: radial-gradient(120% 90% at 82% 18%, #000 0%, transparent 68%);
}

.hero__leiste {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--linie);
}
.hero__leiste div {
  flex: 1 1 190px; padding: 20px 24px 22px;
  border-right: 1px solid var(--linie);
}
.hero__leiste div:last-child { border-right: 0; }
.hero__leiste b {
  display: block; font-family: var(--ff-display);
  font-size: clamp(1.34rem, 2.3vw, 1.7rem); font-weight: 500;
  line-height: 1.2; margin-bottom: 5px;
}
.hero__leiste span { font-size: .86rem; color: var(--kohle-weich); line-height: 1.45; display: block; }

/* Status-Pille */
.status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 700;
  background: var(--weiss); border: 1px solid var(--linie);
  padding: 8px 16px; border-radius: 30px; margin-bottom: 20px;
}
.status__punkt { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; background: var(--kohle-weich); }
.status[data-offen="true"] .status__punkt { background: #2f8f5b; }
.status[data-offen="false"] .status__punkt { background: var(--oxid); }

/* ---------- Seiten-Hero ---------- */
.seitenhero {
  background: var(--kohle); color: var(--kalk);
  padding-block: clamp(58px, 7.6vw, 96px) clamp(42px, 5.4vw, 68px);
  position: relative; overflow: hidden;
}
.seitenhero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--linie-hell) 1px, transparent 1px),
    linear-gradient(90deg, var(--linie-hell) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .45; pointer-events: none;
  -webkit-mask-image: radial-gradient(110% 90% at 88% 12%, #000 0%, transparent 66%);
  mask-image: radial-gradient(110% 90% at 88% 12%, #000 0%, transparent 66%);
}
.seitenhero > * { position: relative; z-index: 2; }
.seitenhero h1 { color: var(--weiss); max-width: 17ch; }
.seitenhero p { color: rgba(244,242,239,.84); max-width: 60ch; font-size: 1.04rem; }

/* ---------- SIGNATUR 1: Die Schichten ----------
   Eine Restauration ist ein Stapel von Schichten. Wer eine Schicht
   wählt, sieht, was darunter liegt und was dort passiert. */
.schichten {
  display: grid; gap: clamp(22px, 3.6vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 880px) { .schichten { grid-template-columns: 1fr; } }

.stapel {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center;
}
.stapel__lage {
  position: absolute; left: 8%; right: 8%;
  height: 26%; border-radius: var(--radius);
  border: 1.5px solid var(--kohle);
  background: var(--weiss);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  font-family: var(--ff-text); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .3s ease, background-color .3s ease, color .3s ease;
  will-change: transform;
}
.stapel__lage span:last-child { font-size: .72rem; opacity: .55; letter-spacing: .1em; }
.stapel__lage[data-aktiv="true"] {
  background: var(--oxid); color: #fff; border-color: var(--oxid);
  box-shadow: 0 12px 26px rgba(154,68,51,.26);
}

.schichten__wahl { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.schichten__knopf {
  display: flex; align-items: center; gap: 12px;
  text-align: left; cursor: pointer;
  font-family: var(--ff-text); font-size: .96rem; font-weight: 600;
  padding: 13px 16px; border-radius: var(--radius);
  background: transparent; color: var(--kohle);
  border: 1.5px solid var(--linie);
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}
.schichten__knopf:hover { transform: translateX(3px); border-color: var(--oxid); }
.schichten__knopf[aria-selected="true"] {
  border-color: var(--oxid); background: rgba(154,68,51,.09); font-weight: 700;
}
.schichten__nr {
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  color: var(--oxid); min-width: 22px;
}
.schichten__tafel[hidden] { display: none; }
.schichten__tafel h3 { margin-bottom: 8px; }
.schichten__tafel p { color: var(--kohle-weich); font-size: .96rem; margin: 0; }

/* ---------- Leistungs-Liste ---------- */
.leistungen { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--linie); }
.leistungen li {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--linie); align-items: start;
}
.leistungen__nr {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 1.24rem; color: var(--oxid); line-height: 1.3;
}
.leistungen b { display: block; font-family: var(--ff-display); font-size: 1.24rem; font-weight: 500; margin-bottom: 5px; }
.leistungen p { margin: 0; font-size: .96rem; color: var(--kohle-weich); }

/* ---------- Karten ---------- */
.karten { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.karte {
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 26px 24px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.karte:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(26,25,23,.09); }
.karte h3 { margin-bottom: 8px; }
.karte p { font-size: .94rem; color: var(--kohle-weich); }
.karte ul { list-style: none; margin: 12px 0 0; padding: 0; }
.karte li {
  padding: 7px 0; font-size: .93rem; color: var(--kohle-weich);
  display: flex; gap: 11px; align-items: flex-start;
  border-bottom: 1px dashed var(--linie);
}
.karte li:last-child { border-bottom: 0; }
.karte li::before {
  content: ""; flex: 0 0 auto; margin-top: .55em;
  width: 8px; height: 1.8px; background: var(--oxid);
}

/* ---------- Zitat ---------- */
.zitat { border-left: 3px solid var(--oxid); padding: 4px 0 4px 24px; margin: 0; }
.zitat p {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.46; font-weight: 400; margin-bottom: 12px;
}
.zitat footer { font-size: .87rem; color: var(--kohle-weich); }

/* ---------- Öffnungszeiten ---------- */
.zeiten { list-style: none; margin: 0; padding: 0; }
.zeiten li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--linie); font-size: .94rem;
}
.zeiten li:last-child { border-bottom: 0; }
.zeiten li[data-heute="true"] { color: var(--oxid); font-weight: 700; }
.zeiten span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Kontakt ---------- */
.kontakt { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.kontakt__block h3 { font-size: 1.14rem; margin-bottom: 10px; }
/* ":not(.btn)" ist noetig: sonst faerbt die Linkregel auch die Knoepfe
   im Kontaktblock ein — sie ist spezifischer als ".btn". */
.kontakt__block a:not(.btn) { color: var(--oxid); text-decoration: none; border-bottom: 1px solid var(--oxid); }
.kontakt__block a:not(.btn):hover { color: var(--oxid-tief); }

/* ---------- Formular (Voranschlag) ---------- */
.formular {
  background: var(--weiss); border: 1px solid var(--linie);
  border-top: 4px solid var(--oxid);
  border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 40px);
}
.feld { margin-bottom: 16px; }
.feld label { display: block; font-weight: 700; font-size: .87rem; margin-bottom: 6px; }
.feld input, .feld textarea, .feld select {
  width: 100%; padding: 12px 14px; font: inherit;
  border: 1px solid var(--linie); border-radius: var(--radius);
  background: var(--kalk); color: var(--kohle);
}
.feld-paar { display: grid; gap: 0 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .feld-paar { grid-template-columns: 1fr; } }
.feld__hinweis { font-size: .82rem; color: var(--kohle-weich); margin-top: 5px; }

/* ---------- Faltung ---------- */
details.faltung { border-top: 1px solid var(--linie); }
details.faltung > summary {
  cursor: pointer; list-style: none; padding: 15px 0;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
details.faltung > summary::-webkit-details-marker { display: none; }
details.faltung > summary::after { content: "+"; font-size: 1.3rem; color: var(--oxid); transition: transform .2s ease; }
details.faltung[open] > summary::after { transform: rotate(45deg); }
details.faltung > div { padding-bottom: 18px; font-size: .93rem; color: var(--kohle-weich); }

/* ---------- Marken-Band ---------- */
.marken { display: flex; flex-wrap: wrap; gap: 8px; }
.marken span {
  font-family: var(--ff-text); font-size: .84rem; font-weight: 600;
  padding: 8px 15px; border: 1px solid var(--linie); border-radius: 30px;
  color: var(--kohle-weich);
}

/* ---------- CTA-Band ---------- */
.ctaband { background: var(--kohle); color: var(--kalk); position: relative; overflow: hidden; }
.ctaband::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--linie-hell) 1px, transparent 1px),
    linear-gradient(90deg, var(--linie-hell) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .4; pointer-events: none;
  -webkit-mask-image: radial-gradient(100% 100% at 90% 100%, #000 0%, transparent 70%);
  mask-image: radial-gradient(100% 100% at 90% 100%, #000 0%, transparent 70%);
}
.ctaband h2 { color: var(--weiss); }
.ctaband p { color: rgba(244,242,239,.85); max-width: 54ch; }
.ctaband__inner { position: relative; z-index: 2; }
.ctaband__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Medien-Platzhalter ---------- */
.media-placeholder {
  display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(45deg, rgba(154,68,51,.07) 0 12px, rgba(154,68,51,.14) 12px 24px);
  border: 1px dashed var(--oxid);
  border-radius: var(--radius); color: var(--oxid-tief);
  font-size: .85rem; font-weight: 700; padding: 20px;
}

/* ---------- Fusszeile ---------- */
.fuss { background: var(--kohle); color: rgba(244,242,239,.74); padding-block: clamp(42px, 5.4vw, 66px) 24px; font-size: .92rem; }
.fuss__grid {
  display: grid; gap: 30px;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 30px; border-bottom: 1px solid var(--linie-hell);
}
.fuss__titel {
  font-family: var(--ff-text); font-size: .71rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--messing); margin: 0 0 12px;
}
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { padding: 5px 0; }
.fuss a { color: rgba(244,242,239,.82); text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.fuss__marke {
  font-family: var(--ff-display); font-size: 1.24rem; font-weight: 600;
  color: var(--weiss); margin-bottom: 10px; display: block; line-height: 1.25;
}
.fuss__unten {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  padding-top: 20px; font-size: .82rem; color: rgba(244,242,239,.5);
}
.fuss__unten ul { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 700px) { .fuss__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 420px) {
  .fuss__grid { grid-template-columns: 1fr; }
  .wrap, .wrap-schmal { width: calc(100% - 32px); }
}


/* ---------- Gezeichnete Illustration statt Platzhalter ---------- */
.illu { border-radius: var(--radius); overflow: hidden; }
.illu svg { width: 100%; height: auto; display: block; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }
.reveal--l { transform: translateX(-28px); }
.reveal--r { transform: translateX(28px); }
.reveal--l.sichtbar, .reveal--r.sichtbar { transform: none; }
.reveal[data-verzug="1"] { transition-delay: .09s; }
.reveal[data-verzug="2"] { transition-delay: .18s; }
.reveal[data-verzug="3"] { transition-delay: .27s; }



/* ---------- Hero-Raster mit Illustration ----------
   Text links, gezeichnete Illustration rechts. Die Grafik ist reines
   SVG: keine Fremdbilder, keine Lizenzfrage, lädt ohne Internet. */
.hero__grid {
  display: grid; align-items: center;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.hero__bild { position: relative; z-index: 2; }
.hero__bild svg { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__bild { max-width: 520px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__bild * { animation: none !important; }
}

@media print {
  .kopf, .ctaband, .fuss__unten { display: none; }
  body { background: #fff; color: #000; }
}
