/* REIXELO Hausmeister & Reinigungsservice — Stilblatt
   Ruhig, klar, ohne Bewegung. Grün nur als Akzent. */

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("assets/fonts/SchibstedGrotesk-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-var.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --gruen: #136b14;
  --gruen-dunkel: #0e5210;
  --gruen-hell: #eaf2e8;
  --gruen-linie: #c9dcc6;
  --ink: #1a1d1a;
  --ink-2: #4a504a;
  --ink-3: #616861;
  --linie: #dcdfda;
  --papier: #ffffff;
  --papier-2: #f4f5f1;
  --notruf: #a8400c;

  --schrift-kopf: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --schrift-text: "Inter", "Helvetica Neue", Arial, sans-serif;

  --breite: 1180px;
  --rand: clamp(20px, 4vw, 40px);
  --abschnitt: clamp(64px, 9vw, 120px);
  --radius: 4px;
}

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

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--schrift-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gruen); text-decoration: none; }
a:hover { color: var(--gruen-dunkel); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gruen);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--schrift-kopf);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

.container {
  width: min(100% - 2 * var(--rand), var(--breite));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--schrift-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 18px;
}

.lead { font-size: 1.1875rem; line-height: 1.55; color: var(--ink-2); }

.text-2 { color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--schrift-text);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primaer { background: var(--gruen); color: #fff; border-color: var(--gruen); }
.btn-primaer:hover { background: var(--gruen-dunkel); border-color: var(--gruen-dunkel); color: #fff; }
.btn-sekundaer { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-sekundaer:hover { background: var(--ink); color: #fff; }

/* ---------- Kopf ---------- */
.kopf {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--papier);
  border-bottom: 1px solid var(--linie);
}
.kopf-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.marke { display: inline-flex; align-items: center; }
.marke img { height: 46px; width: auto; }

.nav { display: flex; gap: 32px; }
.nav a {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9375rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--gruen); border-bottom-color: var(--gruen); }

.kopf-kontakt { display: flex; align-items: center; gap: 22px; }
.kopf-telefon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--schrift-kopf);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.kopf-telefon svg { width: 20px; height: 20px; color: var(--gruen); }
.kopf-notdienst {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--ink-2);
  border-left: 1px solid var(--linie);
  padding-left: 22px;
}
.kopf-notdienst strong { display: block; color: var(--notruf); font-weight: 600; }
.kopf-notdienst a { color: var(--ink); font-weight: 500; }

.nav-mobil { display: none; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px) var(--abschnitt); }
.hero-raster > *, .ueber-raster > *, .kontakt-raster > *, .abschnitt-kopf > * { min-width: 0; }
.hero-raster {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 10fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .zeile { display: block; }
.hero .lead { max-width: 34rem; margin-bottom: 36px; }
.hero-aktionen { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.fakten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--linie);
  padding-top: 28px;
  gap: 24px;
}
.fakt-zahl {
  font-family: var(--schrift-kopf);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gruen);
  line-height: 1;
  margin-bottom: 8px;
}
.fakt-text { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.4; }

.hero-bild { position: relative; min-height: 420px; }
.hero-bild img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 55%;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
}

/* ---------- Abschnittsköpfe ---------- */
.abschnitt { padding-block: var(--abschnitt); }
.abschnitt-grau { background: var(--papier-2); }
.abschnitt-kopf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.abschnitt-kopf .lead { max-width: 32rem; }

/* ---------- Leistungen: das Haus ---------- */
.haus {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
  gap: 20px clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.haus > .zonenleiste { grid-column: 1 / -1; min-width: 0; }
.haus-spalte { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.haus-zeichnung {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  overflow: visible;
}
.haus-legende { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 16px 0 0 2px; }
.haus-hinweis { font-size: .8125rem; color: var(--ink-3); margin-left: auto; }
.haus-zeichnung .hohl { fill: var(--papier-2); }

/* Zeichnung: Flächen, Marker, Zustände */
.haus-zeichnung .fl { transition: fill .45s ease, fill-opacity .45s ease, stroke .45s ease; }
.haus-zeichnung .schnee, .haus-zeichnung .streu { opacity: 0; transition: opacity .45s ease; }
.haus-zeichnung .streu circle { fill: var(--gruen); stroke: none; }
.haus-zeichnung .marker { cursor: pointer; }
.haus-zeichnung .marker .halo { fill: var(--gruen); fill-opacity: 0; stroke: none; transform-box: fill-box; transform-origin: center; transform: scale(.6); transition: fill-opacity .45s ease, transform .45s ease; }
.haus-zeichnung .marker .punkt { fill: #fff; stroke: var(--gruen); stroke-width: 1.6; transition: fill .3s ease, stroke .3s ease; }
.haus-zeichnung .marker text { fill: var(--gruen); stroke: none; font: 700 14px var(--schrift-kopf); transition: fill .3s ease; }
.haus-zeichnung .marker:hover .punkt { fill: var(--gruen-hell); }

.haus[data-zone="1"] .z-1 .fl, .haus[data-zone="2"] .z-2 .fl, .haus[data-zone="3"] .z-3 .fl,
.haus[data-zone="4"] .z-4 .fl, .haus[data-zone="5"] .z-5 .fl, .haus[data-zone="6"] .z-6 .fl,
.haus[data-zone="7"] .z-7 .fl { fill: var(--gruen); fill-opacity: .16; stroke: var(--gruen); }
.haus[data-zone="1"] .fassade { stroke: var(--gruen); stroke-width: 2; }
.haus[data-zone="6"] .schnee, .haus[data-zone="6"] .streu { opacity: 1; }
.haus[data-zone="1"] .z-1 .marker .punkt, .haus[data-zone="2"] .z-2 .marker .punkt, .haus[data-zone="3"] .z-3 .marker .punkt,
.haus[data-zone="4"] .z-4 .marker .punkt, .haus[data-zone="5"] .z-5 .marker .punkt, .haus[data-zone="6"] .z-6 .marker .punkt,
.haus[data-zone="7"] .z-7 .marker .punkt { fill: var(--gruen); stroke: var(--gruen); }
.haus[data-zone="1"] .z-1 .marker text, .haus[data-zone="2"] .z-2 .marker text, .haus[data-zone="3"] .z-3 .marker text,
.haus[data-zone="4"] .z-4 .marker text, .haus[data-zone="5"] .z-5 .marker text, .haus[data-zone="6"] .z-6 .marker text,
.haus[data-zone="7"] .z-7 .marker text { fill: #fff; }
.haus[data-zone="1"] .z-1 .marker .halo, .haus[data-zone="2"] .z-2 .marker .halo, .haus[data-zone="3"] .z-3 .marker .halo,
.haus[data-zone="4"] .z-4 .marker .halo, .haus[data-zone="5"] .z-5 .marker .halo, .haus[data-zone="6"] .z-6 .marker .halo,
.haus[data-zone="7"] .z-7 .marker .halo { fill-opacity: .14; transform: scale(1); }

/* Bühne rechts: eine Zone zur Zeit, alle Szenen in derselben Zelle gestapelt */
.buehne { min-width: 0; display: flex; flex-direction: column; }
.buehne-rahmen {
  display: grid;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
}
.szene {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: clamp(200px, 34%, 250px) minmax(0, 1fr);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .32s ease, transform .32s ease, visibility 0s linear .32s;
}
.szene.aktiv { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.szene[hidden] { display: grid; } /* hidden nur semantisch – sichtbar steuert die Klasse */
html:not(.js) .szene { display: grid; opacity: 1; visibility: visible; transform: none; }
html:not(.js) .buehne-rahmen { display: block; }
html:not(.js) .szene + .szene { border-top: 1px solid var(--linie); }
html:not(.js) .zonenleiste { display: none; }

.szene-bild { margin: 0; position: relative; min-height: 320px; }
.szene-bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.szene-bild figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-size: .75rem; font-weight: 500; color: var(--ink);
  background: rgba(255, 255, 255, .92); padding: 5px 9px; border-radius: 3px;
}
.szene-text { padding: clamp(22px, 2.6vw, 30px); min-width: 0; }
.szene-zaehler { display: flex; align-items: center; gap: 10px; font-size: .8125rem; color: var(--ink-3); margin-bottom: 12px; }
.zone-nr {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gruen); color: #fff;
  font-family: var(--schrift-kopf); font-weight: 700; font-size: .875rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.szene-text h3 { font-size: clamp(1.5rem, 2vw, 1.875rem); margin-bottom: 8px; }
.zone-lead { font-size: 1rem; color: var(--ink-2); margin-bottom: 18px; }

.karten { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.karten li { background: var(--papier-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 12px 14px 13px; }
.karten h4 { font-size: 1rem; font-weight: 600; margin: 6px 0 4px; letter-spacing: 0; }
.karten p { font-size: .875rem; line-height: 1.45; color: var(--ink-2); }
.karten p a { font-weight: 600; white-space: nowrap; }

/* Zonenleiste */
.zonenleiste { display: flex; align-items: center; gap: 10px; }
.zonentabs { display: flex; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--linie); }
.zonentab { flex: 1 0 auto; justify-content: center; }
.zonentabs::-webkit-scrollbar { display: none; }
.zonentab {
  appearance: none; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  font: 500 .8125rem/1.2 var(--schrift-text); color: var(--ink-2);
  padding: 12px 7px; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.zonentab-nr { font-family: var(--schrift-kopf); font-weight: 600; font-size: .75rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.zonentab:hover { color: var(--ink); }
.zonentab.aktiv { color: var(--gruen); border-bottom-color: var(--gruen); }
.zonentab.aktiv .zonentab-nr { color: var(--gruen); }
.zonenpfeile { display: flex; gap: 6px; flex: none; }
.pfeil {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--ink); background: var(--papier);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.pfeil svg { width: 18px; height: 18px; }
.pfeil:hover { background: var(--ink); color: #fff; }

.tag {
  display: inline-block; font-size: .6875rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px; line-height: 1.3;
}
.tag-h { background: var(--gruen-hell); color: var(--gruen-dunkel); }
.tag-r { background: #e9ebe6; color: #3c433c; }

.leistungen-fuss {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--linie);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.leistungen-fuss p { color: var(--ink-2); max-width: 40rem; }


/* ---------- Einblenden beim Scrollen ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .r { opacity: 0; transform: translateY(16px); transition: opacity .55s ease-out, transform .55s ease-out; transition-delay: var(--d, 0ms); }
  html.js .r.sichtbar { opacity: 1; transform: none; }
}

/* ---------- Arbeitsweise ---------- */
.prinzipien {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.prinzip {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--linie);
  margin-right: 28px;
}
.prinzip:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.prinzip .nr {
  font-family: var(--schrift-kopf);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gruen);
  margin-bottom: 18px;
}
.prinzip h3 { font-size: 1.125rem; margin-bottom: 12px; }
.prinzip p { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.55; }
.prinzip small { display: block; margin-top: 10px; font-size: 0.75rem; color: var(--ink-3); line-height: 1.4; }

.einblicke { margin-top: clamp(48px, 6vw, 80px); }
.einblicke-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.einblicke-kopf h3 { font-size: 1.125rem; }
.einblicke-kopf span { font-size: 0.8125rem; color: var(--ink-3); }
.einblicke-raster {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.einblicke-raster figure { margin: 0; position: relative; min-width: 0; }
.einblicke-raster .e-2, .einblicke-raster .e-5 { aspect-ratio: 4 / 3; }
.einblicke-raster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
}
.einblicke-raster figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 9px;
  border-radius: 3px;
}
.e-1 { grid-column: span 5; grid-row: span 2; }
.e-6 { grid-column: span 7; aspect-ratio: 16 / 9; }
.e-7 { grid-column: span 5; }
.e-1 img { object-position: 50% 0%; }
.e-2 { grid-column: span 4; }
.e-3 { grid-column: span 3; }
.e-4 { grid-column: span 3; }
.e-5 { grid-column: span 4; }

/* ---------- Über uns ---------- */
.ueber-raster {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ueber-text p + p { margin-top: 18px; }
.ueber-bild img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
}
.ueber-bild figcaption { font-size: 0.8125rem; color: var(--ink-3); margin-top: 10px; }
.ueber-bild { margin: 0; }

.zeitstrahl {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--linie);
}
.zeitstrahl li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--linie);
  font-size: 0.9375rem;
}
.zeitstrahl .jahr { font-family: var(--schrift-kopf); font-weight: 600; color: var(--gruen); }
.zeitstrahl p { color: var(--ink-2); }

.details {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.detail h3 { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.detail p { font-size: 0.9375rem; color: var(--ink-2); }
.detail ul { list-style: none; margin: 0; padding: 0; font-size: 0.9375rem; color: var(--ink-2); }
.detail li { padding: 4px 0; }
.detail li strong { color: var(--ink); font-weight: 500; }

/* ---------- Kontakt ---------- */
.kontakt-raster {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.kontakt-raster h2 { margin-bottom: 16px; }
.kontakt-raster .lead { margin-bottom: 36px; max-width: 34rem; }

.formular { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 20px; }
.feld { display: flex; flex-direction: column; gap: 8px; }
.feld-voll { grid-column: 1 / -1; }
.feld label { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.feld label span { color: var(--ink-3); font-weight: 400; }
.feld input, .feld select, .feld textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--papier);
  border: 1px solid #b9beb7;
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 50px;
  width: 100%;
}
.feld textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.feld select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1d1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.feld input:focus, .feld select:focus, .feld textarea:focus { border-color: var(--gruen); outline: 2px solid var(--gruen); outline-offset: 0; }
.feld-hinweis { font-size: 0.8125rem; color: var(--ink-3); }

.einwilligung { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 0.875rem; color: var(--ink-2); line-height: 1.5; }
.einwilligung input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--gruen); }

.formular-fuss { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 4px; }
.formular-fuss .text-2 { font-size: 0.875rem; }
.honig { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.meldung { grid-column: 1 / -1; padding: 16px 18px; border-radius: var(--radius); font-size: 0.9375rem; display: none; }
.meldung[data-art="ok"] { display: block; background: var(--gruen-hell); color: var(--gruen-dunkel); border: 1px solid var(--gruen-linie); }
.meldung[data-art="fehler"] { display: block; background: #fbeee8; color: #7d2f0a; border: 1px solid #efc9b6; }

.kontakt-karte {
  background: var(--papier-2);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.kontakt-karte h3 { font-size: 1.125rem; margin-bottom: 20px; }
.kontakt-karte dl { margin: 0; }
.kontakt-karte dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-top: 20px; }
.kontakt-karte dt:first-child { margin-top: 0; }
.kontakt-karte dd { margin: 6px 0 0; color: var(--ink); line-height: 1.5; }
.kontakt-karte dd a { color: var(--ink); font-weight: 500; }
.kontakt-karte dd a:hover { color: var(--gruen); }
.kontakt-karte .gross { font-family: var(--schrift-kopf); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }
.kontakt-karte .notruf { color: var(--notruf); }
.kontakt-karte .notruf a { color: var(--notruf); }
.kontakt-karte hr { border: 0; border-top: 1px solid var(--linie); margin: 24px 0; }
.kontakt-karte .route { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 500; font-size: 0.9375rem; }
.kontakt-karte .route svg { width: 16px; height: 16px; }

/* ---------- Fuß ---------- */
.fuss { border-top: 1px solid var(--linie); padding-block: 40px; }
.fuss-zeile { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.fuss .marke img { height: 40px; }
.fuss-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 0.875rem; }
.fuss-links a { color: var(--ink-2); }
.fuss-links a:hover { color: var(--gruen); }
.fuss-klein { font-size: 0.8125rem; color: var(--ink-3); margin-top: 24px; line-height: 1.5; }

/* ---------- Unterseiten (Impressum, Datenschutz) ---------- */
.unterseite { padding-block: clamp(48px, 6vw, 80px) var(--abschnitt); }
.unterseite .inhalt { max-width: 44rem; }
.unterseite h1 { font-size: clamp(2rem, 3.6vw, 2.75rem); margin-bottom: 32px; }
.unterseite h2 { font-size: 1.375rem; margin: 40px 0 12px; }
.unterseite h3 { font-size: 1.0625rem; margin: 24px 0 8px; }
.unterseite p, .unterseite li { color: var(--ink-2); font-size: 1rem; }
.unterseite p + p { margin-top: 12px; }
.unterseite ul { padding-left: 20px; margin: 8px 0; }
.unterseite address { font-style: normal; color: var(--ink); line-height: 1.6; }
.zurueck { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; margin-bottom: 32px; font-size: 0.9375rem; }
.zurueck svg { width: 16px; height: 16px; }

/* ---------- Responsiv ---------- */
@media (max-width: 1240px) {
  .zonentab-nr { display: none; }
}

@media (max-width: 1024px) {
  .prinzipien { grid-template-columns: 1fr 1fr; border-bottom: 0; }
  .prinzip { border-bottom: 1px solid var(--linie); }
  .prinzip:nth-child(2n) { border-right: 0; margin-right: 0; padding-right: 0; }
  .prinzip:nth-child(2n + 1) { padding-right: 28px; }
  .kopf-notdienst { display: none; }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-mobil {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 0 12px;
    margin-top: -4px;
    scrollbar-width: none;
  }
  .nav-mobil::-webkit-scrollbar { display: none; }
  .nav-mobil { gap: 18px; }
  .nav-mobil a { font-size: 0.875rem; font-weight: 500; color: var(--ink); white-space: nowrap; }
  .kopf-zeile { min-height: 72px; }
  .marke img { height: 40px; }
  .kopf-telefon span { display: none; }
  .kopf-telefon svg { width: 22px; height: 22px; }
  .kopf-telefon { border: 1.5px solid var(--gruen); border-radius: var(--radius); padding: 11px; }

  .hero-raster { grid-template-columns: 1fr; }
  .hero-bild { order: -1; min-height: 0; aspect-ratio: 4 / 3; }
  .abschnitt-kopf { grid-template-columns: 1fr; gap: 16px; }
  .haus { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .haus-spalte { order: 1; }
  .haus > .zonenleiste { order: 2; }
  .buehne { order: 3; }
  .haus-zeichnung { width: 100%; max-width: 420px; height: auto; max-height: none; margin-inline: auto; }
  .haus-hinweis { display: none; }
  .zonentab { flex: 0 0 auto; }
  .szene { grid-template-columns: 1fr; }
  .szene-bild { min-height: 0; aspect-ratio: 16 / 9; }
  .zonentab { padding: 12px 10px; }
  .ueber-raster, .kontakt-raster { grid-template-columns: 1fr; }
  .einblicke-kopf { flex-direction: column; align-items: flex-start; gap: 4px; }
  .einblicke-raster { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .einblicke-raster .e-1 { grid-column: span 6; grid-row: span 1; aspect-ratio: 3 / 2; }
  .e-1 img { object-position: 50% 20%; }
  .e-2, .e-3, .e-4, .e-5 { grid-column: span 3; }
  .einblicke-raster .e-6, .einblicke-raster .e-7 { grid-column: span 6; aspect-ratio: 3 / 2; }
  .details { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .fakten { grid-template-columns: 1fr; gap: 18px; }
  .fakten > div { display: grid; grid-template-columns: 120px 1fr; align-items: baseline; gap: 12px; }
  .fakt-zahl { margin-bottom: 0; font-size: 1.5rem; }
  .hero-aktionen .btn { width: 100%; justify-content: center; }
  .prinzipien { grid-template-columns: 1fr; }
  .prinzip, .prinzip:nth-child(2n + 1) { border-right: 0; margin-right: 0; padding-right: 0; padding-block: 24px; }
  .formular { grid-template-columns: 1fr; }
  .szene-text { padding: 20px 18px 22px; }
  .szene-text h3 { font-size: 1.375rem; }
  .einblicke-raster { gap: 8px; }
  .einblicke-raster figcaption { left: 8px; bottom: 8px; }
  .e-2, .e-3, .e-4, .e-5 { grid-column: span 3; }
}

@media print {
  .kopf, .hero-aktionen, .formular, .nav-mobil { display: none !important; }
}
