/* ============================================================
   KRAN EBERT 24 – Redesign-Demo
   Typo: Anton (Display) + Barlow (Text) | Akzent: Livery-Rot
   Grundfläche hell, Dunkel nur als Struktur (Header/Band/Footer)
   ============================================================ */

@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f3f0;
  --paper: #ffffff;
  --ink: #17191c;
  --ink-2: #50555a;
  --line: #e3e1dc;
  --rot: #b81a1d;
  --rot-tief: #8f0e12;
  --dunkel: #191b1e;
  --dunkel-2: #222528;
  --hell-auf-dunkel: #f2f1ee;
  --grau-auf-dunkel: #aab0b5;
  --gelb: #f2b705;
  --radius: 2px;
  --schatten: 0 14px 34px rgba(23, 25, 28, .10);
  --wrap: 1200px;
  --uebergang: .28s cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

h1, h2, h3.display {
  font-family: 'Anton', 'Barlow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .012em;
  line-height: .98;
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }

p { max-width: 65ch; }
.text-muted { color: var(--ink-2); }

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

:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 2px;
}
.header :focus-visible, .footer :focus-visible, .band-dunkel :focus-visible {
  outline-color: var(--gelb);
}

::selection { background: var(--rot); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--uebergang), background var(--uebergang), color var(--uebergang), border-color var(--uebergang);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-rot { background: var(--rot); color: #fff; }
.btn-rot:hover { background: var(--rot-tief); color: #fff; transform: translateY(-1px); }
.btn-kontur { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-kontur:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn-kontur-hell { border-color: #fff; color: #fff; background: transparent; }
.btn-kontur-hell:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dunkel);
  border-bottom: 1px solid #2c2f33;
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  height: 72px;
}
.header-logo { display: flex; align-items: center; flex: none; }
.header-logo img { width: 196px; height: auto; }
.nav { display: flex; gap: 1.45rem; margin-left: auto; align-items: center; }
.nav a {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--hell-auf-dunkel);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--uebergang), border-color var(--uebergang);
}
.nav a:hover { color: #fff; border-color: var(--gelb); }
.nav a[aria-current="page"] { color: #fff; border-color: var(--rot); }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--hell-auf-dunkel);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-tel:hover { color: var(--gelb); }
.header-cta { margin-left: .2rem; padding: .7rem 1.15rem; font-size: .85rem; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid #3a3e43;
  border-radius: var(--radius);
  color: #fff;
  width: 46px;
  height: 42px;
  font-size: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after { top: 6px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header-tel { display: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--dunkel);
    border-bottom: 1px solid #2c2f33;
    padding: .5rem 1.25rem 1.25rem;
  }
  .nav.offen { display: flex; }
  .nav a { padding: .85rem .25rem; border-bottom: 1px solid #2c2f33; }
  .nav a[aria-current="page"] { border-color: var(--rot); }
  .header-cta { margin: .9rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4.5vh, 3.6rem) clamp(2.4rem, 5vh, 4rem);
}
.hero-eyebrow {
  display: inline-block;
  color: var(--rot);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .rot { color: var(--rot); }
.hero-sub { font-size: 1.2rem; line-height: 1.55; color: var(--ink-2); margin-bottom: 1.7rem; }
.hero-sub strong { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-hinweis { margin-top: 1rem; font-size: .95rem; color: var(--ink-2); }

.hero-bild {
  position: relative;
  align-self: stretch;
  min-height: 430px;
}
.hero-bild .foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-bild::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 9%;
  pointer-events: none;
}
.hero-haken {
  position: absolute;
  top: -6px;
  left: 16%;
  width: clamp(54px, 6vw, 78px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(23, 25, 28, .28));
  z-index: 2;
}

/* Zahlenband unter dem Hero */
.zahlenband { background: var(--dunkel); color: #fff; }
.zahlenband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2c2f33;
}
.zahl {
  background: var(--dunkel);
  padding: 1.35rem 1.5rem 1.2rem;
  text-align: left;
}
.zahl b {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: .015em;
  color: #fff;
  line-height: 1.05;
}
.zahl b em { font-style: normal; color: var(--gelb); }
.zahl span { color: var(--grau-auf-dunkel); font-size: .95rem; font-weight: 500; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 1.6rem; }
  .hero-bild { min-height: 320px; order: 2; }
  .hero-bild .foto { clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); position: relative; height: 340px; }
  .hero-haken { display: none; }
  .zahlenband-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sektionen ---------- */
.sektion { padding-block: clamp(3.4rem, 7.5vw, 5.6rem); }
.sektion-kopf { max-width: 720px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.sektion-kopf p { font-size: 1.13rem; color: var(--ink-2); }
.sektion-kopf .mehr { margin-top: 1rem; }
.hell { background: var(--bg); }
.weiss { background: var(--paper); }

.mehr-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--rot);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.mehr-link::after { content: '→'; transition: transform var(--uebergang); }
.mehr-link:hover::after { transform: translateX(4px); }

/* ---------- Leistungs-Grid (2 groß + 4 kompakt) ---------- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}
.lkarte {
  grid-column: span 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}
.lkarte:hover { transform: translateY(-4px); box-shadow: var(--schatten); border-color: #d5d3cd; color: var(--ink); }
.lkarte-gross { grid-column: span 2; grid-row: span 2; }
.lkarte .bild { aspect-ratio: 4 / 3; overflow: hidden; }
.lkarte-gross .bild { aspect-ratio: 16 / 10.6; }
.lkarte .bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lkarte:hover .bild img { transform: scale(1.035); }
.lkarte .inhalt { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.lkarte-gross .inhalt { padding: 1.5rem 1.6rem 1.7rem; }
.lkarte h3 { display: flex; align-items: baseline; gap: .6rem; }
.lkarte p { font-size: .98rem; color: var(--ink-2); }
.lkarte-gross p { font-size: 1.05rem; }
.lkarte .hinweis { margin-top: auto; padding-top: .5rem; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; color: var(--rot); }

@media (max-width: 1080px) {
  .leistungen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lkarte-gross { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .lkarte-gross { grid-column: span 1; }
}

/* ---------- Feature-Split (MK 140) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}
.feature-bild {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
}
.feature-bild img { width: 100%; height: 100%; object-fit: cover; }
.feature-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--dunkel);
  color: var(--gelb);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .55rem .9rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-block: 1.5rem;
}
.spec {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rot);
  border-radius: var(--radius);
  padding: 1rem 1.15rem .9rem;
}
.spec b {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
}
.spec span { color: var(--ink-2); font-size: .95rem; font-weight: 500; }

@media (max-width: 920px) {
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .spec-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .spec b { font-size: 1.4rem; }
}

/* ---------- Einsatz-Referenzen (nummerierte Zeilen) ---------- */
.einsatz-liste { display: grid; gap: 1.1rem; }
.einsatz {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
.einsatz:hover { transform: translateY(-3px); box-shadow: var(--schatten); color: var(--ink); }
.einsatz .bild { width: 190px; height: 126px; overflow: hidden; border-radius: var(--radius); flex: none; }
.einsatz .bild img { width: 100%; height: 100%; object-fit: cover; }
.einsatz h3 { margin-bottom: .3rem; }
.einsatz p { font-size: .98rem; color: var(--ink-2); }
.einsatz .fakt {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--rot);
  white-space: nowrap;
  padding-right: .6rem;
}
.einsatz .fakt small { display: block; font-family: 'Barlow', sans-serif; font-size: .8rem; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 760px) {
  .einsatz { grid-template-columns: 1fr; }
  .einsatz .bild { width: 100%; height: 180px; }
  .einsatz .fakt { padding: 0; }
}

/* ---------- Zitat ---------- */
.zitat {
  margin-top: 2.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gelb);
  border-radius: var(--radius);
  padding: 1.6rem 1.9rem;
  max-width: 780px;
}
.zitat blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.zitat figcaption { margin-top: .8rem; color: var(--ink-2); font-size: .95rem; }

/* ---------- Historie ---------- */
.historie-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}
.historie-fotos { position: relative; }
.historie-fotos .haupt { border-radius: var(--radius); box-shadow: var(--schatten); }
.historie-fotos .klein {
  position: absolute;
  right: -14px;
  bottom: -20px;
  width: 44%;
  border: 5px solid var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
}
.zeitleiste { list-style: none; margin-top: 1.4rem; display: grid; gap: .95rem; }
.zeitleiste li { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 1rem; align-items: baseline; }
.zeitleiste .jahr { font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--rot); }
.zeitleiste p { color: var(--ink-2); font-size: 1rem; }
.zeitleiste p strong { color: var(--ink); }

@media (max-width: 920px) {
  .historie-grid { grid-template-columns: 1fr; }
  .historie-fotos { max-width: 460px; }
}

/* ---------- Einzugsgebiet (Panorama-Band) ---------- */
.gebiet {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(3.6rem, 9vw, 6.2rem);
}
.gebiet .pano {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.gebiet::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(20, 22, 25, .88) 0%, rgba(20, 22, 25, .62) 52%, rgba(20, 22, 25, .3) 100%);
}
.gebiet h2 { color: #fff; }
.gebiet .lead { color: #d9dcdf; font-size: 1.12rem; max-width: 56ch; }
.stadt-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; max-width: 720px; }
.stadt-chips li {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--radius);
  padding: .4rem .85rem;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  background: rgba(20, 22, 25, .3);
}
.stadt-chips li.haupt { background: var(--rot); border-color: var(--rot); }
.gebiet .autobahnen { margin-top: 1.3rem; color: #d9dcdf; font-size: .98rem; }
.gebiet .autobahnen b { color: var(--gelb); font-weight: 700; }

/* ---------- Kontakt-Finale ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.kkarte {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.kkarte h3 { margin-bottom: .65rem; }
.kkarte .gross {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  line-height: 1.15;
}
.kkarte .gross:hover { color: var(--rot); }
.kkarte p { font-size: .98rem; color: var(--ink-2); }
.kkarte-rot { background: var(--rot); border-color: var(--rot); color: #fff; }
.kkarte-rot h3, .kkarte-rot p { color: #fff; }
.kkarte-rot .gross { color: #fff; }
.kkarte-rot .gross:hover { color: var(--gelb); }
.kkarte-rot .sub { color: #ffd9d9; }
.zeiten { list-style: none; display: grid; gap: .3rem; font-size: .98rem; color: var(--ink-2); }
.zeiten b { color: var(--ink); font-weight: 600; }

@media (max-width: 920px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--dunkel); color: var(--grau-auf-dunkel); margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-block: 3rem 2.2rem;
}
.footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .9rem; }
.footer a { color: var(--grau-auf-dunkel); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; display: grid; gap: .45rem; font-size: .98rem; }
.footer-logo img { width: 200px; margin-bottom: 1rem; }
.footer-klein {
  border-top: 1px solid #2c2f33;
  padding-block: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
}
.footer .haken-deko { position: relative; }
.demo-hinweis { color: #7d838a; font-size: .85rem; }

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Unterseiten-Kopf ---------- */
.seitenkopf {
  background: var(--dunkel);
  color: #fff;
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
  position: relative;
  overflow: hidden;
}
.seitenkopf h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 18ch; }
.seitenkopf .lead { color: var(--grau-auf-dunkel); font-size: 1.15rem; margin-top: .9rem; max-width: 62ch; }
.seitenkopf .haken {
  position: absolute;
  right: clamp(1rem, 8vw, 7rem);
  top: -8px;
  width: clamp(44px, 5vw, 64px);
  opacity: .92;
}

/* ---------- Leistungs-Detailblöcke ---------- */
.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.detail-split:not(:last-child) { border-bottom: 1px solid var(--line); }
.detail-split .bild { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); }
.detail-split .bild img { width: 100%; height: 100%; object-fit: cover; }
.detail-split.rechts .bild { order: 2; }
.detail-split h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.detail-split ul { margin: .9rem 0 1.2rem 1.1rem; color: var(--ink-2); display: grid; gap: .35rem; }
.detail-split li::marker { color: var(--rot); }

@media (max-width: 880px) {
  .detail-split { grid-template-columns: 1fr; }
  .detail-split.rechts .bild { order: 0; }
}

/* Foto-Band (Abschleppdienst) */
.fotoband {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(3.4rem, 8vw, 5.4rem);
  margin-block: clamp(2.4rem, 5vw, 3.6rem);
}
.fotoband .bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.fotoband::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 17, 19, .9), rgba(15, 17, 19, .45) 65%, rgba(15, 17, 19, .2));
}
.fotoband h2 { color: #fff; }
.fotoband p { color: #dcdfe2; font-size: 1.1rem; max-width: 56ch; }
.fotoband .btn { margin-top: 1.3rem; }

/* ---------- Galerie ---------- */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.galerie-grid button {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
.galerie-grid button:hover { transform: translateY(-3px); box-shadow: var(--schatten); }
.galerie-grid img { width: 100%; height: 100%; object-fit: cover; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 13, 15, .92);
  padding: 2.5rem;
}
.lightbox.offen { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; width: auto; height: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox-schliessen {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: none;
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
}
.lightbox-schliessen:hover { border-color: #fff; }

/* ---------- FAQ ---------- */
.faq-liste { display: grid; gap: .8rem; max-width: 820px; }
.faq-liste details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
}
.faq-liste summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after { content: '+'; font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--rot); transition: transform .25s ease; }
.faq-liste details[open] summary::after { transform: rotate(45deg); }
.faq-liste details > div { padding-top: .7rem; color: var(--ink-2); }
.faq-liste details ul { margin: .5rem 0 .3rem 1.2rem; display: grid; gap: .3rem; }

/* ---------- Formular (Demo) ---------- */
.formular {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.formular-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.feld { display: grid; gap: .35rem; }
.feld-voll { grid-column: 1 / -1; }
.feld label { font-weight: 600; font-size: .95rem; }
.feld label .opt { color: var(--ink-2); font-weight: 400; }
.feld input, .feld select, .feld textarea {
  font: inherit;
  color: var(--ink);
  padding: .75rem .9rem;
  border: 1.5px solid #cfcdc7;
  border-radius: var(--radius);
  background: #fff;
  width: 100%;
}
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none;
  border-color: var(--rot);
  box-shadow: 0 0 0 3px rgba(184, 26, 29, .15);
}
.feld .hilfe { font-size: .85rem; color: var(--ink-2); }
.formular .btn { margin-top: 1.2rem; }
.form-demo-meldung {
  display: none;
  margin-top: 1.1rem;
  border: 1.5px solid var(--gelb);
  background: #fdf6e3;
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  font-size: .98rem;
}
.form-demo-meldung.sichtbar { display: block; }

@media (max-width: 640px) {
  .formular-grid { grid-template-columns: 1fr; }
}

/* ---------- Hilfsklassen ---------- */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(135deg, var(--gelb) 0 14px, var(--dunkel) 14px 28px);
}
.zentriert { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lkarte, .einsatz, .btn, .galerie-grid button { transition: none; }
}

/* Skip-Link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gelb);
  color: var(--ink);
  padding: .7rem 1.1rem;
  font-weight: 700;
  z-index: 100;
}
.skip:focus { left: 0; }

/* ============================================================
   Präsentations-Finish 2026
   Helle Industrieästhetik, echtes Bildmaterial, klare Prioritäten
   ============================================================ */

:root {
  --bg: #f3f1ec;
  --paper: #ffffff;
  --ink: #222428;
  --ink-2: #62666b;
  --line: #dedbd4;
  --rot: #ad2024;
  --rot-tief: #871519;
  --dunkel: #202226;
  --dunkel-2: #2a2d31;
  --hell-auf-dunkel: #f6f4ef;
  --grau-auf-dunkel: #b8bcc0;
  --radius: 7px;
  --schatten: 0 24px 60px rgba(38, 33, 28, .12);
  --wrap: 1320px;
  --uebergang: .26s cubic-bezier(.16, 1, .3, 1);
}

body {
  font-size: 1.05rem;
  line-height: 1.68;
  background: var(--bg);
}

.wrap { padding-inline: clamp(1.15rem, 3.4vw, 2.25rem); }

h1,
h2,
h3,
h3.display {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 6.2vw, 6rem); line-height: .93; }
h2 { font-size: clamp(2.25rem, 4vw, 3.7rem); line-height: 1; margin-bottom: .45em; }
h3 { font-size: 1.32rem; line-height: 1.18; letter-spacing: -.018em; }
p { text-wrap: pretty; }

section[id],
article[id] { scroll-margin-top: 6rem; }
h2[id] { scroll-margin-top: 8rem; }

.btn {
  min-height: 52px;
  padding: .85rem 1.5rem;
  border-radius: 4px;
  font-size: .88rem;
  letter-spacing: .055em;
}

.btn-rot { box-shadow: 0 10px 24px rgba(173, 32, 36, .18); }
.btn-rot:hover { box-shadow: 0 14px 30px rgba(135, 21, 25, .25); }

/* ---------- Direkter Kontakt oberhalb der Navigation ---------- */
.servicebar {
  position: relative;
  z-index: 60;
  color: #fff;
  background: var(--rot);
  font-size: .84rem;
  line-height: 1;
}

.servicebar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.servicebar a { color: #fff; text-decoration: none; }
.servicebar a:hover { color: #fff; text-decoration: underline; }
.servicebar-notdienst { display: inline-flex; align-items: center; gap: .55rem; }
.servicebar-notdienst { white-space: nowrap; }
.servicebar-notdienst strong { font-weight: 700; }
.servicebar-notdienst span:last-child { font-variant-numeric: tabular-nums; }
.statuspunkt {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .16);
}
.servicebar-region { margin-left: auto; color: #f7dfe0; }
.servicebar-buero { font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- Kompakte, hochwertige Navigation ---------- */
.header {
  background: rgba(32, 34, 38, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 28px rgba(24, 26, 29, .08);
}

.header-bar { height: 74px; gap: 1.45rem; }
.header-logo img { width: 208px; }
.nav { gap: 1.25rem; }
.nav a {
  font-size: .93rem;
  letter-spacing: .005em;
  border-bottom-width: 1px;
}
.nav a:hover { border-color: rgba(255, 255, 255, .55); }
.nav a[aria-current="page"] { border-color: var(--rot); }
.header-tel { font-size: .94rem; font-variant-numeric: tabular-nums; }
.header-tel:hover { color: #fff; }
.header-cta { min-height: 44px; padding: .62rem 1rem; }

/* ---------- Hero: das echte Fahrzeug führt ---------- */
.hero {
  background:
    radial-gradient(circle at 12% 16%, rgba(173, 32, 36, .055), transparent 28rem),
    var(--paper);
}

.hero-grid {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(2.8rem, 5vw, 4.7rem);
}

.hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow,
.section-label,
.seitenkopf-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--rot);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-label::before,
.seitenkopf-label::before {
  content: '';
  width: 30px;
  height: 2px;
  flex: none;
  background: currentColor;
}

.hero-eyebrow { margin-bottom: 1.35rem; }
.hero h1 { max-width: 8.8ch; margin-bottom: 1.3rem; }
.hero h1 .rot { color: var(--rot); }
.hero-sub { max-width: 55ch; margin-bottom: 1.3rem; font-size: 1.17rem; line-height: 1.58; }

.hero-fakten {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: .25rem 0 1.55rem;
  border-block: 1px solid var(--line);
}

.hero-fakten li { padding: .85rem .85rem .8rem 0; }
.hero-fakten li + li { padding-left: .85rem; border-left: 1px solid var(--line); }
.hero-fakten strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.hero-fakten span { display: block; margin-top: .2rem; color: var(--ink-2); font-size: .8rem; }
.hero-hinweis { margin-top: 1rem; font-size: .9rem; }

.hero-bild {
  min-height: 590px;
  overflow: hidden;
  border-radius: 9px;
  background: #dfe2e3;
  box-shadow: var(--schatten);
}

.hero-bild picture { display: block; width: 100%; height: 100%; }
.hero-bild .foto {
  clip-path: none;
  object-position: 55% 50%;
  transform: scale(1.01);
}
.hero-bild::after {
  inset: 0;
  width: auto;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: inherit;
  z-index: 1;
}
.hero-haken { display: none; }

/* ---------- Bereichsnavigation unter dem Hero ---------- */
.zahlenband {
  color: var(--ink);
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.zahlenband-grid { gap: 0; background: transparent; }
.zahl {
  position: relative;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem 3rem 1.2rem 1.25rem;
  color: var(--ink);
  background: var(--paper);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background var(--uebergang), color var(--uebergang);
}
.zahl:last-child { border-right: 0; }
.zahl:hover { color: var(--ink); background: #f5f2ed; }
.zahl::after {
  content: '↗';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  color: var(--rot);
  font-size: 1.1rem;
  transform: translateY(-50%);
  transition: transform var(--uebergang);
}
.zahl:hover::after { transform: translate(3px, calc(-50% - 3px)); }
.zahl b {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
}
.zahl span { margin-top: .2rem; color: var(--ink-2); font-size: .84rem; line-height: 1.35; }

/* ---------- Sektionen und Kennzeichnungen ---------- */
.sektion { padding-block: clamp(4.6rem, 8vw, 7rem); }
.hell { background: var(--bg); }
.weiss { background: var(--paper); }
.sektion-kopf { max-width: 790px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sektion-kopf .section-label { margin-bottom: 1rem; }
.sektion-kopf p { max-width: 62ch; font-size: 1.08rem; }
.section-label { margin-bottom: 1rem; }
.section-label-hell { color: #fff; }

/* ---------- Leistungen: zwei klare Hauptbereiche ---------- */
.leistungen-grid { gap: 1rem; }
.lkarte {
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(34, 36, 40, .08);
}
.lkarte:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(40, 35, 30, .1);
}
.lkarte .bild { aspect-ratio: 16 / 10; }
.lkarte-gross .bild { aspect-ratio: 16 / 9; }
.lkarte .inhalt { gap: .55rem; padding: 1.2rem 1.25rem 1.35rem; }
.lkarte-gross .inhalt { padding: 1.55rem 1.6rem 1.7rem; }
.lkarte h3 { font-size: 1.35rem; }
.lkarte-gross h3 { font-size: 1.65rem; }
.lkarte p { line-height: 1.55; }
.lkarte .hinweis { font-size: .78rem; letter-spacing: .09em; }

/* ---------- Fuhrpark-Feature ---------- */
.feature-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}
.feature-bild {
  min-height: 480px;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(39, 34, 29, .12);
}
.feature-bild picture { display: block; width: 100%; height: 100%; }
.feature-bild img { min-height: 100%; }
.feature-badge {
  left: 1rem;
  bottom: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-left: 3px solid var(--rot);
  border-radius: 3px;
  box-shadow: 0 10px 25px rgba(22, 24, 27, .16);
}
.spec-grid { gap: 2px; margin-block: 1.6rem 1.8rem; background: var(--line); }
.spec {
  min-width: 0;
  padding: 1.05rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: #f3f1ec;
}
.spec b {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.spec span { display: block; margin-top: .25rem; line-height: 1.35; }

/* ---------- Referenzen als visuelles Verkaufsargument ---------- */
.einsatz-liste {
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, .72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.einsatz {
  border: 0;
  border-radius: 8px;
  padding: .85rem;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(34, 36, 40, .08);
}
.einsatz:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(40, 35, 30, .1); }
.einsatz:not(.einsatz-gross) {
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  align-content: center;
}
.einsatz:not(.einsatz-gross) .bild { width: 132px; height: 120px; }
.einsatz:not(.einsatz-gross) .fakt {
  grid-column: 2;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
}
.einsatz:not(.einsatz-gross) .fakt small { display: inline; margin-left: .35rem; }
.einsatz-gross {
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  padding: 0 0 1.4rem;
  overflow: hidden;
}
.einsatz-gross .bild { width: 100%; height: 330px; border-radius: 0; }
.einsatz-gross > span:nth-child(2) { padding: 1.45rem 1.5rem .7rem; }
.einsatz-gross h3 { font-size: 1.7rem; }
.einsatz-gross .fakt {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0 1.5rem;
}
.einsatz-gross .fakt small { display: inline; margin-left: .4rem; }

.zitat {
  border: 0;
  border-left: 3px solid var(--rot);
  border-radius: 0;
  background: transparent;
  padding: 1.15rem 0 1.15rem 1.6rem;
}
.zitat blockquote { font-size: 1.22rem; }

/* ---------- Historie und Einsatzgebiet ---------- */
.historie-grid { gap: clamp(3rem, 6vw, 5.5rem); }
.historie-fotos .haupt { border-radius: 8px; box-shadow: var(--schatten); }
.historie-fotos .klein { border: 6px solid var(--paper); border-radius: 6px; }
.zeitleiste { gap: 1.05rem; }
.zeitleiste .jahr {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.gebiet { padding-block: clamp(4.8rem, 9vw, 7rem); }
.gebiet::before { background: linear-gradient(90deg, rgba(28, 30, 34, .9), rgba(28, 30, 34, .62) 58%, rgba(28, 30, 34, .2)); }
.stadt-chips li { border-radius: 3px; background: rgba(30, 32, 35, .5); }
.stadt-chips li.haupt { background: var(--rot); border-color: var(--rot); }
.gebiet .autobahnen b { color: #fff; }

/* ---------- Kontakt: Notdienst bewusst priorisiert ---------- */
.kontakt-grid { gap: 1rem; }
.kkarte {
  border: 0;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(34, 36, 40, .09);
}
.kkarte .gross {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.kkarte-rot { background: var(--rot); box-shadow: 0 20px 44px rgba(135, 21, 25, .18); }
.kkarte-rot .sub { color: #f7dfe0; }
.kontakt-grid-prioritaet { grid-template-columns: 1fr 1.18fr 1fr; }
.kontakt-grid-prioritaet .kkarte-rot.reveal.in { transform: translateY(-.7rem); }

/* ---------- Footer ---------- */
.footer { background: #25272b; }
.footer-grid { padding-block: 3.6rem 2.6rem; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .11em; }
.footer a:hover { color: #fff; }
.footer-klein { border-top-color: rgba(255, 255, 255, .1); }
.hazard { display: none; }

/* ---------- Helle, einheitliche Unterseitenköpfe ---------- */
.seitenkopf {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(173, 32, 36, .045) 1px, transparent 1px) 0 0 / 96px 100%,
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.6rem, 7vw, 6rem);
}
.seitenkopf::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: min(34vw, 500px);
  height: 100%;
  background: linear-gradient(135deg, transparent 48%, rgba(173, 32, 36, .08) 48.2%, rgba(173, 32, 36, .08) 48.8%, transparent 49%);
  pointer-events: none;
}
.seitenkopf .wrap { position: relative; z-index: 1; }
.seitenkopf-label { margin-bottom: 1.2rem; }
.seitenkopf h1 { max-width: 18ch; color: var(--ink); font-size: clamp(2.9rem, 5.6vw, 5.2rem); }
.seitenkopf .lead { max-width: 60ch; color: var(--ink-2); font-size: 1.12rem; }
.seitenkopf .haken { display: none; }

/* ---------- Detailseiten ---------- */
.detail-sektion { padding-block: 0; }
.detail-split {
  gap: clamp(2.8rem, 6vw, 5.5rem);
  padding-block: clamp(3.8rem, 7vw, 6.2rem);
}
.detail-split .bild { min-height: 430px; border-radius: 8px; box-shadow: 0 20px 50px rgba(39, 34, 29, .11); }
.detail-split .bild picture { display: block; width: 100%; height: 100%; }
.detail-split .bild img { min-height: 100%; }
.detail-split h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.detail-split ul { margin-top: 1.25rem; }

.fotoband { margin-block: 0; }
.fotoband::before { background: linear-gradient(90deg, rgba(28, 30, 34, .94), rgba(55, 22, 23, .68) 64%, rgba(28, 30, 34, .18)); }

/* ---------- Galerie mit wechselnden Bildformaten ---------- */
.galerie-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 165px;
  gap: .75rem;
}
.galerie-grid button {
  grid-column: span 3;
  border: 0;
  border-radius: 6px;
  aspect-ratio: auto;
  box-shadow: none;
}
.galerie-grid button:nth-child(1),
.galerie-grid button:nth-child(7),
.galerie-grid button:nth-child(12) { grid-column: span 6; grid-row: span 2; }
.galerie-grid button:nth-child(4),
.galerie-grid button:nth-child(9),
.galerie-grid button:nth-child(16) { grid-column: span 3; grid-row: span 2; }
.galerie-grid button:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(38, 33, 28, .16); }

.lightbox { background: rgba(20, 22, 25, .94); backdrop-filter: blur(6px); }
.lightbox img { border-radius: 4px; }
.lightbox-schliessen { border-radius: 4px; }
body.lightbox-offen,
body.menu-offen { overflow: hidden; }

/* ---------- FAQ ohne Kartenstapel ---------- */
.faq-liste { max-width: 960px; gap: 0; }
.faq-liste details {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 1.25rem .15rem;
}
.faq-liste details:last-child { border-bottom: 1px solid var(--line); }
.faq-liste summary { font-size: 1.12rem; }
.faq-liste summary::after { font-family: 'Barlow', system-ui, sans-serif; font-weight: 500; }

/* ---------- Formularzustände ---------- */
.formular {
  border: 0;
  border-top: 3px solid var(--rot);
  border-radius: 8px;
  background: #f2f0eb;
  box-shadow: 0 18px 45px rgba(40, 35, 30, .08);
}
.feld input,
.feld select,
.feld textarea { min-height: 50px; border-color: #c9c6bf; border-radius: 4px; }
.feld textarea { min-height: 150px; resize: vertical; }
.feld input.ungueltig,
.feld select.ungueltig,
.feld textarea.ungueltig { border-color: var(--rot); background: #fff8f8; }
.feld-fehler { color: var(--rot-tief); font-size: .84rem; font-weight: 600; }
.form-demo-meldung { border-color: #c9b788; background: #fbf7eb; }

/* ---------- Abschluss-CTA ---------- */
.abschluss-cta { padding-block: clamp(3.8rem, 7vw, 5.8rem); background: #e9e6df; border-top: 1px solid #d8d4cc; }
.abschluss-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2.5rem;
  padding-block: 1.1rem;
  border-left: 3px solid var(--rot);
}
.abschluss-cta h2 { max-width: 18ch; font-size: clamp(2rem, 3.4vw, 3.1rem); }
.abschluss-cta p { color: var(--ink-2); }
.abschluss-actions { display: grid; justify-items: start; gap: .9rem; }
.text-cta { color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.text-cta:hover { color: var(--rot); }

/* ---------- Rechtliche Seiten ---------- */
.legal-wrap { max-width: 860px; }
.legal-title { margin-top: 2.4rem; font-size: 1.55rem; letter-spacing: -.02em; }
.legal-list { display: grid; gap: .55rem; margin: 1rem 0 0 1.2rem; }
.zurueck-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.zurueck-link::before { content: '←'; margin-right: .5rem; color: var(--rot); }

/* ---------- Hilfreiche 404-Seite ---------- */
.not-found { background: var(--paper); }
.not-found-inner {
  min-height: calc(100dvh - 185px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.not-found h1 { max-width: 10ch; margin: 1.2rem 0 1.4rem; font-size: clamp(3rem, 6vw, 5.5rem); }
.not-found p { color: var(--ink-2); font-size: 1.12rem; }
.not-found picture { display: block; overflow: hidden; border-radius: 8px; box-shadow: var(--schatten); }
.not-found picture img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.not-found-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 1rem; }
  .header-logo img { width: 190px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .hero-bild { min-height: 520px; }
  .einsatz-liste { grid-template-columns: minmax(0, 1.15fr) minmax(285px, .85fr); }
}

@media (max-width: 920px) {
  .servicebar-region,
  .servicebar-buero { display: none; }
  .servicebar-inner { justify-content: center; }
  .header-bar { height: 68px; }
  .header-logo img { width: 188px; }
  .nav {
    top: 68px;
    padding: .65rem 1.2rem 1.25rem;
    box-shadow: 0 22px 45px rgba(10, 12, 14, .25);
  }
  .nav a { padding: .85rem .2rem; }
  .nav .header-tel { display: inline-flex; margin-top: .45rem; border: 0; color: #fff; }
  .nav .header-cta { display: inline-flex; margin-top: .65rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; padding-block: 3.1rem; }
  .hero h1 { max-width: 11ch; }
  .hero-bild { min-height: 500px; }
  .hero-bild .foto { position: absolute; height: 100%; clip-path: none; }
  .zahlenband-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zahl:nth-child(2) { border-right: 0; }
  .zahl:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-bild { min-height: 430px; }
  .einsatz-liste { grid-template-columns: 1fr; grid-template-rows: auto; }
  .einsatz-gross { grid-row: auto; }
  .kontakt-grid-prioritaet { grid-template-columns: 1fr; }
  .kontakt-grid-prioritaet .kkarte-rot.reveal.in { transform: none; }
  .detail-split { grid-template-columns: 1fr; }
  .detail-split.rechts .bild { order: 0; }
  .detail-split .bild { min-height: 380px; }
  .abschluss-cta-inner { grid-template-columns: 1fr; align-items: start; }
  .galerie-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 150px; }
  .galerie-grid button { grid-column: span 2; }
  .galerie-grid button:nth-child(1),
  .galerie-grid button:nth-child(7),
  .galerie-grid button:nth-child(12) { grid-column: span 4; }
  .galerie-grid button:nth-child(4),
  .galerie-grid button:nth-child(9),
  .galerie-grid button:nth-child(16) { grid-column: span 2; }
  .not-found-inner { grid-template-columns: 1fr; min-height: auto; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .wrap { padding-inline: 1.05rem; }
  h1 { font-size: clamp(2.75rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .servicebar { font-size: .78rem; }
  .servicebar-inner { min-height: 33px; padding-inline: .7rem; }
  .servicebar-notdienst { width: 100%; justify-content: center; gap: .45rem; }
  .header-logo img { width: 180px; }
  .nav-toggle { width: 43px; height: 40px; }
  .hero-grid { padding-block: 2.5rem 2.2rem; }
  .hero-eyebrow { max-width: 30ch; font-size: .72rem; }
  .hero-eyebrow::before { width: 22px; }
  .hero h1 { max-width: 9.4ch; margin-bottom: 1.15rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-fakten li { padding: .8rem .45rem .75rem 0; }
  .hero-fakten li + li { padding-left: .55rem; }
  .hero-fakten strong { font-size: .91rem; }
  .hero-fakten span { font-size: .72rem; }
  .hero-ctas { display: grid; grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-bild { min-height: 355px; border-radius: 6px; }
  .hero-bild .foto { object-position: 58% 50%; }
  .hero-hinweis { font-size: .86rem; }
  .hero-hinweis { display: none; }
  .zahlenband-grid { padding-inline: 0; }
  .zahl { min-height: 112px; padding: 1rem 2rem 1rem 1rem; }
  .zahl b { font-size: .96rem; overflow-wrap: anywhere; }
  .zahl span { font-size: .77rem; }
  .zahl::after { right: .7rem; }
  .sektion { padding-block: 4.2rem; }
  .section-label,
  .seitenkopf-label { font-size: .7rem; }
  .leistungen-grid { gap: .85rem; }
  .lkarte-gross .inhalt,
  .lkarte .inhalt { padding: 1.2rem; }
  .lkarte-gross h3 { font-size: 1.45rem; }
  .feature-bild { min-height: 300px; border-radius: 6px; }
  .feature-badge { left: .7rem; right: .7rem; bottom: .7rem; font-size: .72rem; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; }
  .spec { padding: .9rem; }
  .spec b { font-size: 1.08rem; }
  .einsatz,
  .einsatz:not(.einsatz-gross) { grid-template-columns: 1fr; padding: 0 0 1.15rem; overflow: hidden; }
  .einsatz:not(.einsatz-gross) .bild,
  .einsatz-gross .bild { width: 100%; height: 210px; border-radius: 0; }
  .einsatz:not(.einsatz-gross) > span:nth-child(2),
  .einsatz-gross > span:nth-child(2) { padding: 1.15rem 1.15rem .55rem; }
  .einsatz:not(.einsatz-gross) .fakt,
  .einsatz-gross .fakt { grid-column: 1; padding: 0 1.15rem; }
  .einsatz-gross h3 { font-size: 1.4rem; }
  .historie-fotos .klein { right: -.35rem; bottom: -1rem; }
  .zeitleiste li { grid-template-columns: 58px minmax(0, 1fr); gap: .7rem; }
  .kontakt-grid { gap: .8rem; }
  .kkarte { padding: 1.4rem; }
  .seitenkopf { padding-block: 3.1rem 3.5rem; background-size: 72px 100%; }
  .seitenkopf::after { width: 45vw; opacity: .55; }
  .seitenkopf h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .seitenkopf .lead { font-size: 1rem; }
  .detail-split { gap: 1.7rem; padding-block: 3.5rem; }
  .detail-split .bild { min-height: 260px; border-radius: 6px; }
  .detail-split h2 { font-size: 2.05rem; }
  .fotoband .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .galerie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 120px; gap: .55rem; }
  .galerie-grid button,
  .galerie-grid button:nth-child(1),
  .galerie-grid button:nth-child(4),
  .galerie-grid button:nth-child(7),
  .galerie-grid button:nth-child(9),
  .galerie-grid button:nth-child(12),
  .galerie-grid button:nth-child(16) { grid-column: span 1; grid-row: span 1; }
  .galerie-grid button:nth-child(1),
  .galerie-grid button:nth-child(7),
  .galerie-grid button:nth-child(12) { grid-column: span 2; grid-row: span 2; }
  .lightbox { padding: 1rem; }
  .lightbox-schliessen { top: .7rem; right: .7rem; }
  .formular { padding: 1.2rem; }
  .formular-grid { grid-template-columns: 1fr; }
  .feld-voll { grid-column: auto; }
  .formular .btn { width: 100%; justify-content: center; }
  .abschluss-cta-inner { padding-left: 1.1rem; gap: 1.5rem; }
  .abschluss-actions,
  .abschluss-actions .btn { width: 100%; }
  .abschluss-actions .btn { justify-content: center; }
  .footer-grid { gap: 2.2rem; }
  .not-found picture img { min-height: 280px; }
  .not-found-actions { align-items: stretch; }
  .not-found-actions .btn { width: 100%; justify-content: center; }
}
