/* ============================================================
   SICHER UMZUG - Mettmann
   Farbwelt aus dem Logo: Gold #D8A848 auf Schwarz.
   Die Seite hat bewusst nur ein Farbschema. Das Logo ist ein
   schwarzes Rundabzeichen, eine helle Fassung wuerde es zerreissen.
   ============================================================ */

:root {
  color-scheme: dark;

  /* Marke */
  --gold: #d8a848;          /* Flaechen, Buttons, Linien */
  --gold-deep: #b8862c;     /* Hover auf gefuellten Flaechen */
  --gold-light: #e8c877;    /* Akzente auf sehr dunklem Grund */
  --gold-text: #e2b95e;     /* Gold als Schriftfarbe, heller fuer Lesbarkeit */

  /* Schrift */
  --ink: #f3f1ec;           /* warmes Weiss, passt zum Gold */
  --ink-2: #d3cec4;
  --ink-3: #a09a8e;
  --muted: #8a857b;

  /* Flaechen */
  --bg: #0d0d10;
  --surface: #17171b;
  --surface-2: #1f1f25;
  --line: #292930;
  --line-strong: #3d3d46;

  /* Baender, die sich vom Seitengrund absetzen sollen */
  --band: #08080a;
  --band-2: #1a1a20;
  --band-line: rgba(216, 168, 72, .22);
  --band-ink: #ffffff;
  --band-ink-2: rgba(255, 255, 255, .74);
  --band-ink-3: rgba(255, 255, 255, .55);

  --header-bg: rgba(13, 13, 16, .86);
  --bar-bg: rgba(8, 8, 10, .95);
  --placeholder: #8b8579;

  /* Form */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;

  /* Raster */
  --wrap: 1200px;
  --pad: 24px;

  /* Schatten: auf schwarzem Grund traegt nur Tiefe, keine Weichzeichnung */
  --shadow-s: 0 1px 2px rgba(0, 0, 0, .5), 0 4px 14px rgba(0, 0, 0, .4);
  --shadow-m: 0 2px 6px rgba(0, 0, 0, .55), 0 18px 44px rgba(0, 0, 0, .5);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }

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

a { color: inherit; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { padding: clamp(64px, 9vw, 112px) 0; }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--ink-3);
  max-width: 62ch;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 .9rem;
}

.sec-head { max-width: 66ch; margin-bottom: clamp(36px, 5vw, 56px); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
}

.btn:active { transform: translateY(1px); }

/* Goldflaeche mit fast schwarzer Schrift. Weiss auf Gold kaeme nur auf 2,2:1
   und waere unlesbar, deshalb dieselbe Paarung wie im Logo. */
.btn-primary {
  background: var(--gold);
  color: #0d0d10;
  border-color: var(--gold);
  box-shadow: 0 6px 22px rgba(216, 168, 72, .26);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(216, 168, 72, .38);
}

/* Schwarz mit Goldkante und weisser Schrift. */
.btn-ghost {
  background: rgba(255, 255, 255, .03);
  color: #fff;
  border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(216, 168, 72, .16); border-color: var(--gold-light); color: #fff; }

/* Zurueckhaltender zweiter Button neben einem goldenen Primary, z.B. in der
   mobilen Anrufleiste: dunkle Flaeche mit dezenter Kante statt Gold. */
.btn-dark {
  background: var(--band-2);
  color: #fff;
  border-color: var(--line-strong);
}
.btn-dark:hover { background: #24242c; border-color: var(--gold); }

/* auf dunklem/bildlichem Grund */
.btn-on-dark {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Feste Farbe, nicht --ink: der Hover-Grund ist weiss, unabhaengig vom Farbschema. */
.btn-on-dark:hover { background: rgba(255, 255, 255, .96); color: #0d0d10; border-color: #fff; }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Kopfzeile ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .55);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header.is-stuck .header-inner { height: 74px; transition: height .25s var(--ease); }

.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 58px; width: auto; }
.site-header.is-stuck .brand img { height: 50px; transition: height .25s var(--ease); }

@media (max-width: 520px) {
  .header-inner { height: 76px; }
  .brand img { height: 46px; }
  .site-header.is-stuck .header-inner { height: 68px; }
  .site-header.is-stuck .brand img { height: 42px; }
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }

.nav a {
  font-family: 'Outfit', sans-serif;
  font-size: .97rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.nav .btn { margin-left: 4px; padding: 12px 20px; font-size: .95rem; }
.nav .btn::after { display: none; }
/* .nav a ist spezifischer als die Button-Klassen und wuerde sonst die Schrift einfaerben. */
.nav a.btn-primary,
.nav a.btn-primary:hover { color: #0d0d10; }
.nav a.btn-ghost,
.nav a.btn-ghost:hover { color: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: background-color .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    padding: 8px var(--pad) 22px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav .btn { margin: 18px 0 0; padding: 15px 24px; }
}

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

.hero {
  position: relative;
  min-height: min(84dvh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 18vw, 190px) 0 clamp(48px, 6vw, 74px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 13, 14, .88) 0%, rgba(10, 13, 14, .66) 42%, rgba(10, 13, 14, .18) 78%),
    linear-gradient(to top, rgba(10, 13, 14, .6), transparent 45%);
}

.hero-inner { position: relative; max-width: 700px; }

.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero h1 .accent { color: #fff; border-bottom: 5px solid var(--gold-light); padding-bottom: 2px; }

.hero p {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Faktenleiste ---------- */

.facts {
  background: var(--band);
  padding: 0;
  border-block: 1px solid var(--band-line);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 30px 26px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
}
.fact:first-child { border-left: 0; }
.fact strong {
  display: flex;
  align-items: center;
  gap: .4em;
  font-family: 'Outfit', sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.fact .stars { color: var(--gold-light); font-size: 1.05rem; letter-spacing: .05em; }

@media (max-width: 860px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
}
@media (max-width: 460px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-left: 0; }
  .fact + .fact { border-top: 1px solid rgba(255, 255, 255, .12); }
}

/* ---------- Leistungen ---------- */

/* Sechs gleich gebaute Karten im 3x2-Raster. Bewusst ruhig: die Abwechslung
   kommt aus den Bildern, nicht aus unterschiedlichen Kachelgroessen. */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-strong);
}

/* Roter Balken oben faehrt beim Hover aus: zeigt, welche Karte gerade dran ist. */
.tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}
.tile:hover::before { transform: scaleX(1); }

.tile-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; flex: none; }
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.05); }

.tile-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tile-body h3 { margin-bottom: .45em; }
.tile-body p { color: var(--ink-3); font-size: .98rem; margin: 0; }

.tile-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.tile-icon svg { width: 100%; height: 100%; }

@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; gap: 22px; }
  .tile-media { aspect-ratio: 16 / 9; }
}

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

.ablauf { background: var(--surface); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 7px, transparent 7px 15px);
  z-index: 0;
}

.step { position: relative; z-index: 1; }
.step-mark {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0d10;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--surface);
}
.step-mark svg { width: 24px; height: 24px; }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--ink-3); font-size: .98rem; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; }
  .step-mark { margin-bottom: 0; grid-row: span 2; }
}

/* ---------- Ueber uns ---------- */

.ueber-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-m);
  margin-bottom: clamp(38px, 5vw, 58px);
  background: var(--surface-2);
}
.ueber-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

/* Drei Haltungspunkte, nur durch Haarlinien getrennt statt in Karten gesteckt. */
.saeulen { display: grid; grid-template-columns: repeat(3, 1fr); }
.saeule { padding: 0 36px; border-left: 1px solid var(--line-strong); }
.saeule:first-child { padding-left: 0; border-left: 0; }
.saeule:last-child { padding-right: 0; }
.saeule h3 { font-size: 1.12rem; margin-bottom: .5em; }
.saeule p { color: var(--ink-3); font-size: .97rem; margin: 0; }

@media (max-width: 860px) {
  .saeulen { grid-template-columns: 1fr; gap: 30px; }
  .saeule,
  .saeule:first-child { padding: 0 0 0 22px; border-left: 3px solid var(--gold); }
}
@media (max-width: 700px) { .ueber-media { aspect-ratio: 4 / 3; } }

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

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--surface-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.checks li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 1rem;
  color: var(--ink-2);
}
.checks svg { width: 24px; height: 24px; color: var(--gold); margin-top: 1px; }
.checks b { font-weight: 700; color: var(--ink); }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split-media { max-height: 380px; }
}

/* ---------- Bildband Fuhrpark ---------- */

.band {
  position: relative;
  padding: clamp(90px, 13vw, 160px) 0;
  isolation: isolate;
  overflow: hidden;
}
.band-media { position: absolute; inset: 0; z-index: -2; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(10, 13, 14, .92) 0%, rgba(10, 13, 14, .74) 48%, rgba(10, 13, 14, .35) 100%);
}
.band-inner { max-width: 640px; }
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .84); }

.band-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 46px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.band-stats div { color: rgba(255, 255, 255, .68); font-size: .93rem; }
.band-stats b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

/* ---------- Bewertung ---------- */

.rating { background: var(--surface); }
.rating-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.rating-score {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.4rem, 9vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.rating-stars {
  color: var(--gold);
  font-size: 1.7rem;
  letter-spacing: .18em;
  margin: 12px 0 6px;
}
.rating-meta { color: var(--ink-3); font-size: 1rem; }
.rating-inner h2 { margin-top: 26px; }
.rating-extra { color: var(--ink-3); font-size: .92rem; margin-top: 12px; }

/* ---------- Einsatzgebiet ---------- */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.area {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
}
.area-main { background: var(--gold); border-color: var(--gold); color: #0d0d10; font-weight: 700; }

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

.kontakt { background: var(--surface); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: start;
}

.form { display: grid; gap: 18px; }

.field { display: grid; gap: 8px; }
.field label {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { font-size: .84rem; color: var(--ink-3); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--placeholder); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--ink-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(216, 168, 72, .22);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--gold); }

.field-error {
  font-size: .86rem;
  color: var(--gold-text);
  font-weight: 600;
  display: none;
}
.field-error.is-shown { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: .9rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.consent input { width: 20px; height: 20px; accent-color: var(--gold); margin-top: 2px; }
.consent a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 2px; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form .btn-primary { justify-self: start; }
.form .btn-primary[disabled] { opacity: .6; cursor: progress; }

/* Kontaktkarte */
.kontakt-card {
  background: var(--band);
  color: rgba(255, 255, 255, .78);
  border: 1px solid var(--band-line);
  border-radius: var(--r-lg);
  padding: 34px;
}
.kontakt-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 20px; }

.kontakt-list { display: grid; gap: 20px; margin-bottom: 28px; }
.kontakt-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; }
.kontakt-item svg { width: 22px; height: 22px; color: var(--gold-light); margin-top: 3px; }
.kontakt-item a { color: #fff; text-decoration: none; font-weight: 600; }
.kontakt-item a:hover { text-decoration: underline; text-underline-offset: 3px; }
.kontakt-item .label { display: block; font-size: .82rem; color: rgba(255, 255, 255, .55); margin-bottom: 2px; }
.kontakt-item address { font-style: normal; color: #fff; }

.hours {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 24px;
  font-size: .95rem;
}
.hours dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin: 10px 0 0; }
.hours dt { color: rgba(255, 255, 255, .7); }
.hours dd { margin: 0; color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.hours .note { font-size: .84rem; color: rgba(255, 255, 255, .5); margin-top: 14px; }

.kontakt-card .btn { width: 100%; margin-top: 26px; }

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

/* ---------- Fusszeile ---------- */

.site-footer {
  background: #060608;
  border-top: 1px solid var(--band-line);
  color: rgba(255, 255, 255, .62);
  padding: 64px 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 18px; }
.footer-grid h4 {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer-grid a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-grid address { font-style: normal; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  font-size: .87rem;
  color: rgba(255, 255, 255, .74);
}
.footer-bottom a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-credit { margin-left: auto; }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-credit { margin-left: 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---------- Anruf-Leiste mobil ---------- */

.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--bar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; padding: 14px 12px; font-size: .95rem; }

@media (max-width: 700px) {
  .call-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Leistungs-Unterseiten ---------- */

/* Kompakter Hero fuer die sechs Leistungsseiten: Bild + Verlauf wie beim
   Fuhrpark-Band, aber niedriger, weil hier kein Video den Ton setzen muss. */
.page-hero {
  position: relative;
  min-height: min(58dvh, 460px);
  display: flex;
  align-items: flex-end;
  padding: clamp(104px, 15vw, 150px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.94); }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .7) 42%, rgba(8, 8, 10, .22) 78%),
    linear-gradient(to top, rgba(8, 8, 10, .65), transparent 45%);
}
.page-hero-inner { position: relative; max-width: 660px; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, .5); }
.page-hero p { color: rgba(255, 255, 255, .88); font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 56ch; margin-bottom: 1.8rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Zurueck-Verweis oberhalb des Hero-Titels, ersetzt Brotkrumen-Navigation. */
.back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  margin-bottom: 22px;
}
.back-link svg { width: 18px; height: 18px; }
.back-link:hover { color: var(--gold-text); }

/* Detailtext unter dem Hero: laengere Beschreibung + Liste "das ist dabei". */
.leistung-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.leistung-detail .checks { margin-top: 28px; }
@media (max-width: 820px) { .leistung-detail { grid-template-columns: 1fr; } }

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

.faq { display: grid; gap: 14px; max-width: 780px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.faq-item h3 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
  margin-bottom: .6em;
}
.faq-item h3::before {
  content: "F";
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0d10;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.faq-item p { color: var(--ink-3); font-size: .98rem; padding-left: 40px; }

/* Verlinkung von den Leistungskarten auf der Startseite zu den Unterseiten. */
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold-text);
  text-decoration: none;
}
.tile-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.tile-link:hover svg { transform: translateX(3px); }

@media (max-width: 700px) {
  .page-hero { min-height: min(52dvh, 400px); }
}

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

.legal { padding-top: clamp(48px, 7vw, 84px); }
.legal-body { max-width: 78ch; }
.legal-body h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-top: 2.2em; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 1.08rem; margin-top: 1.8em; }
.legal-body address { font-style: normal; }
.legal-body ul { padding-left: 1.2em; }
.legal-body li { margin-bottom: .5em; }
.legal-body a { color: var(--gold-text); text-underline-offset: 2px; }

.note-box {
  background: #1d1913;
  border: 1px solid #4a3c1d;
  border-left: 4px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .95rem;
  color: var(--ink-2);
}

/* Danke-Seite */
.danke { min-height: 68dvh; display: grid; place-items: center; text-align: center; }
.danke-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0d10;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
}
.danke-icon svg { width: 38px; height: 38px; }

/* Bilder eine Spur zurueckgenommen, damit sie auf schwarzem Grund nicht ausbrennen. */
.tile-media img,
.split-media img,
.ueber-media img { filter: brightness(.94); }

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

/* Nur wenn JavaScript laeuft, starten die Bloecke unsichtbar. Ohne JS
   (oder wenn das Skript nicht durchkommt) steht der Inhalt sofort da. */
.js .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .rv.is-in { opacity: 1; transform: none; will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .tile:hover { transform: none; }
  .tile:hover .tile-media img { transform: none; }
}
