/* =========================================================
   Auto-Elektro-Garage Raymond Crestani — «Werkstatt-Notiz»
   Ein-Mann-Garage mit Elektro-Spezialisierung, Hönggerstrasse 14, Zürich
   Bewusst typografisch statt fotografisch: der Betrieb hat praktisch
   keine Bilder, dafür eine klare Ich-Stimme.
   Palette: Creme-Papier, dunkles Werkstattgrün, Kupferdraht.
   Schrift: Bitter (Slab-Serif, Werkstattschild) + Work Sans.
   ========================================================= */

:root {
  --creme: #f6f2e7;
  --creme-tief: #ece6d5;
  --weiss: #fffdf8;
  --tinte: #1c2420;
  --tinte-weich: #5a655e;
  --werkstatt: #16302a;     /* dunkles Werkstattgrün */
  --werkstatt-tief: #0d1f1b;
  --kupfer: #b5703c;        /* Kupferdraht-Akzent */
  --kupfer-hell: #d99a63;
  --signal: #c8452f;        /* nur für Warn-/Fehlerzustände */

  --ff-display: "Bitter", Georgia, serif;
  --ff-text: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --linie: rgba(28, 36, 32, .15);
  --linie-hell: rgba(246, 242, 231, .2);

  --mw: 1180px;
  --mw-schmal: 720px;
  --pad-sektion: clamp(52px, 6.4vw, 88px);
  --radius: 2px;
}

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

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinte);
  font-family: var(--ff-text);
  font-size: 17px;
  line-height: 1.66;
  -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: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 .5em;
  padding-bottom: .06em;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.72rem, 3.4vw, 2.6rem); }
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(--kupfer); color: #fff; }
:focus-visible { outline: 3px solid var(--kupfer); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--werkstatt); color: #fff; 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(36px, 4.4vw, 58px); }

/* ---------- Brand-Mark: der Kabelschuh ----------
   Ein Stück Kupferdraht mit Ringkabelschuh — das Handwerkszeug
   der Fahrzeugelektrik. 0 KB. */
.draht {
  display: inline-flex; align-items: center;
  width: 22px; height: 10px; flex: 0 0 auto;
}
.draht::before {
  content: ""; width: 10px; height: 10px;
  border: 2.5px solid var(--kupfer); border-radius: 50%;
}
.draht::after {
  content: ""; width: 12px; height: 2.5px; background: var(--kupfer);
}
.draht--hell::before { border-color: var(--kupfer-hell); }
.draht--hell::after { background: var(--kupfer-hell); }

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

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

.btn--kupfer { background: var(--kupfer); color: #fff; }
.btn--kupfer:hover { background: #9c5e30; box-shadow: 0 9px 20px rgba(181,112,60,.34); }

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

.btn--linie-hell {
  background: transparent; color: var(--creme);
  box-shadow: inset 0 0 0 1.5px var(--linie-hell);
}
.btn--linie-hell:hover { background: rgba(246,242,231,.1); box-shadow: inset 0 0 0 1.5px var(--kupfer-hell); }

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

/* ---------- Kopfzeile ---------- */
.kopf {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 242, 231, .95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--werkstatt);
}
.kopf__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 72px;
}
.marke {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--tinte);
  font-family: var(--ff-display);
  font-size: 1.18rem; font-weight: 700; line-height: 1.15;
}
.marke__sub {
  display: block; font-family: var(--ff-text);
  font-size: .62rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--tinte-weich); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  text-decoration: none; color: var(--tinte);
  font-size: .93rem; font-weight: 600;
  padding: 9px 12px; border-radius: var(--radius);
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover { color: var(--kupfer); background: rgba(181,112,60,.1); }
.nav a[aria-current="page"] { color: var(--kupfer); box-shadow: inset 0 -2px 0 var(--kupfer); }
/* 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 18px; color: var(--creme); box-shadow: none; }
.nav .btn:hover { color: var(--creme); }

.burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--tinte); transition: transform .22s ease, opacity .22s ease; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) 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(--creme); padding: 10px 20px 24px;
    border-bottom: 2px solid var(--werkstatt);
    box-shadow: 0 18px 36px rgba(0,0,0,.14);
    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: typografische Bühne ----------
   Kein grosses Foto (der Betrieb hat keine) — die Ich-Stimme trägt. */
.hero {
  background: var(--creme);
  padding-block: clamp(52px, 8vw, 96px) clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.hero::before {
  /* Kupferdraht-Bogen als einziges grafisches Element */
  content: ""; position: absolute; right: -140px; top: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 2px solid var(--kupfer); opacity: .22;
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(38deg); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
/* Die Zeichenbegrenzung gehört auf die Überschrift, nicht auf den
   ganzen Hero-Block — sonst quetscht sie Text und Knöpfe mit ein. */
.hero h1 { max-width: 13ch; }
.hero h1 { margin-bottom: 22px; }
.hero__lead {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.36rem);
  font-weight: 400; line-height: 1.5;
  max-width: 40ch; margin-bottom: 30px; color: var(--tinte);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

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

/* Status-Zeile: «Ja, wir haben geöffnet» war der erste Satz der alten Seite */
.status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 700;
  background: var(--weiss); border: 1px solid var(--linie);
  padding: 9px 16px; border-radius: 30px; margin-bottom: 22px;
}
.status__punkt {
  width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto;
  background: var(--tinte-weich);
}
.status[data-offen="true"] .status__punkt { background: #2f8f5b; }
.status[data-offen="false"] .status__punkt { background: var(--signal); }

/* ---------- Seiten-Hero ---------- */
.seitenhero {
  background: var(--werkstatt); color: var(--creme);
  padding-block: clamp(56px, 7.5vw, 94px) clamp(42px, 5.4vw, 66px);
  position: relative; overflow: hidden;
}
.seitenhero::before {
  content: ""; position: absolute; right: -120px; bottom: -160px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 2px solid var(--kupfer-hell); opacity: .26;
  border-right-color: transparent; border-top-color: transparent;
  transform: rotate(20deg); pointer-events: none;
}
.seitenhero h1 { color: var(--weiss); max-width: 18ch; }
.seitenhero p { color: rgba(246,242,231,.86); max-width: 60ch; font-size: 1.04rem; }
.seitenhero .eyebrow { color: var(--kupfer-hell); }

/* ---------- SIGNATUR 1: Die Werkstatt-Uhr ---------- */
.uhr {
  display: grid; gap: clamp(22px, 3.6vw, 46px);
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  align-items: center;
  background: var(--weiss); border: 1px solid var(--linie);
  border-left: 4px solid var(--kupfer);
  padding: clamp(22px, 3vw, 34px);
}
@media (max-width: 760px) { .uhr { grid-template-columns: 1fr; } }
.uhr__scheibe { width: 100%; height: auto; }
.uhr__jetzt {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.2; margin: 0 0 10px;
}
.uhr__detail { font-size: .95rem; color: var(--tinte-weich); margin: 0 0 18px; }
.uhr__zeiten { list-style: none; margin: 0; padding: 0; }
.uhr__zeiten li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 7px 0; border-bottom: 1px solid var(--linie); font-size: .94rem;
}
.uhr__zeiten li:last-child { border-bottom: 0; }
.uhr__zeiten li[data-heute="true"] { font-weight: 700; color: var(--kupfer); }
.uhr__zeiten span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- SIGNATUR 2: Jahrgang-Wähler ---------- */
.jahrgaenge { background: var(--werkstatt); color: var(--creme); }
.jahrgaenge h2 { color: var(--weiss); }
.jahrgang__leiste {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 24px;
}
.jahrgang__knopf {
  flex: 1 1 110px; cursor: pointer;
  font-family: var(--ff-display); font-size: 1.02rem; font-weight: 700;
  padding: 13px 12px; text-align: center;
  background: transparent; color: var(--creme);
  border: 1.5px solid var(--linie-hell); border-radius: var(--radius);
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}
.jahrgang__knopf:hover { transform: translateY(-2px); border-color: var(--kupfer-hell); }
.jahrgang__knopf[aria-selected="true"] {
  background: var(--kupfer); border-color: var(--kupfer); color: #fff;
}
.jahrgang__tafel {
  background: rgba(246,242,231,.06);
  border: 1px solid var(--linie-hell);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}
.jahrgang__tafel[hidden] { display: none; }
.jahrgang__tafel h3 { color: var(--weiss); margin-bottom: 10px; }
.jahrgang__tafel p { color: rgba(246,242,231,.86); }
.jahrgang__tafel ul { list-style: none; margin: 14px 0 0; padding: 0; }
.jahrgang__tafel li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 7px 0; font-size: .95rem; color: rgba(246,242,231,.88);
}
.jahrgang__tafel li::before {
  content: ""; flex: 0 0 auto; margin-top: .48em;
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid var(--kupfer-hell);
}

/* ---------- Leistungs-Liste ---------- */
.leistungen { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--linie); }
.leistungen li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--linie);
  align-items: start;
}
.leistungen__nr {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.02rem; color: var(--kupfer); line-height: 1.5;
}
.leistungen b { display: block; font-family: var(--ff-display); font-size: 1.14rem; margin-bottom: 4px; }
.leistungen p { margin: 0; font-size: .95rem; color: var(--tinte-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: 25px 23px 27px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.karte:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(28,36,32,.1); }
.karte h3 { margin-bottom: 8px; }
.karte p { font-size: .94rem; color: var(--tinte-weich); }
.karte ul { list-style: none; margin: 12px 0 0; padding: 0; }
.karte li {
  padding: 6px 0; font-size: .93rem; color: var(--tinte-weich);
  display: flex; gap: 10px; align-items: flex-start;
}
.karte li::before {
  content: ""; flex: 0 0 auto; margin-top: .5em;
  width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--kupfer);
}

/* ---------- Ich-Zitat ---------- */
.zitat {
  border-left: 4px solid var(--kupfer);
  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.45; font-weight: 400; margin-bottom: 12px;
}
.zitat footer { font-size: .87rem; color: var(--tinte-weich); }

/* ---------- Bewertungs-Abzeichen ---------- */
.bewertung {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 16px 22px;
}
.bewertung__note {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 2rem; line-height: 1; color: var(--kupfer);
}
.bewertung__text { font-size: .9rem; color: var(--tinte-weich); line-height: 1.4; }
.bewertung__sterne { color: var(--kupfer); letter-spacing: .1em; font-size: .95rem; }

/* ---------- 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(--kupfer); text-decoration: none; border-bottom: 1px solid var(--kupfer); }
.kontakt__block a:not(.btn):hover { color: #9c5e30; }

/* ---------- Formular ---------- */
.feld { margin-bottom: 15px; }
.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(--weiss); color: var(--tinte);
}
.feld-paar { display: grid; gap: 0 15px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .feld-paar { grid-template-columns: 1fr; } }

/* ---------- 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: 700; font-size: .98rem;
  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(--kupfer); transition: transform .2s ease; }
details.faltung[open] > summary::after { transform: rotate(45deg); }
details.faltung > div { padding-bottom: 18px; font-size: .93rem; color: var(--tinte-weich); }

/* ---------- CTA-Band ---------- */
.ctaband {
  background: var(--werkstatt); color: var(--creme);
  position: relative; overflow: hidden;
}
.ctaband::after {
  content: ""; position: absolute; right: -110px; top: -130px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 2px solid var(--kupfer-hell); opacity: .24;
  border-left-color: transparent; border-bottom-color: transparent;
  transform: rotate(-14deg); pointer-events: none;
}
.ctaband h2 { color: var(--weiss); }
.ctaband p { color: rgba(246,242,231,.86); 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(181,112,60,.08) 0 12px, rgba(181,112,60,.15) 12px 24px);
  border: 1px dashed var(--kupfer);
  border-radius: var(--radius); color: #8a5730;
  font-size: .85rem; font-weight: 700; padding: 20px;
}

/* ---------- Fusszeile ---------- */
.fuss { background: var(--werkstatt-tief); color: rgba(246,242,231,.74); padding-block: clamp(42px, 5.4vw, 64px) 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: .72rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--kupfer-hell); margin: 0 0 12px;
}
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { padding: 5px 0; }
.fuss a { color: rgba(246,242,231,.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: 700;
  color: var(--creme); margin-bottom: 10px; display: block; line-height: 1.2;
}
.fuss__unten {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  padding-top: 20px; font-size: .83rem; color: rgba(246,242,231,.56);
}
.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; }
}

/* Die Kupferleitungen im Hero-Bild. */
.hero__bild .adern { stroke-linecap: round; }
/* Die Kupfer-Knoten pulsieren leicht — wie ein Bordnetz unter Strom. */
.hero__bild .knoten circle { animation: puls 3.4s ease-in-out infinite; }
.hero__bild .knoten circle:nth-child(2) { animation-delay: .5s; }
.hero__bild .knoten circle:nth-child(3) { animation-delay: 1s; }
.hero__bild .knoten circle:nth-child(4) { animation-delay: 1.5s; }
.hero__bild .knoten circle:nth-child(5) { animation-delay: 2s; }
@keyframes puls { 0%,100% { opacity: .45 } 50% { opacity: 1 } }

/* ---------- 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; }
}
