/* ══════════════════════════════════════════════════════════════
   GSCHAFFT V5 — Editorial Edition

   Ein Stylesheet für alle Seiten. Ersetzt base.css + v3.css.

   Grundgedanke: ruhig, präzise, hochwertig. Große Typografie,
   feine Haarlinien statt Glas und Leuchtkugeln, ein Wechsel aus
   Ruß- und Papierflächen. CI bleibt: Sora + Manrope, Ruß #14110E,
   Papier #F7F1E8, Orange #E85D1A als Signal – nie als Deko.

   Farben laufen ausschließlich über Tokens. Jede Fläche setzt ihren
   Ton (.tone-dark / .tone-light), alle Bausteine darin passen sich an.
   ══════════════════════════════════════════════════════════════ */

/* ── 1 · TOKENS ──────────────────────────────────────────────── */
:root {
  /* CI-Grundwerte */
  --russ: #14110E;
  --russ-1: #1A1612;
  --russ-2: #1E1913;
  --russ-3: #2A241C;
  --paper: #F7F1E8;
  --paper-2: #EFE7DA;
  --paper-card: #FFFCF7;
  --orange: #E85D1A;
  --orange-deep: #C64C10;
  --orange-deeper: #A9420C;
  --orange-light: #FF7A38;

  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --gutter: clamp(20px, 4.2vw, 56px);
  --container: 1320px;
  --section-y: clamp(5rem, 10vw, 9rem);
  --header-h: 84px;
  --callbar-h: 0px;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;

  /* Bewegung: lange, weich auslaufende Kurven */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);        /* expo out */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);   /* quint out */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 1.1s;

  color-scheme: dark;
}

/* Ton: Ruß (Standard) */
:root,
.tone-dark {
  --bg: var(--russ);
  --bg-2: var(--russ-1);
  --card: var(--russ-2);
  --card-2: var(--russ-3);
  --fg: #F7F1E8;
  --fg-2: #C3B7A8;
  --fg-3: #ADA08E;
  --line: rgba(247, 241, 232, 0.10);
  --line-2: rgba(247, 241, 232, 0.2);
  --accent: #FF7A38;               /* oranger Text auf dunkel: 7,2:1 */
  --field: rgba(247, 241, 232, 0.04);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

/* Ton: Papier */
.tone-light {
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --card: var(--paper-card);
  --card-2: var(--paper-2);
  --fg: #14110E;
  --fg-2: #4A4138;                 /* 8,9:1 */
  --fg-3: #6B6054;                 /* 5,5:1 */
  --line: rgba(20, 17, 14, 0.11);
  --line-2: rgba(20, 17, 14, 0.22);
  --accent: #A9420C;               /* oranger Text auf Papier: 5,4:1 */
  --field: #FFFCF7;
  --shadow: 0 30px 70px -34px rgba(60, 40, 20, 0.35);
  color-scheme: light;
}

.tone-dark, .tone-light { background-color: var(--bg); color: var(--fg); }

/* ── 2 · RESET & BASIS ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  background: var(--russ);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  padding-bottom: var(--callbar-h);
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; }
main { position: relative; display: block; }
::selection { background: var(--orange-deep); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
address { font-style: normal; }
mark { background: rgba(232, 93, 26, 0.22); color: inherit; padding: 0 0.2em; border-radius: 3px; }

/* Feines Papierkorn über allem – nimmt digitalen Flächen die Sterilität */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container-narrow { width: min(860px, 100% - 2 * var(--gutter)); }

/* ── 3 · TYPOGRAFIE ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  overflow-wrap: break-word;
  hyphens: manual;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 5.4rem); letter-spacing: -0.045em; line-height: 0.98; font-weight: 700; }
h2 { font-size: clamp(2.05rem, 4.1vw, 3.6rem); letter-spacing: -0.04em; line-height: 1.02; }
h3 { font-size: clamp(1.12rem, 1.4vw, 1.3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
p { text-wrap: pretty; }

/* Zweiton-Überschrift: der zweite Teil tritt zurück, statt zu schreien */
.highlight { color: var(--fg-3); }
h1 .highlight { color: var(--fg-3); }
.dot { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1.4rem;
}
.eyebrow-line {
  display: inline-block; flex: none;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
}
.eyebrow-light { color: var(--fg-3); }
.eyebrow-check { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--orange-deep); color: #fff; }
.eyebrow-check svg { width: 11px; height: 11px; }

.section-head { max-width: 780px; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }
.section-sub, .hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 60ch;
}
.section-head.is-center .section-sub { margin-inline: auto; }
.section-sub a, .hero-sub a, .disclosure-body a, .ratgeber a, .legal a, .split-text p a, .owner-text a:not(.btn) {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: text-decoration-color 0.3s, color 0.3s;
}
.section-sub a:hover, .hero-sub a:hover, .disclosure-body a:hover, .ratgeber a:hover, .legal a:hover, .split-text p a:hover { color: var(--accent); }

/* Kopfzeile eines Abschnitts in zwei Spalten: links Titel, rechts Einordnung */
.head-split {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 6rem); align-items: end;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}
.head-split .section-head { margin-bottom: 0; }
.head-split-aside { color: var(--fg-2); font-size: 1.06rem; max-width: 44ch; padding-bottom: 0.4rem; }
.head-split-aside .text-link { margin-top: 1.2rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.95rem; color: var(--fg);
  position: relative; padding-bottom: 4px;
}
.text-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform-origin: right; transform: scaleX(1);
  transition: transform 0.7s var(--ease);
}
.text-link:hover::after { transform-origin: left; animation: line-redraw 0.9s var(--ease); }
.text-link svg { width: 16px; height: 16px; transition: transform 0.5s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
@keyframes line-redraw { 0% { transform: scaleX(1); transform-origin: right; } 45% { transform: scaleX(0); transform-origin: right; } 46% { transform-origin: left; } 100% { transform: scaleX(1); transform-origin: left; } }

/* ── 4 · ABSCHNITTE ──────────────────────────────────────────── */
.section { position: relative; padding-block: var(--section-y); }
.section + .section.tone-light,
.section + .section.tone-dark { /* Tonwechsel trennt – keine zusätzliche Linie nötig */ }
.tone-light + .tone-light:not([style*="padding-top:0"]), .tone-dark + .tone-dark:not([style*="padding-top:0"]) { border-top: 1px solid var(--line); }

/* ── 5 · KNÖPFE ──────────────────────────────────────────────── */
.btn {
  --btn-bg: transparent; --btn-fg: var(--fg); --btn-bd: var(--line-2);
  --btn-bg-hover: var(--fg); --btn-fg-hover: var(--bg);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  min-height: 54px; padding: 0 1.6rem;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; letter-spacing: -0.005em;
  line-height: 1.1; white-space: nowrap;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--btn-bd); border-radius: var(--r-sm);
  cursor: pointer;
  transition: color 0.6s var(--ease), border-color 0.6s var(--ease), background-color 0.6s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
/* Füllung, die beim Überfahren von unten aufsteigt */
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1;
  background: var(--btn-bg-hover);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  transform: translateY(102%);
  transition: transform 0.7s var(--ease), border-radius 0.7s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); border-radius: 0; }
.btn:hover, .btn:focus-visible { color: var(--btn-fg-hover); border-color: var(--btn-bg-hover); }
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.6s var(--ease); }
.btn:hover svg:last-child:not(:first-child) { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  --btn-bg: var(--orange-deep); --btn-fg: #fff; --btn-bd: var(--orange-deep);
  --btn-bg-hover: var(--orange-deeper); --btn-fg-hover: #fff;
}
.btn-ghost, .btn-glass { --btn-bd: var(--line-2); }
.btn-whatsapp { --btn-bd: var(--line-2); }
.btn-whatsapp svg { color: #25D366; transition: color 0.6s var(--ease); }
.btn-whatsapp:hover svg { color: inherit; }
.btn-sm { min-height: 44px; padding: 0 1.1rem; font-size: 0.9rem; }
.btn-lg { min-height: 58px; padding: 0 1.9rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── 6 · KOPFZEILE ───────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--header-h);
  color: #F7F1E8;
  view-transition-name: site-header;
  transition: transform 0.7s var(--ease), background-color 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(20, 17, 14, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.site-header.stuck { --header-h: 70px; border-bottom-color: rgba(247, 241, 232, 0.08); }
.site-header.stuck::before { opacity: 1; }
.site-header.is-hidden { transform: translateY(-101%); }
.nav {
  height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; flex: 1 1 0; min-width: 0; }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  letter-spacing: -0.045em; line-height: 1; color: #F7F1E8;
}
.logo-text span { color: var(--orange); }
.logo-mark { display: none; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: none; }
.nav-links > li { position: relative; }
.nav-links a, .nav-sub-trigger {
  position: relative; display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.85rem; min-height: 44px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0;
  color: rgba(247, 241, 232, 0.78);
  background: none; border: 0; cursor: pointer;
  transition: color 0.4s var(--ease);
}
.nav-links > li > a::after, .nav-sub-trigger::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.45rem; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.nav-links > li > a:hover, .nav-sub-trigger:hover, .nav-links a.active, .has-sub.open .nav-sub-trigger { color: #F7F1E8; }
.nav-links > li > a:hover::after, .nav-sub-trigger:hover::after, .nav-links a.active::after, .nav-links a[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-sub-trigger svg { width: 13px; height: 13px; transition: transform 0.5s var(--ease); }
.has-sub:hover .nav-sub-trigger svg, .has-sub.open .nav-sub-trigger svg { transform: rotate(180deg); }

.nav-sub {
  position: absolute; top: calc(100% + 0.7rem); left: 50%;
  width: 300px; padding: 0.55rem;
  background: #1A1612;
  border: 1px solid rgba(247, 241, 232, 0.1); border-radius: var(--r-md);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease), visibility 0s linear 0.35s;
}
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -0.8rem; height: 0.8rem; }
.has-sub:hover .nav-sub, .has-sub:focus-within .nav-sub, .has-sub.open .nav-sub {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease), visibility 0s;
}
.nav-sub a {
  display: flex; width: 100%; padding: 0.65rem 0.8rem; min-height: 42px;
  border-radius: var(--r-xs); font-size: 0.92rem; font-weight: 500;
  color: rgba(247, 241, 232, 0.78);
  transition: background-color 0.3s, color 0.3s, padding 0.5s var(--ease);
}
.nav-sub a:hover, .nav-sub a:focus-visible { background: rgba(247, 241, 232, 0.06); color: #F7F1E8; padding-left: 1.05rem; }
.nav-sub a[aria-current="page"] { color: var(--orange-light); }
.nav-sub-sep { margin-top: 0.4rem; padding-top: 0.4rem; border-top: 1px solid rgba(247, 241, 232, 0.08); }

.nav-cta { display: flex; align-items: center; justify-content: flex-end; gap: 1.1rem; flex: 1 1 0; min-width: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  font-size: 0.92rem; font-weight: 600; color: rgba(247, 241, 232, 0.85);
  transition: color 0.3s;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--orange-light); }
.nav-phone:hover { color: #fff; }
.nav-cta .btn { --btn-bg-hover: #F7F1E8; --btn-fg-hover: #14110E; }

.nav-toggle {
  display: none; position: relative; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(247, 241, 232, 0.22); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: #F7F1E8; border-radius: 2px; transition: transform 0.6s var(--ease), opacity 0.3s; }
.nav-toggle span:nth-child(2) { width: 12px; margin-left: 6px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890;
  background: var(--russ); color: #F7F1E8;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  overflow-y: auto; overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s var(--ease), visibility 0s linear 0.9s;
  visibility: hidden;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path 0.9s var(--ease), visibility 0s; }
.mobile-menu ul { display: grid; gap: 0; max-width: 560px; margin-inline: auto; }
.mobile-menu li { border-bottom: 1px solid rgba(247, 241, 232, 0.08); overflow: hidden; }
.mobile-menu li:last-child { border: 0; padding-top: 1.6rem; }
.mobile-menu a:not(.btn) {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 0; font-family: var(--font-display); font-weight: 600;
  font-size: 1.28rem; letter-spacing: -0.02em; color: #F7F1E8;
  transform: translateY(100%); transition: transform 0.9s var(--ease), color 0.3s;
}
.mobile-menu a[aria-current="page"] { color: var(--orange-light); }
.mobile-menu.open a:not(.btn) { transform: none; }
.mobile-menu a.btn { width: 100%; opacity: 0; transition: opacity 0.6s var(--ease) 0.4s, color 0.6s var(--ease); }
.mobile-menu.open a.btn { opacity: 1; }
.mobile-menu li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu li:nth-child(2) a { transition-delay: 0.11s; }
.mobile-menu li:nth-child(3) a { transition-delay: 0.14s; }
.mobile-menu li:nth-child(4) a { transition-delay: 0.17s; }
.mobile-menu li:nth-child(5) a { transition-delay: 0.2s; }
.mobile-menu li:nth-child(6) a { transition-delay: 0.23s; }
.mobile-menu li:nth-child(7) a { transition-delay: 0.26s; }
.mobile-menu li:nth-child(8) a { transition-delay: 0.29s; }
.mobile-menu li:nth-child(9) a { transition-delay: 0.32s; }
.mobile-menu li:nth-child(10) a { transition-delay: 0.35s; }
.mobile-menu li:nth-child(11) a { transition-delay: 0.38s; }
.mobile-menu li:nth-child(12) a { transition-delay: 0.41s; }
body.menu-open { overflow: hidden; }
body.menu-open .site-test-notice { display: none; }

/* Scroll-Fortschritt: eine Haarlinie, kein Balken */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; z-index: 950; height: 2px;
  background: var(--orange); transform-origin: left; transform: scaleX(var(--scroll, 0));
  pointer-events: none;
}

/* ── 7 · STARTSEITE: TITEL ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(2rem, 5vh, 4rem)) 0 clamp(3rem, 6vh, 5rem);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  /* Ein einziger, sehr leiser Lichtschein hinter dem Foto */
  content: ""; position: absolute; right: -10%; top: 10%; width: 60vw; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(232, 93, 26, 0.12), transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(2.5rem, 6vw, 7rem); align-items: center;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 6.6rem);
  line-height: 0.94; letter-spacing: -0.055em; font-weight: 700;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.hero-title .line { display: block; }
.hero-lead { font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.6; color: var(--fg-2); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: clamp(2rem, 3.5vw, 2.8rem); }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
  margin-top: clamp(2.4rem, 4.5vw, 3.6rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem; font-weight: 600; color: var(--fg-2);
}
.hero-facts li { display: inline-flex; align-items: center; gap: 0.6rem; }
.hero-facts li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.hero-media { position: relative; margin: 0; }
.hero-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; max-height: calc(100svh - var(--header-h) - 7rem);
  width: 100%;
  border-radius: var(--r-lg);
  background: var(--card);
}
.hero-frame img {
  position: absolute; left: 0; top: -6%; width: 100%; height: 112%;
  object-fit: cover; object-position: 50% 30%;
}
.hero-caption {
  position: absolute; left: clamp(-2.5rem, -3vw, -1rem); bottom: 2.2rem;
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.95rem 1.2rem 0.95rem 1rem;
  background: rgba(20, 17, 14, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(247, 241, 232, 0.12); border-radius: var(--r-md);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6);
  font-size: 0.84rem; line-height: 1.4; color: var(--fg-2);
  max-width: 290px;
}
.hero-caption strong { display: block; color: var(--fg); font-size: 0.95rem; font-weight: 700; }
.hero-caption-mark {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange-deep); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.04em;
}
.hero-caption-mark .dot { color: var(--russ); }
.hero-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-3);
}
.hero-cue-line { position: relative; display: block; width: 1px; height: 46px; background: var(--line-2); overflow: hidden; }
.hero-cue-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 100%;
  background: var(--fg); animation: cue 2.4s var(--ease-in-out) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ── 8 · UNTERSEITEN: KOPF ───────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)) 0 clamp(4rem, 8vw, 7rem);
}
.page-hero::before {
  content: ""; position: absolute; right: -15%; top: -20%; width: 55vw; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(232, 93, 26, 0.1), transparent);
  pointer-events: none;
}
.hero-glow { display: none; }
.page-hero .section-head { margin-bottom: 0; max-width: 900px; }
.page-hero h1 { max-width: 16ch; }
.page-hero .container-narrow h1, .page-hero--plain h1 { max-width: none; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.page-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.page-hero-grid h1 { font-size: clamp(2.4rem, 4.6vw, 4.4rem); }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-kicker { margin-top: 1.4rem; font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); }
.hero-kicker span { color: var(--orange) !important; }
.page-hero .hero-actions { margin-top: 2.4rem; }
.hero-trust {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem 1.6rem;
  margin-top: clamp(2.4rem, 4vw, 3.2rem); padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: 0.86rem; color: var(--fg-3); line-height: 1.4;
}
.hero-trust li { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.03em; color: var(--fg); }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.2rem 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3);
}
.breadcrumb a { color: var(--fg-2); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { color: var(--line-2); font-size: 0; }
.breadcrumb .sep::before { content: ""; display: inline-block; width: 14px; height: 1px; background: var(--fg-3); opacity: 0.5; vertical-align: middle; font-size: 0.76rem; }
.breadcrumb [aria-current="page"], .breadcrumb > span:last-child { color: var(--fg-3); }

.page-hero-media, .split-media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; border-radius: var(--r-lg); background: var(--card);
}
.page-hero-media > img:not(.media-photo) { position: absolute; left: 0; top: -6%; width: 100%; height: 112%; object-fit: cover; }
.media-photo { position: absolute; left: 0; top: -6%; width: 100%; height: 112%; object-fit: cover; z-index: 1; }
.img-placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 0.8rem;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(232, 93, 26, 0.12), transparent 60%),
    var(--card);
  color: var(--fg-3); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.img-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.5;
  -webkit-mask-image: radial-gradient(closest-side, #000, transparent); mask-image: radial-gradient(closest-side, #000, transparent);
}
.img-placeholder svg { position: relative; width: 44px; height: 44px; color: var(--orange-light); stroke-width: 1.2; }
.img-placeholder span { display: none; }

.page-hero--plain { padding-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ── 9 · LAUFBAND ────────────────────────────────────────────── */
.marquee {
  position: relative; overflow: hidden;
  padding: 1.35rem 0;
  border-block: 1px solid var(--line);
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 60s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500; letter-spacing: -0.02em; white-space: nowrap; color: var(--fg-2);
}
.marquee-track .marquee-dot { font-size: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 10 · LEISTUNGS-KACHELN (Start) ──────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(0.8rem, 1.4vw, 1.25rem); }
.tile {
  --tile-fg: #F7F1E8;
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 3 / 4.1; padding: clamp(1.2rem, 2vw, 1.7rem);
  border-radius: var(--r-lg);
  background: var(--russ-2); color: var(--tile-fg);
}
.tile > img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease), filter 1.2s var(--ease);
}
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.45) 0%, rgba(20, 17, 14, 0) 24%, rgba(20, 17, 14, 0.12) 42%, rgba(20, 17, 14, 0.6) 66%, rgba(20, 17, 14, 0.94) 100%);
  transition: opacity 0.8s var(--ease);
}
.tile--graphic {
  background:
    radial-gradient(90% 70% at 85% 10%, rgba(232, 93, 26, 0.16), transparent 60%),
    linear-gradient(180deg, #221C16, #17130F);
}
.tile--graphic::before {
  background-image: linear-gradient(rgba(247, 241, 232, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 241, 232, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%); mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.tile-num {
  position: absolute; top: clamp(1.2rem, 2vw, 1.6rem); left: clamp(1.2rem, 2vw, 1.7rem);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; color: rgba(247, 241, 232, 0.75);
}
.tile-icon {
  position: absolute; top: clamp(1rem, 1.8vw, 1.4rem); right: clamp(1rem, 1.8vw, 1.4rem);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(247, 241, 232, 0.25);
  background: rgba(20, 17, 14, 0.25);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #F7F1E8;
  transition: background-color 0.6s var(--ease), border-color 0.6s var(--ease), transform 0.8s var(--ease);
}
.tile-icon svg { width: 19px; height: 19px; }
.tile--graphic .tile-art {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: 38%; aspect-ratio: 1; color: rgba(247, 241, 232, 0.16);
  transition: transform 1.4s var(--ease), color 1s var(--ease);
}
.tile-art svg { width: 100%; height: 100%; stroke-width: 0.9; }
.tile h3 { color: #F7F1E8; font-size: clamp(1.2rem, 1.55vw, 1.45rem); line-height: 1.15; min-height: 2.3em; display: flex; align-items: flex-end; }
.tile-price {
  display: block; margin-top: 0.9rem; padding-top: 0.9rem;
  border-top: 1px solid rgba(247, 241, 232, 0.18);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; color: #FF7A38;
}
.tile-go {
  display: flex; align-items: center; gap: 0.45rem; margin-top: 0.35rem;
  font-size: 0.84rem; font-weight: 600; color: rgba(247, 241, 232, 0.72);
  transition: color 0.4s;
}
.tile-go svg { width: 14px; height: 14px; transition: transform 0.6s var(--ease); }
.tile:hover > img { transform: scale(1.08); }
.tile:hover .tile-icon { background: var(--orange-deep); border-color: var(--orange-deep); transform: rotate(-8deg); }
.tile:hover .tile-go { color: #F7F1E8; }
.tile:hover .tile-go svg { transform: translateX(5px); }
.tile:hover .tile-art { transform: translate(-50%, -54%) scale(1.06); color: rgba(255, 122, 56, 0.4); }

/* ── 11 · ABLAUF · KENNZAHLEN ────────────────────────────────── */
.steps, .process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 3vw, 3rem); counter-reset: step; }
.process-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step, .process-step { position: relative; padding-top: 2.2rem; }
.steps .step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line-2);
}
.steps .step::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease);
}
.steps.revealed .step::after { transform: scaleX(1); }
.steps.revealed .step:nth-child(2)::after { transition-delay: 0.25s; }
.steps.revealed .step:nth-child(3)::after { transition-delay: 0.5s; }
.step-num, .process-num {
  display: flex; align-items: center; justify-content: flex-start;
  height: 1em; margin-bottom: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 300;
  line-height: 1; letter-spacing: -0.06em; color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.step-num::before, .process-num::before { content: "0"; }
.step-num svg, .process-num svg { width: 0.72em !important; height: 0.72em !important; color: var(--orange); stroke-width: 2.4; }
.step-num:has(svg)::before, .process-num:has(svg)::before, .process-num--done::before { content: none; }
.step h3, .process-step h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); margin-bottom: 0.7rem; }
.step p, .process-step p { color: var(--fg-2); font-size: 1rem; max-width: 34ch; }

.process-track { position: relative; }
.process-line { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line-2); }
.process-line-fill { display: block; height: 100%; width: 0; background: var(--orange); transition: width 2.2s var(--ease); }
.process-line-fill.filled { width: 100%; }

.figures, .stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--line);
}
.figure, .stat {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem) 0;
  border-left: 1px solid var(--line);
}
.figure:first-child, .stat:first-child { border-left: 0; padding-left: 0; }
.figure b, .stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -0.055em;
  color: var(--fg); font-variant-numeric: tabular-nums;
}
.figure > span, .stat-label { font-size: 0.9rem; color: var(--fg-3); line-height: 1.4; }

/* ── 12 · PREISE ─────────────────────────────────────────────── */
.price-peek {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-2);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.price-peek > div {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 3vw, 2.6rem);
  border-left: 1px solid var(--line);
}
.price-peek > div:first-child { border-left: 0; padding-left: 0; }
.price-peek b {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem); line-height: 1; letter-spacing: -0.055em; color: var(--fg);
  white-space: nowrap;
}
.price-peek small { font-size: 0.95rem; color: var(--fg-2); line-height: 1.45; max-width: 26ch; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.price-card {
  position: relative; padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.price-card-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.price-card-head h3 { font-size: 1.3rem; }
.price-badge {
  display: inline-flex; align-items: center; gap: 0.45rem; vertical-align: middle;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-2);
  white-space: nowrap;
}
.price-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.price-list { display: grid; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.98rem; color: var(--fg-2);
}
.price-list li:last-child { border-bottom: 0; }
.price-list strong {
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.02em;
  color: var(--fg); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.price-note { margin-top: 1.2rem; font-size: 0.86rem; color: var(--fg-3); }

.tax-box {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.4rem; align-items: start;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--russ); color: #F7F1E8;
}
.tone-dark .tax-box { background: var(--russ-3); }
.tax-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--orange-deep); color: #fff; }
.tax-icon svg { width: 22px; height: 22px; }
.tax-box h3 { color: #F7F1E8; font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin-bottom: 0.5rem; }
.tax-box p { color: #C3B7A8; font-size: 0.98rem; max-width: 70ch; }

.conditions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.conditions li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1rem; border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 0.88rem; color: var(--fg-2);
}
.conditions li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--fg-3); }
.conditions .cond-plus::before { background: var(--orange); }
.price-disclaimer { margin-top: 1.4rem; font-size: 0.85rem; color: var(--fg-3); }

/* ── 13 · AUFKLAPPFELDER ─────────────────────────────────────── */
.disclosure-group { display: grid; border-top: 1px solid var(--line-2); }
.faq-list { display: grid; border-top: 1px solid var(--line-2); }
.disclosure { border-bottom: 1px solid var(--line-2); }
.disclosure summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) 0;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem); letter-spacing: -0.025em; line-height: 1.3; color: var(--fg);
  -webkit-tap-highlight-color: transparent;
  transition: color 0.4s var(--ease);
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary > span:first-child { transition: transform 0.7s var(--ease); }
.disclosure summary:hover > span:first-child { transform: translateX(6px); }
.disclosure-hint {
  display: block; margin-top: 0.35rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0; color: var(--fg-3);
}
.disclosure-sign {
  position: relative; flex: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.7s var(--ease);
}
.disclosure-sign::before, .disclosure-sign::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 1.5px; margin: -0.75px 0 0 -6.5px;
  background: var(--fg); border-radius: 2px; transition: transform 0.7s var(--ease), background-color 0.4s;
}
.disclosure-sign::after { transform: rotate(90deg); }
.disclosure summary:hover .disclosure-sign { border-color: var(--fg); }
.disclosure[open] .disclosure-sign { background: var(--orange-deep); border-color: var(--orange-deep); transform: rotate(180deg); }
.disclosure[open] .disclosure-sign::before, .disclosure[open] .disclosure-sign::after { background: #fff; }
.disclosure[open] .disclosure-sign::after { transform: rotate(0deg); }
.disclosure-body {
  padding: 0 0 clamp(1.6rem, 3vw, 2.4rem);
  max-width: 76ch; color: var(--fg-2); font-size: 1rem;
}
.disclosure-body > * + * { margin-top: 0.9rem; }
.disclosure-body h3 { margin-top: 1.8rem; font-size: 1.08rem; color: var(--fg); }
.disclosure-body h3:first-child { margin-top: 0; }
.disclosure-body ul:not([class]) { display: grid; gap: 0.45rem; padding-left: 0; list-style: none; }
.disclosure-body ul:not([class]) li { position: relative; padding-left: 1.3rem; }
.disclosure-body ul:not([class]) li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 1px; background: var(--orange); }
.disclosure-body strong, .disclosure-body b { color: var(--fg); font-weight: 700; }
.disclosure-body .price-list { margin-top: 0.4rem; }
.disclosure-body .meta { font-size: 0.86rem; color: var(--fg-3); }

/* ── 14 · PREISRECHNER ───────────────────────────────────────── */
.calc-shell {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  border: 1px solid var(--line); border-radius: calc(var(--r-lg) + 4px);
  background: var(--bg-2);
}
.calc-form { display: grid; gap: 2.2rem; align-content: start; padding: clamp(1.5rem, 3.4vw, 3rem); min-width: 0; }
.calc-step { border: 0; min-width: 0; }
.calc-step > legend, .calc-label {
  display: block; margin-bottom: 1rem; padding: 0;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
}
.calc-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.calc-label-row output { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--fg); }
.calc-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.55rem; }
.calc-opt { position: relative; }
.calc-opt input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.calc-opt span {
  display: flex; flex-direction: column; gap: 0.2rem; height: 100%;
  padding: 0.9rem 1rem; border-radius: var(--r-sm);
  border: 1px solid var(--line-2); background: transparent;
  font-size: 0.95rem; font-weight: 600; color: var(--fg); line-height: 1.3;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.calc-opt small { font-size: 0.8rem; font-weight: 500; color: var(--fg-3); }
.calc-opt input:hover + span { border-color: var(--fg-3); }
.calc-opt input:checked + span { border-color: var(--orange); background: rgba(232, 93, 26, 0.08); box-shadow: inset 0 0 0 1px var(--orange); }
.calc-opt input:checked + span small { color: var(--accent); }
.calc-opt input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; margin: 1.1rem 0 0.2rem; background: var(--line-2); border-radius: 2px; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--fg); border: 5px solid var(--orange-deep); cursor: grab; transition: transform 0.3s var(--ease); }
.calc-range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-range::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--fg); border: 5px solid var(--orange-deep); cursor: grab; }
.calc-range:focus-visible { outline: 2px solid var(--orange); outline-offset: 8px; }
.calc-scale { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.78rem; color: var(--fg-3); }

.calc-switches { display: grid; gap: 0; border-top: 1px solid var(--line); }
.calc-switch { position: relative; display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.calc-switch input { position: absolute; opacity: 0; pointer-events: none; }
.calc-switch-box { order: 2; margin-left: auto; flex: none; position: relative; width: 42px; height: 24px; border-radius: 999px; background: var(--line-2); transition: background-color 0.4s var(--ease); }
.calc-switch-box::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--fg); transition: transform 0.5s var(--ease); }
.calc-switch input:checked ~ .calc-switch-box { background: var(--orange-deep); }
.calc-switch input:checked ~ .calc-switch-box::after { transform: translateX(18px); background: #fff; }
.calc-switch input:focus-visible ~ .calc-switch-box { outline: 2px solid var(--orange); outline-offset: 3px; }
.calc-switch-text { font-size: 0.96rem; font-weight: 600; color: var(--fg); }
.calc-switch-text small { display: block; font-size: 0.82rem; font-weight: 500; color: var(--fg-3); }

.calc-result {
  --fg: #F7F1E8; --fg-2: #C3B7A8; --fg-3: #ADA08E; --line: rgba(247, 241, 232, 0.1); --line-2: rgba(247, 241, 232, 0.2);
  position: relative; overflow: hidden; min-width: 0;
  margin: 0.6rem; padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(232, 93, 26, 0.22), transparent 65%),
    #1B1612;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px rgba(247, 241, 232, 0.07);
}
@media (min-width: 981px) { .calc-result { position: sticky; top: 90px; align-self: start; } }
[data-calc-figures], [data-calc-handoff] { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-result-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #FF7A38; }
.calc-price {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1.02; letter-spacing: -0.05em;
  color: #F7F1E8; font-variant-numeric: tabular-nums;
}
.calc-price small { display: block; margin-top: 0.8rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0; line-height: 1.5; color: var(--fg-3); }
.calc-bar { height: 2px; background: rgba(247, 241, 232, 0.14); overflow: hidden; border-radius: 2px; }
.calc-bar span { display: block; height: 100%; width: var(--calc-fill, 30%); background: var(--orange); transition: width 1s var(--ease); }
.calc-breakdown { display: grid; font-size: 0.9rem; }
.calc-breakdown li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); color: var(--fg-2); }
.calc-breakdown li:last-child { border-bottom: 0; }
.calc-breakdown b { color: var(--fg); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.calc-tax { font-size: 0.88rem; color: var(--fg-2); padding: 0.85rem 1rem; border-radius: var(--r-sm); background: rgba(247, 241, 232, 0.05); }
.calc-tax b { color: #FF7A38; }
.calc-note { font-size: 0.78rem; line-height: 1.5; color: var(--fg-3); }
.calc-result .btn { width: 100%; }
.calc-flash { animation: calc-flash 0.7s var(--ease); }
@keyframes calc-flash { 0% { opacity: 0.35; transform: translateY(6px); } 100% { opacity: 1; transform: none; } }
.calc-hint { display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1.6rem; font-size: 0.88rem; color: var(--fg-3); max-width: 80ch; }
.calc-hint svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--accent); }

/* ── 15 · VORHER/NACHHER · GALERIE ───────────────────────────── */
.ba-slider {
  --ba-pos: 50%;
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9; border-radius: var(--r-lg); background: var(--card);
  -webkit-user-select: none; user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba-slider img { -webkit-user-drag: none; pointer-events: none; }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 0 0 var(--ba-pos)); }
.ba-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3;
  padding: 0.45rem 0.8rem; border-radius: 999px;
  background: var(--russ);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #F7F1E8;
}
.ba-tag-after { left: auto; right: 1.2rem; color: #FF7A38; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--ba-pos); z-index: 4; width: 1px; background: rgba(255, 255, 255, 0.9); cursor: ew-resize; }
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(247, 241, 232, 0.94); color: #14110E;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease);
}
.ba-slider.is-dragging .ba-handle-circle { transform: translate(-50%, -50%) scale(0.9); }
.ba-handle-circle svg { width: 20px; height: 20px; }
.ba-handle:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(0.8rem, 1.4vw, 1.25rem); margin-top: clamp(0.8rem, 1.4vw, 1.25rem); }
.gallery-img { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--card); aspect-ratio: 3 / 4; grid-column: span 4; }

/* ── 16 · PLZ-CHECK ──────────────────────────────────────────── */
.zip-check { max-width: 620px; }
.section-head.is-center + .zip-check, .is-center .zip-check { margin-inline: auto; }
.zip-form {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.45rem 0.45rem 1.4rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--field);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.zip-form:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232, 93, 26, 0.15); }
.zip-form input { flex: 1; min-width: 0; padding: 0.7rem 0; background: none; border: 0; outline: none; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; color: var(--fg); }
.zip-form input::placeholder { color: var(--fg-3); font-weight: 500; letter-spacing: 0; }
.zip-form .btn { border-radius: 999px; min-height: 50px; }
.zip-result {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--r-md);
  font-size: 0.96rem; font-weight: 600; line-height: 1.5; color: var(--fg);
  border: 1px solid var(--line-2);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}
.zip-result:empty { display: none; }
.zip-result.show { opacity: 1; transform: none; }
.zip-result svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.zip-result small { display: block; margin-top: 0.2rem; font-size: 0.86rem; font-weight: 500; color: var(--fg-2); }
.zip-result.is-yes { border-color: rgba(46, 160, 88, 0.45); background: rgba(46, 160, 88, 0.08); }
.zip-result.is-yes svg { color: #2EA058; }
.zip-result.is-maybe { border-color: rgba(232, 93, 26, 0.45); background: rgba(232, 93, 26, 0.07); }
.zip-result.is-maybe svg { color: var(--accent); }
.zip-result.is-error svg { color: var(--fg-3); }

#gebiet .disclosure-group { margin-top: clamp(3rem, 6vw, 4.5rem); }
.zip-lead { margin-bottom: 1.2rem; color: var(--fg-2); }
.head-split .zip-check { max-width: none; }

/* ── 17 · ORTE · KARTE ───────────────────────────────────────── */
.local-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-2); }
.local-card {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.2rem 1.35rem 0;
  border-bottom: 1px solid var(--line-2);
  transition: padding 0.7s var(--ease);
}
.local-card:not(:nth-child(4n)) { border-right: 1px solid var(--line); }
.local-card:not(:nth-child(4n+1)) { padding-left: 1.2rem; }
.local-card span { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: -0.025em; color: var(--fg); line-height: 1.25; }
.local-card small { display: block; margin-top: 0.2rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0; color: var(--fg-3); }
.local-card svg { flex: none; width: 18px; height: 18px; color: var(--fg-3); transition: transform 0.7s var(--ease), color 0.4s; }
.local-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease); }
.local-card:hover::after { transform: scaleX(1); }
.local-card:hover svg { transform: translateX(5px); color: var(--accent); }
.disclosure-body .local-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1rem; }
.disclosure-body .local-card:nth-child(n) { border-right: 0; padding-left: 0; }
.disclosure-body .local-card:nth-child(odd) { border-right: 1px solid var(--line); }
.disclosure-body .local-card:nth-child(even) { padding-left: 1.2rem; }

.area-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.area-info h2 { margin-bottom: 1.2rem; }
.area-info > p { color: var(--fg-2); max-width: 52ch; }
.area-cities { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.8rem 0; }
.area-cities li { padding: 0.4rem 0.85rem; border: 1px solid var(--line-2); border-radius: 999px; font-size: 0.84rem; font-weight: 500; color: var(--fg-2); transition: border-color 0.4s, color 0.4s; }
.area-cities li:hover { border-color: var(--fg); color: var(--fg); }
.area-route { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }
.area-route svg { width: 18px; height: 18px; color: var(--accent); }
.area-map {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background-color: var(--card);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
}
.area-shape { position: absolute; inset: 14% 10%; border: 1px dashed rgba(232, 93, 26, 0.55); border-radius: 50% 44% 48% 40% / 50% 40% 60% 50%; background: radial-gradient(closest-side, rgba(232, 93, 26, 0.1), transparent); }
.pin { position: absolute; transform: translate(-50%, -50%); }
.pin-dot { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--fg); box-shadow: 0 0 0 4px var(--card); }
.pin-label { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); white-space: nowrap; font-size: 0.7rem; font-weight: 600; color: var(--fg-2); }
.pin-hq .pin-dot { width: 13px; height: 13px; background: var(--orange); box-shadow: 0 0 0 4px var(--card), 0 0 0 5px var(--orange); }
.pin-hq .pin-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--orange); animation: pin-ring 2.8s var(--ease) infinite; }
.pin-hq .pin-label { color: var(--fg); font-weight: 700; }
@keyframes pin-ring { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(3.2); opacity: 0; } }

/* ── 18 · ÜBER UNS ───────────────────────────────────────────── */
.owner-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 7vw, 7.5rem); align-items: center; }
.owner-photo { position: relative; }
.owner-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--r-lg); background: var(--card); }
.owner-badge {
  position: absolute; right: clamp(-2rem, -2.5vw, -1rem); bottom: 2rem; z-index: 3;
  display: flex; align-items: flex-start; gap: 0.85rem; max-width: 300px;
  padding: 1.1rem 1.25rem;
  background: var(--russ); color: #F7F1E8;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.55);
}
.owner-badge strong { display: block; font-size: 0.98rem; font-weight: 700; color: #F7F1E8; }
.owner-badge span span { font-size: 0.85rem; line-height: 1.45; color: #C3B7A8; }
.owner-badge-dot { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-deep); color: #fff; }
.owner-badge-dot svg { width: 14px; height: 14px; }
.owner-quote {
  position: relative; margin: 1.8rem 0 2.2rem; padding-top: 2.6rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.22; letter-spacing: -0.035em; color: var(--fg);
}
.owner-quote::before {
  content: "“"; position: absolute; left: -0.05em; top: -0.2rem;
  font-size: 4.4rem; line-height: 1; color: var(--orange); font-weight: 600;
}
.owner-sign { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.owner-sign .owner-badge-dot { width: 46px; height: 46px; background: transparent; border: 1px solid var(--line-2); color: var(--accent); }
.owner-sign strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }
.owner-sign span span { font-size: 0.88rem; color: var(--fg-3); }

/* ── 19 · FAQ ────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.faq-layout .section-head { position: sticky; top: 120px; margin-bottom: 0; }
.faq-layout .section-head .text-link { margin-top: 2rem; }

.compare-wrap { overflow-x: auto; margin-top: 1.2rem; border: 1px solid var(--line); border-radius: var(--r-md); }
.compare { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.92rem; }
.compare caption { caption-side: bottom; padding: 0.9rem 1rem; text-align: left; font-size: 0.82rem; color: var(--fg-3); }
.compare th, .compare td { padding: 0.9rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.compare tbody th { font-weight: 700; color: var(--fg); }
.compare td { color: var(--fg-2); }
.compare .is-us { color: var(--fg); background: rgba(232, 93, 26, 0.06); }
.compare thead .is-us { color: var(--accent); }

/* ── 20 · KONTAKT ────────────────────────────────────────────── */
.contact-card {
  --bg: var(--russ); --card: var(--russ-2); --fg: #F7F1E8; --fg-2: #C3B7A8; --fg-3: #ADA08E;
  --line: rgba(247, 241, 232, 0.1); --line-2: rgba(247, 241, 232, 0.2); --accent: #FF7A38; --field: rgba(247, 241, 232, 0.04);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2rem, 5.5vw, 5rem);
  border-radius: calc(var(--r-lg) + 6px);
  background: var(--russ); color: var(--fg);
  color-scheme: dark;
}
.tone-dark .contact-card { background: var(--russ-1); box-shadow: inset 0 0 0 1px rgba(247, 241, 232, 0.07); }
.contact-card::before {
  content: ""; position: absolute; left: -20%; bottom: -40%; width: 70%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(232, 93, 26, 0.16), transparent);
  pointer-events: none;
}
.contact-copy { position: relative; }
.contact-copy h2 { font-size: clamp(2.3rem, 4.6vw, 4rem); margin-bottom: 1.4rem; }
.contact-copy > p { color: var(--fg-2); max-width: 46ch; }
.contact-info { display: grid; margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.contact-info li { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--fg); }
.contact-info svg { width: 18px; height: 18px; flex: none; color: var(--accent); }
.contact-info a { position: relative; font-weight: 600; transition: color 0.3s; }
.contact-info a:hover { color: var(--accent); }
.contact-info span { color: var(--fg-2); }

.contact-form { position: relative; display: grid; gap: 1.1rem; align-content: start; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.95rem 1.05rem;
  font-size: 1rem; color: var(--fg);
  background: var(--field); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background-color 0.4s;
  -webkit-appearance: none; appearance: none;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ADA08E' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.6rem;
}
.form-field select option { background: #1E1913; color: #F7F1E8; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(173, 160, 142, 0.75); }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--fg-3); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232, 93, 26, 0.15); }
.contact-form .btn { margin-top: 0.3rem; }
.contact-form .btn + .btn { margin-top: 0; }
.form-note { font-size: 0.84rem; color: var(--fg-3); line-height: 1.5; }
.form-hint { padding: 0.9rem 1rem; border-radius: var(--r-sm); border: 1px solid rgba(232, 93, 26, 0.45); background: rgba(232, 93, 26, 0.08); font-size: 0.9rem; color: var(--fg); }
.hp-feld { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ── 21 · CTA-BAND ───────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(2.4rem, 6vw, 5rem);
  border-radius: calc(var(--r-lg) + 6px);
  background: var(--russ); color: #F7F1E8;
  text-align: left;
}
.tone-dark .cta-band { background: var(--orange-deep); color: #fff; }
.tone-dark .cta-band h2 { color: #fff; }
.cta-band::before {
  content: ""; position: absolute; right: -10%; top: -60%; width: 60%; aspect-ratio: 1; z-index: -1;
  background: radial-gradient(closest-side, rgba(232, 93, 26, 0.3), transparent);
}
.tone-dark .cta-band::before { background: radial-gradient(closest-side, rgba(255, 255, 255, 0.08), transparent); }
.cta-band h2 { color: #F7F1E8; max-width: 18ch; }
.cta-band h2 .highlight { color: rgba(247, 241, 232, 0.6); }
.tone-dark .cta-band h2 .highlight { color: rgba(255, 255, 255, 0.78); }
.cta-band p { margin-top: 1.2rem; max-width: 56ch; color: rgba(247, 241, 232, 0.8); font-size: 1.08rem; }
.tone-dark .cta-band p { color: #fff; }
.cta-band .hero-actions { margin-top: 2.2rem; }
.cta-band .btn-ghost { --btn-fg: #F7F1E8; --btn-bd: rgba(247, 241, 232, 0.35); --btn-bg-hover: #F7F1E8; --btn-fg-hover: #14110E; }
.tone-dark .cta-band .btn-primary { --btn-bg: #14110E; --btn-bd: #14110E; --btn-bg-hover: #F7F1E8; --btn-fg-hover: #14110E; }
.tone-dark .cta-band .btn-ghost { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, 0.6); }

/* ── 22 · INHALTSBAUSTEINE UNTERSEITEN ───────────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6.5rem); align-items: center; }
.split + .split { margin-top: clamp(4rem, 8vw, 7rem); }
.split.reverse .split-media { order: 2; }
.split-text h2 { margin-bottom: 1.3rem; font-size: clamp(1.9rem, 3.4vw, 3rem); }
.split-text > p { color: var(--fg-2); max-width: 56ch; }
.split-text > p + p { margin-top: 1rem; }
.split-media { aspect-ratio: 5 / 4; }

.feature-list { display: grid; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.feature-list li { position: relative; padding: 0.85rem 0 0.85rem 1.9rem; border-bottom: 1px solid var(--line); color: var(--fg-2); font-size: 0.98rem; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 1.35rem; width: 12px; height: 1px; background: var(--orange); }
.feature-list strong { color: var(--fg); }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-2); }
.service-card {
  position: relative; padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.2rem, 2vw, 1.8rem) clamp(1.8rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line-2);
}
.service-card + .service-card { border-left: 1px solid var(--line); }
.service-card:first-child { padding-left: 0; }
.service-icon, .promise-icon, .b2b-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.6rem;
  border-radius: 50%; border: 1px solid var(--line-2); color: var(--accent);
  transition: background-color 0.6s var(--ease), color 0.6s var(--ease), border-color 0.6s var(--ease);
}
.service-icon svg, .promise-icon svg, .b2b-icon svg { width: 20px; height: 20px; }
.service-card:hover .service-icon, .b2b-item:hover .b2b-icon { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.service-card h3, .b2b-item h3 { margin-bottom: 0.6rem; }
.service-card p, .b2b-item p { color: var(--fg-2); font-size: 0.97rem; }

.cross-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(0.8rem, 1.5vw, 1.25rem); }
.cross-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 220px;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card);
  transition: border-color 0.6s var(--ease), color 0.6s var(--ease);
}
.cross-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--russ);
  transform: translateY(101%); transition: transform 0.9s var(--ease);
}
.cross-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.35rem; transition: color 0.6s var(--ease); }
.cross-card h3 svg { flex: none; width: 40px; height: 40px; padding: 11px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform 0.8s var(--ease), background-color 0.5s, border-color 0.5s, color 0.5s; }
.cross-card p { margin-top: 2rem; color: var(--fg-2); font-size: 0.96rem; transition: color 0.6s var(--ease); }
.cross-card:hover { border-color: var(--russ); }
.cross-card:hover::before { transform: none; }
.cross-card:hover h3 { color: #F7F1E8; }
.cross-card:hover p { color: #C3B7A8; }
.cross-card:hover h3 svg { transform: rotate(-45deg); background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.tone-dark .cross-card::before { background: var(--russ-3); }

.promise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-2); }
.promise-item { padding: clamp(1.8rem, 3vw, 2.4rem) clamp(1.2rem, 2vw, 1.8rem) clamp(1.6rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line-2); }
.promise-item + .promise-item { border-left: 1px solid var(--line); }
.promise-item:first-child { padding-left: 0; }
.promise-item h3 { margin-bottom: 0.6rem; }
.promise-item p { color: var(--fg-2); font-size: 0.97rem; }

.b2b-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(0.8rem, 1.5vw, 1.25rem); }
.b2b-item { padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); }

/* Ratgeber (Kosten-Seite) */
.fakten {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card);
}
.fakten h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 1.4rem; }
.fakten dl { display: grid; border-top: 1px solid var(--line); }
.fakten dl > div { display: grid; grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr); gap: 0.4rem 1.6rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
.fakten dl > div:last-child { border-bottom: 0; }
.fakten dt { font-size: 0.9rem; font-weight: 700; color: var(--fg); }
.fakten dd { font-size: 0.95rem; color: var(--fg-2); }
.fakten b { color: var(--fg); }
.ratgeber { color: var(--fg-2); font-size: 1.06rem; line-height: 1.75; }
.ratgeber > * + * { margin-top: 1.1rem; }
.ratgeber h2 { margin-top: clamp(3rem, 6vw, 4.5rem); margin-bottom: 0.4rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.ratgeber h2:first-child { margin-top: 0; }
.ratgeber h3 { margin-top: 2rem; font-size: 1.2rem; }
.ratgeber b, .ratgeber strong { color: var(--fg); }
.ratgeber ul { display: grid; gap: 0.5rem; list-style: none; }
.ratgeber ul li { position: relative; padding-left: 1.4rem; }
.ratgeber ul li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 7px; height: 1px; background: var(--orange); }
.beleg { padding-left: 1rem; border-left: 2px solid var(--orange); font-size: 0.88rem !important; line-height: 1.6; color: var(--fg-3); }
.tabelle-scroll { overflow-x: auto; margin: 1.6rem 0; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); }
.preistabelle { width: 100%; min-width: 540px; border-collapse: collapse; font-size: 0.94rem; line-height: 1.45; }
.preistabelle caption { caption-side: bottom; padding: 0.9rem 1.1rem; text-align: left; font-size: 0.8rem; color: var(--fg-3); border-top: 1px solid var(--line); }
.preistabelle th, .preistabelle td { padding: 0.85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.preistabelle thead th { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); }
.preistabelle tbody tr:last-child th, .preistabelle tbody tr:last-child td { border-bottom: 0; }
.preistabelle tbody th { color: var(--fg); font-weight: 700; }
.preistabelle td { color: var(--fg-2); font-variant-numeric: tabular-nums; }
.preistabelle tbody tr { transition: background-color 0.3s; }
.preistabelle tbody tr:hover { background: rgba(232, 93, 26, 0.05); }
.stand { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem; font-size: 0.85rem; color: var(--fg-3); }
.stand svg { width: 16px; height: 16px; color: var(--accent); }

/* Rechtliches · Danke */
.legal { margin-top: clamp(2rem, 4vw, 3rem); color: var(--fg-2); }
.legal > p { margin-bottom: 1.4rem; max-width: 72ch; }
.legal-note, .todo {
  margin: 1.8rem 0; padding: 1.1rem 1.3rem;
  border: 1px solid rgba(232, 93, 26, 0.45); border-radius: var(--r-md); background: rgba(232, 93, 26, 0.07);
  font-size: 0.94rem; color: var(--fg-2);
}
.legal-note strong { color: var(--fg); }
.ph-data { color: var(--fg); font-weight: 600; }
.thanks-card { max-width: 760px; padding-top: clamp(1rem, 3vw, 2rem); }
.thanks-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 2rem; border-radius: 50%; background: var(--orange-deep); color: #fff; }
.thanks-icon svg { width: 28px; height: 28px; }
.thanks-card > p { margin-top: 1.4rem; color: var(--fg-2); font-size: 1.1rem; max-width: 52ch; }
.thanks-card .hero-actions { margin-top: 2.4rem; }
.thanks-card .form-note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--fg-3); }
.thanks-card .local-grid { margin-top: 2rem; }
@media (min-width: 761px) { .thanks-card .local-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ── 23 · FUSSBEREICH ────────────────────────────────────────── */
.site-footer {
  position: relative; overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 0;
  background: #100D0B; color: #F7F1E8;
  --fg: #F7F1E8; --fg-2: #C3B7A8; --fg-3: #ADA08E; --line: rgba(247, 241, 232, 0.09); --accent: #FF7A38;
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); }
.footer-brand p { margin-top: 1.2rem; max-width: 34ch; font-size: 0.95rem; color: var(--fg-2); }
.footer-brand .footer-tagline { margin-top: 1.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--fg); }
.logo-footer .logo-text { font-size: 1.9rem; }
.footer-col h3 { margin-bottom: 1.3rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3); }
.footer-col ul { display: grid; gap: 0.1rem; list-style: none; }
.footer-col li { font-size: 0.93rem; color: var(--fg-2); }
.footer-col a { position: relative; display: inline-block; padding: 0.3rem 0; color: var(--fg-2); transition: color 0.4s var(--ease), transform 0.6s var(--ease); }
.footer-col a:hover { color: var(--fg); transform: translateX(4px); }
.footer-wordmark {
  display: block; margin: clamp(1rem, 3vw, 2.5rem) 0 -0.19em;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(5rem, 21.5vw, 22rem); line-height: 0.8; letter-spacing: -0.07em;
  color: rgba(247, 241, 232, 0.055); white-space: nowrap; user-select: none; pointer-events: none;
  text-align: center;
}
.footer-wordmark span { color: rgba(232, 93, 26, 0.5); }
.footer-bottom {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: 1.6rem 0; border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--fg-3);
}
@media (min-width: 1100px) { .footer-bottom { padding-right: 80px; } }
.to-top { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(247, 241, 232, 0.2); color: var(--fg); transition: background-color 0.5s var(--ease), color 0.5s, transform 0.7s var(--ease); }
.to-top svg { width: 16px; height: 16px; }
.to-top:hover { background: #F7F1E8; color: #14110E; transform: translateY(-3px); }

/* ── 24 · SCHNELLKONTAKT ─────────────────────────────────────── */
.callbar { display: none; }
.whatsapp-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 800;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(26, 22, 18, 0.9); color: #25D366;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 241, 232, 0.14);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  transition: transform 0.7s var(--ease), background-color 0.5s var(--ease), color 0.5s, opacity 0.6s var(--ease);
}
.whatsapp-fab svg { width: 25px; height: 25px; }
.whatsapp-fab:hover { transform: translateY(-4px); background: #25D366; color: #fff; }
.wa-pulse { display: none; }

.site-test-notice {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 2000;
  display: flex; align-items: center; gap: 0.6rem; max-width: min(340px, calc(100vw - 2rem));
  padding: 0.65rem 0.9rem;
  background: rgba(26, 22, 18, 0.92); color: #F7F1E8;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 241, 232, 0.12); border-radius: var(--r-sm);
  font: 500 12.5px/1.4 var(--font-body);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}
.site-test-notice strong { color: #FF7A38; font-weight: 700; }
.site-test-notice__dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(232, 93, 26, 0.2); }

/* Überbleibsel aus V3, die es nicht mehr gibt */
.bg-orbs, .cursor-glow, .cover-light, .cover-grid { display: none !important; }

/* ── 25 · BEWEGUNG ───────────────────────────────────────────── */
/* Alles hier greift nur, wenn JavaScript läuft und keine reduzierte
   Bewegung gewünscht ist (html.motion wird im <head> gesetzt). */

.motion .reveal {
  opacity: 0; transform: translate3d(0, 36px, 0);
  transition: opacity 1.2s var(--ease), transform 1.4s var(--ease);
}
.motion .reveal.revealed { opacity: 1; transform: none; }
.motion .delay-1 { transition-delay: 0.1s; }
.motion .delay-2 { transition-delay: 0.2s; }
.motion .delay-3 { transition-delay: 0.3s; }
.motion .delay-4 { transition-delay: 0.4s; }

/* Kopfblöcke: kein Block-Schieben, stattdessen einzeln */
.motion .section-head.reveal { opacity: 1; transform: none; }
.motion .section-head.reveal > * { transition: opacity 1.1s var(--ease) 0.3s, transform 1.3s var(--ease) 0.3s; }
.motion .section-head.reveal > .eyebrow { transition-delay: 0s; }
.motion .section-head.reveal:not(.revealed) > :not(h1):not(h2) { opacity: 0; transform: translate3d(0, 20px, 0); }
.motion .section-head.reveal:not(.revealed) > h1:not(.is-split),
.motion .section-head.reveal:not(.revealed) > h2:not(.is-split) { opacity: 0; }

.motion .stagger > * { opacity: 0; transform: translate3d(0, 40px, 0); transition: opacity 1.1s var(--ease), transform 1.3s var(--ease); }
.motion .stagger.revealed > * { opacity: 1; transform: none; }
.motion .stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.motion .stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.motion .stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.motion .stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.motion .stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }
.motion .stagger.revealed > *:nth-child(7) { transition-delay: 0.48s; }
.motion .stagger.revealed > *:nth-child(8) { transition-delay: 0.56s; }
.motion .stagger.revealed > *:nth-child(n+9) { transition-delay: 0.6s; }

/* Überschriften: Wort für Wort aus einer Maske */
/* Innenabstand oben/unten, damit Umlaut-Punkte und Unterlängen nicht an der Maske abgeschnitten werden */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.16em 0.03em 0.14em 0; margin: -0.16em -0.03em -0.14em 0; }
.word-reveal > i { display: inline-block; font-style: normal; }
.motion .is-split .word-reveal > i {
  transform: translate3d(0, 105%, 0) rotate(3deg); transform-origin: 0 100%;
  transition: transform 1.25s var(--ease);
  transition-delay: calc(var(--w, 0) * 42ms + var(--split-delay, 0ms));
}
.motion .is-split.revealed .word-reveal > i { transform: none; }
.motion .is-split.reveal { opacity: 1; transform: none; }

/* Bilder: Vorhang hebt sich, das Foto setzt sich dabei */
.motion .img-reveal { position: relative; }
.motion .img-reveal::after {
  content: ""; position: absolute; inset: -1px; z-index: 5; pointer-events: none;
  background: var(--bg); transform-origin: top;
  transition: transform 1.5s var(--ease-in-out);
}
.motion .img-reveal.revealed::after { transform: scaleY(0); }
.motion .img-reveal img { scale: 1.22; transition: scale 2.2s var(--ease); }
.motion .img-reveal.revealed img { scale: 1; }

/* Parallax verschiebt nur über translate – transform bleibt frei */
[data-plx] { translate: 0 var(--plx, 0px); will-change: translate; }

/* Startseite: Auftritt beim Laden */
.motion .hero .hero-eyebrow,
.motion .hero .hero-lead,
.motion .hero .hero-actions,
.motion .hero .hero-facts,
.motion .hero .hero-caption,
.motion .hero .hero-cue {
  opacity: 0; transform: translate3d(0, 24px, 0);
  transition: opacity 1.2s var(--ease), transform 1.4s var(--ease);
}
.motion .hero .hero-cue { transform: translate3d(-50%, 12px, 0); }
.motion.is-loaded .hero .hero-eyebrow { opacity: 1; transform: none; transition-delay: 0.15s; }
.motion.is-loaded .hero .hero-lead { opacity: 1; transform: none; transition-delay: 0.75s; }
.motion.is-loaded .hero .hero-actions { opacity: 1; transform: none; transition-delay: 0.9s; }
.motion.is-loaded .hero .hero-facts { opacity: 1; transform: none; transition-delay: 1.05s; }
.motion.is-loaded .hero .hero-caption { opacity: 1; transform: none; transition-delay: 1.5s; }
.motion.is-loaded .hero .hero-cue { opacity: 1; transform: translate3d(-50%, 0, 0); transition-delay: 1.8s; }
.motion .hero-title { --split-delay: 250ms; }
.motion .site-header .nav { opacity: 0; transform: translate3d(0, -14px, 0); transition: opacity 1s var(--ease) 0.1s, transform 1.2s var(--ease) 0.1s; }
.motion.is-loaded .site-header .nav { opacity: 1; transform: none; }

/* Fußbereich-Wortmarke steigt beim Erreichen auf */
.motion .footer-wordmark { transform: translateY(0.35em); transition: transform 2s var(--ease); }
.motion .footer-wordmark.revealed { transform: none; }

/* Seitenwechsel: weich überblenden, Kopfzeile bleibt stehen */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.35s var(--ease-in-out) both; }
::view-transition-new(root) { animation: vt-in 0.8s var(--ease) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(18px); } }

/* ── 26 · RESPONSIV ──────────────────────────────────────────── */
@media (min-width: 1100px) and (max-width: 1279px) {
  .nav-phone span { display: none; }
  .nav-links a, .nav-sub-trigger { padding-inline: 0.6rem; }
  .nav-links > li > a::after, .nav-sub-trigger::after { left: 0.6rem; right: 0.6rem; }
}

@media (max-width: 1099px) {
  :root { --header-h: 72px; --callbar-h: 72px; }
  .site-header.stuck { --header-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav { justify-content: space-between; }
  .logo { flex: none; }
  .nav-toggle { display: flex; }
  .whatsapp-fab { display: none; }
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    padding: 0.6rem 0.6rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(20, 17, 14, 0.9);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-top: 1px solid rgba(247, 241, 232, 0.08);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: 0.55rem;
    min-height: 50px; border-radius: var(--r-sm);
    font-size: 0.95rem; font-weight: 700; color: #F7F1E8;
    border: 1px solid rgba(247, 241, 232, 0.16);
  }
  .callbar .is-call { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
  .callbar .is-wa svg { color: #25D366; }
  .callbar svg { width: 18px; height: 18px; }
  .site-test-notice { bottom: calc(var(--callbar-h) + 0.6rem + env(safe-area-inset-bottom)); }

  .hero { min-height: 0; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-title { font-size: clamp(2.6rem, 6.4vw, 4.4rem); }
  .hero-frame { max-height: none; }
  .hero-caption { left: 1rem; bottom: 1rem; right: 1rem; max-width: none; }
  .hero-actions .btn { padding-inline: 1.3rem; }

  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-grid, .split, .area-grid, .owner-grid, .faq-layout, .head-split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .faq-layout .section-head { position: static; }
  .owner-photo { max-width: 560px; }
  .owner-badge { right: 1rem; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(odd) { padding-left: 0; border-left: 0; }
  .service-card:nth-child(even) { border-left: 1px solid var(--line); }
  .process-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem clamp(1.5rem, 3vw, 3rem); }
  .process-grid--4 .process-step { border-top: 1px solid var(--line-2); }
  .process-track:has(.process-grid--4) .process-line { display: none; }
  .contact-card { grid-template-columns: 1fr; }
  .calc-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .local-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-card:nth-child(n) { border-right: 0; padding-left: 0; }
  .local-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .local-card:nth-child(even) { padding-left: 1.2rem; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  h1, h2 { hyphens: auto; -webkit-hyphens: auto; }
  .hero { padding-top: calc(var(--header-h) + 2.5rem); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-frame { aspect-ratio: 4 / 4.6; }
  .hero-title { font-size: clamp(2.5rem, 11.2vw, 4.4rem); }
  .calc-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc-form { padding: 1.4rem 1.1rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-facts { flex-direction: column; gap: 0.7rem; }
  .steps, .process-grid, .process-grid--4 { grid-template-columns: 1fr; gap: 2.8rem; }
  .process-step { border-top: 1px solid var(--line-2); }
  .process-line { display: none; }
  .step-num, .process-num { margin-bottom: 1.4rem; font-size: 3rem; }
  .figures, .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figure, .stat { padding: 1.6rem 1rem 1.6rem; }
  .figure:nth-child(odd), .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .figure:nth-child(n+3), .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .price-peek { grid-template-columns: 1fr; }
  .price-peek > div { padding: 1.8rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .price-peek > div:first-child { border-top: 0; }
  .pricing-grid, .cross-grid, .b2b-grid { grid-template-columns: 1fr; }
  .services-grid, .promise-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n), .promise-item:nth-child(n) { padding-left: 0; padding-right: 0; border-left: 0; }
  .price-list li { flex-direction: column; gap: 0.15rem; }
  .price-list strong { align-self: flex-start; }
  .tax-box { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: 0.9rem; }
  .hero-trust li { flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 3.6; }
  .tile h3 { min-height: 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-img { grid-column: span 1; }
  .gallery-img:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .ba-slider { aspect-ratio: 4 / 3.4; }
  .local-grid, .disclosure-body .local-grid { grid-template-columns: 1fr; }
  .local-card:nth-child(n), .disclosure-body .local-card:nth-child(n) { border-right: 0; padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 1.8rem 1.25rem; border-radius: var(--r-lg); }
  .cta-band { padding: 2.2rem 1.4rem; }
  .cta-band .hero-actions .btn { flex: 1 1 100%; }
  .zip-form { flex-direction: column; align-items: stretch; padding: 0.4rem; border-radius: var(--r-md); }
  .zip-form input { padding: 0.8rem 0.9rem; }
  .zip-form .btn { border-radius: var(--r-sm); }
  .fakten dl > div { grid-template-columns: 1fr; }
  .owner-badge { position: relative; right: auto; bottom: auto; margin: -3rem 1rem 0; max-width: none; }
  .hero-caption { position: relative; left: auto; bottom: auto; margin: -2.8rem 1rem 0; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.5rem; }
  .footer-bottom { padding-bottom: 1.4rem; }
  .breadcrumb { margin-bottom: 1.6rem; }
  .disclosure-sign { width: 36px; height: 36px; }
  .site-test-notice { left: 0.5rem; right: 0.5rem; max-width: none; }
  .area-map { aspect-ratio: 1 / 1; }
  .pin-label { font-size: 0.62rem; }
}

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

/* ── 27 · REDUZIERTE BEWEGUNG · DRUCK ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; transition-delay: 0s !important; }
  .marquee-track { animation: none; }
  [data-plx] { translate: none; }
  @view-transition { navigation: none; }
}
@media print {
  .site-header, .callbar, .whatsapp-fab, .scroll-progress, .site-test-notice, .hero-cue, .footer-wordmark, body::after { display: none !important; }
  .tone-dark, .tone-light, .site-footer { background: #fff !important; color: #000 !important; }
}
