/* ============================================================
   GJD INVEST — Design System
   Palette: Navy / Orange / Steel  ·  Display: Povelyon
   Static site, self-hosted font, offline-review ready.
   ============================================================ */

@font-face {
  font-family: "Povelyon";
  src: url("../fonts/Povelyon.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* brand — echtes GJD-Branding: Navy + Orange + Steel (Logo) */
  --forest:        #202857;   /* primary — GJD Navy */
  --forest-deep:   #151a3a;
  --forest-900:    #141834;   /* tiefstes Navy */
  --forest-700:    #202857;
  --forest-500:    #3b4477;   /* mittleres Navy */
  --forest-300:    #8890b5;   /* soft Navy */
  --gold:          #ff914d;   /* accent — GJD Orange (Eye-Catcher, CTAs) */
  --gold-soft:     #ffb488;   /* Orange auf dunklem Grund */
  --gold-deep:     #f2751f;   /* Orange dunkler — Hover */
  --steel:         #a6a6a6;   /* Logo-Grau */

  /* neutrals (cool, clean) */
  --paper:         #f6f7fb;   /* clean light background */
  --cream:         #ffffff;   /* elevated surface / cards */
  --ink:           #1a1f3d;   /* navy-getöntes near-black */
  --ink-2:         #565d78;   /* secondary text */
  --line:          #e6e8f1;   /* hairlines */
  --line-strong:   #d2d7e6;

  /* semantic */
  --bg:            var(--paper);
  --surface:       var(--cream);
  --text:          var(--ink);
  --text-muted:    var(--ink-2);
  --border:        var(--line);
  --accent:        var(--gold);

  /* type */
  --font-display: "Povelyon", "Century Gothic", "Futura", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light;

  /* scale */
  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 20px 55px -24px rgba(20, 24, 52, 0.4);
  --shadow-sm: 0 8px 24px -16px rgba(20, 24, 52, 0.42);
  --shadow-orange: 0 14px 34px -14px rgba(255, 145, 77, 0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

:root { --forest-deep: #151a3a; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.grid { display: grid; gap: clamp(24px, 4vw, 56px); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 60ch;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  color: var(--forest-500);
}
.kicker-line { display: inline-flex; align-items: center; gap: 14px; }
.kicker-line::before {
  content: ""; width: 34px; height: 1px; background: var(--accent);
}
.text-body p { max-width: 64ch; color: var(--text-muted); }
.text-body p + p { margin-top: 1.1em; }
.gold { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);        /* Orange — der Eye-Catcher */
  --btn-fg: #141834;            /* Navy-Text auf Orange (hoher Kontrast) */
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.88rem;
  padding: 16px 32px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-deep); border-color: var(--gold-deep); box-shadow: var(--shadow-orange); }
.btn:active { transform: translateY(0); }
.btn .btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn--navy { --btn-bg: var(--forest); --btn-fg: #ffffff; }
.btn--navy:hover { background: var(--forest-900); border-color: var(--forest-900); box-shadow: var(--shadow-sm); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--forest);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--forest); background: transparent; box-shadow: none; }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #141834; }
.btn--light { --btn-bg: #ffffff; --btn-fg: var(--forest-900); border-color: #ffffff; }
.btn--light:hover { background: #ffffff; border-color: #ffffff; }
.btn--on-dark.btn--ghost { --btn-fg: #ffffff; border-color: rgba(255,255,255,0.45); }
.btn--on-dark.btn--ghost:hover { border-color: #ffffff; }

/* ---------- Brand logo ---------- */
.brand-logo { height: 30px; width: auto; display: block; }
.site-footer .brand-logo { height: 34px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled { border-color: var(--border); }
.nav {
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-mark {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.25rem; letter-spacing: 0.08em; color: var(--forest-900);
  display: inline-flex; align-items: baseline; gap: 0.5ch;
}
.brand-mark .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links .nav-li-cta { display: none; } /* nur im Mobile-Menü sichtbar */
.nav-links a {
  font-size: 0.94rem; color: var(--forest-900); position: relative; padding-block: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest-900); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero-inner { padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 96px); position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-top: 18px; color: var(--forest-900); }
.hero h1 .thin { color: var(--forest-500); }
.hero .lead { margin-top: 26px; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-figure {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255,145,77,0.16), transparent 60%),
    linear-gradient(160deg, var(--forest-700), var(--forest-900));
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; align-items: flex-end;
}
.hero-figure .figure-caption {
  position: relative; z-index: 2; padding: 26px; color: #eef0e8;
}
.hero-figure .figure-caption .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-soft); }

/* subtle architectural skyline motif */
.skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; opacity: 0.9; z-index: 1; }
.hero-topo { position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
.stat { background: var(--paper); padding: 30px clamp(16px, 3vw, 40px); }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--forest-900); line-height: 1; }
.stat .label { margin-top: 8px; font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0.02em; }

/* ---------- Section header ---------- */
.sec-head { max-width: 62ch; }
.sec-head .h2 { margin-top: 16px; color: var(--forest-900); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- Path / dual cards ---------- */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card {
  position: relative; padding: clamp(30px, 4vw, 52px); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px; min-height: 340px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  overflow: hidden;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.path-card--dark { background: linear-gradient(160deg, var(--forest-700), var(--forest-900)); border-color: var(--forest-900); color: #eaeee7; }
.path-card--dark .path-card__body { color: #c3cfc6; }
.path-card__index { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.2em; color: var(--accent); }
.path-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1; }
.path-card__body { color: var(--text-muted); flex: 1; }
.path-card__link { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; display: inline-flex; gap: 0.6ch; align-items: center; color: inherit; }
.path-card__link .arw { transition: transform 0.25s var(--ease); }
.path-card:hover .path-card__link .arw { transform: translateX(5px); }

/* ---------- Feature list / values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.value { background: var(--paper); padding: clamp(28px, 3vw, 44px); }
.value__icon { width: 40px; height: 40px; color: var(--forest); margin-bottom: 20px; }
.value__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--forest-900); }
.value__text { margin-top: 12px; color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Split (about / founder) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--form { grid-template-columns: 1.1fr 0.9fr; }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: radial-gradient(120% 100% at 20% 10%, rgba(255,145,77,0.14), transparent 55%), linear-gradient(155deg, #262f63, var(--forest-900));
  box-shadow: var(--shadow); display: flex; align-items: flex-end; padding: 26px;
}
.portrait .sig { font-family: var(--font-display); color: #e8ede8; font-size: 1.2rem; letter-spacing: 0.06em; }
.portrait .sig small { display: block; font-family: var(--font-body); letter-spacing: 0; text-transform: none; color: #a9b8ad; font-size: 0.85rem; margin-top: 4px; }
blockquote.pull { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.1; color: var(--forest-900); }
blockquote.pull .gold { color: var(--accent); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--forest); }
.step__n { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.step__t { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; margin-top: 10px; color: var(--forest-900); }
.step__d { margin-top: 10px; color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Terms table (investment) ---------- */
.terms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.term { background: var(--surface); padding: 26px clamp(20px, 3vw, 36px); }
.term dt { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.term dd { margin: 8px 0 0; font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--forest-900); line-height: 1; }
.term dd small { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); letter-spacing: 0; }

/* ---------- Checklist ---------- */
.check { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.check li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; color: var(--text); }
.check li svg { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--forest-700), var(--forest-900)); color: #eef1ea; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 84px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #c3cfc6; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .topo-dark { position: absolute; inset: 0; opacity: 0.18; pointer-events: none; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; letter-spacing: 0.06em; color: var(--forest-900); font-weight: 600; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 13px 15px; width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8a9089; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(28,69,53,0.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 12px; align-items: start; font-size: 0.9rem; color: var(--text-muted); }
.consent input { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 1px; accent-color: var(--forest); }

/* contact detail cards */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.contact-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: center; }
.contact-list li svg { width: 22px; height: 22px; color: var(--forest); }
.contact-list a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: #c3cfc6; padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand-mark { color: #f4f0e6; font-size: 1.4rem; }
.site-footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; color: var(--gold-soft); margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: #c3cfc6; font-size: 0.96rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(244,240,230,0.12); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 0.85rem; color: #8fa093; }
.footer-note { max-width: 42ch; font-size: 0.92rem; color: #9fb0a3; margin-top: 16px; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--forest-900); margin-top: 2em; }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin-top: 1.6em; color: var(--forest-900); }
.prose p, .prose li { color: var(--text-muted); }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
  .path-grid, .split, .split--form, .form-grid { grid-template-columns: 1fr; }
  .values, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  /* CTA als Menüpunkt — der Header-Button ist auf Mobile ausgeblendet */
  .nav-links .nav-li-cta { display: block; }
  .site-header.nav-open .nav-links .nav-li-cta a {
    color: var(--gold-deep); font-weight: 600; border-bottom: 0;
  }
  .site-header.nav-open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px 24px 28px; gap: 4px;
  }
  .site-header.nav-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stat-strip, .values, .steps, .terms { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Theme note ----------
   Echtes GJD-Branding: GJD-Navy (#202857) + GJD-Orange (#ff914d, Eye-Catcher)
   + Logo-Grau (#a6a6a6) auf cleanem, hellem Grund. Theme fixiert (color-scheme:
   light), damit Wortmarke, Navy-Headlines und Orange-CTAs auf jedem System
   kontrastreich und markenkonform erscheinen. */

/* ============================================================
   BOOST-KOMPONENTEN (Ergänzung — bestehende Regeln unverändert)
   ============================================================ */

/* ---------- Hero-Boost ---------- */
.hero--boost { isolation: isolate; }
.hero-glow {
  position: absolute; z-index: 1; pointer-events: none;
  top: -12%; right: -6%; width: 58%; height: 95%;
  background: radial-gradient(50% 50% at 60% 42%, rgba(255, 145, 77, 0.16), transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.025;
  background-image: repeating-linear-gradient(
    90deg,
    var(--forest-900) 0, var(--forest-900) 14px,
    transparent 14px, transparent 44px
  );
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

/* ---------- Count-up (erbt Optik vom Kontext) ---------- */
.count { font-variant-numeric: tabular-nums; }

/* ---------- Investment-Rechner ---------- */
.calc {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(28px, 4.5vw, 56px); box-shadow: var(--shadow-sm);
  max-width: 860px; margin-inline: auto;
}
.calc-head {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.05; color: var(--forest-900);
  position: relative; padding-bottom: 18px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.calc-head::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 56px; height: 2px; background: var(--gold);
}
.calc-label {
  display: block; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.calc-amount {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--forest-900); line-height: 1; margin: 8px 0 26px;
  font-variant-numeric: tabular-nums;
}
/* Range-Slider: Orange-Thumb auf Navy-Track, gross + touch-freundlich */
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%; height: 44px; margin: 4px 0 2px;
  background: transparent; cursor: pointer;
}
.calc input[type="range"]:focus { outline: none; }
.calc input[type="range"]:focus-visible {
  outline: 3px solid rgba(255, 145, 77, 0.55); outline-offset: 4px; border-radius: 999px;
}
.calc input[type="range"]::-webkit-slider-runnable-track {
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--forest-700), var(--forest-900));
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; margin-top: -10px; border-radius: 50%;
  background: var(--gold); border: 3px solid #ffffff;
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.calc input[type="range"]::-webkit-slider-thumb:hover,
.calc input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.1); background: var(--gold-deep); }
.calc input[type="range"]::-moz-range-track {
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--forest-700), var(--forest-900));
}
.calc input[type="range"]::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%; border: 3px solid #ffffff;
  background: var(--gold); box-shadow: var(--shadow-orange);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.calc input[type="range"]::-moz-range-thumb:hover { transform: scale(1.1); background: var(--gold-deep); }
.calc-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.calc-pill {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.8rem; padding: 12px 20px; border-radius: 999px;
  background: transparent; color: var(--forest-900);
  border: 1px solid var(--line-strong); cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.calc-pill:hover { border-color: var(--forest); transform: translateY(-1px); }
.calc-pill.is-active { background: var(--forest); color: #ffffff; border-color: var(--forest); }
.calc-results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin: 30px 0 0;
}
.calc-res { background: var(--paper); padding: 22px clamp(18px, 2.5vw, 28px); }
.calc-res dt { margin: 0; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.calc-res dd {
  margin: 10px 0 0; font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1;
  color: var(--forest-900); font-variant-numeric: tabular-nums;
}
.calc-res--plus dd { color: var(--gold-deep); }
.calc-note { margin: 18px 0 0; font-size: 0.85rem; color: var(--text-muted); max-width: 70ch; }

/* ---------- FAQ (natives details/summary) ---------- */
.faq { display: grid; gap: 14px; max-width: 860px; }
.faq-item {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; font-weight: 600; font-size: 1.02rem; color: var(--forest-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: 1.25rem; line-height: 1; font-weight: 400;
  color: var(--forest);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--forest); color: #ffffff; border-color: var(--forest);
}
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; color: var(--text-muted); max-width: 68ch; }
.faq-body p + p { margin-top: 0.8em; }

/* ---------- Badge-Grid ---------- */
.badge-grid { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--border); border-radius: 999px;
  padding: 12px 20px; font-size: 0.95rem; color: var(--forest-900);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.badge svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--forest); }

/* ---------- Compare (Klassisch vs. GJD) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.compare-col {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.compare-col h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.05; color: var(--forest-900);
}
.compare-col--brand {
  background: linear-gradient(160deg, var(--forest-700), var(--forest-900));
  border-color: var(--forest-900); color: #eef0f8; box-shadow: var(--shadow);
}
.compare-col--brand h3 { color: #ffffff; }
.compare-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.compare-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.compare-list li::before { grid-row: 1; font-weight: 700; line-height: 1.5; }
.compare-list--x li { color: var(--text-muted); }
.compare-list--x li::before { content: "\2715"; color: var(--steel); }
.compare-list--check li { color: #dfe3f4; }
.compare-list--check li::before { content: "\2713"; color: var(--gold); font-size: 1.05em; }

/* ---------- Steps mit Verbindungslinie ---------- */
.steps--line .step { position: relative; border-top: 0; padding-top: 0; }
.steps--line .step::before {
  content: ""; position: absolute; top: 25px; left: -24px; right: 0;
  height: 2px; background: var(--line-strong);
}
.steps--line .step:first-child::before { left: 26px; }
.steps--line .step:last-child::before { right: calc(100% - 26px); }
.steps--line .step__n {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--paper);
  display: grid; place-items: center;
  font-size: 1.4rem; line-height: 1; color: var(--forest-900);
}
.steps--line .step__t { margin-top: 18px; }

/* ---------- Phone-CTA ---------- */
.phone-cta {
  display: inline-flex; flex-direction: column; gap: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.05; letter-spacing: 0.03em;
  color: var(--forest-900); font-variant-numeric: tabular-nums;
  transition: color 0.25s var(--ease);
}
.phone-cta small {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.4;
  letter-spacing: 0.02em; text-transform: none; color: var(--text-muted);
}
.phone-cta:hover { color: var(--gold-deep); }

/* ---------- Boost: Responsive ---------- */
@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; }
  .hero-glow { width: 90%; right: -30%; opacity: 0.7; }
  /* Steps-Linie: mobil vertikal, Kreis links neben dem Text */
  .steps--line { grid-template-columns: 1fr; }
  .steps--line .step {
    display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto;
    column-gap: 20px; align-items: start;
  }
  .steps--line .step__n { grid-row: 1 / span 2; }
  .steps--line .step__t { grid-column: 2; margin-top: 0; align-self: center; min-height: 52px; display: flex; align-items: center; }
  .steps--line .step__d { grid-column: 2; }
  .steps--line .step::before {
    top: -24px; bottom: 0; left: 25px; right: auto;
    width: 2px; height: auto;
  }
  .steps--line .step:first-child::before { top: 26px; left: 25px; }
  .steps--line .step:last-child::before { right: auto; bottom: calc(100% - 26px); }
}
@media (max-width: 560px) {
  .calc-results { grid-template-columns: 1fr; }
  .calc-pill { flex: 1 1 auto; text-align: center; }
  .calc-amount { margin-bottom: 20px; }
  .faq-item summary { padding: 16px 18px; font-size: 0.98rem; }
  .faq-body { padding: 0 18px 18px; }
  .badge { padding: 10px 16px; font-size: 0.9rem; }
  .compare-col { padding: 24px 20px; }
  .phone-cta { font-size: 1.6rem; }
}

/* ============================================================
   SCENE ENGINE v2 — animierte Immobilien-Szenen & Motion-Layer
   ============================================================ */

/* --- Hero H1 Zeilen-Reveal --- */
.h1 .line { display: block; overflow: hidden; }
.h1 .line-in { display: inline-block; transform: translateY(112%); }
.reveal.in .h1 .line-in,
.h1.reveal.in .line-in { animation: lineRise 0.9s var(--ease) forwards; }
.h1 .line:nth-child(1) .line-in { animation-delay: 0.05s; }
.h1 .line:nth-child(2) .line-in { animation-delay: 0.17s; }
.h1 .line:nth-child(3) .line-in { animation-delay: 0.29s; }
@keyframes lineRise { to { transform: translateY(0); } }

/* --- Szene: Grundgerüst --- */
.hero-figure .scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.scene .s-d {
  fill: none; stroke: rgba(255, 180, 136, 0.75); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.scene .s-d--soft { stroke: rgba(255, 180, 136, 0.32); stroke-width: 1.2; }
.reveal.in .scene .s-d { animation: sceneDraw 1.2s ease-out forwards; animation-delay: var(--d, 0s); }
@keyframes sceneDraw { to { stroke-dashoffset: 0; } }

.scene .s-back { fill: rgba(255, 255, 255, 0.045); opacity: 0; }
.reveal.in .scene .s-back { animation: sceneFade 1.4s ease-out 0.15s forwards; }
@keyframes sceneFade { to { opacity: 1; } }

/* Fenster leuchten auf */
.scene .s-win { fill: var(--gold); opacity: 0; }
.reveal.in .scene .s-win { animation: winOn 0.5s ease-out forwards; animation-delay: calc(1.5s + var(--wd, 0s)); }
@keyframes winOn { to { opacity: 0.85; } }
.reveal.in .scene .s-win--tw { animation: winOn 0.5s ease-out forwards, winTwinkle 4.4s ease-in-out 3s infinite; animation-delay: calc(1.5s + var(--wd, 0s)), calc(3s + var(--wd, 0s)); }
@keyframes winTwinkle { 0%, 100% { opacity: 0.85; } 50% { opacity: 0.3; } }

/* GJD-Balken wachsen wie im Logo */
.scene .s-bar { fill: var(--gold); transform: scaleY(0) skewX(-14deg); transform-origin: bottom; transform-box: fill-box; }
.scene .s-bar--steel { fill: rgba(166, 166, 166, 0.75); }
.reveal.in .scene .s-bar { animation: barGrow 0.9s cubic-bezier(0.34, 1.4, 0.44, 1) forwards; animation-delay: var(--bd, 1.2s); }
@keyframes barGrow { to { transform: scaleY(1) skewX(-14deg); } }

/* Kran: sanftes Pendeln des Auslegers */
.scene .s-crane-jib { transform-origin: var(--jib-origin, 600px 150px); }
.reveal.in .scene .s-crane-jib { animation: craneSway 7s ease-in-out 2.4s infinite alternate; }
@keyframes craneSway { from { transform: rotate(-1.1deg); } to { transform: rotate(1.1deg); } }
.scene .s-hook { transform-box: fill-box; transform-origin: top; }
.reveal.in .scene .s-hook { animation: hookBob 5s ease-in-out 2.8s infinite alternate; }
@keyframes hookBob { from { transform: translateY(0); } to { transform: translateY(9px); } }

/* Wolken driften */
.scene .s-cloud { fill: rgba(255, 255, 255, 0.055); }
.reveal.in .scene .s-cloud { animation: cloudDrift 46s ease-in-out infinite alternate; }
.reveal.in .scene .s-cloud--b { animation-duration: 58s; animation-direction: alternate-reverse; }
@keyframes cloudDrift { from { transform: translateX(-14px); } to { transform: translateX(20px); } }

/* Rendite-Chart (Kapitalgeber) */
.scene .s-chart { stroke: var(--gold); stroke-width: 2.6; }
.reveal.in .scene .s-chart { animation-duration: 1.6s; animation-delay: 1.7s; }
.scene .s-chart-fill { fill: rgba(255, 145, 77, 0.08); opacity: 0; }
.reveal.in .scene .s-chart-fill { animation: sceneFade 0.9s ease-out 2.6s forwards; }
.scene .s-dot { fill: var(--gold); opacity: 0; }
.reveal.in .scene .s-dot { animation: winOn 0.35s ease-out forwards; animation-delay: var(--dd, 2.2s); }

/* Pointer-Parallax (JS setzt --px/--py auf .hero-figure) */
.hero-figure .s-lyr--back { transform: translate(calc(var(--px, 0) * 5px), calc(var(--py, 0) * 2px)); transition: transform 0.3s ease-out; }
.hero-figure .s-lyr--mid { transform: translate(calc(var(--px, 0) * 10px), calc(var(--py, 0) * 4px)); transition: transform 0.25s ease-out; }
.hero-figure .s-lyr--front { transform: translate(calc(var(--px, 0) * -14px), calc(var(--py, 0) * -6px)); transition: transform 0.2s ease-out; }

/* Karten-Tilt (JS setzt --rx/--ry) */
.tilt-wrap { perspective: 900px; }
.tilt { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); will-change: transform; }

/* Button-Glanz beim Hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 120%; }

/* Häkchen zeichnen sich (compare) — JS setzt pathLength=1 */
.compare-list--check svg path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.compare-col.in .compare-list--check li svg path,
.reveal.in .compare-list--check li svg path { animation: sceneDraw 0.5s ease-out forwards; }
.compare-list--check li:nth-child(1) svg path { animation-delay: 0.30s; }
.compare-list--check li:nth-child(2) svg path { animation-delay: 0.48s; }
.compare-list--check li:nth-child(3) svg path { animation-delay: 0.66s; }
.compare-list--check li:nth-child(4) svg path { animation-delay: 0.84s; }
.compare-list--check li:nth-child(5) svg path { animation-delay: 1.02s; }

/* Reduced Motion: Endzustände sofort */
@media (prefers-reduced-motion: reduce) {
  .h1 .line-in { transform: none !important; animation: none !important; }
  .scene .s-d, .scene .s-chart { stroke-dashoffset: 0 !important; animation: none !important; }
  .scene .s-back, .scene .s-chart-fill { opacity: 1 !important; animation: none !important; }
  .scene .s-win, .scene .s-dot { opacity: 0.85 !important; animation: none !important; }
  .scene .s-bar { transform: scaleY(1) skewX(-14deg) !important; animation: none !important; }
  .scene .s-crane-jib, .scene .s-hook, .scene .s-cloud { animation: none !important; }
  .compare-list--check svg path { stroke-dashoffset: 0 !important; animation: none !important; }
  .btn::after { display: none; }
  .hero-figure .s-lyr--back, .hero-figure .s-lyr--mid, .hero-figure .s-lyr--front { transform: none !important; }
}

/* Szene: Caption-Zone freihalten + Scrim für Lesbarkeit */
.hero-figure .scene { inset: 0 0 74px 0; height: auto; }
.hero-figure .figure-caption {
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(13, 16, 38, 0.92) 55%);
  padding-top: 40px;
}

/* ============================================================
   MOTION v3 — Logo-Background, Scroll-Progress, Marquee,
   Spotlight-Cards, Live-Linien. Signature Motion System.
   ============================================================ */

/* --- Logo-Balken als lebender Hintergrund --- */
.bg-bars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bg-bars svg { position: absolute; height: auto; }
.bg-bars--hero { opacity: 0.11; }
.bg-bars--hero svg { left: -7%; bottom: -10%; width: min(46vw, 680px); }
.bg-bars--band { opacity: 0.30; }
.bg-bars--band svg { right: -3%; bottom: -14%; width: min(38%, 460px); }
.bg-bars--footer { opacity: 0.12; }
.bg-bars--footer svg { right: 2%; bottom: -12%; width: min(30%, 380px); }
.bg-bars .bb { transform: scaleY(0); transform-origin: bottom; transform-box: fill-box; }
.bg-bars.in .bb {
  animation:
    bbIn 1.1s cubic-bezier(0.3, 1.3, 0.45, 1) forwards,
    bbBreathe var(--bbt, 11s) ease-in-out calc(var(--bbd, 0s) + 1.4s) infinite alternate;
  animation-delay: var(--bbd, 0s), calc(var(--bbd, 0s) + 1.4s);
}
@keyframes bbIn { to { transform: scaleY(1); } }
@keyframes bbBreathe { from { transform: scaleY(1); } to { transform: scaleY(var(--bbs, 1.05)); } }

/* Hero: Inhalt über die Balken heben */
.hero-inner { z-index: 2; }
.cta-band > .wrap, .cta-band > .eyebrow, .cta-band > h2, .cta-band > .lead, .cta-band > .hero-actions { position: relative; z-index: 2; }

/* --- Scroll-Progress (CSS scroll-timeline, progressive) --- */
.scroll-progress { display: none; }
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    display: block; position: fixed; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
    transform-origin: left; transform: scaleX(0);
    animation: spGrow linear both; animation-timeline: scroll(root);
    z-index: 90; pointer-events: none;
  }
  @keyframes spGrow { to { transform: scaleX(1); } }
}

/* --- Kinetic Marquee (max. 1 pro Seite) --- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  background: var(--surface); padding-block: 20px; position: relative;
}
.marquee-track {
  display: flex; align-items: center; gap: 64px; width: max-content;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 1.05rem; color: var(--forest-500);
  animation: mqScroll 30s linear infinite; white-space: nowrap;
  padding-right: 64px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .mq-sep { color: var(--gold); font-size: 0.8em; }

@keyframes mqScroll { to { transform: translateX(-50%); } }

/* --- Spotlight auf Karten (folgt der Maus) --- */
.path-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 145, 77, 0.13), transparent 65%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.path-card--dark::after {
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 145, 77, 0.22), transparent 65%);
}
.path-card:hover::after { opacity: 1; }

/* --- Stat-Strip: Akzentlinie zeichnet sich --- */
.stat { position: relative; }
.stat::after {
  content: ""; position: absolute; left: clamp(16px, 3vw, 40px); bottom: 22px;
  width: 44px; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.stat.in::after { animation: statLine 0.7s var(--ease) 0.5s forwards; }
@keyframes statLine { to { transform: scaleX(1); } }

/* --- CTA-Band: Höhenlinien wandern + Glow-Puls --- */
.cta-band .topo-dark path { stroke-dasharray: 7 11; animation: topoDrift 36s linear infinite; }
@keyframes topoDrift { to { stroke-dashoffset: -360; } }
.hero-glow { animation: glowPulse 9s ease-in-out infinite alternate; }
@keyframes glowPulse { from { opacity: 0.75; transform: scale(1); } to { opacity: 1; transform: scale(1.07); } }

/* --- FAQ: sanftes Aufklappen (progressive) --- */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0; overflow: clip;
    transition: block-size 0.38s var(--ease), content-visibility 0.38s allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

/* --- Rechner: Slider-Fill (JS setzt --fill; erbt in die Track-Pseudo-Elemente) --- */
.calc input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, var(--gold) var(--fill, 12%), var(--line) var(--fill, 12%));
}
.calc input[type="range"]::-moz-range-track {
  background: linear-gradient(90deg, var(--gold) var(--fill, 12%), var(--line) var(--fill, 12%));
}

/* --- Reduced Motion: alles ruhig --- */
@media (prefers-reduced-motion: reduce) {
  .bg-bars .bb, .bg-bars.in .bb { transform: scaleY(1); animation: none !important; }
  .scroll-progress { display: none !important; }
  .marquee-track { animation: none; }
  .stat::after, .stat.in::after { transform: scaleX(1); animation: none; }
  .cta-band .topo-dark path { animation: none; }
  .hero-glow { animation: none; }
  .path-card::after { display: none; }
  .faq-item::details-content { transition: none; }
  .faq-item summary::after { transition: none; }
}

/* Footer/Hero Stacking für bg-bars */
.site-footer { position: relative; overflow: hidden; }
.site-footer .wrap { position: relative; z-index: 2; }
.section > .wrap { position: relative; z-index: 2; }

/* --- Inhaber-Portrait (echtes Foto) --- */
.portrait { padding: 0; }
.portrait-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; z-index: 0;
  transform: scale(1.08);
}
.portrait.in .portrait-img { animation: portraitIn 1.6s var(--ease) forwards; }
@keyframes portraitIn { to { transform: scale(1); } }
.portrait::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20, 24, 52, 0) 48%, rgba(20, 24, 52, 0.9));
}
.portrait .sig { position: relative; z-index: 2; padding: 26px; }
@media (prefers-reduced-motion: reduce) {
  .portrait-img { transform: scale(1); }
  .portrait.in .portrait-img { animation: none; }
}

/* --- Hero-Karte: Immobilien-Statement-Caption --- */
.cap-title {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.04;
  color: #ffffff; letter-spacing: 0.04em;
}
.cap-sub { margin: 10px 0 0; color: #c3c9e2; font-size: 0.92rem; max-width: 34ch; }
.cap-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; }
.cap-chips li {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.68rem; color: var(--gold-soft);
  border: 1px solid rgba(255, 180, 136, 0.45); border-radius: 999px;
  padding: 6px 12px;
  opacity: 0; transform: translateY(8px);
}
.reveal.in .cap-chips li { animation: chipIn 0.5s var(--ease) forwards; animation-delay: calc(1.7s + var(--cd, 0s)); }
@keyframes chipIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .cap-chips li { opacity: 1; transform: none; animation: none !important; }
}

/* ============================================================
   CONVERSION v4 — Wort-Rotator, Lead-Magnet, Video-Platzhalter
   ============================================================ */

/* --- Hero-Wort-Rotator --- */
.rotator { display: inline-block; transition: transform 0.32s var(--ease), opacity 0.32s var(--ease); will-change: transform; }
.rotator.is-out { transform: translateY(-0.55em); opacity: 0; }
.rotator.is-in { transform: translateY(0.55em); opacity: 0; transition: none; }

/* --- Lead-Magnet-Block --- */
.lead-magnet {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--forest-700), var(--forest-900));
  color: #eef0f8; padding: clamp(30px, 4.5vw, 56px);
  box-shadow: var(--shadow);
}
.lead-magnet .lm-head { position: relative; z-index: 2; max-width: 60ch; }
.lead-magnet h2 { color: #fff; }
.lead-magnet .lm-sub { margin: 14px 0 0; color: #c3c9e2; font-size: 1.05rem; max-width: 56ch; }
.lm-form {
  position: relative; z-index: 2; margin-top: 28px;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr auto; gap: 12px;
}
.lm-form select, .lm-form input {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #ffffff; border: 1px solid transparent; border-radius: var(--radius);
  padding: 14px 15px; width: 100%;
}
.lm-form select:focus, .lm-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,145,77,0.35); }
.lm-form .btn { justify-content: center; }
.lm-note { position: relative; z-index: 2; margin: 14px 0 0; font-size: 0.85rem; color: #9aa1c4; }

/* Download-Zeile im Lead-Magnet */
.lm-download {
  position: relative; z-index: 2; margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.lm-download .dl-ico {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 10px;
  background: rgba(255, 145, 77, 0.16); border: 1px solid rgba(255, 145, 77, 0.4);
  display: grid; place-items: center; color: var(--gold-soft);
}
.lm-download .dl-ico svg { width: 24px; height: 24px; }
.lm-download .dl-t { flex: 1; min-width: 220px; }
.lm-download .dl-t strong { color: #fff; display: block; }
.lm-download .dl-t span { color: #9aa1c4; font-size: 0.9rem; }
.lm-download .btn--ghost { --btn-fg: #ffffff; border-color: rgba(255,255,255,0.45); }
.lm-download .btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* --- Video-Platzhalter (16:9) --- */
.video-shell { position: relative; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg);
  overflow: hidden; background:
    radial-gradient(90% 120% at 78% 10%, rgba(255, 145, 77, 0.14), transparent 55%),
    linear-gradient(145deg, #232b5c, var(--forest-900));
  box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.video-frame .vf-skyline { position: absolute; left: 0; right: 0; bottom: 0; opacity: 0.5; pointer-events: none; }
.vf-play {
  position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 999px;
  background: var(--gold); display: grid; place-items: center;
  box-shadow: var(--shadow-orange); cursor: pointer; border: 0;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.vf-play:hover { transform: scale(1.07); background: var(--gold-deep); }
.vf-play svg { width: 30px; height: 30px; margin-left: 5px; color: #141834; }
.vf-play::before, .vf-play::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid rgba(255, 145, 77, 0.55);
  animation: playPulse 2.6s ease-out infinite;
}
.vf-play::after { animation-delay: 1.3s; }
@keyframes playPulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(1.85); opacity: 0; }
}
.vf-label {
  position: absolute; z-index: 2; left: 26px; bottom: 22px; right: 26px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.vf-label .display { color: #fff; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: 0.04em; }
.vf-label small { color: #9aa1c4; font-size: 0.85rem; }

@media (max-width: 900px) {
  .lm-form { grid-template-columns: 1fr 1fr; }
  .lm-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .lm-form { grid-template-columns: 1fr; }
  .vf-play { width: 72px; height: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  .rotator { transition: none; }
  .vf-play::before, .vf-play::after { animation: none; opacity: 0; }
}

/* --- Video-Teaser v2: Poster, Kapitel, Player-Bar, Kontakt-Overlay --- */
.video-frame--teaser { display: block; place-items: unset; }
.vf-poster {
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  object-fit: cover; object-position: top center;
  filter: grayscale(35%) contrast(1.02);
}
.vf-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #141834 46%, rgba(20, 24, 52, 0.55) 62%, rgba(20, 24, 52, 0.12) 100%),
    linear-gradient(0deg, rgba(20, 24, 52, 0.8), transparent 34%);
}
.vf-badge {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.66rem; color: var(--gold-soft);
  border: 1px solid rgba(255, 180, 136, 0.5); border-radius: 999px;
  padding: 6px 12px; background: rgba(20, 24, 52, 0.55); backdrop-filter: blur(4px);
}
.vf-content {
  position: absolute; inset: 0 40% 44px 0; z-index: 2;
  display: flex; align-items: center; gap: clamp(18px, 3vw, 34px);
  padding-left: clamp(22px, 4vw, 48px);
}
.vf-copy .vf-title { display: block; color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.9rem); letter-spacing: 0.04em; }
.vf-chapters { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.vf-chapters li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: center;
  color: #c3c9e2; font-size: 0.95rem;
}
.vf-chapters svg { width: 16px; height: 16px; color: var(--gold); }
.vf-bar {
  position: absolute; left: clamp(22px, 4vw, 48px); right: clamp(22px, 4vw, 48px); bottom: 22px; z-index: 2;
  height: 3px; border-radius: 99px; background: rgba(255, 255, 255, 0.18);
}
.vf-bar .vf-dot {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 9px; height: 9px; border-radius: 99px;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.25);
}
.vf-overlay {
  position: absolute; inset: 0; z-index: 5;
  background: rgba(13, 16, 38, 0.9); backdrop-filter: blur(6px);
  display: grid; place-items: center; text-align: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.vf-overlay.is-open { opacity: 1; pointer-events: auto; }
.vf-overlay .display { color: #fff; font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.vf-overlay p { color: #c3c9e2; margin: 12px auto 22px; max-width: 44ch; }
.vf-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 99px; border: 1px solid rgba(255,255,255,0.3); background: transparent;
  color: #fff; font-size: 1.2rem; cursor: pointer; line-height: 1;
}
.vf-close:hover { border-color: var(--gold); color: var(--gold-soft); }

@media (max-width: 900px) {
  .vf-poster { width: 100%; opacity: 0.35; }
  .vf-grad { background: linear-gradient(0deg, rgba(20,24,52,0.92) 30%, rgba(20,24,52,0.35)); }
  .vf-content { inset: 0 6% 50px 0; }
  .vf-chapters li { font-size: 0.88rem; }
}
@media (max-width: 560px) {
  /* Badge oben zentriert statt rechts — überlappt sonst die Kapitel-Liste */
  .vf-badge { top: 12px; left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; }
  /* 16:9 ist zu niedrig für Badge + Titel + Kapitel + Play: Inhalt vertikal stapeln */
  .video-frame--teaser { aspect-ratio: auto; min-height: 480px; }
  .vf-content {
    inset: 58px 6% 64px 0;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px;
  }
}

/* --- Hero-Sync: Szene-Highlights + aktive Chips --- */
.scene .hl {
  fill: none; stroke: var(--gold); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transition: opacity 0.45s ease;
  filter: drop-shadow(0 0 7px rgba(255, 145, 77, 0.85));
  pointer-events: none;
}
.scene .hl.is-hl { opacity: 1; animation: hlBreath 1.6s ease-in-out infinite alternate; }
@keyframes hlBreath { from { opacity: 0.55; } to { opacity: 1; } }

.cap-chips li { opacity: 0; transform: translateY(8px); border: 0; padding: 0; }
.cap-chip {
  display: inline-block;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.68rem; color: var(--gold-soft);
  border: 1px solid rgba(255, 180, 136, 0.45); border-radius: 999px;
  padding: 6px 12px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}
.cap-chip:hover { transform: translateY(-2px); border-color: var(--gold); color: #fff; }
.cap-chip.is-active { background: var(--gold); color: #141834; border-color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .scene .hl.is-hl { animation: none; opacity: 1; }
  .cap-chip { transition: none; }
}

/* ============================================================
   HERO-PROPORTIONEN v2 — grössere Bühne, ausgewogene Spalten
   ============================================================ */
.hero .wrap { max-width: 1320px; }
.hero-inner { padding-block: clamp(40px, 5vw, 64px) clamp(44px, 6vw, 72px); }
.hero-grid { grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 4vw, 64px); }
.hero-figure { aspect-ratio: 5 / 6; }
.hero-figure .scene { inset: 0 0 64px 0; }
.hero-figure .figure-caption { padding: 26px 26px 24px; padding-top: 44px; }
.cap-chips { margin-top: 12px; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Hero-Feinschliff: sekundäre H1-Zeile kleiner (kein Umbruch, Skalen-Kontrast) */
.hero h1 .thin { font-size: 0.58em; letter-spacing: 0.05em; display: inline-block; margin-top: 0.18em; }

/* Chips: reduced-motion sichtbar (Kaskaden-Fix nach Neudefinition) */
@media (prefers-reduced-motion: reduce) {
  .cap-chips li { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============================================================
   ELEGANCE v5 — Grain, Aurora, Blur-Reveals, Tiefe, Essence
   ============================================================ */

/* --- Feines Film-Grain über allem (fixed, nicht scrollend) --- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 80; pointer-events: none;
  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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028; mix-blend-mode: multiply;
}

/* --- Aurora-Drift hinter dem Hero (Brand-Farben, sehr subtil) --- */
.hero::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 44% at 22% 24%, rgba(255, 145, 77, 0.07), transparent 70%),
    radial-gradient(46% 52% at 84% 70%, rgba(32, 40, 87, 0.08), transparent 70%),
    radial-gradient(30% 36% at 62% 12%, rgba(255, 145, 77, 0.05), transparent 70%);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  from { transform: translate(-2%, -1%) scale(1); }
  to { transform: translate(2%, 2%) scale(1.06); }
}

/* --- Reveals: Blur-to-Sharp (teurer Look) --- */
.reveal { filter: blur(9px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.8s var(--ease); }
.reveal.in { filter: blur(0); }

/* --- Scroll-Parallax der Logo-Balken (progressive) --- */
@supports (animation-timeline: view()) {
  .bg-bars svg {
    animation: bgParallax linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes bgParallax {
    from { translate: 0 44px; }
    to { translate: 0 -44px; }
  }
}

/* --- Lichtsaum auf dunklen Flächen (Premium-Kante) --- */
.path-card--dark, .cta-band, .lead-magnet, .hero-figure, .video-frame, .portrait {
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

/* --- Header bekommt Tiefe beim Scrollen --- */
.site-header.is-scrolled { box-shadow: 0 10px 34px -20px rgba(20, 24, 52, 0.3); }

/* --- Signature-Unterstrich unter Headlines ohne Eyebrow --- */
.sec-head:not(:has(.kicker-line)) .h2::after {
  content: ""; display: block; width: 62px; height: 3px; margin-top: 18px;
  background: var(--gold); border-radius: 99px;
  transform: scaleX(0); transform-origin: left;
}
.sec-head.center:not(:has(.kicker-line)) .h2::after { margin-inline: auto; transform-origin: center; }
.sec-head.reveal.in:not(:has(.kicker-line)) .h2::after { animation: statLine 0.7s var(--ease) 0.35s forwards; }

/* --- Essence-Moment über dem Footer: grosse Outline-Typo --- */
.footer-essence {
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  line-height: 1; letter-spacing: 0.02em;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.22);
  margin: 0 0 clamp(32px, 5vw, 56px); position: relative; z-index: 2;
}
.footer-essence .fe-fill { color: var(--gold); -webkit-text-stroke: 0; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
  .hero::before { animation: none; }
  .reveal { filter: none; transition: none; }
  .bg-bars svg { animation: none !important; translate: none; }
  .sec-head .h2::after { transform: scaleX(1) !important; animation: none !important; }
}

/* ============================================================
   HERO-VIDEO — Drohnenflug Petersberg/Erfurt als Kino-Bühne
   ============================================================ */
.hero--video { background: #10142e; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 16, 38, 0.93) 0%, rgba(13, 16, 38, 0.82) 38%, rgba(16, 20, 46, 0.5) 68%, rgba(16, 20, 46, 0.62) 100%),
    linear-gradient(0deg, rgba(13, 16, 38, 0.85) 0%, transparent 30%);
}
.hero--video::before { display: none; }               /* Aurora aus — Video übernimmt */
.hero--video .bg-bars--hero { display: none; }         /* Balken aus — Video übernimmt */
.hero--video .hero-glow { z-index: 1; opacity: 0.7; }

/* Text auf Video: helle Palette */
.hero--video h1, .hero--video .h1 { color: #ffffff; }
.hero--video h1 .thin { color: #aeb6dc; }
.hero--video .eyebrow { color: var(--gold-soft); }
.hero--video .lead { color: #c9cfe8; }
.hero--video .btn--ghost { --btn-fg: #ffffff; border-color: rgba(255, 255, 255, 0.45); }
.hero--video .btn--ghost:hover { border-color: #ffffff; }

/* Karte hebt sich vom Video ab */
.hero--video .hero-figure {
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reduced Motion / Fallback: Video aus, ruhiger Navy-Grund */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* --- Video-Hero solo: volle Bühne, läuft tief --- */
.hero--video { min-height: calc(100dvh - 74px); display: flex; }
.hero--video .hero-inner { display: flex; align-items: center; width: 100%; padding-block: clamp(48px, 6vw, 88px); }
.hero-grid--solo { grid-template-columns: 1fr; max-width: 760px; }
.hero--video .h1 { font-size: clamp(3rem, 7.6vw, 6.6rem); }
.hero--video .lead { font-size: clamp(1.15rem, 1.8vw, 1.45rem); max-width: 54ch; }
.hero--video .hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(13, 16, 38, 0.97) 0%, rgba(13, 16, 38, 0.88) 38%, rgba(16, 20, 46, 0.52) 70%, rgba(16, 20, 46, 0.62) 100%),
    linear-gradient(0deg, rgba(13, 16, 38, 0.92) 0%, transparent 36%),
    linear-gradient(180deg, rgba(13, 16, 38, 0.45) 0%, transparent 22%);
}
@media (max-width: 900px) {
  .hero--video { min-height: 88dvh; }
  .hero--video .hero-video-overlay { background: linear-gradient(0deg, rgba(13,16,38,0.94) 20%, rgba(13,16,38,0.55)); }
}

/* --- Video-Hero: Plakat-Typografie --- */
.hero-grid--solo { max-width: 940px; }
.hero--video .h1 { font-size: clamp(3.4rem, 9.2vw, 8.4rem); }
.hero--video .eyebrow { font-size: 0.95rem; letter-spacing: 0.3em; }
.hero--video .lead { font-size: clamp(1.2rem, 1.9vw, 1.55rem); margin-top: 30px; }
.hero--video .hero-actions { margin-top: 44px; }
.hero--video .hero-actions .btn { padding: 19px 38px; font-size: 0.95rem; }
@media (max-width: 560px) {
  .hero--video .h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
}

/* --- Video-Performance: billiges Grain-Compositing + Layer-Hint --- */
body::after { mix-blend-mode: normal; opacity: 0.02; }
.hero-video { transform: translateZ(0); will-change: transform; }

/* ============================================================
   Owner-Feedback Juli 2026:
   Wizard-Formular, Radio-Cards, WhatsApp-CTA, Shine-Button,
   Ankaufsprofil-Download-Karte
   ============================================================ */

/* --- Ankaufsprofil-Downloads: dunkle Karte in hellem Kontext --- */
.lm-download--card {
  border-top: 0;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--forest-700), var(--forest-900));
  box-shadow: var(--shadow);
}

/* --- Mehrstufiges Kontakt-Formular (Wizard) --- */
.wizard { position: relative; }

.wiz-progress {
  list-style: none; margin: 0 0 30px; padding: 0;
  display: flex; align-items: center;
}
.wiz-progress li {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
.wiz-progress li::after {
  content: ""; flex: 1; height: 2px; margin: 0 14px;
  background: var(--border); border-radius: 2px;
  transition: background 0.4s var(--ease);
}
.wiz-progress li:last-child { flex: 0 0 auto; }
.wiz-progress li:last-child::after { display: none; }
.wp-n {
  width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 700;
  background: #ffffff; color: var(--text-muted);
  border: 1.5px solid var(--line-strong);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.wp-t {
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.02em; white-space: nowrap;
}
.wiz-progress li.is-active .wp-n { background: var(--gold); border-color: var(--gold); color: #141834; }
.wiz-progress li.is-active .wp-t { color: var(--forest-900); }
.wiz-progress li.is-done .wp-n { background: var(--forest); border-color: var(--forest); color: #ffffff; }
.wiz-progress li.is-done::after { background: var(--forest); }

.wiz-step { display: none; border: 0; padding: 0; margin: 0; min-inline-size: auto; }
.wiz-step.is-active { display: block; animation: wizIn 0.35s var(--ease) both; }
@keyframes wizIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.wiz-legend { padding: 0; margin: 0 0 18px; font-size: 1.06rem; font-weight: 700; color: var(--forest-900); }
.wiz-hint { margin: 12px 0 0; font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.wiz-nav { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.wiz-nav .btn--gold { flex: 1; justify-content: center; min-width: 190px; }

/* Verkaufs-Detailfelder nur zeigen, wenn Anliegen = Immobilie verkaufen */
.wizard .wiz-verkauf { display: none; }
.wizard.wiz-topic-verkauf .wiz-verkauf { display: grid; }

/* --- Radio-Cards (Anliegen-Auswahl) --- */
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt-card {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 15px 16px; cursor: pointer;
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.opt-card input { position: absolute; opacity: 0; pointer-events: none; }
.opt-card svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--forest); transition: color 0.25s var(--ease); }
.opt-card .opt-t { font-size: 0.95rem; font-weight: 600; color: var(--forest-900); line-height: 1.3; }
.opt-card:hover { border-color: var(--forest); }
.opt-card.is-sel {
  border-color: var(--gold); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.22), var(--shadow-sm);
}
.opt-card.is-sel svg { color: var(--gold-deep); }
.opt-card:focus-within { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --- Fehlerzustand --- */
.field.has-err input, .field.has-err select, .field.has-err textarea {
  border-color: #b23a2a;
  box-shadow: 0 0 0 3px rgba(178, 58, 42, 0.14);
}
.field.has-err .consent { color: #7a2318; }
.field.has-err .consent input { outline: 2px solid #b23a2a; outline-offset: 2px; }

/* --- WhatsApp-Button (Wiedererkennung: offizielles Gruen) --- */
.btn--wa { --btn-bg: #25d366; --btn-fg: #0b3d24; border-color: #25d366; }
.btn--wa:hover {
  background: #1fbd5a; border-color: #1fbd5a;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}

/* --- Shine-CTA (Immobilie anbieten) --- */
.btn--shine {
  background-image: linear-gradient(135deg, #ffa76b, var(--gold) 45%, var(--gold-deep));
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(255, 145, 77, 0.4);
}
.btn--shine:hover {
  background: var(--gold-deep);
  background-image: linear-gradient(135deg, #ffa76b, var(--gold-deep));
  box-shadow: 0 18px 42px rgba(255, 145, 77, 0.5);
}

/* --- Mobile --- */
@media (max-width: 560px) {
  .opt-grid { grid-template-columns: 1fr; }
  .wiz-progress li::after { margin: 0 8px; }
  .wp-t { display: none; }
  .wiz-progress li.is-active .wp-t { display: inline; }
  .wiz-nav .btn--gold { min-width: 0; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .wiz-step.is-active { animation: none !important; }
  .wp-n, .opt-card, .wiz-progress li::after { transition: none !important; }
}

/* --- Nav mit 5 Menuepunkten: Zwischenbreiten entzerren --- */
@media (max-width: 1200px) and (min-width: 901px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.9rem; }
  .nav-cta .btn { padding: 13px 22px; font-size: 0.82rem; }
  .brand-mark { font-size: 1.12rem; }
}
