/* ==========================================================================
   Höhl Gruppe – Design-System
   Farben aus Logo und Fuhrpark: Signalgelb, Höhl-Rot, Anthrazit.
   Schrift: Barlow Condensed (Headlines, verwandt mit der Fahrzeugbeschriftung)
            + Barlow (Fließtext).
   ========================================================================== */

:root {
  --gelb: #FCCC08;
  --gelb-dunkel: #E3B500;
  --rot: #E0242F;
  --rot-dunkel: #B91B24;
  --anthrazit: #22282A;
  --anthrazit-2: #2E3538;
  --anthrazit-3: #3B4347;
  --beton: #EEEFEC;
  --beton-2: #E2E4E0;
  --weiss: #FFFFFF;
  --text: #22282A;
  --text-2: #4E585C;
  --text-3: #6F797D;
  --text-invers: #F4F5F3;
  --text-invers-2: #C2C8CB;
  --linie: #D3D6D2;
  --linie-dunkel: #3F484C;

  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --radius: 4px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(64px, 9vw, 128px);
  --header-h: 76px;

  --shadow-hard: 0 2px 0 rgba(34, 40, 42, 0.12);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--rot-dunkel); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rot); }
:focus-visible { outline: 3px solid var(--gelb); outline-offset: 3px; }
::selection { background: var(--gelb); color: var(--anthrazit); }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--gelb); color: var(--anthrazit); padding: 10px 16px; font-weight: 600; border-radius: var(--radius);
}
.skip-link:focus { top: 8px; }

/* ------------------------------------------------------------------ Typo */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 7.2vw, 104px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; line-height: 1.1; }
h4 { font-size: 22px; font-weight: 600; line-height: 1.2; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--text-2); max-width: 62ch; }
.section--dark .lead, .hero .lead { color: var(--text-invers-2); }
.kicker { /* kleine Einleitungszeile über einer Überschrift – nur wenn sie Information trägt */
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--rot); margin-bottom: 10px;
}
.section--dark .kicker { color: var(--gelb); }
.measure { max-width: 68ch; }
.muted { color: var(--text-3); }
.nowrap { white-space: nowrap; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--linie); margin: 40px 0; }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1440px; }

.section { padding-top: var(--section); padding-bottom: var(--section); }
.section--tight { padding-top: calc(var(--section) * 0.55); padding-bottom: calc(var(--section) * 0.55); }
.hero + .section--tight { padding-top: 40px; padding-bottom: 0; }
.hero + .section--tight + .section { padding-top: calc(var(--section) * 0.7); }
.section--beton { background: var(--beton); }
.section--dark { background: var(--anthrazit); color: var(--text-invers); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--weiss); }
.section--dark a { color: var(--gelb); }
.section--dark a:hover { color: var(--weiss); }
.section--gelb { background: var(--gelb); color: var(--anthrazit); }
.section--gelb a { color: var(--anthrazit); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: clamp(32px, 5vw, 80px); }
.grid--split-rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(32px, 5vw, 80px); }
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--split, .grid--split-rev { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------- Warnstreifen */
/* Das Signaturmotiv: die rot-gelbe Warnmarkierung der Bergefahrzeuge. */
.stripe {
  height: 10px; width: 100%;
  background: repeating-linear-gradient(-55deg, var(--rot) 0 22px, var(--gelb) 22px 44px);
}
.stripe--thin { height: 6px; }
.stripe--yellow-dark { background: repeating-linear-gradient(-55deg, var(--anthrazit) 0 22px, var(--gelb) 22px 44px); }

/* ---------------------------------------------------------------- Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--anthrazit); color: var(--text-invers);
  border-bottom: 1px solid var(--linie-dunkel);
}
.header .container { max-width: 1400px; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.header__logo { display: flex; align-items: center; height: 100%; flex: none; }
.header__logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; height: 44px; padding: 0 13px;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-invers); text-decoration: none; border-radius: var(--radius);
  position: relative; white-space: nowrap;
}
.nav__link:hover { color: var(--gelb); }
.nav__link[aria-current="page"] { color: var(--gelb); }
.nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 6px; height: 2px; background: var(--gelb); }
.header__cta { display: inline-flex; align-items: center; gap: 10px; margin-left: 12px; white-space: nowrap; }
.header__cta .btn { height: 46px; padding: 0 18px; }
.nav-toggle {
  display: none; appearance: none; background: none; border: 0; color: var(--weiss);
  width: 48px; height: 48px; align-items: center; justify-content: center; cursor: pointer; border-radius: var(--radius);
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }
.menu-open .nav-toggle .icon-close { display: block; }
.menu-open .nav-toggle .icon-menu { display: none; }

@media (max-width: 1400px) {
  .nav__link { font-size: 18px; padding: 0 10px; }
  .header__cta .btn .btn__label { display: none; }
}
@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--anthrazit);
    display: none; flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 40px; overflow-y: auto;
  }
  .menu-open .nav { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { height: 60px; font-size: 30px; padding: 0; border-bottom: 1px solid var(--linie-dunkel); border-radius: 0; }
  .nav__link[aria-current="page"]::after { display: none; }
  .header__cta { margin: 24px 0 0; }
  .header__cta .btn { width: 100%; height: 56px; font-size: 22px; }
  .header__cta .btn .btn__label { display: inline; }
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.015em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.12s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--rot); color: var(--weiss); border-color: var(--rot); }
.btn--primary:hover { background: var(--rot-dunkel); border-color: var(--rot-dunkel); color: var(--weiss); }
.btn--yellow { background: var(--gelb); color: var(--anthrazit); border-color: var(--gelb); }
.btn--yellow:hover { background: var(--gelb-dunkel); border-color: var(--gelb-dunkel); color: var(--anthrazit); }
.btn--outline { background: transparent; color: var(--anthrazit); border-color: var(--anthrazit); }
.btn--outline:hover { background: var(--anthrazit); color: var(--weiss); }
.section--dark .btn--outline, .hero .btn--outline { color: var(--weiss); border-color: rgba(255,255,255,0.7); }
.section--dark .btn--outline:hover, .hero .btn--outline:hover { background: var(--weiss); color: var(--anthrazit); border-color: var(--weiss); }
.btn--lg { height: 60px; padding: 0 30px; font-size: 23px; }
.btn--sm { height: 42px; padding: 0 16px; font-size: 17px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
/* Buttons dürfen auf schmalen Bildschirmen umbrechen */
@media (max-width: 520px) {
  .btn, .hero__actions .btn, .callout .btn { white-space: normal; height: auto; min-height: 52px; padding-top: 12px; padding-bottom: 12px; text-align: center; line-height: 1.1; max-width: 100%; }
  .callout .btn { width: 100%; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; }
}

.link-more { font-family: var(--font-display); font-size: 19px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.link-more svg { width: 18px; height: 18px; transition: transform 0.18s var(--ease); }
.link-more:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative; background: var(--anthrazit); color: var(--text-invers);
  min-height: min(88vh, 900px); display: flex; align-items: flex-end; overflow: hidden;
}
.hero--short { min-height: min(62vh, 640px); }
.hero--short h1 { font-size: clamp(40px, 5.4vw, 78px); max-width: 18ch; }
.hero--short .lead { font-size: clamp(17px, 1.4vw, 21px); }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(34,40,42,0.55) 0%, rgba(34,40,42,0.15) 35%, rgba(34,40,42,0.35) 60%, rgba(34,40,42,0.92) 100%),
    linear-gradient(90deg, rgba(34,40,42,0.55) 0%, rgba(34,40,42,0) 60%);
}
.hero__content { position: relative; padding-top: clamp(120px, 16vw, 200px); padding-bottom: clamp(48px, 6vw, 88px); width: 100%; }
.hero h1 { color: var(--weiss); margin-bottom: 22px; max-width: 14ch; }
.hero .lead { max-width: 56ch; margin-bottom: 30px; font-size: clamp(18px, 1.6vw, 23px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 8px 28px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text-invers-2); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 18px; height: 18px; color: var(--gelb); }
.hero .stripe { position: absolute; left: 0; right: 0; bottom: 0; }

/* Enthüllung beim Laden – die einzige nicht-nutzerausgelöste Animation der Seite */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lead, .hero__actions, .hero__meta {
    opacity: 0; transform: translateY(22px);
    animation: hero-in 0.8s var(--ease) forwards;
  }
  .hero .lead { animation-delay: 0.12s; }
  .hero__actions { animation-delay: 0.22s; }
  .hero__meta { animation-delay: 0.32s; }
  .hero .stripe { transform-origin: left; transform: scaleX(0); animation: stripe-in 1.1s var(--ease) 0.25s forwards; }
  @keyframes hero-in { to { opacity: 1; transform: none; } }
  @keyframes stripe-in { to { transform: scaleX(1); } }
}

/* Notruf-Kachel im Hero */
.hero__phone {
  display: inline-flex; flex-direction: column; gap: 2px; text-decoration: none;
  background: var(--rot); color: var(--weiss); padding: 14px 22px 16px; border-radius: var(--radius);
}
.hero__phone small { font-family: var(--font-display); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
.hero__phone strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3vw, 38px); line-height: 1; letter-spacing: 0.01em; }
.hero__phone:hover { background: var(--rot-dunkel); color: var(--weiss); }

/* ------------------------------------------------------- Kurzantwort */
/* Die Antwort in drei Sätzen – für eilige Leser und für Suchmaschinen/KI-Assistenten. */
.summary { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px 24px; align-items: start; padding: 22px 26px; border: 1px solid var(--linie); border-left: 6px solid var(--gelb); border-radius: var(--radius); background: var(--weiss); }
.summary__label { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rot); padding-top: 3px; white-space: nowrap; }
.summary p { margin: 0; font-size: 17px; line-height: 1.55; }
.summary p + p { margin-top: 8px; }
.summary dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px 24px; margin: 14px 0 0; }
.summary dt { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-3); font-weight: 600; }
.summary dd { margin: 2px 0 0; font-weight: 600; }
.summary dd a { text-decoration: none; }
@media (max-width: 640px) { .summary { grid-template-columns: minmax(0, 1fr); gap: 8px; } }

/* ---------------------------------------------------------------- Tiles */
/* Leistungskacheln: Foto füllt die Kachel, Titel unten, keine Kartenrahmen */
.tile {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; background: var(--anthrazit); color: var(--weiss); text-decoration: none;
}
.tile--wide { aspect-ratio: 16 / 9; }
.tile--tall { aspect-ratio: 3 / 4; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,40,42,0) 40%, rgba(34,40,42,0.9) 100%); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px 24px; z-index: 1; }
.tile__title { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); font-weight: 700; text-transform: uppercase; line-height: 1; margin: 0 0 6px; color: var(--weiss); }
.tile__text { margin: 0; color: var(--text-invers-2); font-size: 16px; line-height: 1.4; max-width: 34ch; }
.tile__badge { position: absolute; top: 16px; left: 16px; z-index: 1; background: var(--gelb); color: var(--anthrazit); font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 9px; border-radius: 3px; }

/* ---------------------------------------------------------------- Bilder */
figure { margin: 0; }
.img-frame { border-radius: var(--radius); overflow: hidden; background: var(--beton-2); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame--4x3 { aspect-ratio: 4 / 3; }
.img-frame--3x2 { aspect-ratio: 3 / 2; }
.img-frame--16x9 { aspect-ratio: 16 / 9; }
.img-frame--1x1 { aspect-ratio: 1 / 1; }
figcaption { font-size: 14px; color: var(--text-3); margin-top: 8px; }

/* -------------------------------------------------------------- Fakten */
/* passt sich der verfügbaren Breite an: 4 Spalten im Vollformat, 2 in halben Spalten, 1 auf schmalen Handys */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 28px 32px; padding: 28px 0; border-top: 1px solid var(--linie-dunkel); border-bottom: 1px solid var(--linie-dunkel); }
.facts__item { min-width: 0; padding-left: 16px; border-left: 3px solid var(--gelb); }
.facts__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 3.6vw, 56px); line-height: 1; color: var(--gelb); overflow-wrap: anywhere; }
.facts__label { margin-top: 8px; font-size: 16px; color: var(--text-invers-2); line-height: 1.35; }
.section--beton .facts, .section--white .facts, .section:not(.section--dark) .facts { border-color: var(--linie); }
.section:not(.section--dark) .facts__item { border-left-color: var(--rot); }
.section:not(.section--dark) .facts__value { color: var(--rot); }
.section:not(.section--dark) .facts__label { color: var(--text-2); }
@media (max-width: 420px) { .facts { grid-template-columns: minmax(0, 1fr); gap: 20px; } }

/* --------------------------------------------------------------- Schritte */
/* Nur für echte Abfolgen (Einsatzablauf). */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.steps li { counter-increment: step; position: relative; padding-top: 18px; border-top: 3px solid var(--gelb); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--rot); display: block; margin-bottom: 12px; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--text-2); }
.section--dark .steps p { color: var(--text-invers-2); }
@media (max-width: 800px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------- Listen */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gelb) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322282A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.5 4.5L19 7.5'/></svg>") center / 13px no-repeat;
}
.checklist--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
.checklist--3col { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 28px; }
@media (max-width: 800px) { .checklist--3col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .checklist--2col, .checklist--3col { grid-template-columns: minmax(0, 1fr); } }

.list-plain { list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------- Karten */
/* zurückhaltend: eine Fläche, ein Rahmen, keine Schatten */
.card { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: clamp(22px, 2.4vw, 32px); }
.section--beton .card { border-color: transparent; }
.section--dark .card { background: var(--anthrazit-2); border-color: var(--linie-dunkel); }
.card h3 { margin-bottom: 10px; }
.card > :last-child { margin-bottom: 0; }
.card--accent { border-top: 4px solid var(--gelb); }

/* ---------------------------------------------------------------- Callout */
.callout {
  display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: space-between;
  background: var(--anthrazit); color: var(--text-invers); border-radius: var(--radius); padding: clamp(28px, 3.5vw, 48px);
  position: relative; overflow: hidden;
}
.callout > :first-child { flex: 1 1 320px; min-width: 0; }
.callout > .btn, .callout > .callout__phone { flex: 0 0 auto; }
.callout::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; background: repeating-linear-gradient(-55deg, var(--rot) 0 22px, var(--gelb) 22px 44px); }
.callout h2, .callout h3 { color: var(--weiss); }
.callout p { color: var(--text-invers-2); max-width: 60ch; }
.callout--rot { background: var(--rot); }
.callout--rot::before { background: repeating-linear-gradient(-55deg, var(--anthrazit) 0 22px, var(--gelb) 22px 44px); }
.callout--rot p { color: rgba(255,255,255,0.88); }
.callout--gelb { background: var(--gelb); color: var(--anthrazit); }
.callout--gelb h2, .callout--gelb h3 { color: var(--anthrazit); }
.callout--gelb p { color: var(--anthrazit-3); }
.callout--gelb::before { background: repeating-linear-gradient(-55deg, var(--anthrazit) 0 22px, var(--rot) 22px 44px); }
.callout__phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 56px); line-height: 1; text-decoration: none; color: inherit; white-space: nowrap; display: inline-flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.callout__phone small { font-size: 17px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.85; }
.callout__phone:hover { color: inherit; opacity: 0.9; }

/* ------------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--linie); }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--beton);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322282A' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: 16px; background-position: center; background-repeat: no-repeat; transition: transform 0.25s var(--ease), background-color 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--gelb); }
.faq summary:hover { color: var(--rot-dunkel); }
.faq .faq__body { padding: 0 0 24px; color: var(--text-2); max-width: 72ch; }
.faq .faq__body ul { padding-left: 20px; }
.section--dark .faq { border-color: var(--linie-dunkel); }
.section--dark .faq details { border-color: var(--linie-dunkel); }
.section--dark .faq .faq__body { color: var(--text-invers-2); }
.section--dark .faq summary::after { background-color: var(--anthrazit-3); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>"); }

/* --------------------------------------------------------------- Standorte */
.location { display: grid; gap: 6px; padding: 24px 0; border-top: 1px solid var(--linie); }
.location:last-child { border-bottom: 1px solid var(--linie); }
.location h3 { margin: 0; font-size: 26px; }
.location address { font-style: normal; color: var(--text-2); }
.location__phone { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-decoration: none; color: var(--anthrazit); }
.location__phone:hover { color: var(--rot); }
.location__tag { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rot); }
.section--dark .location { border-color: var(--linie-dunkel); }
.section--dark .location address { color: var(--text-invers-2); }
.section--dark .location__phone { color: var(--weiss); }
.section--dark .location__tag { color: var(--gelb); }

/* ---------------------------------------------------------------- Timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--linie); }
.timeline li { position: relative; padding: 0 0 40px 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--gelb); border: 3px solid var(--anthrazit); box-sizing: border-box; }
.timeline__year { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4vw, 56px); line-height: 1; color: var(--rot); display: block; margin-bottom: 8px; }
.timeline h3 { margin-bottom: 8px; }
.timeline p { color: var(--text-2); max-width: 56ch; }
.section--dark .timeline::before { background: var(--linie-dunkel); }
.section--dark .timeline li::before { border-color: var(--anthrazit); }
.section--dark .timeline__year { color: var(--gelb); }
.section--dark .timeline p { color: var(--text-invers-2); }

/* ---------------------------------------------------------- Breadcrumbs */
.breadcrumbs { font-size: 15px; color: var(--text-3); padding: 14px 0; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 10px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 10px; color: var(--linie); }
.breadcrumbs a { color: var(--text-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--rot); text-decoration: underline; }
.breadcrumbs--dark { color: rgba(255,255,255,0.82); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.breadcrumbs--dark a { color: rgba(255,255,255,0.82); }
.breadcrumbs--dark a:hover { color: var(--gelb); }
.breadcrumbs--dark li + li::before { color: rgba(255,255,255,0.5); }

/* -------------------------------------------------------------- Formulare */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: minmax(0, 1fr); } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 15px; }
.field .hint, .form .hint { font-size: 14px; color: var(--text-3); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--text); background: var(--weiss);
  border: 1px solid #B9BFBB; border-radius: var(--radius); padding: 12px 14px; min-height: 50px;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--gelb); outline-offset: 0; border-color: var(--anthrazit); }
.field--check { grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 12px; }
.field--check input { width: 22px; height: 22px; min-height: 0; margin-top: 3px; accent-color: var(--rot); }
.field--check label { font-weight: 400; }
.form__note { font-size: 14px; color: var(--text-3); }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { display: none; padding: 14px 16px; border-radius: var(--radius); font-weight: 500; }
.form__status.is-ok { display: block; background: #E5F5E8; color: #1F5F2E; }
.form__status.is-error { display: block; background: #FBE5E6; color: #8B1218; }

/* ------------------------------------------------------------------ Prose */
/* Ratgeber-Artikel und Rechtstexte */
.prose { max-width: 72ch; font-size: 18px; line-height: 1.65; }
.prose h2 { font-size: clamp(30px, 3.4vw, 42px); margin-top: 1.6em; text-transform: none; }
.prose h3 { font-size: clamp(23px, 2.4vw, 28px); margin-top: 1.4em; }
.prose h4 { margin-top: 1.3em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.15em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--rot); font-weight: 700; }
.prose blockquote { margin: 1.5em 0; padding: 16px 22px; border-left: 4px solid var(--gelb); background: var(--beton); font-size: 1.05em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; margin: 1.2em 0; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--linie); vertical-align: top; }
.prose th { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.prose figure { margin: 1.6em 0; }
.prose .tip { background: var(--beton); border-radius: var(--radius); padding: 20px 24px; margin: 1.6em 0; border-left: 4px solid var(--rot); }
.prose .tip strong:first-child { color: var(--rot-dunkel); }
.prose a { text-decoration: underline; }
.prose small, .prose .small { font-size: 15px; color: var(--text-3); }

.toc { background: var(--beton); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 40px; }
.toc h2 { font-size: 20px; margin: 0 0 10px; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 1.3em; columns: 2; column-gap: 32px; }
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { text-decoration: none; color: var(--text); }
.toc a:hover { color: var(--rot); text-decoration: underline; }
@media (max-width: 640px) { .toc ol { columns: 1; } }

.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 15px; color: var(--text-3); margin-bottom: 28px; }

/* Artikel-Kacheln in der Ratgeber-Übersicht */
.post { display: grid; gap: 14px; text-decoration: none; color: inherit; }
.post:hover .post__title { color: var(--rot-dunkel); }
.post .img-frame { aspect-ratio: 3 / 2; }
.post__title { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; margin: 0; transition: color 0.15s; }
.post__excerpt { color: var(--text-2); margin: 0; font-size: 16px; }
.post--featured { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(24px, 4vw, 56px); }
.post--featured .post__title { font-size: clamp(30px, 3.4vw, 44px); }
@media (max-width: 800px) { .post--featured { grid-template-columns: minmax(0, 1fr); } }

/* -------------------------------------------------------------- Job-Liste */
.job { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 26px 0; border-top: 1px solid var(--linie); text-decoration: none; color: inherit; }
.job:last-child { border-bottom: 1px solid var(--linie); }
.job__title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.05; margin: 0 0 6px; }
.job__meta { color: var(--text-2); font-size: 16px; display: flex; flex-wrap: wrap; gap: 6px 18px; }
@media (max-width: 600px) { .job { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------- Logo-Reihe */
.partners { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--text-2); }
.partners span { display: inline-flex; align-items: center; gap: 10px; }
.partners svg { width: 22px; height: 22px; color: var(--rot); }

/* -------------------------------------------------------------- Footer */
.footer { background: var(--anthrazit); color: var(--text-invers-2); }
.footer a { color: var(--text-invers); text-decoration: none; }
.footer a:hover { color: var(--gelb); }
.footer__top { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1.5fr; gap: 40px; padding: 64px 0 48px; }
.footer__sites { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 24px; }
@media (max-width: 1000px) { .footer__sites { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px) { .footer__sites { grid-template-columns: minmax(0, 1fr); } }
.footer__brand img { height: 56px; width: auto; margin-bottom: 20px; }
.footer__brand p { max-width: 38ch; font-size: 16px; }
.footer h4 { color: var(--weiss); font-size: 20px; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 16px; }
.footer address { font-style: normal; font-size: 16px; line-height: 1.5; }
.footer address strong { color: var(--weiss); font-weight: 600; }
.footer__phone { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.footer__bottom { border-top: 1px solid var(--linie-dunkel); padding: 20px 0 calc(20px + env(safe-area-inset-bottom)); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: 14px; }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 6px 20px; }
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

/* Mobile Notrufleiste */
.callbar { display: none; }
@media (max-width: 1200px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--anthrazit);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .callbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 62px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; }
  .callbar a small { font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; opacity: 0.85; }
  .callbar__notruf { background: var(--rot); color: var(--weiss); }
  .callbar__werkstatt { background: var(--gelb); color: var(--anthrazit); }
  body { padding-bottom: 62px; }
}

/* ------------------------------------------------------- Kleine Helfer */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.icon { width: 24px; height: 24px; flex: none; }
.icon-row { display: flex; align-items: flex-start; gap: 14px; }
.icon-row .icon { color: var(--rot); margin-top: 3px; }
.section--dark .icon-row .icon { color: var(--gelb); }

/* Leistungsübersicht in Zeilen (statt Karten) */
.service-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--linie); }
.service-list li { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) auto; gap: 16px 32px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--linie); }
.service-list h3 { margin: 0; font-size: 26px; }
.service-list p { margin: 0; color: var(--text-2); }
.section--dark .service-list, .section--dark .service-list li { border-color: var(--linie-dunkel); }
.section--dark .service-list p { color: var(--text-invers-2); }
@media (max-width: 800px) { .service-list li { grid-template-columns: minmax(0, 1fr); gap: 8px; } }

/* Rechtstexte */
.legal h2 { font-size: clamp(24px, 2.6vw, 30px); text-transform: none; margin-top: 2em; }
.legal h3 { font-size: 21px; margin-top: 1.5em; }
.legal p, .legal li { font-size: 16px; color: var(--text-2); }
.legal address { font-style: normal; }

@media print {
  .header, .footer, .callbar, .hero__media video, .stripe { display: none !important; }
  .hero { min-height: 0; color: #000; background: #fff; }
  .hero h1 { color: #000; }
  body { padding-bottom: 0; }
}
