/* ============================================================
   GK Fullservice GmbH - Design-System
   Markenfarben aus Logo/Fahrzeug: Rot #e41824 (heiß) + Blau #006cb4 (kalt).
   Statisch, keine externen Ressourcen, Schriften lokal gehostet.
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --rot: #d81f27;
  --rot-dunkel: #ad141b;
  --rot-hell: #ff7a70;
  --blau: #005ea8;
  --blau-tief: #003c6e;
  --blau-hell: #4aa3e0;
  --tinte: #0e1b28;
  --tinte-2: #2b3844;
  --grau: #5a6873;
  --grau-hell: #8b969f;
  --linie: #dde3e8;
  --flaeche: #f3f6f8;
  --flaeche-2: #e8eef2;
  --weiss: #ffffff;

  --font-display: "Archivo", "Avenir Next", "Segoe UI", sans-serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --header-h: 84px;
  --shadow: 0 2px 10px rgba(14, 27, 40, .08);
  --shadow-lg: 0 16px 44px rgba(14, 27, 40, .16);
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--tinte-2);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--tinte);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.1vw, 3.85rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.42rem); font-weight: 750; }
h4 { font-size: 1.03rem; font-family: var(--font-text); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--blau); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blau-tief); }
strong { color: var(--tinte); font-weight: 650; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section--flaeche { background: var(--flaeche); }
.section--dunkel { background: var(--tinte); color: #d3dae0; }
.section--dunkel h2, .section--dunkel h3, .section--dunkel h4 { color: #fff; }
.section--dunkel strong { color: #fff; }
.section--blau { background: var(--blau-tief); color: #d8e6f2; }
.section--blau h2, .section--blau h3, .section--blau h4 { color: #fff; }
.section--blau strong { color: #fff; }

.section-kopf { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-kopf p { color: var(--grau); font-size: 1.05rem; }
.section--dunkel .section-kopf p { color: #b9c3cb; }
.section--blau .section-kopf p { color: #c3d7e8; }

.eyebrow {
  display: block;
  font-family: var(--font-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: .9rem;
}
.section--dunkel .eyebrow, .section--blau .eyebrow, .hero .eyebrow { color: var(--rot-hell); }

/* Marken-Claim „von heiß bis kalt" */
.claim-heiss { color: var(--rot); }
.claim-kalt { color: var(--blau-hell); }
.section--flaeche .claim-kalt, .karte .claim-kalt { color: var(--blau); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  min-height: 48px;
  font-family: var(--font-text);
  font-size: 1rem; font-weight: 650;
  white-space: nowrap;
  border: 2px solid var(--rot);
  border-radius: var(--radius);
  background: var(--rot); color: #fff;
  text-decoration: none; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { background: var(--rot-dunkel); border-color: var(--rot-dunkel); color: #fff; }
.btn--ghost { background: transparent; color: var(--tinte); border-color: var(--linie); }
.btn--ghost:hover { background: var(--flaeche); border-color: var(--grau-hell); color: var(--tinte); }
.btn--blau { background: var(--blau); border-color: var(--blau); }
.btn--blau:hover { background: var(--blau-tief); border-color: var(--blau-tief); }
.section--dunkel .btn--ghost, .section--blau .btn--ghost { color: #fff; border-color: rgba(255,255,255,.38); }
.section--dunkel .btn--ghost:hover, .section--blau .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--gross { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-reihe { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--linie);
  transition: box-shadow var(--transition);
}
/* Kein backdrop-filter/filter/transform auf dem Header: das würde einen
   Containing Block erzeugen und die position:fixed-Mobilnavigation darin
   einsperren (Nav war dadurch nur so hoch wie der Header). */
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  min-height: var(--header-h);
}
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 46px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: .6rem .8rem;
  font-size: .95rem; font-weight: 550; color: var(--tinte-2);
  text-decoration: none; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blau); background: var(--flaeche); }
.main-nav .nav-karriere a {
  color: var(--rot); font-weight: 700;
  border: 1.5px solid var(--rot);
}
.main-nav .nav-karriere a:hover { background: var(--rot); color: #fff; }

.header-kontakt { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-tel {
  display: flex; flex-direction: column; line-height: 1.2;
  font-size: 1rem; font-weight: 700; color: var(--tinte); text-decoration: none;
  font-family: var(--font-display);
}
.header-tel span {
  font-size: .68rem; font-weight: 700; color: var(--rot);
  letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-text);
}
.header-tel:hover { color: var(--rot); }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid var(--linie); border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--tinte); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--tinte);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Die Header-Nummer verschwindet erst dort, wo das Menue mobil wird - sonst
   gaebe es zwischen 941 und 1080 px gar keine sichtbare Telefonnummer. */
@media (max-width: 940px) { .header-kontakt .header-tel { display: none; } }
@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; left: 0;
    background: #fff; padding: 1.5rem 1.2rem 3rem;
    transform: translateX(100%); transition: transform .25s ease, visibility .25s;
    overflow-y: auto; visibility: hidden;
  }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .main-nav a { padding: .95rem .8rem; font-size: 1.13rem; border-bottom: 1px solid var(--linie); border-radius: 0; }
  .main-nav .nav-karriere a { border: 2px solid var(--rot); border-radius: var(--radius); margin-top: 1rem; text-align: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--tinte); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,30,.93) 0%, rgba(10,20,30,.8) 40%, rgba(10,20,30,.42) 70%, rgba(10,20,30,.22) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(3.4rem, 8.5vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
  max-width: 46rem;
}
.hero h1 { color: #fff; }
.hero h1 .akzent { color: var(--rot-hell); display: block; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.24rem); color: #dbe2e8; max-width: 40rem; margin-bottom: 2rem; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.14); }
.hero-fakten {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.6rem;
  margin-top: clamp(2rem, 4vw, 2.8rem); padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-fakten div { color: #fff; }
.hero-fakten b { display: block; font-family: var(--font-display); font-size: 1.55rem; line-height: 1; font-weight: 800; }
.hero-fakten span { font-size: .85rem; color: #bfc9d1; }

/* Split-Hero: Text links auf dunklem Grund, Foto rechts (Gesichter bleiben frei) */
.hero--split { background: var(--tinte); }
.hero--split .hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: stretch; gap: 0;
}
.hero--split .hero-text {
  padding: clamp(2.8rem, 6vw, 5rem) clamp(2rem, 4vw, 3.6rem) clamp(2.8rem, 6vw, 5rem) 0;
  align-self: center;
}
.hero--split .hero-bild { position: relative; }
.hero--split .hero-bild img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero--split .hero-bild::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,27,40,.85) 0%, rgba(14,27,40,.28) 22%, rgba(14,27,40,0) 48%);
}
.hero--split h1 { color: #fff; }
.hero--split h1 .akzent { color: var(--rot-hell); display: block; }
@media (max-width: 900px) {
  .hero--split .hero-grid { grid-template-columns: 1fr; }
  .hero--split .hero-bild { position: relative; aspect-ratio: 16 / 10; order: -1; margin-inline: -1.2rem; }
  .hero--split .hero-bild::after {
    background: linear-gradient(180deg, rgba(14,27,40,0) 55%, rgba(14,27,40,.92) 100%);
  }
  .hero--split .hero-text { padding: clamp(2rem, 6vw, 3rem) 0; }
}

/* Notfall-Streifen unter dem Hero */
.notfall-band { background: var(--rot); color: #fff; }
.notfall-band .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .6rem 1.6rem; padding-block: .95rem;
}
.notfall-band p { margin: 0; font-weight: 600; font-size: 1rem; }
.notfall-band a {
  color: #fff; font-family: var(--font-display); font-weight: 800;
  font-size: 1.28rem; text-decoration: none; letter-spacing: .01em;
}
.notfall-band a:hover { color: #fff; text-decoration: underline; }

/* ---------- Karten / Grids ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.karte {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
a.karte { text-decoration: none; color: inherit; cursor: pointer; }
a.karte:hover { border-color: var(--blau); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.karte-bild { aspect-ratio: 3 / 2; overflow: hidden; background: var(--flaeche-2); }
.karte-bild img { width: 100%; height: 100%; object-fit: cover; }
.karte-inhalt { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.karte-inhalt h3 { margin-bottom: .5rem; }
.karte-inhalt p { color: var(--grau); font-size: .97rem; }
.karte-link { margin-top: auto; padding-top: 1rem; font-weight: 700; font-size: .95rem; color: var(--rot); }
.karte-link::after { content: " ›"; }

/* ---------- Listen ---------- */
.liste { list-style: none; margin: 0; padding: 0; }
.liste li {
  padding: .72rem 0 .72rem 1.9rem; position: relative;
  border-bottom: 1px solid var(--linie); font-size: 1rem;
}
.liste li:last-child { border-bottom: none; }
.liste li::before {
  content: ""; position: absolute; left: 0; top: 1.22rem;
  width: 9px; height: 9px; border-radius: 2px; background: var(--rot);
}
.liste--blau li::before { background: var(--blau); }
.section--dunkel .liste li, .section--blau .liste li { border-color: rgba(255,255,255,.15); }

/* ---------- Split (Text + Bild) ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.split--breit { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 860px) { .split--breit { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); width: 100%; }

/* ---------- Prozess-Schritte ---------- */
.schritte { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem); counter-reset: schritt; }
.schritt { counter-increment: schritt; }
.schritt h3 { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .45rem; }
.schritt h3::before {
  content: counter(schritt);
  font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: #fff;
  background: var(--rot); border-radius: 50%;
  width: 26px; height: 26px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
}
.schritt p { color: var(--grau); font-size: .97rem; }
.section--dunkel .schritt p, .section--blau .schritt p { color: #b9c3cb; }

/* ---------- Fakten-Zeile ---------- */
.fakten { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.6rem 2rem; }
.fakt { border-top: 3px solid var(--rot); padding-top: 1rem; }
.fakt b { display: block; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.15; color: var(--tinte); margin-bottom: .3rem; font-weight: 800; }
.fakt span { font-size: .93rem; color: var(--grau); }
.section--dunkel .fakt b, .section--blau .fakt b { color: #fff; }
.section--dunkel .fakt span, .section--blau .fakt span { color: #b9c3cb; }

/* ---------- Zitate ---------- */
.zitat {
  border-left: 3px solid var(--rot); padding: .3rem 0 .3rem 1.4rem;
  font-size: 1.1rem; color: var(--tinte); font-style: normal; margin: 0;
}
.zitat p { font-size: inherit; }
.zitat footer { margin-top: .7rem; font-size: .9rem; color: var(--grau); }
.section--dunkel .zitat, .section--blau .zitat { color: #eef2f5; }
.section--dunkel .zitat footer, .section--blau .zitat footer { color: #b3bdc5; }

.zitat-karte {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
}
.zitat-karte .zitat { border-left-color: var(--blau); }

/* ---------- Video ---------- */
.video-karte { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg); overflow: hidden; }
.video-karte video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; display: block; }
.video-karte-text { padding: 1.1rem 1.3rem 1.4rem; }
.video-karte-text h3 { margin: 0 0 .25rem; font-size: 1.08rem; font-family: var(--font-text); font-weight: 700; letter-spacing: .01em; }
.video-karte-text p { font-size: .9rem; color: var(--grau); margin: 0; }
.section--dunkel .video-karte, .section--blau .video-karte { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.section--dunkel .video-karte-text p, .section--blau .video-karte-text p { color: #b3bdc5; }

.video-gross { border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.video-gross video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-text); font-size: 1.05rem; font-weight: 650; color: var(--tinte);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; font-size: 1.5rem; line-height: 1; color: var(--rot); font-weight: 400;
  transition: transform var(--transition);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; color: var(--grau); max-width: 62ch; }
.section--dunkel .faq details { border-color: rgba(255,255,255,.15); }
.section--dunkel .faq summary { color: #fff; }
.section--dunkel .faq details p { color: #b9c3cb; }

/* ---------- Stellen-Blöcke ---------- */
.stelle {
  border: 1px solid var(--linie); border-radius: var(--radius-lg);
  background: #fff; padding: clamp(1.5rem, 3vw, 2.2rem);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.stelle + .stelle { margin-top: 1.4rem; }
.stelle-kopf { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: baseline; justify-content: space-between; margin-bottom: .3rem; }
.stelle-kopf h3 { margin: 0; }
.pill {
  display: inline-block; padding: .3rem .75rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em;
  background: var(--flaeche); color: var(--tinte-2); border-radius: 100px;
}
.pill--rot { background: rgba(216, 31, 39, .1); color: var(--rot-dunkel); }
.pill--blau { background: rgba(0, 94, 168, .1); color: var(--blau-tief); }
.pill-reihe { display: flex; flex-wrap: wrap; gap: .5rem; }
.stelle-hook { font-size: 1.06rem; color: var(--tinte); margin: .8rem 0 1.3rem; }
.stelle-spalten { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem 2.4rem; }
.stelle-spalten h4 { margin-bottom: .5rem; color: var(--tinte); }
.stelle-spalten ul { margin: 0; padding-left: 1.1rem; font-size: .97rem; color: var(--grau); }
.stelle-spalten li { margin-bottom: .35rem; }
.stelle-fuss { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--linie); display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.stelle-eckdaten {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 1.4rem; margin: 1.3rem 0;
  padding: 1.2rem 1.4rem; background: var(--flaeche); border-radius: var(--radius);
}
.stelle-eckdaten b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--tinte); line-height: 1.2; font-weight: 800; }
.stelle-eckdaten span { font-size: .85rem; color: var(--grau); }

/* Gehalts-Blickfang */
.gehalt-box {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.6rem;
  background: linear-gradient(96deg, var(--blau-tief), var(--blau));
  color: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem; margin-bottom: 1.6rem;
}
.gehalt-box b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1; font-weight: 800; }
.gehalt-box span { font-size: 1rem; color: #d4e6f5; }

/* ---------- Benefits ---------- */
.benefit {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}
.benefit b { display: block; font-family: var(--font-display); font-size: 1.22rem; color: var(--tinte); margin-bottom: .35rem; font-weight: 800; }
.benefit span { font-size: .95rem; color: var(--grau); }
.benefit--stark { border-color: var(--rot); box-shadow: inset 0 3px 0 var(--rot); }
.benefit--blau { border-color: var(--blau); box-shadow: inset 0 3px 0 var(--blau); }

/* ---------- Team-Galerie ---------- */
.team-galerie { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.team-galerie figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--flaeche-2); }
.team-galerie img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-galerie figcaption { padding: .8rem 1rem 1rem; font-size: .9rem; color: var(--grau); }
.team-hinweis { margin-top: 1.4rem; font-size: .93rem; color: var(--grau); }

/* ---------- Formular ---------- */
.formular-box {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.feld { margin-bottom: 1.1rem; }
.feld label { display: block; font-size: .93rem; font-weight: 650; color: var(--tinte); margin-bottom: .4rem; }
.feld input, .feld select, .feld textarea {
  width: 100%; padding: .8rem .95rem;
  font-family: inherit; font-size: 16px; color: var(--tinte);
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.feld input:focus, .feld select:focus, .feld textarea:focus { border-color: var(--blau); }
.feld input:focus-visible, .feld select:focus-visible, .feld textarea:focus-visible {
  outline: 3px solid var(--blau); outline-offset: 2px;
}
.feld textarea { min-height: 120px; resize: vertical; }
.feld--zwei { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; }
.feld-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.feld-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--grau); }
.feld-check input { width: 18px; height: 18px; flex: none; margin-top: .18rem; }
.feld-optional { font-weight: 400; color: var(--grau); font-size: .85em; }
.form-hinweis { font-size: .88rem; color: var(--grau); margin-top: .9rem; }
.form-status { margin-top: 1rem; font-size: .95rem; border-radius: var(--radius); padding: 0; max-height: 0; overflow: hidden; }
.form-status.ok, .form-status.error { padding: .8rem 1rem; max-height: 24rem; }
.form-status.ok { background: #e6f3ea; color: #175c30; }
.form-status.error { background: #fdecea; color: #8d1e18; }

/* ---------- Kontakt-Kacheln ---------- */
.kontakt-kachel {
  display: flex; flex-direction: column; gap: .3rem;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem; text-decoration: none; color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
a.kontakt-kachel:hover { border-color: var(--rot); box-shadow: var(--shadow); }
.kontakt-kachel .label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grau); }
.kontakt-kachel .wert { font-family: var(--font-display); font-size: 1.42rem; color: var(--tinte); line-height: 1.2; font-weight: 800; word-break: break-word; }
.kontakt-kachel .zusatz { font-size: .92rem; color: var(--grau); }
.kontakt-kachel--rot { border-color: var(--rot); box-shadow: inset 0 3px 0 var(--rot); }
.kontakt-kachel--rot .label { color: var(--rot); }

/* ---------- Sticky Call-/Bewerben-Bar (mobil) ---------- */
.aktion-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .5rem; padding: .45rem .7rem;
  padding-bottom: calc(.45rem + env(safe-area-inset-bottom));
  background: var(--tinte); border-top: 2px solid var(--rot);
}
.aktion-bar.sichtbar { display: flex; }
.aktion-bar .btn { flex: 1; min-height: 46px; padding-block: .5rem; }
.aktion-bar .btn--zweit {
  flex: none; width: 54px; padding: 0;
  background: transparent; border-color: rgba(255,255,255,.38); color: #fff;
  font-size: 1.25rem; min-height: 46px;
}
.aktion-bar .btn--zweit:hover { background: rgba(255,255,255,.12); color: #fff; }
@media (min-width: 769px) { .aktion-bar, .aktion-bar.sichtbar { display: none; } }
body.hat-aktion-bar { padding-bottom: 0; }
@media (max-width: 768px) { body.hat-aktion-bar { padding-bottom: 74px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--tinte); color: #b0bac3; padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.2rem; }
.site-footer h2 { color: #fff; font-family: var(--font-text); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #c0c8d0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { font-size: .95rem; }
.site-footer li a { display: inline-block; padding: .35rem 0; min-height: 24px; }
.footer-logo { background: #fff; border-radius: var(--radius); padding: .7rem .9rem; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 42px; width: auto; }
.footer-adresse { font-size: .95rem; line-height: 1.7; font-style: normal; }
.footer-notruf { display: block; margin-top: .8rem; font-family: var(--font-display); font-size: 1.28rem; font-weight: 800; color: #fff; text-decoration: none; }
.footer-notruf:hover { color: var(--rot-hell); }
.footer-notruf small { display: block; font-family: var(--font-text); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rot-hell); }
.footer-unten {
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-size: .87rem;
}
.footer-unten nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease var(--reveal-delay, 0s), transform .5s ease var(--reveal-delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.kein-js .reveal { opacity: 1; transform: none; }

/* ---------- Hilfsklassen ---------- */
.text-zentriert { text-align: center; }
.max-lesbar { max-width: 68ch; }
.mt-gross { margin-top: clamp(2rem, 4vw, 3rem); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--rot); color: #fff; padding: .8rem 1.2rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blau); outline-offset: 2px; }
.section--dunkel :focus-visible, .hero :focus-visible, .site-footer :focus-visible,
.notfall-band :focus-visible, .aktion-bar :focus-visible { outline-color: #fff; }

/* ---------- Rechtstexte ---------- */
.rechtstext { max-width: 74ch; }
.rechtstext h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.rechtstext h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.rechtstext ul { padding-left: 1.2rem; }
.rechtstext li { margin-bottom: .4rem; }
.rechtstext table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: .93rem; }
.rechtstext th, .rechtstext td { text-align: left; padding: .6rem .8rem; border: 1px solid var(--linie); vertical-align: top; }
.rechtstext th { background: var(--flaeche); font-weight: 650; }
.tabelle-scroll { overflow-x: auto; }

/* ---------- Karte / Anfahrt ---------- */
.karte-box {
  border: 1px solid var(--linie); border-radius: var(--radius-lg); overflow: hidden; background: var(--flaeche);
}
.karte-box iframe { display: block; width: 100%; height: 340px; border: 0; }
.karte-fuss { padding: 1rem 1.2rem; font-size: .92rem; color: var(--grau); }

/* ---------- Nachträge ---------- */
.btn--voll { width: 100%; }
h2[id], h3[id], section[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
.section-kopf--mitte { margin-inline: auto; }
.btn-reihe--mitte { justify-content: center; }

/* Telefon im mobilen Menü (Header-Nummer ist unter 1080px ausgeblendet) */
.nav-tel { display: none; }
@media (max-width: 940px) {
  .nav-tel { display: block; }
  .main-nav .nav-tel a {
    margin-top: 1rem; border: 0; border-radius: var(--radius);
    background: var(--tinte); color: #fff; text-align: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  }
  .main-nav .nav-tel a:hover { background: var(--tinte-2); color: #fff; }
  .main-nav .nav-tel small {
    display: block; font-family: var(--font-text); font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--rot-hell);
  }
}
/* Zwei breite Spalten (Videokarten, Leistungsuebersicht): grid--2 kippt bei
   1200 px Container auf drei Spalten und liesse vier Karten als 3+1 stehen. */
.grid--paar { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
@media (max-width: 520px) { .grid--paar { grid-template-columns: 1fr; } }

/* Kontrast-Korrekturen (WCAG AA) */
.section--blau .eyebrow { color: #ff9d95; }
.section--dunkel .team-hinweis, .section--blau .team-hinweis { color: #b9c3cb; }
.gehalt-box span { color: #e2eefa; }
/* Vertrauenssignal unter dem Abschluss-CTA (Conversion-Playbook §4) */
.cta-vertrauen {
  margin-top: 1.4rem; font-size: .93rem; text-align: center;
  color: #c3d7e8;
}
.section--dunkel .cta-vertrauen { color: #b9c3cb; }

/* Mitschrift unter den Videokarten - ersetzt Untertitel, weil die
   Whisper-Zeitstempel am Ende der Clips zusammenfallen und falsch
   getimte Untertitel schlechter waeren als gar keine. */
.transkript { margin-top: .9rem; border-top: 1px solid var(--linie); }
.transkript summary {
  padding: .7rem 0 .2rem; cursor: pointer; list-style: none;
  font-size: .88rem; font-weight: 650; color: var(--blau);
}
.transkript summary::-webkit-details-marker { display: none; }
.transkript summary::before { content: "+ "; }
.transkript[open] summary::before { content: "- "; }
.transkript p { font-size: .9rem; color: var(--grau); padding-bottom: .8rem; margin: 0; }
