/* ============================================================
   DomClean — Gebäude- und Glasreinigung Köln · V1
   Design-System: Nachtblau-Bühne, Kobalt-Akzent, Weiß als Licht.
   Typo: Bricolage Grotesque (Display, OFL) + Instrument Sans (Text, OFL),
   selbst gehostet als variable woff2 (Latin-Subset), font-display: swap.
   Signature (genau 1): „Klar-Wisch“ — scroll-getriebene Scheiben-Klärung im Hero.
   Motion-Gate: Endzustand ist Default; Animation nur bei html.js.anim
   (JS vorhanden UND prefers-reduced-motion: no-preference).
   Breakpoints: 320 (Basis) / 390 / 768 / 1440.
   ============================================================ */

/* ---------- Fonts (selbst gehostet, kein Dritt-Request) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque-var-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* HELLES Theme (Sauberkeits-Image): helle Flächen, dunkler Text, Kobalt als
     Akzent aus dem Logo. Dunkle „Anker"-Inseln (Footer, Medien-Bühne) setzen
     ihre Text-/Linien-Tokens lokal wieder auf hell. */
  --ink-0: #0b1a33;   /* dunkler Anker (Footer, Header-Option) */
  --ink-1: #ffffff;   /* weiße Flächen: Hero, Karten, Formfelder */
  --ink-2: #eef2f9;   /* leicht abgesetztes helles Band: Kontakt */
  --ink-3: #e0e8f3;
  --line-dark: rgba(16, 31, 56, 0.12);  /* Linie/Rahmen auf hell */
  --line-field: rgba(16, 31, 56, 0.30); /* Feldrand auf hell (>=3:1) */
  --paper: #f5f8fc;   /* body-Grund + ruhige Bänder */
  --paper-2: #e9f0f8;
  --line-paper: rgba(16, 31, 56, 0.12);
  --text-hi: #0f1e38;   /* Haupttext */
  --text-lo: #45587a;   /* Sekundärtext (~5.5:1 auf hell) */
  --text-ink: #0f1e38;
  --text-ink-lo: #45587a;
  --accent: #2f64c8;      /* Kobalt, lesbar auf hell (~4.9:1) */
  --accent-deep: #1f4d99; /* dunkles Kobalt für Text/Hover (~7:1) */
  --accent-soft: #3e7ce0; /* heller Akzent für Flächen/Linien, nicht kleiner Text */

  --font-display: "Bricolage Grotesque", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-text: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.35rem, 8.4vw, 5rem);
  --fs-h2: clamp(1.7rem, 4.6vw, 3rem);
  --fs-h3: clamp(1.2rem, 2.6vw, 1.55rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: clamp(4rem, 9vw, 7.5rem);

  --wrap: 74rem;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Signature-Zustand: 1 = Scheibe klar (Default, auch ohne JS/Motion) */
  --wipe: 1;
  --scroll-progress: 0;
  --spot-x: 70%;
  --spot-y: 20%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Ankerziele nicht unter dem sticky Header */
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  color-scheme: light;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-hi);
  background: var(--paper);
  overflow-x: clip;
}

/* Atmosphäre: feines Korn (statisch, rein dekorativ) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.025; /* feines Korn, auf hellem Grund dezent */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 var(--space-2);
  text-wrap: balance;
  overflow-wrap: break-word;
}
.steps h3 { hyphens: auto; } /* lange Komposita in schmalen Protokollkarten */
p { margin: 0 0 var(--space-2); }
a { color: inherit; }

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

/* Fokus sichtbar, überall */
:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 3px;
}
.on-paper :focus-visible { outline-color: var(--accent-deep); } /* 3:1 auch auf hellem Grund */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--accent-deep);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-2);
}
.on-paper .kicker { color: var(--accent-deep); }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.site-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  opacity: 0.75;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 64px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.5rem 0;
}
.brand small {
  display: none; /* auf schmalen Viewports: Platz für den CTA (Touch-Target) */
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-lo);
}
.site-nav { display: none; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--text-lo);
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: color 0.25s var(--ease);
}
.site-nav a:hover { color: var(--text-hi); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-primary {
  background: var(--accent-deep);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); }
.btn-quiet {
  background: transparent;
  color: var(--text-hi);
  border-color: var(--line-dark);
}
.btn-quiet:hover { border-color: var(--accent-soft); }
.btn-small { min-height: 44px; padding: 0.55rem 1.15rem; font-size: 0.92rem; }
.btn:active { transform: translateY(1px); }

/* ============================================================
   HERO mit Signature „Klar-Wisch“
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-4) 0 var(--space-5);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(62, 124, 224, 0.16), transparent 60%),
    var(--ink-1);
  overflow: clip;
}
/* Hero-Spotlight entfernt (cursor-Licht ist raus); Hero-Grund bleibt hell. */
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 700;
  max-width: 12ch;
}
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-lo);
  max-width: 46ch;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* Bühne: Fensterscheibe aus CSS (ehrliche Simulation, kein Foto) */
.pane-stage { position: relative; }
.pane {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(90% 70% at 75% 12%, rgba(240, 246, 255, 0.14), transparent 55%),
    linear-gradient(160deg, #12275022 0%, transparent 40%),
    linear-gradient(200deg, #0c1c3c 0%, #143061 46%, #2c5fc0 88%, #6d9bea 100%);
  overflow: hidden;
  isolation: isolate;
}
.pane-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}
.pane-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s var(--ease);
}
.anim .pane-video.is-playing { opacity: 1; }
.pane-stage::after {
  content: "";
  position: absolute;
  inset: -12% -10% 22%;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(127, 168, 238, 0.2), transparent 54%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.anim .pane-stage::after { opacity: 1; }
/* Fenstersprosse + Brüstung */
.pane::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(50% - 1px), rgba(6, 14, 31, 0.75) calc(50% - 1px), rgba(6, 14, 31, 0.75) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(to top, rgba(6, 14, 31, 0.85) 0 10px, transparent 10px);
}
/* Lichtreflex auf klarem Glas */
.pane::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.07) 46%, rgba(255, 255, 255, 0.015) 55%, transparent 60%);
}

/* Schmutz-/Schleierschicht: wird vom Wisch freigelegt.
   Default --wipe:1 => Schicht komplett weggeklappt (Anti-Blackout). */
.haze {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  clip-path: inset(0 0 0 calc(var(--wipe) * 100%));
  background:
    repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(98deg, rgba(173, 192, 220, 0.12) 0 1px, transparent 1px 9px),
    linear-gradient(115deg, rgba(196, 209, 228, 0.88), rgba(168, 185, 210, 0.82));
}
/* Wischer-Kante: Lichtlinie + Wasserfilm, sitzt an der Wisch-Grenze */
.blade {
  position: absolute;
  top: 4%;
  bottom: 6%;
  left: calc(var(--wipe) * 100%);
  width: 14px;
  margin-left: -7px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.blade::before {
  content: "";
  position: absolute;
  inset: 0 5px;
  border-radius: 4px;
  background: linear-gradient(to bottom, rgba(240, 246, 255, 0.95), rgba(127, 168, 238, 0.85));
  box-shadow: 0 0 0 1px rgba(6, 14, 31, 0.35);
}
.blade::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 26px;
  background: linear-gradient(to right, rgba(214, 231, 255, 0.35), transparent);
}
.anim .blade { opacity: 1; }
.anim .pane.done .blade { opacity: 0; }

.pane-hint {
  display: none;
  margin-top: var(--space-1);
  font-size: var(--fs-small);
  color: var(--text-lo);
}
.anim .pane-hint { display: block; }

.pane-caption {
  margin-top: var(--space-1);
  font-size: var(--fs-small);
  color: var(--text-lo);
}

/* KI-Bild-Kennzeichnung: dezentes „Nachgestellte Szene"-Label auf generierten Bildern */
.gen-tag {
  position: absolute;
  z-index: 6;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 26, 51, 0.72);
  color: #eef2f8;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.journey-disclaimer {
  font-size: 0.88rem;
  color: var(--text-lo);
  font-style: italic;
}

/* ============================================================
   Sektionen: wenige große Bühnen
   ============================================================ */
section { padding: clamp(3rem, 5.5vw, 4.75rem) 0; }
#leistungen { padding-top: clamp(3.5rem, 6vw, 5rem); }

.section-head { max-width: 42rem; margin-bottom: var(--space-4); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--text-lo); }
.on-paper .section-head p { color: var(--text-ink-lo); }

/* --- Leistungen: zwei Bühnen, keine Kartenwand --- */
.stage {
  position: relative;
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line-dark);
}
.stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-4);
  width: min(9rem, 34vw);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  opacity: 0.5;
}
.stage-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-soft);
}
.stage h3 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); max-width: 18ch; }
.stage .stage-copy p { color: var(--text-lo); max-width: 52ch; }
.stage ul {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.stage li {
  padding-left: 1.6rem;
  position: relative;
  max-width: 52ch;
}
.stage li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.85rem;
  height: 2px;
  background: var(--accent);
}
.stage .note {
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-left: 2px solid var(--accent);
  background: rgba(62, 124, 224, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
  color: var(--text-hi);
  max-width: 52ch;
}

/* Bühnen-Motive (rein dekorativ, CSS statt Stock) */
.motif {
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  min-height: 240px;
  overflow: hidden;
  position: relative;
  margin: 0;
  background-color: var(--ink-2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  transform: translateZ(0);
}
.motif img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}
.anim .stage.in .motif img,
.anim .contact-intro.in .team-visual img {
  transform: scale(1.065);
  filter: saturate(1) contrast(1.06);
}
.motif::before,
.team-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 14, 31, 0.45), transparent 38%, rgba(127, 168, 238, 0.14)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.18), transparent 34%);
  opacity: 0.78;
}
.motif::after,
.team-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 48%, transparent 56% 100%);
  transform: translateX(-120%);
}
.anim .stage.in .motif::after,
.anim .contact-intro.in .team-visual::after {
  animation: premium-sweep 1.45s var(--ease) 0.18s both;
}
.motif figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(242, 245, 250, 0.18);
  border-radius: 999px;
  background: rgba(6, 14, 31, 0.76);
  color: var(--text-lo);
  font-size: 0.76rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}
.motif-steps {
  background:
    linear-gradient(to top, rgba(6, 14, 31, 0.5), transparent 55%),
    repeating-linear-gradient(to top, #101f3f 0 34px, #142a54 34px 36px, #1a3565 36px 68px, #0e1f40 68px 70px),
    var(--ink-2);
}
.motif-steps::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 55%, rgba(127, 168, 238, 0.12) 62%, transparent 72%);
}
.motif-glass {
  background:
    linear-gradient(115deg, transparent 48%, rgba(255, 255, 255, 0.06) 52%, transparent 58%),
    linear-gradient(200deg, #0e2044 0%, #1c3d7c 60%, #3e7ce0 100%);
}
.motif-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(33% - 1px), rgba(6, 14, 31, 0.6) calc(33% - 1px), rgba(6, 14, 31, 0.6) calc(33% + 1px), transparent calc(33% + 1px)),
    linear-gradient(to right, transparent calc(66% - 1px), rgba(6, 14, 31, 0.6) calc(66% - 1px), rgba(6, 14, 31, 0.6) calc(66% + 1px), transparent calc(66% + 1px)),
    linear-gradient(to bottom, transparent calc(50% - 1px), rgba(6, 14, 31, 0.6) calc(50% - 1px), rgba(6, 14, 31, 0.6) calc(50% + 1px), transparent calc(50% + 1px));
}

/* --- Papier-Sektionen (Arbeitsweise, Zusagen, FAQ) --- */
.on-paper {
  background: var(--paper);
  color: var(--text-ink);
}
.on-paper h2, .on-paper h3 { color: var(--text-ink); }
.on-paper p { color: var(--text-ink-lo); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: schritt;
  display: grid;
  gap: var(--space-3);
}
.steps li {
  counter-increment: schritt;
  background: #fff;
  border: 1px solid var(--line-paper);
  border-top: 3px solid var(--accent-deep);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: 0 10px 30px rgba(18, 33, 63, 0.05);
}
.steps li::before {
  content: "0" counter(schritt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--accent-deep);
  display: block;
  margin-bottom: var(--space-1);
}
.steps h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.steps p { margin: 0; font-size: 0.99rem; }

/* --- Objekt-Reise: Raum statt Listenlogik --- */
.journey {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, var(--paper), var(--ink-1) 60%);
  color: var(--text-hi);
}
.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 40% at 82% 8%, rgba(62, 124, 224, 0.06), transparent 60%);
}
.journey .wrap {
  position: relative;
  z-index: 1;
}
.journey-head {
  max-width: 52rem;
}
.journey-head p {
  max-width: 58rem;
}
.journey-shell {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}
.journey-stage,
.journey-steps,
.journey-step {
  min-width: 0;
}
.journey-stage {
  /* dunkle Medien-Insel im hellen Layout: Text-Overlays lokal wieder hell.
     color hier neu setzen, damit geerbte Overlay-Texte den hellen Wert bekommen
     (die .journey-Sektion hätte sonst schon dunkel aufgelöst und vererbt). */
  --text-hi: #f0f4fb;
  --text-lo: #c4d0e8;
  color: var(--text-hi);
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(16, 31, 56, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(127, 168, 238, 0.2), transparent 36%),
    var(--ink-0);
  box-shadow: 0 30px 90px rgba(15, 30, 56, 0.22);
  isolation: isolate;
}
.journey-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6, 14, 31, 0.22), transparent 26%, rgba(6, 14, 31, 0.68)),
    radial-gradient(circle at 72% 20%, rgba(127, 168, 238, 0.18), transparent 38%);
}
.journey-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  border: 1px solid rgba(242, 245, 250, 0.14);
  background: linear-gradient(100deg, transparent 0 44%, rgba(255, 255, 255, 0.13) 49%, transparent 56% 100%);
  opacity: 0;
  transform: translateX(-120%);
}
.anim .journey-stage::after {
  animation: journey-scan 1.15s var(--ease) both;
}
.anim .journey-stage.is-shifting::after {
  animation: journey-scan 0.72s var(--ease) both;
}
.journey-visuals {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
}
.journey-shot {
  position: absolute;
  inset: 0;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ink-2);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.45s var(--ease), transform 0.7s var(--ease);
}
.journey-shot.is-active { opacity: 1; transform: scale(1); }
.journey-shot img,
.journey-scrub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journey-shot img {
  filter: saturate(0.96) contrast(1.04);
}
.journey-scrub {
  display: none;
}
.anim .journey-stage {
  position: sticky;
  top: 4.8rem;
  z-index: 2;
  min-height: min(58vh, 30rem);
}
.anim .journey-visuals {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
}
.anim .journey-shot {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  opacity: 0;
  transform: scale(1.055) translateY(14px);
  transition: opacity 0.65s var(--ease), transform 1.1s var(--ease), filter 0.9s var(--ease);
}
.anim .journey-shot.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.anim .journey-shot img {
  height: 100%;
}
/* Der Canvas IST jetzt die durchgehende Bühne (Ankunftsfahrt + alle Räume,
   scroll-getrieben in main.js). Immer sichtbar; darunter liegt das
   exterior-Standbild gegen ein Blitzen vor dem ersten Frame.
   Reduced-motion/no-JS: Canvas aus (siehe @media reduce), Stills zeigen. */
.anim .journey-scrub {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
}
.journey-focus {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  top: var(--space-2);
  z-index: 9;
  display: grid;
  gap: 0.1rem;
  width: min(23rem, calc(100% - 2rem));
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(242, 245, 250, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 14, 31, 0.72);
  backdrop-filter: blur(10px);
}
.journey-focus span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.journey-focus strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.5vw, 1.45rem);
  line-height: 1.12;
}
.journey-focus small {
  color: var(--text-lo);
  line-height: 1.35;
}
.journey-map {
  position: absolute;
  left: var(--space-2);
  right: var(--space-2);
  bottom: var(--space-2);
  z-index: 9;
  height: 10rem;
  border: 1px solid rgba(242, 245, 250, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(6, 14, 31, 0.46), rgba(6, 14, 31, 0.8)),
    rgba(10, 23, 48, 0.72);
  backdrop-filter: blur(10px);
}
/* Objekt-Schnitt (Grundriss) auf der dunklen Bühne */
.floorplan {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fp-dim text {
  fill: rgba(255, 255, 255, 0.42);
  font-family: var(--font-text);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fp-slab {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.fp-core {
  stroke: rgba(127, 168, 238, 0.5);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}
.fp-room rect {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: fill 0.4s var(--ease), stroke 0.4s var(--ease);
}
.fp-no {
  fill: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  text-anchor: middle;
  transition: fill 0.4s var(--ease);
}
.fp-lb {
  fill: rgba(255, 255, 255, 0.38);
  font-family: var(--font-text);
  font-size: 5.4px;
  text-anchor: middle;
  transition: fill 0.4s var(--ease);
}
/* aktiver Raum: kobalt geflutet – .is-active setzt JS, no-JS-Default steht im HTML */
.fp-room.is-active rect {
  fill: rgba(62, 124, 224, 0.4);
  stroke: rgba(155, 190, 245, 0.95);
  stroke-width: 1.5;
}
.fp-room.is-active .fp-no { fill: #ffffff; }
.fp-room.is-active .fp-lb { fill: rgba(255, 255, 255, 0.85); }
.journey-steps {
  list-style: none;
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  counter-reset: room;
}
.journey-step {
  counter-increment: room;
  position: relative;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--line-dark);
}
.journey-step::before {
  content: "0" counter(room);
  position: absolute;
  right: 0;
  top: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 5rem);
  line-height: 1;
  color: rgba(127, 168, 238, 0.12);
  pointer-events: none;
}
.journey-count {
  margin: 0 0 var(--space-1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
}
.journey-toggle {
  all: unset;
  display: inline;
  font: inherit;
  color: inherit;
  cursor: inherit;
}
.journey-toggle:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 4px;
  border-radius: 4px;
}
.journey-step h3 {
  position: relative;
  z-index: 1;
  max-width: 20ch;
  font-size: clamp(1.25rem, 3.1vw, 1.65rem);
  margin-bottom: 0.5rem;
}
.journey-step p:not(.journey-count) {
  position: relative;
  z-index: 1;
  color: var(--text-lo);
  max-width: 44rem;
}
.journey-checks {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 0.35rem 1.5rem;
  margin: var(--space-2) 0 0;
  padding: 0;
}
.journey-checks li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-hi);
  font-size: 0.94rem;
}
.journey-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 2px;
  background: var(--accent-soft);
}
.journey-detail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.1rem;
  margin-top: var(--space-2);
  padding: 0.7rem var(--space-2);
  border-left: 2px solid var(--accent-soft);
  background: rgba(127, 168, 238, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.journey-detail span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
}
.journey-detail strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.35;
}
.journey-panel-media {
  display: none;
}
.journey-step.is-active {
  border-top-color: rgba(127, 168, 238, 0.7);
}
.journey-step.is-active h3 {
  color: var(--accent-deep);
}
.journey-more {
  margin: var(--space-3) 0 0;
  padding-top: var(--space-2);
  border-top: 1px solid var(--line-dark);
  color: var(--text-lo);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 38rem;
}
.journey-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--space-1);
  max-width: 36rem;
  margin: var(--space-4) auto 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-dark);
}
.journey-cta .journey-cta-lead {
  margin: 0;
  max-width: 30rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.38;
  color: var(--text-hi);
}
.journey-cta .btn {
  margin-top: 0.35rem;
  min-width: min(100%, 18rem);
}
.journey-cta-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-lo);
}

.mobile-actionbar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-actionbar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 96;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 0.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(16, 31, 56, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(15, 30, 56, 0.22);
    backdrop-filter: saturate(1.3) blur(14px);
    transform: translateY(calc(100% + 1.4rem + env(safe-area-inset-bottom)));
    transition: transform 0.36s var(--ease), opacity 0.24s var(--ease);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-actionbar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-actionbar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--text-hi);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-actionbar a:first-child {
    border: 1px solid var(--line-dark);
    background: #fff;
  }
  .mobile-actionbar a:last-child {
    background: var(--accent-deep);
    color: #fff;
  }

  .journey {
    padding-bottom: var(--space-5);
  }
  .journey-shell {
    gap: var(--space-3);
  }
  .journey-stage,
  .anim .journey-stage {
    display: none;
  }
  .journey-scrub,
  .anim .journey-scrub {
    display: none;
  }
  .journey-map {
    display: none;
  }
  .journey-focus {
    top: auto;
    bottom: var(--space-2);
    width: auto;
    padding: 0.65rem 0.75rem;
  }
  .journey-focus span {
    font-size: 0.62rem;
  }
  .journey-focus strong {
    font-size: 1.05rem;
  }
  .journey-focus small {
    font-size: 0.82rem;
  }
  .journey-steps {
    gap: 0;
    border-top: 1px solid var(--line-dark);
  }
  .journey-step {
    padding: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-dark);
    scroll-margin-top: 5rem;
  }
  .journey-step::before {
    display: none;
  }
  .journey-count {
    margin: var(--space-2) 0 0.2rem;
    font-size: 0.72rem;
  }
  .journey-step h3 {
    max-width: none;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.25;
  }
  .journey-step.is-open {
    padding-bottom: 0.25rem;
    border-bottom-color: rgba(31, 77, 153, 0.26);
  }
  .journey-step.is-open::after {
    content: "";
    position: absolute;
    left: -0.85rem;
    top: 3.2rem;
    bottom: 0.75rem;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(127, 168, 238, 0));
    transform-origin: top;
    animation: route-draw 0.42s var(--ease) both;
  }
  .journey-step.is-open h3 {
    color: var(--accent-deep);
  }
  .journey-toggle {
    position: relative;
    display: block;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.2rem 2.8rem var(--space-2) 0;
    cursor: pointer;
  }
  .journey-toggle::after {
    content: "+";
    position: absolute;
    right: 0.25rem;
    top: 0.05rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 33, 63, 0.2);
    border-radius: 50%;
    color: var(--accent-deep);
    font-family: var(--font-text);
    font-size: 1.15rem;
    line-height: 1;
  }
  .journey-step.is-open .journey-toggle::after {
    content: "−";
  }
  .journey-step-body {
    padding: 0 0 var(--space-2);
    animation: panel-rise 0.34s var(--ease) both;
  }
  .journey-panel-media {
    display: block;
    margin: 0 0 var(--space-2);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(18, 33, 63, 0.12);
    background: var(--ink-1);
    box-shadow: 0 14px 36px rgba(15, 30, 56, 0.14);
  }
  .journey-panel-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .journey-step p:not(.journey-count) {
    font-size: 0.94rem;
    line-height: 1.52;
  }
  .journey-checks {
    gap: 0.36rem;
    margin-top: var(--space-1);
  }
  .journey-checks li {
    font-size: 0.86rem;
  }
  .journey-detail {
    display: none;
  }
  .journey-more {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    font-size: 0.92rem;
    line-height: 1.58;
  }
  .journey-cta {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
  }
}

@keyframes panel-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes route-draw {
  from { opacity: 0; transform: scaleY(0.25); }
  to { opacity: 1; transform: scaleY(1); }
}
/* Payoff-Step (Terrasse) schließt mit dem CTA UNTEN ab statt mittig zu schweben:
   etwas mehr Verweildauer + margin-top:auto drückt den CTA an die Unterkante,
   der Terrassen-Text ruht darüber. Nur Desktop; mobil folgt der CTA ohnehin unten. */

/* --- Gründer: Gesicht + Herkunft (Makler & Gastro), kein Experiment --- */
.founder {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.founder-photo {
  margin: 0;
}
.founder-photo picture {
  display: block;
}
.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(15, 30, 56, 0.18);
}
.founder-photo figcaption {
  margin-top: var(--space-2);
  display: grid;
  gap: 0.05rem;
}
.founder-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.founder-photo figcaption span {
  color: var(--text-lo);
  font-size: 0.9rem;
}
.founder-copy > p {
  margin-top: var(--space-2);
  max-width: 46rem;
  color: var(--text-lo);
}
.founder-signals {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: var(--space-2) 0 0;
  padding: 0;
  color: var(--text-hi);
}
.founder-signals li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.founder-signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.72rem;
  height: 2px;
  background: var(--accent);
}
.founder-quote {
  margin: var(--space-3) 0 0;
  padding-left: var(--space-2);
  border-left: 2px solid var(--accent-soft);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.4;
  color: var(--text-hi);
}
@media (min-width: 768px) {
  .founder {
    grid-template-columns: 0.82fr 1.18fr;
    gap: var(--space-5);
    align-items: center;
  }
}

/* --- Für wen: redaktionelle Zeilen, keine Karten --- */
.rows { border-top: 1px solid var(--line-dark); }
.row {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line-dark);
}
.row h3 { font-size: var(--fs-h3); margin: 0; }
.row .row-tag {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.row p { color: var(--text-lo); margin: 0; max-width: 58ch; }

/* --- Zusagen (ehrlicher Proof-Slot) --- */
.pledges {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  counter-reset: zusage;
  display: grid;
  gap: var(--space-2);
}
.pledges li {
  counter-increment: zusage;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line-paper);
}
.pledges li::before {
  content: counter(zusage);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-deep);
  min-width: 1.5ch;
}
.pledges strong { display: block; font-size: 1.08rem; color: var(--text-ink); }
.pledges span { color: var(--text-ink-lo); font-size: 0.98rem; }

.proof-grid {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}
.proof-stack {
  display: grid;
  gap: var(--space-3);
}

.repair-flow {
  display: grid;
  gap: 0.55rem;
  padding: var(--space-2);
  border: 1px solid rgba(242, 245, 250, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 17, 40, 0.28);
}
.repair-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.62rem 0.7rem;
  border-radius: 6px;
  background: rgba(245, 248, 252, 0.08);
  color: #f2f6fc;
  font-weight: 700;
  line-height: 1.2;
}
.repair-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  bottom: -0.55rem;
  width: 2px;
  height: 0.55rem;
  background: var(--accent-soft);
}

.sample-sheet {
  border: 1px solid rgba(242, 245, 250, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.16), rgba(245, 248, 252, 0.1));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: var(--space-3);
}
.sample-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.sample-sheet h3 {
  margin-bottom: var(--space-2);
  color: #f2f6fc;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
}
.sample-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 var(--space-2);
  border: 1px solid rgba(242, 245, 250, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.sample-meta div {
  padding: 0.75rem;
  background: rgba(8, 17, 40, 0.4);
}
.sample-meta div + div { border-left: 1px solid rgba(242, 245, 250, 0.14); }
.sample-meta dt {
  margin: 0 0 0.12rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9db9ef;
}
.sample-meta dd {
  margin: 0;
  color: #f2f6fc;
  font-weight: 600;
  line-height: 1.25;
}
.sample-rows {
  display: grid;
  border-top: 1px solid rgba(242, 245, 250, 0.14);
}
.sample-rows div {
  display: grid;
  gap: 0.15rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(242, 245, 250, 0.18);
}
.sample-rows span {
  font-size: 0.78rem;
  color: #9db9ef;
  font-weight: 700;
  text-transform: uppercase;
}
.sample-rows strong {
  color: #f2f6fc;
  font-size: 0.98rem;
  line-height: 1.35;
}
.sample-sheet > p:last-child {
  margin: var(--space-2) 0 0;
  color: #c8d3ea;
  font-size: 0.9rem;
}

.honest {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border: 1px dashed rgba(18, 33, 63, 0.3);
  border-radius: var(--radius);
  max-width: 46rem;
}
.honest p { margin: 0; font-size: 0.98rem; }

/* Zusagen als dunkle Anker-Insel: bricht die helle Text-Passage (Zusagen→FAQ→
   Kontakt) und gibt den Zusagen Gewicht. Textur = stark abgedunkelter Objekt-
   Frame (Marken-eigen, kein Stock). Text bleibt AA-lesbar auf dunklem Grund. */
.pledge-stage {
  position: relative;
  overflow: clip;
  isolation: isolate;
  color: #eaf0fb;
  background: #0a1730;
}
.pledge-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 17, 40, 0.82), rgba(8, 17, 40, 0.93)),
    radial-gradient(120% 90% at 84% -10%, rgba(62, 124, 224, 0.18), transparent 55%),
    url("../img/generated/domclean-journey-corridor.jpg") center / cover no-repeat;
}
.pledge-stage > .wrap { position: relative; z-index: 1; }
.pledge-stage .kicker { color: var(--accent-soft); }
.pledge-stage h2 { color: #f2f6fc; }
.pledge-stage .section-head p { color: #c8d3ea; }
.pledge-stage .pledges li { border-bottom-color: rgba(242, 245, 250, 0.14); }
.pledge-stage .pledges li::before { color: var(--accent-soft); }
.pledge-stage .pledges strong { color: #f2f6fc; }
.pledge-stage .pledges span { color: #c8d3ea; }
.pledge-stage .honest { border-color: rgba(242, 245, 250, 0.24); }
.pledge-stage .honest p { color: #c8d3ea; }

/* --- FAQ --- */
.faq-list { max-width: 46rem; }
.faq-list details {
  border-bottom: 1px solid var(--line-paper);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: 1.1rem 0.25rem;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  content: "+" / ""; /* dekorativ: aus der Vorlesereihenfolge nehmen (Fallback darüber) */
  font-size: 1.4rem;
  color: var(--accent-deep);
  flex: none;
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 0.25rem 1.2rem;
  margin: 0;
  max-width: 60ch;
}

/* --- Kontakt --- */
.contact { background: var(--ink-2); }
.contact .wrap {
  display: grid;
  gap: var(--space-4);
}
.contact-intro {
  display: grid;
  gap: var(--space-3);
}
.contact .lede { color: var(--text-lo); max-width: 40ch; }
/* Kontakt: statt dekorativem Stock-Motiv eine knappe Zusicherungs-Liste.
   Sie balanciert die Spalte mit dem Formular und gibt Vertrauen genau am
   Absprungpunkt — kein Bild, das die Spaltenhöhe eigenständig treibt. */
.contact-assurances {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.contact-assurances li {
  position: relative;
  padding-left: 1.4rem;
  max-width: 46ch;
  color: var(--text-lo);
  line-height: 1.5;
}
.contact-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.8rem;
  height: 2px;
  background: var(--accent);
}
.contact-assurances strong {
  color: var(--text-hi);
  font-weight: 600;
}
.visit-card {
  display: grid;
  gap: var(--space-1);
  margin-top: var(--space-3);
  padding: var(--space-2);
  max-width: 31rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}
.visit-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--text-hi);
}
.visit-card ol {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.visit-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  color: var(--text-lo);
  font-size: 0.94rem;
}
.visit-card li span {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}
/* Ansprechpartner mit Gesicht am Absprungpunkt (verdient seinen Platz statt Deko) */
.contact-person {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-3) 0 0;
  padding: 0.85rem var(--space-2) 0.85rem 0.85rem;
  max-width: 30rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(127, 168, 238, 0.07);
}
.contact-person picture { flex: none; display: block; }
.contact-person img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  display: block;
}
.contact-person figcaption {
  margin: 0;
  display: grid;
  gap: 0.12rem;
}
.contact-person strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-hi);
}
.contact-person span {
  color: var(--text-lo);
  font-size: 0.9rem;
  line-height: 1.35;
}
.contact-person .contact-tel {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-deep);
  text-decoration: none;
}
.contact-person .contact-tel:hover { text-decoration: underline; }

.form {
  display: grid;
  gap: var(--space-2);
}
.object-check {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: var(--space-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}
.object-check legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--text-hi);
}
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text-hi); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-field);
  background: var(--ink-1);
  color: var(--text-hi);
  font: inherit;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(69, 88, 122, 0.65); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
  border-color: var(--accent);
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}
.form-note { font-size: var(--fs-small); color: var(--text-lo); margin: 0; }
.form-done {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: rgba(62, 124, 224, 0.1);
}
.form-done p { margin: 0; }
.form-done .demo-note { color: var(--text-lo); font-size: var(--fs-small); margin-top: 0.5rem; }
/* Honeypot: fuer Menschen unsichtbar, aber im DOM/fuer Bots vorhanden (kein display:none,
   damit Bots es ausfuellen). Standard visually-hidden, loest keinen H-Scroll aus. */
.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* Ruhiger Fehler-Fallback (nur sichtbar, wenn der Versand scheitert) — kein Alarm-Rot. */
.form-fail {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--paper);
}
.form-fail p { margin: 0; color: var(--text-hi); }
.form-fail a { color: var(--accent-deep); }
[hidden] { display: none !important; }

/* --- Footer --- */
.site-foot {
  /* dunkler Anker im hellen Layout: Text-/Linien-Tokens lokal wieder hell */
  --text-hi: #eef2f8;
  --text-lo: #aebbd3;
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #7fa8ee;
  background: var(--ink-0);
  padding: var(--space-4) 0 var(--space-3);
  font-size: var(--fs-small);
  color: var(--text-lo);
}
.site-foot .foot-grid {
  display: grid;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-dark);
}
.site-foot .foot-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.site-foot .foot-brand img { border-radius: 50%; flex: none; }
.site-foot .foot-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-hi);
  display: block;
}
.site-foot nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.site-foot a { color: var(--text-lo); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.site-foot a:hover { color: var(--text-hi); }
.site-foot .foot-meta {
  padding-top: var(--space-2);
  display: grid;
  gap: 0.4rem;
}
.site-foot .foot-meta p { margin: 0; }
.site-foot .foot-credit {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.8;
}
.site-foot .foot-credit a {
  display: inline;
  min-height: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Rechtsseiten --- */
.legal { padding: var(--space-4) 0 var(--space-5); }
.legal .wrap { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal h2 { font-size: 1.35rem; margin-top: var(--space-4); }
.legal p, .legal li { color: var(--text-lo); }
.legal .placeholder {
  display: inline-block;
  padding: 0 0.35rem;
  border-radius: 4px;
  background: rgba(47, 100, 200, 0.14);
  color: var(--accent-deep);
  font-weight: 600;
}

/* ============================================================
   Motion — nur additiv unter html.js.anim
   (gesetzt per JS ausschließlich bei prefers-reduced-motion: no-preference)
   ============================================================ */
.anim .rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}
.anim .rv.in {
  opacity: 1;
  transform: none;
}
@keyframes premium-sweep {
  from { transform: translateX(-120%); opacity: 0; }
  25% { opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}
@keyframes journey-scan {
  from { transform: translateX(-120%); opacity: 0; }
  28% { opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}
@keyframes route-flow {
  to { stroke-dashoffset: -36; }
}
@supports (animation-timeline: view()) {
  .anim .motif img,
  .anim .team-visual img {
    animation: media-depth linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
  @keyframes media-depth {
    from { transform: scale(1.08) translateY(18px); }
    to { transform: scale(1.02) translateY(-10px); }
  }
}
@media (prefers-reduced-motion: reduce) {
  /* Doppelte Sicherung zum JS-Gate: alles sofort sichtbar, nichts bewegt sich */
  .anim .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  .blade, .pane-hint, .pane-video, .journey-scrub { display: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   Breakpoints: 320 = Basis (oben) · 390 · 768 · 1440
   ============================================================ */
@media (min-width: 390px) {
  .hero { padding-top: var(--space-5); }
  .form-foot { gap: var(--space-3); }
}

@media (min-width: 768px) {
  .hero .wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-5);
  }
  .pane { aspect-ratio: 4 / 4.4; }
  .stage {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: var(--space-5);
  }
  .stage:nth-of-type(even) .stage-copy { order: 2; }
  .stage:nth-of-type(even) .motif { order: 1; }
  .motif { min-height: 340px; align-self: stretch; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .row { grid-template-columns: 14rem 1fr; align-items: start; }
  .proof-grid { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr); }
  .pledges { grid-template-columns: repeat(2, 1fr); gap: var(--space-2) var(--space-4); }
  .repair-flow { grid-template-columns: repeat(3, 1fr); }
  .repair-flow span:not(:last-child)::after {
    left: auto;
    right: -0.55rem;
    top: 50%;
    bottom: auto;
    width: 0.55rem;
    height: 2px;
    transform: translateY(-50%);
  }
  .contact .wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .form .field-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .site-foot .foot-grid { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; gap: 0.25rem; }
  .brand small { display: inline; }
}

@media (min-width: 1024px) {
  .hero { padding: 3.75rem 0 0.75rem; }
  .journey-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.82fr);
    gap: var(--space-5);
  }
  .journey-stage {
    min-height: 34rem;
  }
  .anim .journey-stage {
    top: 5.25rem;
    /* Bewusst bildschirmhoch (immersiv): min-height schlägt die max-height, die Bühne
       füllt den gepinnten Viewport. Die Schritte koppeln an DIESELBE Höhe (s. u.), damit
       Schritt-Mittelpunkt = Bild-Station (Sync) UND nur ein Panel pro Screen (kein Vorlauf). */
    min-height: calc(100vh - 7rem);
    max-height: 48rem;
  }
  .journey-steps {
    gap: 0;
  }
  .journey-step {
    /* Zügiges Durchschreiten (kein Vollbild pro Station). Ein leichtes Vorlaufen des
       nächsten Stationstexts ist der bewusste Preis fürs Tempo; der CTA ist dafür aus der
       scrollenden Spalte RAUS (Abschluss-Band unter der Tour), sodass er sauber unten
       schließt statt an der gepinnten Bühne vorbeizuscrollen. Regler: kleiner = zügiger. */
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3) 0;
  }
  .journey-checks {
    grid-template-columns: 1fr 1fr; /* Checks zweispaltig: spart vertikale Höhe */
  }
  .journey-detail {
    max-width: 34rem;
  }
}

@media (min-width: 1440px) {
  :root { --wrap: 82rem; }
  .hero .wrap { gap: 8rem; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .journey-shell { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr); }
}
