/* ==========================================================================
   Stefan Pamperl Installationen — ein Stylesheet für die ganze Seite.
   Aufbau:  1 Marken  2 Grundlagen  3 Hülle  4 Bausteine  5 Formular
            6 Rechtstexte  7 Dunkelmodus  8 Bewegung
   Farben stammen aus dem Logo: Blau #26346e, Flammenrot #bd1818.
   ========================================================================== */

/* --- 1 Marken ------------------------------------------------------------ */
:root {
  --tief:      #26346e;   /* Markenblau: Navigation, Zusage, primäre Aktion */
  --tief-hell: #35479a;   /* Blau aufgehellt für Verläufe und Hover        */
  --glut:      #bd1818;   /* Flammenrot: NUR Dringlichkeit und Wärme       */
  --glut-tief: #8f1212;

  --grund:  #ffffff;      /* Seitengrund                                   */
  --nebel:  #f5f5f7;      /* abgesetztes Band                              */
  --dunst:  #ebebf0;      /* Linien, Ränder                                */
  --tinte:  #1d1d1f;      /* Fließtext                                     */
  --grau:   #6e6e73;      /* Sekundärtext, 5,0:1 auf Weiß                  */
  --karte:  #ffffff;

  --schatten:    0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(20,25,50,.06);
  --schatten-xl: 0 2px 4px rgba(0,0,0,.04), 0 24px 60px rgba(20,25,50,.12);

  --breite: 1200px;
  --rund:   18px;
  --rund-k: 12px;

  --kopf-hoehe: 68px;

  --schrift-titel: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --schrift-text: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --weich: cubic-bezier(.22,.61,.36,1);
}

/* Montserrat, selbst gehostet — keine Verbindung zu Google. OFL 1.1. */
@font-face { font-family:"Montserrat"; font-style:normal; font-weight:300;
  font-display:swap; src:url("schrift/montserrat-300.woff2") format("woff2"); }
@font-face { font-family:"Montserrat"; font-style:normal; font-weight:600;
  font-display:swap; src:url("schrift/montserrat-600.woff2") format("woff2"); }
@font-face { font-family:"Montserrat"; font-style:normal; font-weight:700;
  font-display:swap; src:url("schrift/montserrat-700.woff2") format("woff2"); }

/* --- 2 Grundlagen -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--grund);
  color: var(--tinte);
  font-family: var(--schrift-text);
  font-size: clamp(17px, .4vw + 15.6px, 19px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
body.menue-offen { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--schrift-titel);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--tief);
}
h1 { font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -.03em; }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 1.5vw, 24px); letter-spacing: -.01em; }
p  { margin: 0 0 1.1em; max-width: 68ch; }
a  { color: var(--tief); text-decoration-color: color-mix(in srgb, var(--tief) 35%, transparent);
     text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
img { max-width: 100%; height: auto; display: block; }
ul  { padding-left: 1.2em; }
li  { margin-bottom: .4em; }
hr  { border: 0; border-top: 1px solid var(--dunst); margin: 48px 0; }

:focus-visible {
  outline: 3px solid var(--tief);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: color-mix(in srgb, var(--tief) 20%, transparent); }

.nur-lesegeraet {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.sprungmarke {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--tief); color: #fff; padding: 12px 20px; border-radius: 10px;
  text-decoration: none; transition: top .18s var(--weich);
}
.sprungmarke:focus { top: 12px; }

.hof { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: 22px; }
.eng { max-width: 780px; }

.band { padding: clamp(64px, 9vw, 132px) 0; }
.band--nebel { background: var(--nebel); }
.band--tief  { background: linear-gradient(160deg, var(--tief) 0%, #1b2550 100%); color: #fff; }
.band--tief h2, .band--tief h3 { color: #fff; }
.band--tief p { color: rgba(255,255,255,.82); }

.augbraue {
  font-family: var(--schrift-titel); font-weight: 600; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--grau);
  margin: 0 0 14px;
}
.band--tief .augbraue { color: rgba(255,255,255,.62); }
.augbraue--glut { color: var(--glut); }
.vorspann { font-size: clamp(19px, 1.5vw, 22px); color: var(--grau); line-height: 1.55; }
.band--tief .vorspann { color: rgba(255,255,255,.82); }

/* --- 3 Hülle: Kopfzeile, Menü, Fuß --------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--grund) 78%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--weich), background .25s var(--weich);
}
.kopf.gescrollt { border-bottom-color: var(--dunst); }
.kopf__innen {
  height: var(--kopf-hoehe); display: flex; align-items: center; gap: 20px;
}

.marke { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.marke img { width: 30px; height: 41px; object-fit: contain; }
.marke__wort { display: grid; line-height: 1; }
.marke__wort b {
  font-family: var(--schrift-titel); font-weight: 700; font-size: 19px;
  letter-spacing: .01em; color: var(--tief);
}
.marke__wort span {
  font-family: var(--schrift-titel); font-weight: 300; font-size: 9.5px;
  letter-spacing: .22em; color: var(--tief); margin-top: 3px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 15.5px; color: var(--tinte); text-decoration: none;
  padding: 9px 13px; border-radius: 10px; white-space: nowrap;
  transition: background .2s var(--weich), color .2s var(--weich);
}
.nav a:hover { background: var(--nebel); color: var(--tief); }
.nav a[aria-current="page"] { color: var(--tief); font-weight: 600; }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 12px 24px; border-radius: 999px; border: 0;
  font: inherit; font-size: 16px; font-weight: 600; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--weich), background .2s var(--weich), box-shadow .2s var(--weich);
}
.knopf svg { width: 18px; height: 18px; flex: 0 0 auto; }
.knopf--tief { background: var(--tief); color: #fff; }
.knopf--tief:hover { background: var(--tief-hell); }
.knopf--glut { background: var(--glut); color: #fff; }
.knopf--glut:hover { background: var(--glut-tief); }
.knopf--rand { background: transparent; color: var(--tief); box-shadow: inset 0 0 0 1.5px currentColor; }
.knopf--rand:hover { background: color-mix(in srgb, var(--tief) 8%, transparent); }
.knopf--weiss { background: #fff; color: var(--tief); }
.knopf--weiss:hover { background: #eef0f6; }
.knopf--klar { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.knopf--klar:hover { background: rgba(255,255,255,.24); }
.knopf--klein { min-height: 40px; padding: 9px 18px; font-size: 15px; }
.knopf:hover { transform: translateY(-1px); }
.knopf:active { transform: translateY(0); }
.kopf .knopf { margin-left: 8px; }

.menue-taste {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 0; border-radius: 12px;
  background: var(--nebel); color: var(--tief); cursor: pointer;
  align-items: center; justify-content: center;
}
.menue-taste svg { width: 22px; height: 22px; }

.menue {
  position: fixed; inset: 0; z-index: 99;
  background: var(--grund);
  padding: calc(var(--kopf-hoehe) + 24px) 22px 40px;
  display: none; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.menue[data-offen="ja"] { display: flex; }
/* Nur die großen Textlinks — die Knöpfe unten im Menü behalten ihr eigenes
   Aussehen. Ohne :not() färbte diese Regel auch den Anruf-Knopf blau auf blau. */
.menue a:not(.knopf) {
  font-family: var(--schrift-titel); font-weight: 600;
  font-size: 25px; color: var(--tief); text-decoration: none;
  padding: 14px 6px; border-bottom: 1px solid var(--dunst);
}
.menue .knopf { margin-top: 22px; font-size: 17px; }
.menue__fuss { margin-top: 22px; color: var(--grau); font-size: 15.5px; }

/* Feste Leiste am unteren Rand — nur am Handy, Daumenreichweite */
.daumenleiste {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--grund) 88%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--dunst);
}
.daumenleiste .knopf { flex: 1 1 0; min-width: 0; }

.fuss { background: #14192e; color: rgba(255,255,255,.72); padding: 72px 0 40px; font-size: 15.5px; }
.fuss a { color: rgba(255,255,255,.72); text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss__raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.fuss h4 {
  color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; margin: 0 0 16px;
}
.fuss ul { list-style: none; padding: 0; margin: 0; }
.fuss li { margin-bottom: 10px; }
.fuss__marke .marke { margin-bottom: 20px; }
.fuss__marke .marke img { width: 34px; height: 46px; }
.fuss__marke .marke__wort b { color: #fff; font-size: 22px; }
.fuss__marke .marke__wort span { color: rgba(255,255,255,.72); font-size: 10.5px; }
.fuss__unten {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
  font-size: 14px; color: rgba(255,255,255,.55);
}

/* --- 4 Bausteine --------------------------------------------------------- */

/* Bühne */
.buehne { position: relative; isolation: isolate; background: var(--tief); color: #fff; }
.buehne__bild { position: absolute; inset: 0; z-index: -2; }
.buehne__bild img { width: 100%; height: 100%; object-fit: cover; }
.buehne::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,17,40,.90) 0%, rgba(12,17,40,.72) 42%, rgba(12,17,40,.28) 100%);
}
.buehne__innen { padding-block: clamp(84px, 13vw, 168px) clamp(72px, 10vw, 128px); }
.buehne h1 { color: #fff; max-width: 16ch; text-wrap: balance; }
.buehne p { color: rgba(255,255,255,.86); font-size: clamp(18px, 1.5vw, 21px); max-width: 52ch; }
.buehne__tasten {
  /* Knöpfe einer Gruppe sind immer gleich breit: jede Spalte 1fr, die ganze
     Gruppe so breit wie der breiteste Knopf mal Anzahl. Am Handy untereinander
     über die volle Breite (siehe Breiten unten). */
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  width: max-content; max-width: 100%;
  gap: 12px; margin-top: 34px;
}
.buehne__tasten--mitte { margin-inline: auto; }
.buehne--klein .buehne__innen { padding-block: clamp(64px, 9vw, 116px) clamp(56px, 7vw, 92px); }
.buehne--klein h1 { font-size: clamp(34px, 4.2vw, 54px); }

.brotkrumen { font-size: 14px; color: rgba(255,255,255,.66); margin-bottom: 18px; }
.brotkrumen a { color: inherit; text-decoration: none; }
.brotkrumen a:hover { color: #fff; text-decoration: underline; }
.brotkrumen span { padding: 0 7px; opacity: .5; }

/* Kartenraster */
.raster { display: grid; gap: 24px; }
.raster--2 { grid-template-columns: repeat(2, 1fr); }
.raster--3 { grid-template-columns: repeat(3, 1fr); }
.raster--4 { grid-template-columns: repeat(4, 1fr); }

.karte {
  background: var(--karte); border-radius: var(--rund); overflow: hidden;
  box-shadow: var(--schatten); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .3s var(--weich), box-shadow .3s var(--weich);
}
a.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten-xl); }
.karte__bild { aspect-ratio: 4/3; overflow: hidden; background: var(--dunst); }
.karte__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--weich); }
a.karte:hover .karte__bild img { transform: scale(1.04); }
.karte__text { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.karte__text h3 { margin-bottom: .35em; }
.karte__text p { color: var(--grau); font-size: 16.5px; margin-bottom: 18px; }
.karte__pfeil {
  margin-top: auto; font-weight: 600; font-size: 16px; color: var(--tief);
  display: inline-flex; align-items: center; gap: 7px;
}
.karte__pfeil svg { width: 16px; height: 16px; transition: transform .25s var(--weich); }
a.karte:hover .karte__pfeil svg { transform: translateX(4px); }

/* Merkmale mit Zeichen */
.merkmal { display: flex; gap: 16px; }
.merkmal__zeichen {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tief) 10%, transparent); color: var(--tief);
}
.merkmal__zeichen svg { width: 23px; height: 23px; }
.merkmal--glut .merkmal__zeichen { background: color-mix(in srgb, var(--glut) 12%, transparent); color: var(--glut); }
.band--tief .merkmal__zeichen { background: rgba(255,255,255,.14); color: #fff; }
.merkmal h3 { font-size: 19px; margin-bottom: .3em; }
.merkmal p { color: var(--grau); font-size: 16.5px; margin: 0; }
.band--tief .merkmal p { color: rgba(255,255,255,.75); }

/* Zwei Spalten: Text und Bild */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.duo--gedreht .duo__bild { order: -1; }
.duo__bild img {
  border-radius: var(--rund); box-shadow: var(--schatten-xl);
  width: 100%; max-height: 560px; object-fit: cover;
}

/* Ablauf in Schritten */
.schritte { counter-reset: schritt; display: grid; gap: 28px; grid-template-columns: repeat(4, 1fr); }
.schritt { position: relative; padding-top: 22px; border-top: 2px solid var(--dunst); }
.schritt::before {
  counter-increment: schritt; content: counter(schritt);
  font-family: var(--schrift-titel); font-weight: 700; font-size: 15px;
  color: var(--tief); display: block; margin-bottom: 10px;
}
.band--tief .schritt { border-top-color: rgba(255,255,255,.24); }
.band--tief .schritt::before { color: #fff; }
.schritt h3 { font-size: 19px; }
.schritt p { color: var(--grau); font-size: 16.5px; margin: 0; }

/* Auflistung mit Haken */
.haken { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.haken li { display: flex; gap: 12px; align-items: flex-start; margin: 0; }
.haken svg { flex: 0 0 auto; width: 21px; height: 21px; color: var(--tief); margin-top: 3px; }
.band--tief .haken svg { color: #fff; }

/* Häufige Fragen */
.frage {
  border-bottom: 1px solid var(--dunst);
}
.frage summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--schrift-titel); font-weight: 600; font-size: clamp(17px, 1.2vw, 19px);
  color: var(--tief);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--weich);
}
.frage[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.frage__text { padding: 0 44px 24px 0; color: var(--grau); }
.frage__text p:last-child { margin-bottom: 0; }

/* Logo über dem Kontaktblock — im Dunkelmodus die helle Fassung (<picture>) */
.kontakt-logo { display: block; margin-bottom: 36px; }
.kontakt-logo img { width: clamp(170px, 18vw, 230px); height: auto; }

/* Ansprechpartner mit Porträt — Figur freigestellt, der Grund kommt von hier
   und folgt damit Hell- und Dunkelmodus */
.person { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 28px); margin: 26px 0 34px; }
.person__bild {
  flex: 0 0 auto; width: clamp(118px, 13vw, 164px); aspect-ratio: 4 / 5;
  border-radius: var(--rund); overflow: hidden;
  background: linear-gradient(165deg,
    color-mix(in srgb, var(--tief) 18%, var(--nebel)) 0%, var(--nebel) 78%);
}
.person__bild img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.person figcaption { display: grid; gap: 2px; }
.person b { font-family: var(--schrift-titel); font-weight: 600; font-size: 21px; color: var(--tief); }
.person span { color: var(--grau); font-size: 15.5px; }
.person p { color: var(--tinte); font-size: 16px; margin: 10px 0 0; max-width: 30ch; }

/* Kontaktzeilen */
.kontaktzeilen { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.kontaktzeilen li { display: flex; gap: 15px; align-items: flex-start; margin: 0; }
.kontaktzeilen svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--tief); margin-top: 3px; }
.kontaktzeilen a { text-decoration: none; font-weight: 600; }
.kontaktzeilen a:hover { text-decoration: underline; }
.kontaktzeilen small { display: block; color: var(--grau); font-weight: 400; font-size: 15px; }

/* Ortsliste */
.orte { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.orte li {
  margin: 0; padding: 9px 17px; border-radius: 999px; font-size: 15.5px;
  background: var(--grund); box-shadow: inset 0 0 0 1px var(--dunst); color: var(--tinte);
}
.band--tief .orte li { background: rgba(255,255,255,.10); box-shadow: none; color: #fff; }

/* Notdienst-Streifen */
.notruf {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  background: color-mix(in srgb, var(--glut) 8%, var(--grund));
  border: 1px solid color-mix(in srgb, var(--glut) 25%, transparent);
  border-radius: var(--rund); padding: 26px 30px;
}
.notruf p { margin: 0; color: var(--tinte); }
.notruf strong { color: var(--glut); }

/* Hinweiskasten */
.hinweis {
  background: var(--nebel); border-left: 3px solid var(--tief);
  border-radius: var(--rund-k); padding: 22px 26px; margin: 32px 0;
}
.hinweis p:last-child { margin-bottom: 0; }

/* --- 5 E-Mail-Anfrage --------------------------------------------------- */
/* Kein Formular: jede Zeile ist ein mailto-Link mit eigenem Betreff. */
.schreiben { padding: clamp(26px, 3.4vw, 40px); }
.schreiben h2 { font-size: clamp(24px, 2.2vw, 30px); }
.schreiben__text { color: var(--grau); font-size: 16.5px; }

.themen { list-style: none; padding: 0; margin: 22px 0 0; border-top: 1px solid var(--dunst); }
.themen li { margin: 0; border-bottom: 1px solid var(--dunst); }
.themen a {
  display: flex; align-items: center; gap: 15px;
  min-height: 64px; padding: 12px 6px;
  color: inherit; text-decoration: none; border-radius: var(--rund-k);
  transition: background .2s var(--weich);
}
.themen a:hover { background: var(--nebel); }
.themen a > span:nth-child(2) { flex: 1; display: grid; gap: 1px; }
.themen b { font-family: var(--schrift-titel); font-weight: 600; font-size: 17px; color: var(--tief); }
.themen small { color: var(--grau); font-size: 14.5px; }
.themen a > svg { width: 18px; height: 18px; color: var(--grau); flex: 0 0 auto;
  transition: transform .25s var(--weich), color .2s var(--weich); }
.themen a:hover > svg { transform: translateX(3px); color: var(--tief); }
.themen__zeichen {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tief) 10%, transparent); color: var(--tief);
}
.themen__zeichen svg { width: 21px; height: 21px; }

.notruf--klein { margin-top: 24px; padding: 16px 20px; gap: 14px; }
.notruf--klein p { flex: 1; min-width: 180px; font-size: 16px; }

.kopieren { margin-top: 26px; }
.kopieren p { color: var(--grau); font-size: 14.5px; margin-bottom: 10px; }
.kopieren__zeile { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.kopieren code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 15px;
  padding: 10px 14px; border-radius: 10px; background: var(--nebel); color: var(--tinte);
  user-select: all; overflow-wrap: anywhere;
}
.knopf[data-kopiert="ja"] { color: #1a7f37; box-shadow: inset 0 0 0 1.5px currentColor; }

/* --- 6 Rechtstexte ------------------------------------------------------- */
.rechtstext { max-width: 760px; }
.rechtstext h2 { font-size: clamp(23px, 2vw, 28px); margin-top: 52px; }
.rechtstext h3 { font-size: 19px; margin-top: 34px; }
.rechtstext h2:first-of-type { margin-top: 0; }
.rechtstext dl { margin: 0 0 24px; }
.rechtstext dt { font-weight: 600; margin-top: 14px; }
.rechtstext dd { margin: 0; color: var(--grau); }
.rechtstext address { font-style: normal; }

/* --- 7 Dunkelmodus ------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  :root {
    --grund: #0b0d14;
    --nebel: #141824;
    --dunst: #262b3a;
    --tinte: #f2f2f5;
    --grau:  #a1a6b4;      /* 7,1:1 auf #0b0d14 */
    --karte: #141824;
    --tief:      #9db2ff;  /* Blau aufgehellt, sonst kein Kontrast          */
    --tief-hell: #b6c5ff;
    --glut:      #ff6257;
    --glut-tief: #ff8078;
    --schatten:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.35);
    --schatten-xl: 0 2px 4px rgba(0,0,0,.4), 0 24px 60px rgba(0,0,0,.5);
  }
  .marke__wort b, .marke__wort span { color: var(--tinte); }
  .knopf--tief { background: var(--tief); color: #0b0d14; }
  .knopf--tief:hover { background: var(--tief-hell); }
  .knopf--glut { background: var(--glut); color: #1a0605; }
  .knopf--weiss { background: var(--tinte); color: #0b0d14; }
  .band--tief { background: linear-gradient(160deg, #172046 0%, #0e1430 100%); }
  .band--tief h2, .band--tief h3 { color: #fff; }
  .nav a { color: var(--tinte); }
  .fuss { background: #080a11; }
  .orte li { background: var(--nebel); }
  .notruf { background: color-mix(in srgb, var(--glut) 12%, var(--nebel)); }
  .hinweis { border-left-color: var(--tief); }
}

/* --- 8 Bewegung ---------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .auf { opacity: 0; transform: translateY(22px); }
  .auf.da { opacity: 1; transform: none; transition: opacity .7s var(--weich), transform .7s var(--weich); }
  .auf:nth-child(2) { transition-delay: .06s; }
  .auf:nth-child(3) { transition-delay: .12s; }
  .auf:nth-child(4) { transition-delay: .18s; }
}

/* --- Breiten ------------------------------------------------------------- */
@media (max-width: 1040px) {
  .raster--4 { grid-template-columns: repeat(2, 1fr); }
  .schritte  { grid-template-columns: repeat(2, 1fr); }
  .fuss__raster { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .kopf .knopf { display: none; }
  .menue-taste { display: flex; }
  .daumenleiste { display: flex; }
  body { padding-bottom: 78px; }
  .raster--3, .raster--2 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo--gedreht .duo__bild { order: 0; }
}
@media (max-width: 700px) {
  .buehne__tasten { grid-auto-flow: row; width: 100%; }
}
@media (max-width: 620px) {
  .raster--4 { grid-template-columns: 1fr; }
  .schritte  { grid-template-columns: 1fr; gap: 22px; }
  .fuss__raster { grid-template-columns: 1fr; gap: 34px; }
  .buehne::after { background: linear-gradient(180deg, rgba(12,17,40,.78) 0%, rgba(12,17,40,.88) 100%); }
  .notruf { padding: 22px; }
}
@media print {
  .kopf, .menue, .daumenleiste, .buehne__bild, .knopf { display: none !important; }
  body { color: #000; }
}
