/* ============================================================
   MALOCHER RÄUMSERVICE - Design System
   Ruhrpott Industrial: Kohle-Anthrazit + Signal-Orange
   Typo: Oswald (DIN-Schilder-Charakter) + Source Sans 3
   ============================================================ */

/* Lokal gehostete Schriftarten (DSGVO: keine externen Google-Fonts-Aufrufe) */
@font-face { font-family:'Oswald'; font-style:normal; font-weight:500; font-display:optional; src:url('/fonts/self/oswald-v57-latin-500.woff2') format('woff2'); }
@font-face { font-family:'Oswald'; font-style:normal; font-weight:600; font-display:optional; src:url('/fonts/self/oswald-v57-latin-600.woff2') format('woff2'); }
@font-face { font-family:'Oswald'; font-style:normal; font-weight:700; font-display:optional; src:url('/fonts/self/oswald-v57-latin-700.woff2') format('woff2'); }
@font-face { font-family:'Source Sans 3'; font-style:normal; font-weight:400; font-display:optional; src:url('/fonts/self/source-sans-3-v19-latin-regular.woff2') format('woff2'); }
@font-face { font-family:'Source Sans 3'; font-style:normal; font-weight:600; font-display:optional; src:url('/fonts/self/source-sans-3-v19-latin-600.woff2') format('woff2'); }
@font-face { font-family:'Source Sans 3'; font-style:normal; font-weight:700; font-display:optional; src:url('/fonts/self/source-sans-3-v19-latin-700.woff2') format('woff2'); }
@font-face { font-family:'Source Sans 3'; font-style:italic; font-weight:400; font-display:optional; src:url('/fonts/self/source-sans-3-v19-latin-italic.woff2') format('woff2'); }

:root {
  /* Farben */
  --kohle: #1b1d20;          /* Haupt-Dunkel, Kohle */
  --kohle-soft: #26292e;     /* Karten auf Dunkel */
  --stahl: #4b5158;          /* Sekundärtext auf Hell */
  --signal: #f25c1f;         /* Signal-Orange, Akzent (Rahmen, Text auf Dunkel) */
  --signal-dark: #c2410c;    /* AA-sicher: weißer Text darauf & als Text auf Hell (≥4.5:1) → CTA/Sterne */
  --signal-darker: #a8380a;  /* CTA-Hover */
  --warnung: #ffc83d;        /* Akzent Gelb, sparsam */
  --papier: #f6f4ef;         /* Heller Hintergrund */
  --weiss: #ffffff;
  --linie: #e2ded5;
  --gruen: #1f8a4c;          /* WhatsApp (Icon/Float) */
  --gruen-aa: #157a40;       /* AA-sicher: weißer Text auf Grün → WhatsApp-Button */
  --gruen-aa-dark: #115c30;  /* Hover */

  /* Typo */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(27, 29, 32, .10);

  /* Signatur: Industrie-Streifen */
  --streifen: repeating-linear-gradient(
    -45deg,
    var(--signal) 0 14px,
    var(--kohle) 14px 28px
  );
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--kohle);
  background: var(--weiss);
}

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

a { color: var(--signal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Typografie ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; letter-spacing: .03em; }
h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--signal-dark);
  background: rgba(242, 92, 31, .10);
  border-left: 4px solid var(--signal);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.section-dark .eyebrow {
  color: var(--warnung);
  background: rgba(255, 200, 61, .10);
  border-left-color: var(--warnung);
}

.lead { font-size: 1.15rem; color: var(--stahl); max-width: 740px; }
.section-dark .lead { color: #b8bcc2; }

/* ---------- Signatur-Streifen ---------- */

.streifen {
  height: 10px;
  background: var(--streifen);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--signal-dark); color: var(--weiss); box-shadow: 0 6px 18px rgba(242,92,31,.35); }
.btn-primary:hover { background: var(--signal-darker); }

.btn-whatsapp { background: var(--gruen-aa); color: var(--weiss); }
.btn-whatsapp:hover { background: var(--gruen-aa-dark); }

.btn-ghost { background: transparent; color: var(--weiss); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--weiss); }

.btn-dark { background: var(--kohle); color: var(--weiss); }
.btn-dark:hover { background: #000; }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--kohle);
  color: #cfd3d8;
  font-size: .9rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar a { color: var(--warnung); font-weight: 600; }
.topbar .topbar-links { display: flex; gap: 18px; align-items: center; }

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

.site-header {
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--kohle);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--streifen);
}
.logo-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--signal);
  margin-top: -6px;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kohle);
  display: block;
}
.logo-text small {
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stahl);
}

.nav-toggle-input { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--kohle);
  border-radius: 2px;
}

.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--kohle);
  text-decoration: none !important;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--signal);
}
.main-nav .nav-cta {
  background: var(--signal);
  color: var(--weiss);
  padding: 10px 18px;
  border-radius: var(--radius);
  border-bottom: none;
}
.main-nav .nav-cta:hover { background: var(--signal-dark); }

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

.hero {
  background: var(--kohle);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* dezente Zechen-Silhouette als Hintergrundstruktur */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(242,92,31,.16), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 90px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 80px;
}
.hero .gruss {
  font-family: var(--font-display);
  color: var(--warnung);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .95rem;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--signal);
}
.hero p { margin: 20px 0 28px; color: #c9cdd3; font-size: 1.15rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--kohle-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--streifen);
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero-card h3 { color: var(--weiss); margin: 10px 0 16px; }
.check-list { list-style: none; }
.check-list li {
  padding: 9px 0 9px 34px;
  position: relative;
  color: #d7dade;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px; height: 22px;
  background: var(--signal);
  color: var(--weiss);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 700;
}

/* ---------- Sektionen ---------- */

.section { padding: 80px 0; }
.section-papier { background: var(--papier); }
.section-dark { background: var(--kohle); color: var(--weiss); }
.section-dark h2, .section-dark h3 { color: var(--weiss); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { border-left: none; border-bottom: 3px solid var(--signal); padding: 4px 10px 6px; }

/* ---------- Karten-Grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: var(--kohle);
  color: var(--warnung);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.card ul { list-style: none; color: var(--stahl); }
.card ul li { padding: 4px 0 4px 20px; position: relative; }
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 9px; height: 9px;
  background: var(--signal);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.card .card-link {
  margin-top: auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .06em;
  font-weight: 600;
}

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

.schicht {
  counter-reset: schritt;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.schritt {
  background: var(--kohle-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.schritt::before {
  counter-increment: schritt;
  content: counter(schritt, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--signal);
  display: block;
  margin-bottom: 8px;
}
.schritt h3 { font-size: 1.05rem; margin-bottom: 8px; }
.schritt p { color: #b8bcc2; font-size: .98rem; }

.schritt.no-num::before { content: none; }

/* ---------- Foto-Platzhalter ---------- */

.foto {
  background:
    linear-gradient(135deg, #d9d4c9 0%, #c4beb0 100%);
  border: 1px dashed #a8a294;
  border-radius: var(--radius);
  min-height: 280px;
  display: grid;
  place-items: center;
  color: #6e695d;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
  text-align: center;
  padding: 16px;
}
.foto.klein { min-height: 190px; }
.foto.gross { min-height: 380px; }

/* Echtes Foto statt Platzhalter */
.foto.foto-img {
  padding: 0;
  border: none;
  background: none;
  overflow: hidden;
  position: relative;
}
.foto.foto-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vorher-nachher { position: relative; }
.vorher-nachher .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--kohle);
  color: var(--warnung);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 4px;
}
.vorher-nachher .tag.nachher { background: var(--signal); color: var(--weiss); }

/* ---------- Vorher/Nachher Vergleichs-Slider ---------- */

.ba-grid { gap: 30px; }

.ba-item { margin: 0; }
.ba-item figcaption {
  margin-top: 14px;
  text-align: center;
  color: var(--stahl);
  font-size: .95rem;
}

.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--linie);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 5px 11px;
  border-radius: 4px;
  color: var(--weiss);
  pointer-events: none;
}
.ba-tag--before { left: 14px; background: var(--kohle); color: var(--warnung); }
.ba-tag--after  { right: 14px; background: var(--signal); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  z-index: 4;
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--weiss);
  box-shadow: 0 0 0 1px rgba(27, 29, 32, .18);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--weiss);
  color: var(--kohle);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -.08em;
  box-shadow: 0 4px 16px rgba(27, 29, 32, .35);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.ba-range:focus-visible ~ .ba-handle .ba-knob {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

/* ---------- Quote / Bewertungen ---------- */

.review {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.review .stars { color: var(--signal-dark); letter-spacing: 3px; margin-bottom: 10px; font-size: 1.05rem; }
.review p { color: var(--stahl); font-style: italic; }
.review footer {
  margin-top: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--kohle);
}

/* ---------- FAQ ---------- */

.faq details {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .98rem;
  letter-spacing: .03em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--kohle);
  color: var(--warnung);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.faq details[open] summary::after { content: "–"; background: var(--signal); color: var(--weiss); }
.faq details > div { padding: 0 22px 20px; color: var(--stahl); }

/* ---------- Städte ---------- */

.stadt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.stadt-grid a {
  display: block;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--kohle);
  font-size: .95rem;
  text-decoration: none !important;
  transition: border-color .15s, transform .15s;
}
.stadt-grid a::before { content: "→ "; color: var(--signal-dark); font-weight: 700; }
.stadt-grid a:hover { border-color: var(--signal); transform: translateX(3px); }

.stadt-inline { color: #9aa0a7; font-size: .92rem; line-height: 2; }
.stadt-inline a { color: #cfd3d8; }
.stadt-inline a:hover { color: var(--warnung); }

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

.cta-band {
  background: var(--signal);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: -60px;
  width: 220px;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.12) 0 16px, transparent 16px 32px);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 44px;
  padding-bottom: 44px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { opacity: .92; }
.cta-band .btn-dark { box-shadow: 0 6px 18px rgba(0,0,0,.25); }

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

.form-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 6px;
}
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--linie);
  border-radius: 4px;
  background: var(--papier);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--weiss);
}
textarea { min-height: 130px; resize: vertical; }
.form-hint { font-size: .82rem; color: var(--stahl); }

/* ---------- Kontakt-Infos ---------- */

.kontakt-info { display: flex; flex-direction: column; gap: 18px; }
.kontakt-info .info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.kontakt-info .info-icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  background: var(--kohle);
  color: var(--warnung);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.kontakt-info strong { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: .9rem; letter-spacing: .05em; }

.map-placeholder {
  background: linear-gradient(135deg, #dfe3e6, #c9cfd4);
  border: 1px dashed #9aa3aa;
  border-radius: var(--radius);
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #5b646c;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- Blog ---------- */

.blog-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-card .foto { border: none; border-radius: 0; min-height: 200px; }
.blog-card .blog-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--signal-dark);
  font-family: var(--font-display);
}
.blog-card h3 { font-size: 1.1rem; }
.blog-card p { color: var(--stahl); font-size: .97rem; }

/* Artikel */
.artikel { max-width: 760px; margin: 0 auto; }
.artikel h2 { margin: 36px 0 14px; }
.artikel h3 { margin: 28px 0 10px; }
.artikel p { margin-bottom: 16px; color: #33373c; }
.artikel ul, .artikel ol { margin: 0 0 16px 22px; color: #33373c; }
.artikel li { margin-bottom: 6px; }
.artikel .artikel-intro { font-size: 1.18rem; color: var(--stahl); }

.table-wrap { overflow-x: auto; margin: 20px 0; }
.table-wrap table {
  min-width: 560px;
  width: 100%;
  border-collapse: collapse;
  font-size: .97rem;
}
.table-wrap th {
  background: var(--kohle);
  color: var(--weiss);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
}
.table-wrap td { padding: 11px 14px; border-bottom: 1px solid var(--linie); }
.table-wrap tr:nth-child(even) td { background: var(--papier); }

/* ---------- Page-Hero (Unterseiten) ---------- */

.page-hero {
  background: var(--kohle);
  color: var(--weiss);
  padding: 56px 0;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background: var(--streifen);
}
.breadcrumb {
  font-size: .85rem;
  color: #9aa0a7;
  margin-bottom: 14px;
}
.breadcrumb a { color: #cfd3d8; }
.page-hero p { color: #c9cdd3; max-width: 700px; margin-top: 14px; font-size: 1.1rem; }

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

.site-footer {
  background: var(--kohle);
  color: #b8bcc2;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--weiss);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  font-size: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #b8bcc2; }
.site-footer a:hover { color: var(--warnung); }
.footer-cities { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.10); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0;
  font-size: .88rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Mobile Call-Leiste ---------- */

.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--kohle);
  border-top: 2px solid var(--signal);
}
.mobile-callbar a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  color: var(--weiss);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .05em;
  text-decoration: none !important;
}
.mobile-callbar a.call { background: var(--signal); }
.mobile-callbar a.wa { background: var(--gruen); }

/* ---------- WhatsApp Float-Button (sticky) ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gruen);
  color: var(--weiss);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(31, 138, 76, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: scale(1.07);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(31, 138, 76, .55);
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gruen);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 52px 0 60px; }
  .grid-3, .grid-4, .schicht { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 52px; } /* Platz für Callbar */
  .mobile-callbar { display: flex; }
  .wa-float { display: none; } /* mobil: Callbar unten reicht */
  .topbar .topbar-links span.hours { display: none; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--linie);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-toggle-input:checked ~ .main-nav { max-height: 480px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 20px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--linie); }
  .main-nav .nav-cta { text-align: center; margin-top: 10px; }

  .grid-2, .grid-3, .grid-4, .schicht, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .stadt-grid a { transition: none; }
  .wa-float::after { animation: none; }
}

/* ---------- Gebiete (Index-Sektion) ---------- */

.gebiete { background: var(--papier); border-top: 1px solid var(--linie); }
.gebiete-liste {
  text-align: center;
  line-height: 2.3;
  font-size: 1.02rem;
  max-width: 1040px;
  margin: 0 auto;
}
.gebiete-liste a {
  color: var(--signal-dark);
  font-weight: 600;
  text-decoration: none !important;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.gebiete-liste a:hover {
  background: var(--kohle);
  color: var(--warnung);
}
.gebiete-liste .trenner { color: #b9b3a6; margin: 0 2px; }

/* ============================================================
   Erişilebilirlik: Skip-Link ("Zum Inhalt springen")
   ============================================================ */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 2000;
  background: var(--kohle);
  color: var(--weiss);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--warnung);
  outline-offset: 2px;
}
#hauptinhalt:focus { outline: none; }
