/* ==========================================================================
   Förster Höhentechnik – Industrieklettern & Höhenarbeit
   Helles Design-System. Alle Farben und Maße als Custom Properties in :root,
   damit ein Marken-Wechsel eine Einzeiler-Änderung bleibt.
   Keine externen Ressourcen (DSGVO): System-Schriften, keine CDNs.
   ========================================================================== */

:root {
  /* Farben – helle Basis, Orange als Akzent */
  --c-bg:            #ffffff;
  --c-bg-alt:        #f3f5f8;   /* Wechselflächen für Rhythmus */
  --c-surface:       #ffffff;   /* Karten */
  --c-line:          #dde2e8;
  --c-line-strong:   #c6ced8;

  --c-text:          #16191d;
  --c-text-muted:    #55606d;

  --c-accent:        #c4420a;   /* Text, Links, Buttons – Weiß darauf > 5:1 */
  --c-accent-hover:  #a63709;
  --c-accent-bright: #f26522;   /* nur dekorativ: Icons, Linien, Grafik */
  --c-accent-soft:   #fdf1ea;   /* zarte Tönung für Flächen */

  --c-dark:          #16191d;   /* dunkle Akzentfläche, sparsam eingesetzt */
  --c-error:         #b3261e;

  /* Typografie */
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-h1: clamp(2rem, 1.2rem + 3.4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.08rem);

  /* Maße */
  --w-container: 1200px;
  --w-narrow: 760px;
  --header-h: 76px;
  --radius: 10px;
  --radius-lg: 16px;
  --gap: clamp(1.25rem, 0.8rem + 1.6vw, 2.25rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 6.5rem);
  --shadow-sm: 0 1px 2px rgba(22, 25, 29, 0.06), 0 4px 12px rgba(22, 25, 29, 0.05);
  --shadow: 0 10px 30px rgba(22, 25, 29, 0.10);
}

/* ---------- Reset / Basis ---------- */

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

html {
  scroll-behavior: smooth;
  /* Sticky Header darf Ankerziele nicht verdecken */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  font-weight: 700;
  color: var(--c-text);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.005em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-accent-hover); }

ul { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

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

/* ---------- Layout-Bausteine ---------- */

.container {
  width: min(100% - 2.5rem, var(--w-container));
  margin-inline: auto;
}

.narrow { max-width: var(--w-narrow); }

.section { padding-block: var(--section-y); background: var(--c-bg); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section--alt { background: var(--c-bg-alt); }
/* Altlast aus der ersten Fassung – bleibt als Alias erhalten */
.section--light { background: var(--c-bg); }

.muted { color: var(--c-text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-accent-bright);
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  color: var(--c-text-muted);
  max-width: 62ch;
}

.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 1rem + 2.5vw, 3rem); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--c-accent-hover); color: #fff; box-shadow: var(--shadow); }

.btn--ghost { border-color: var(--c-line-strong); color: var(--c-text); background: transparent; }
.btn--ghost:hover { border-color: var(--c-text); background: rgba(22, 25, 29, 0.04); color: var(--c-text); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 700;
  text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform 0.18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Skip-Link ---------- */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__logo { flex: 0 0 auto; margin-right: auto; }
.site-header__logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.4rem; }

.nav a {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  color: var(--c-text);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { background: var(--c-bg-alt); color: var(--c-accent); }
.nav a[aria-current="page"] { color: var(--c-accent); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.header-phone:hover { background: var(--c-accent-hover); color: #fff; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-text);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--c-line); border-radius: 0; }

  .header-phone span { display: none; }
  .header-phone { padding: 0.7rem 0.95rem; }
}

/* ---------- Sticky Call-Bar (nur Mobil) ---------- */

.callbar { display: none; }

@media (max-width: 700px) {
  .callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--c-line);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -4px 16px rgba(22, 25, 29, 0.08);
  }
  .callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 0.5rem;
    background: #fff;
    color: var(--c-text);
    font-weight: 700;
    text-decoration: none;
  }
  .callbar a.is-primary { background: var(--c-accent); color: #fff; }
  .callbar svg { width: 18px; height: 18px; }

  body { padding-bottom: 58px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 74vh, 700px);
  padding-block: clamp(3rem, 2rem + 6vw, 6rem);
  overflow: hidden;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.55) 100%);
}

/* Der Block darf NICHT selbst auf 62ch begrenzt werden: .hero ist ein
   Flex-Container, und das geerbte margin-inline:auto aus .container wuerde
   ein schmales Flex-Element mittig setzen. Der Hero-Text staende dann
   eingerueckt und nicht mehr auf einer Linie mit Logo und Sektionen.
   Stattdessen behaelt der Container seine Breite, die Textzeilen werden
   einzeln begrenzt. */
.hero__content { position: relative; z-index: 1; }
/* Begrenzung in rem statt ch: ch haengt an der Schriftgroesse, 62ch waeren
   bei der 56px-Ueberschrift rund 1700px und damit wirkungslos. */
.hero__content > * { max-width: 36rem; }
.hero__content .lead { max-width: 36rem; }
.hero h1 { margin-bottom: 0.5em; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.hero__badges li {
  margin: 0;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

/* ---------- Vertrauensleiste ---------- */

.trustbar {
  background: var(--c-accent-soft);
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
  padding-block: 1.5rem;
}
.trustbar ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}
.trustbar svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--c-accent); }

/* ---------- Karten-Raster ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--gap);
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 1rem + 1vw, 2rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { border-color: var(--c-accent-bright); transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--c-text-muted); margin-bottom: 1.2em; }
.card .link-arrow { margin-top: auto; }

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  background: var(--c-accent-soft);
  color: var(--c-accent);
}
.card__icon svg { width: 26px; height: 26px; }

/* ---------- Split-Abschnitte (Bild + Text) ---------- */

.split {
  display: grid;
  gap: var(--gap);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 1rem + 4vw, 4.5rem); }
  .split--reverse .split__media { order: 2; }
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  /* Feste Bildfläche, damit Hoch- und Querformat gemischt werden können,
     ohne dass die Abschnitte unterschiedlich hoch werden. */
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media img.is-portrait { aspect-ratio: 1 / 1; }

.split + .split { margin-top: clamp(3rem, 2rem + 4vw, 5.5rem); }

.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7em;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--c-accent);
  border-bottom: 3px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* ---------- Ablauf ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: var(--gap);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  margin: 0;
  padding-top: 3.6rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-accent);
}
.steps li::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 3.4rem;
  right: -1rem;
  height: 1px;
  background: var(--c-line-strong);
}
.steps li:last-child::after { display: none; }
@media (max-width: 700px) { .steps li::after { display: none; } }
.steps h3 { margin-bottom: 0.35em; }
.steps p { color: var(--c-text-muted); }

/* ---------- Referenzen ---------- */

.refs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--gap);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.refs li {
  margin: 0;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent-bright);
  background: var(--c-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.refs strong { display: block; font-size: 1.05rem; }
.refs span { color: var(--c-text-muted); font-size: 0.95rem; }

/* ---------- CTA-Band ---------- */

.cta-band {
  /* Beide Verlaufsenden dunkel genug, damit weiße Schrift durchgehend
     mindestens 4.5:1 erreicht – #f26522 schafft nur 3.15:1. */
  background: linear-gradient(120deg, #8f2f07, var(--c-accent));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.95); margin-inline: auto; max-width: 55ch; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--primary { background: #fff; color: #a63709; }
.cta-band .btn--primary:hover { background: #fff; color: #16191d; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.75); }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: #fff; color: #fff; }

/* ---------- Formular ---------- */

.contact-layout { display: grid; gap: var(--gap); }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.35fr 1fr; gap: clamp(2.5rem, 1rem + 4vw, 4rem); align-items: start; }
}

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }

.field label { font-weight: 600; font-size: 0.95rem; }
.field .req { color: var(--c-accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-text);
  font-family: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8b95a1; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--c-accent); }

.field .error {
  min-height: 1.2em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-error);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--c-error); }

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
}
.checkbox input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--c-accent); }
.checkbox label { font-weight: 400; }

.checkbox-wrap .error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-error);
}

.form-note { font-size: 0.9rem; color: var(--c-text-muted); margin-top: 1rem; }

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  background: var(--c-accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
}
.form-status[hidden] { display: none; }

/* Honeypot gegen Spam-Bots – für Menschen unsichtbar */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Infokarte Kontaktdaten ---------- */

.info-card {
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-bg-alt);
}
.info-card h2, .info-card h3 { margin-top: 0; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 22px; height: 22px; color: var(--c-accent); margin-top: 0.2rem; }
.info-list strong { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-muted); font-weight: 700; }
.info-list a { text-decoration: none; font-weight: 600; }
.info-list a:hover { text-decoration: underline; }

/* ---------- Anker-Navigation ---------- */

.anchor-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; padding: 0; list-style: none; }
.anchor-nav li { margin: 0; }
.anchor-nav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
}
.anchor-nav a:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ---------- Team ---------- */

.team-card { text-align: center; }
.team-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent-bright);
}
.team-card h3 { margin-bottom: 0.2em; }
.team-card .role { color: var(--c-accent); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Rechtstexte ---------- */

.legal { max-width: var(--w-narrow); }
.legal h2 { margin-top: 2.4em; font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem); }
.legal h2:first-of-type { margin-top: 1.2em; }
.legal h3 { margin-top: 1.8em; }
.legal address { font-style: normal; }

.placeholder-hint {
  padding: 1rem 1.2rem;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent-bright);
  background: var(--c-accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--gap);
}
.site-footer img.footer-logo { height: 54px; width: auto; margin-bottom: 1.1rem; }
.site-footer h3 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55em; }
.site-footer a { color: var(--c-text); text-decoration: none; }
.site-footer a:hover { color: var(--c-accent); text-decoration: underline; }
.site-footer p { color: var(--c-text-muted); font-size: 0.95rem; }
.site-footer address { font-style: normal; color: var(--c-text-muted); font-size: 0.95rem; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 1rem + 2vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line-strong);
  font-size: 0.9rem;
  color: var(--c-text-muted);
}
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.site-footer__bottom li { margin: 0; }

/* ---------- Scroll-Reveal ---------- */

/* Der Startzustand greift nur, wenn JavaScript aktiv ist – sonst bliebe der
   Inhalt bei abgeschaltetem JS dauerhaft unsichtbar. Die Klasse "js" setzt
   ein kurzes Inline-Skript im <head> jeder Seite. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Druck ---------- */

@media print {
  .site-header, .callbar, .cta-band, .btn-row { display: none !important; }
  body { background: #fff; color: #000; }
}
