/* ════════════════════════════════════════════════════════
   FINANZATELIER BAYERN — Design System v4
   Alexander Hünniger · finanzatelier.bayern
   
   PRINZIP: Weißer Hintergrund. Cappuccino-Typografie.
   Gold als Akzent. Struktur durch Rahmen & Space.
   Conversion-first: Jede Sektion hat ein Ziel.
════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* ── Hintergründe: ausschließlich hell ── */
  --bg:        #ffffff;
  --bg-soft:   #fdfcfa;   /* hauch warm, kaum sichtbar */
  --bg-card:   #ffffff;
  
  /* ── Typografie: Cappuccino-Töne ── */
  --h-color:   #2c1a0e;   /* Überschriften: tiefer Espresso */
  --body:      #3d2b1f;   /* Fließtext: dunkles Cappuccino */
  --muted:     #6b5141;   /* Sekundärtext */
  --faint:     #9c7d6a;   /* Labels, Meta */
  --hairline:  #c4a98f;   /* sehr hell, für Zitate etc */
  
  /* ── Gold-Palette ── */
  --gold:      #b08030;   /* Haupt-Gold: Buttons, CTA, Links */
  --gold-h:    #c8962e;   /* Hover-Gold */
  --gold-d:    #8a6020;   /* Dunkleres Gold für Text */
  --gold-tint: #fdf8f0;   /* Gold-Tint Hintergrund */
  --gold-line: #e8cc90;   /* Gold für Rahmen */
  
  /* ── Rahmen ── */
  --line:      #e8e0d8;   /* Standard */
  --line-s:    #f0ebe5;   /* subtil */
  --line-d:    #c8bfb5;   /* stark */
  
  /* ── Status ── */
  --red:       #c0392b;
  --green:     #2e7d32;
  
  /* ── Dunkel (nur Footer + letzter CTA) ── */
  --dark:      #1a0f08;
  --dark2:     #2d1c10;
  
  /* ── Fonts ── */
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --mono:   'DM Mono', 'Courier New', monospace;
  --sans:   'DM Sans', system-ui, sans-serif;
  
  /* ── Spacing ── */
  --max:    1160px;
  --sec:    100px;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--h-color); }
em { font-style: italic; }

/* ════ LAYOUT ════════════════════════════════════════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--sec) 48px; background: var(--bg); }
.section-warm { padding: var(--sec) 48px; background: var(--bg-soft); }
.section-dark { padding: var(--sec) 48px; background: var(--dark); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.split-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.split-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ════ TYPOGRAFIE ════════════════════════════════════════ */

/* Section-Einstieg */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-d);
  display: block;
  margin-bottom: 14px;
}
.eyebrow::before { content: '✦  '; color: var(--gold); }

/* Headlines */
.h-display {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -3px;
  color: var(--h-color);
}
.h-xl {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--h-color);
}
.h-lg {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--h-color);
}
.h-md {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--h-color);
}
.h-sm {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--h-color);
  line-height: 1.25;
}
h3.card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--h-color);
  margin-bottom: 8px;
}

/* Gold-Akzent in Überschriften */
.accent { color: var(--gold); }
.accent-i { color: var(--gold); font-style: italic; }

/* Dunkel-Sektion Überschriften */
.section-dark .h-display,
.section-dark .h-xl,
.section-dark .h-lg,
.section-dark .h-md,
.section-dark .h-sm { color: #fff; }
.section-dark .accent,
.section-dark .accent-i { color: var(--gold-h); }
.section-dark .eyebrow { color: var(--gold-h); }
.section-dark p { color: rgba(255,255,255,.6); }
.section-dark strong { color: rgba(255,255,255,.9); }

/* Body-Text */
.lead { font-size: 18px; line-height: 1.72; color: var(--muted); font-weight: 300; max-width: 620px; }
.body-lg { font-size: 16px; line-height: 1.75; color: var(--body); }
.body-sm { font-size: 14px; line-height: 1.7; color: var(--muted); }
.caption { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); }

/* Zitatleiste */
.promise-bar {
  font-size: 16px;
  line-height: 1.65;
  color: var(--h-color);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
}

/* ════ BUTTONS ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; letter-spacing: .2px;
  border: none; cursor: pointer; transition: all .22s;
  text-decoration: none; line-height: 1;
}
/* Gold gefüllt – Haupt-CTA */
.btn-gold {
  background: var(--gold); color: #fff;
  padding: 16px 32px; font-size: 15px; border-radius: 40px;
  box-shadow: 0 2px 14px rgba(176,128,48,.25);
}
.btn-gold:hover { background: var(--gold-h); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(176,128,48,.35); }
.btn-gold.lg { padding: 19px 40px; font-size: 16px; }

/* Gold Outline */
.btn-ring {
  background: transparent; color: var(--gold);
  padding: 15px 30px; font-size: 14px; border-radius: 40px;
  border: 1.5px solid var(--gold-line); font-weight: 400;
}
.btn-ring:hover { border-color: var(--gold); background: var(--gold-tint); }

/* Dark Outline */
.btn-dark-ring {
  background: transparent; color: var(--h-color);
  padding: 15px 30px; font-size: 14px; border-radius: 40px;
  border: 1.5px solid var(--line-d); font-weight: 400;
}
.btn-dark-ring:hover { border-color: var(--h-color); }

/* Weiß (auf dunklem Bg) */
.btn-white {
  background: #fff; color: var(--dark);
  padding: 18px 38px; font-size: 15px; border-radius: 40px;
}
.btn-white:hover { background: var(--gold-tint); color: var(--gold-d); transform: translateY(-2px); }

/* Nav Button */
.btn-nav {
  background: var(--gold); color: #fff;
  padding: 10px 22px; font-size: 13px; border-radius: 40px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-family: var(--sans); transition: all .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-h); transform: translateY(-1px); }

/* ════ NAV ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-s);
  transition: box-shadow .3s, border-color .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(44,26,14,.07); border-color: var(--line); }

.logo {
  display: flex; align-items: baseline; gap: 0; text-decoration: none;
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--h-color); letter-spacing: -.4px; white-space: nowrap;
}
.logo .dot { color: var(--gold); }
.logo-sub { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--faint); margin-left: 8px; align-self: center; }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  padding: 8px 14px; border-radius: 20px;
  transition: all .18s; text-decoration: none;
}
.nav-links a:hover { color: var(--h-color); background: var(--bg-soft); }
.nav-links a.active { color: var(--h-color); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .5px; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px; background: none; border: none;
}
.burger:hover { background: var(--bg-soft); }
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--h-color); border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════ MOBILE MENU ═══════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 290;
  background: var(--bg); padding: 82px 28px 40px;
  flex-direction: column; overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--line);
}
.mobile-menu.open { transform: translateX(0); }
.mm-greeting { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--h-color); display: block; margin-bottom: 6px; }
.mm-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.mm-links { list-style: none; margin-bottom: 28px; }
.mm-links li a {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--h-color); padding: 14px 0; border-bottom: 1px solid var(--line-s);
  transition: color .2s; text-decoration: none;
}
.mm-links li a:hover { color: var(--gold); }
.mm-links li a span { font-size: 16px; color: var(--hairline); }
.mm-ql-title { font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 12px; }
.mm-ql-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.mm-ql {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 14px; font-size: 13px;
  font-weight: 500; color: var(--h-color); display: flex;
  flex-direction: column; gap: 6px; transition: all .2s; text-decoration: none;
}
.mm-ql:hover { border-color: var(--gold-line); background: var(--gold-tint); }
.mm-ql-ico { font-size: 20px; }
.mm-cta {
  background: var(--gold); color: #fff; padding: 18px 24px;
  border-radius: 14px; font-size: 15px; font-weight: 600;
  text-align: center; display: block; margin-bottom: 12px;
  transition: background .2s; text-decoration: none;
}
.mm-cta:hover { background: var(--gold-h); }
.mm-contact { display: flex; gap: 10px; }
.mm-cb {
  flex: 1; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px; text-align: center; font-size: 13px;
  color: var(--h-color); font-weight: 500; transition: all .2s; text-decoration: none;
}
.mm-cb:hover { border-color: var(--gold-line); }

/* ════ HERO ══════════════════════════════════════════════
   Conversion-Architektur:
   1. Aufmerksamkeit  → Großes H1
   2. Problem benennen → Subtext
   3. Lösung anbieten → Promise
   4. Aktion          → CTA
   5. Vertrauen       → Trust-Bar
═════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; padding: 140px 48px 96px;
  display: flex; align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
/* Dezenter Hintergrund-Akzent: Großes "A" aus Typografie */
#hero::after {
  content: 'F';
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: clamp(400px, 45vw, 700px);
  font-weight: 300; color: rgba(176,128,48,.04);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -20px;
}
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; position: relative; z-index: 1; }

/* Floating Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-tint); border: 1px solid var(--gold-line);
  padding: 7px 16px; border-radius: 40px;
  font-family: var(--mono); font-size: 10px;
  color: var(--gold-d); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 36px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

/* Hero H1 */
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 300; line-height: .97; letter-spacing: -3px;
  color: var(--h-color); margin-bottom: 32px;
}
.hero-h1 .accent-i { color: var(--gold); font-style: italic; }

/* Subtext */
.hero-lead {
  font-size: 18px; line-height: 1.72; color: var(--muted);
  max-width: 580px; margin-bottom: 20px; font-weight: 300;
}
.hero-promise {
  font-size: 16px; line-height: 1.65;
  color: var(--h-color); max-width: 560px;
  margin-bottom: 44px;
  padding-left: 18px;
  border-left: 2.5px solid var(--gold);
}
.hero-promise strong { color: var(--gold-d); }

/* CTA-Zeile */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; align-items: center; }
.cta-note { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); }

/* Trust-Bar */
.trust-bar {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.trust-item::before {
  content: '✓'; font-size: 10px; font-family: var(--mono);
  width: 20px; height: 20px; background: var(--gold-tint);
  border: 1px solid var(--gold-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}

/* ════ STATS-BAND ════════════════════════════════════════ */
.stats-band {
  background: var(--gold-tint);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 44px 32px; text-align: center;
  border-right: 1px solid var(--gold-line);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--h-color); line-height: 1; margin-bottom: 8px;
}
.stat-num .unit { font-size: 32px; color: var(--gold); }
.stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); }

/* ════ SECTION HEADER ════════════════════════════════════ */
.sh { margin-bottom: 56px; }
.sh .lead { margin-top: 14px; }

/* ════ CARDS: Weiß + Rahmen + Gold-Hover ════════════════ */
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  padding: 32px 28px; border-radius: 2px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover {
  border-color: var(--gold-line);
  box-shadow: 0 6px 28px rgba(176,128,48,.1);
  transform: translateY(-3px);
}
.card-num { font-family: var(--mono); font-size: 10px; color: var(--hairline); margin-bottom: 20px; }
.card-ico { font-size: 28px; margin-bottom: 18px; }
.card-badge {
  display: inline-block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-d); background: var(--gold-tint);
  border: 1px solid var(--gold-line); padding: 3px 10px;
  border-radius: 40px; margin-bottom: 12px;
}
.card-link { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-top: 18px; display: block; transition: letter-spacing .2s; }
.card:hover .card-link { letter-spacing: 3px; }

/* Karten-Grids */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

/* ════ PAIN SECTION ══════════════════════════════════════ */
.pain-list { display: flex; flex-direction: column; gap: 10px; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--line);
  padding: 20px 22px; border-radius: 2px;
}
.pain-item.positive {
  border-color: var(--gold-line);
  background: var(--gold-tint);
}
.pain-ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.pain-ico.neg { color: var(--red); }
.pain-ico.pos { color: var(--gold); }
.pain-item p { font-size: 14px; color: var(--body); line-height: 1.55; }
.pain-item strong { color: var(--h-color); font-size: 14px; font-weight: 600; display: block; margin-bottom: 3px; }
.pain-item.positive strong { color: var(--gold-d); }

/* ════ PROZESS ═══════════════════════════════════════════ */
.prozess-grid {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0; align-items: start; margin-top: 48px;
}
.prozess-step {
  background: var(--bg-card); border: 1px solid var(--line);
  padding: 32px 28px; border-radius: 2px;
}
.ps-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--gold-line); line-height: 1; margin-bottom: 14px; }
.ps-title { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--h-color); margin-bottom: 10px; }
.ps-text { font-size: 14px; line-height: 1.65; color: var(--muted); }
.prozess-arr { display: flex; align-items: center; justify-content: center; padding-top: 32px; font-size: 20px; color: var(--gold-line); }

/* ════ VERSPRECHEN ═══════════════════════════════════════ */
.vp-list { display: flex; flex-direction: column; gap: 0; }
.vp-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 28px; border: 1px solid var(--line);
  border-top: none; background: var(--bg-card);
}
.vp-list .vp-item:first-child { border-top: 1px solid var(--line); }
.vp-num { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold-line); flex-shrink: 0; min-width: 32px; }
.vp-text strong { font-size: 15px; font-weight: 600; color: var(--h-color); display: block; margin-bottom: 4px; }
.vp-text p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ════ FAKTEN / ZAHLEN ═══════════════════════════════════ */
.fakten-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border: 1px solid var(--line); margin: 48px 0;
}
.fakt-item { padding: 40px 32px; text-align: center; border-right: 1px solid var(--line); }
.fakt-item:last-child { border-right: none; }
.fakt-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--h-color); line-height: 1; margin-bottom: 10px; }
.fakt-num .g { color: var(--gold); }
.fakt-text { font-size: 13px; line-height: 1.6; color: var(--muted); max-width: 180px; margin: 0 auto; }

.fakt-cta-box {
  border: 1px solid var(--line); border-top: none;
  padding: 52px 40px; text-align: center; background: var(--gold-tint);
}
.fakt-cta-pre { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.fakt-cta-q { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 300; color: var(--muted); font-style: italic; margin-bottom: 12px; }
.fakt-cta-a { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 46px); font-weight: 400; color: var(--h-color); margin-bottom: 32px; }

/* ════ FAQ ═══════════════════════════════════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { border: 1px solid var(--line); margin-top: 44px; }
.faq-item { padding: 28px 36px; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 500; color: var(--h-color); margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* ════ ERSTGESPRÄCH ══════════════════════════════════════ */
.eg-box { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.eg-left { padding: 56px 48px; border-right: 1px solid var(--line); }
.eg-right { padding: 56px 48px; background: var(--gold-tint); }
.eg-h { font-family: var(--serif); font-size: clamp(26px,3.5vw,42px); font-weight: 300; color: var(--h-color); margin-bottom: 18px; line-height: 1.1; letter-spacing: -1px; }
.eg-text { font-size: 15px; line-height: 1.72; color: var(--muted); margin-bottom: 20px; }
.eg-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.eg-list li { font-size: 14px; color: var(--body); padding-left: 20px; position: relative; }
.eg-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.eg-note { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); }
.eg-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.eg-opt { display: flex; align-items: center; gap: 14px; border: 1px solid var(--gold-line); background: #fff; padding: 16px 18px; font-size: 14px; color: var(--h-color); }
.eg-opt-ico { font-size: 18px; }

/* ════ TESTIMONIALS ══════════════════════════════════════ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { background: var(--bg-card); border: 1px solid var(--line); padding: 32px 28px; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.review-quote {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  font-weight: 300; line-height: 1.65; color: var(--h-color); margin-bottom: 20px;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--h-color); }
.review-meta { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 4px; letter-spacing: .5px; }

/* ════ GEO CARDS ══════════════════════════════════════════ */
.geo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--line); }
.geo-card { display: block; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .15s; text-decoration: none; }
.geo-card:hover { background: var(--gold-tint); }
.geo-city { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--h-color); margin-bottom: 4px; }
.geo-reg { font-family: var(--mono); font-size: 10px; color: var(--faint); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.geo-arr { font-family: var(--mono); font-size: 11px; color: var(--hairline); transition: color .2s; }
.geo-card:hover .geo-arr { color: var(--gold); }

/* ════ FORM ══════════════════════════════════════════════ */
.form-box { border: 1px solid var(--line); padding: 48px; background: var(--bg-card); }
.form-group { margin-bottom: 20px; }
.form-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px; background: var(--bg-soft);
  border: 1px solid var(--line); font-family: var(--sans);
  font-size: 15px; color: var(--h-color); outline: none;
  transition: border-color .2s; border-radius: 0;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); background: var(--gold-tint); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.form-check-label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-check-label a { color: var(--gold); text-decoration: underline; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: #fff; border: none; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; transition: all .22s; border-radius: 40px; }
.form-submit:hover { background: var(--gold-h); transform: translateY(-1px); }

.contact-box { border: 1px solid var(--line); padding: 36px 32px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-s); }
.ci-item:last-child { border-bottom: none; }
.ci-ico { width: 40px; height: 40px; border: 1px solid var(--gold-line); background: var(--gold-tint); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ci-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 3px; }
.ci-value { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--h-color); }

/* ════ LEISTUNGEN ════════════════════════════════════════ */
.leist-group { margin-bottom: 60px; }
.leist-group-h { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--h-color); padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.leist-items { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); }
.leist-item { padding: 22px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; transition: background .15s; }
.leist-item:hover { background: var(--gold-tint); }
.leist-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.leist-name { font-size: 14px; font-weight: 600; color: var(--h-color); margin-bottom: 4px; }
.leist-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ════ ÜBER MICH ══════════════════════════════════════════ */
.photo-frame { border: 1px solid var(--line); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 64px; background: var(--bg-soft); color: var(--hairline); position: relative; }
.photo-frame .photo-label { position: absolute; bottom: 16px; left: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--faint); background: var(--bg); padding: 6px 12px; border: 1px solid var(--line); }
.wert-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 24px; border: 1px solid var(--line); }
.wert-item { padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wert-ico { font-size: 20px; margin-bottom: 10px; }
.wert-title { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--h-color); margin-bottom: 6px; }
.wert-text { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ════ PAGE HERO ══════════════════════════════════════════ */
.page-hero {
  padding: 140px 48px 72px; background: var(--bg);
  border-bottom: 2px solid var(--gold-line);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-bottom: 28px; letter-spacing: 1px; }
.breadcrumb a { color: var(--faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.page-h1 { font-family: var(--serif); font-size: clamp(42px,6vw,72px); font-weight: 300; line-height: 1.04; letter-spacing: -2px; color: var(--h-color); margin-bottom: 22px; }
.page-h1 .accent-i { color: var(--gold); font-style: italic; }
.page-lead { font-size: 17px; line-height: 1.72; color: var(--muted); max-width: 600px; font-weight: 300; margin-bottom: 32px; }

/* ════ RATGEBER ══════════════════════════════════════════ */
.artikel-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); margin-top: 44px; }
.artikel-card { border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background .15s; }
.artikel-card:last-child { border-right: none; }
.artikel-card:hover { background: var(--gold-tint); }
.artikel-img { height: 160px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 40px; background: var(--bg-soft); }
.artikel-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.artikel-cat { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 8px; }
.artikel-title { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--h-color); margin-bottom: 8px; line-height: 1.3; }
.artikel-text { font-size: 13px; line-height: 1.6; color: var(--muted); flex: 1; margin-bottom: 18px; }
.artikel-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line-s); }
.artikel-date { font-family: var(--mono); font-size: 10px; color: var(--faint); }
.artikel-link { font-family: var(--mono); font-size: 11px; color: var(--gold); }

/* Filter */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { background: var(--bg-card); border: 1px solid var(--line); border-radius: 40px; padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .2s; font-family: var(--sans); }
.filter-btn:hover, .filter-btn.active { background: var(--gold-tint); border-color: var(--gold-line); color: var(--gold-d); }

/* ════ PREISE ════════════════════════════════════════════ */
.preise-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); margin-top: 44px; }
.preis-card { padding: 52px 48px; border-right: 1px solid var(--line); }
.preis-card.featured { background: var(--gold-tint); border: 2px solid var(--gold-line); }
.preis-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 16px; display: block; }
.preis-title { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--h-color); margin-bottom: 6px; line-height: 1.1; }
.preis-price { font-size: 18px; font-weight: 600; color: var(--gold); margin-bottom: 24px; }
.preis-div { height: 1px; background: var(--line); margin-bottom: 24px; }
.preis-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.preis-features li { display: flex; gap: 12px; font-size: 14px; color: var(--body); line-height: 1.5; }
.preis-features li::before { content: '✓'; color: var(--gold); font-family: var(--mono); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.preis-note { font-size: 13px; color: var(--faint); line-height: 1.6; }

/* ════ LEGAL ═════════════════════════════════════════════ */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--h-color); margin: 44px 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; font-weight: 600; color: var(--h-color); margin: 24px 0 8px; }
.legal-content p { font-size: 15px; line-height: 1.75; color: var(--body); margin-bottom: 14px; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content ul li { font-size: 15px; line-height: 1.75; color: var(--body); margin-bottom: 6px; }
.legal-box { border: 1px solid var(--line); padding: 28px 36px; margin-bottom: 20px; }

/* ════ CTA BAND (letzter Block vor Footer) ═══════════════ */
.cta-band { background: var(--dark); padding: 108px 48px; }
.cta-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 48px; }

/* ════ FOOTER ════════════════════════════════════════════ */
footer { background: var(--dark2); padding: 64px 48px 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-logo-name { font-family: var(--serif); font-size: 20px; font-weight: 300; color: rgba(255,255,255,.9); margin-bottom: 4px; }
.footer-logo-name b { color: var(--gold-h); font-weight: 300; }
.footer-person { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.65; }
.fc-title { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-h); margin-bottom: 12px; }
.fc-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; text-decoration: none; }
.fc-links a:hover { color: rgba(255,255,255,.75); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.2); transition: color .2s; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ════ UTILITY ═══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }
.mt8  { margin-top: 8px; }  .mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; }
.mt48 { margin-top: 48px; } .mb16 { margin-bottom: 16px; }
.mb32 { margin-bottom: 32px; }

/* ════ ANIMATIONEN ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fi  { animation: fadeUp .65s ease both; }
.fi2 { animation: fadeUp .65s .1s ease both; }
.fi3 { animation: fadeUp .65s .2s ease both; }
.fi4 { animation: fadeUp .65s .3s ease both; }
.fi5 { animation: fadeUp .65s .4s ease both; }

/* ════ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .split, .eg-box { grid-template-columns: 1fr; }
  .eg-left { border-right: none; border-bottom: 1px solid var(--line); }
  .eg-right { background: var(--gold-tint); }
  .cards-3, .split-3 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid var(--gold-line); }
  .review-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .geo-grid { grid-template-columns: repeat(2,1fr); }
  .prozess-grid { grid-template-columns: 1fr; gap: 0; }
  .prozess-arr { display: none; }
  .prozess-step { border-bottom: 1px solid var(--line); }
  .fakten-grid { grid-template-columns: 1fr; }
  .fakt-item { border-right: none; border-bottom: 1px solid var(--line); }
  .artikel-grid { grid-template-columns: repeat(2,1fr); }
  .preise-grid { grid-template-columns: 1fr; }
  .preis-card { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 768px) {
  :root { --sec: 72px; }
  nav { padding: 0 20px; }
  .nav-links, .nav-phone, .nav-right .btn-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .section, .section-warm, .section-dark, .page-hero, .cta-band, footer { padding-left: 20px; padding-right: 20px; }
  #hero { padding: 112px 20px 72px; }
  #hero::after { display: none; }
  .wrap { padding: 0 20px; }
  .cards-3, .cards-2, .split-3, .split-4, .review-grid { grid-template-columns: 1fr; }
  .leist-items, .wert-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .eg-left, .eg-right { padding: 32px 24px; }
  .form-box { padding: 28px 20px; }
  .artikel-grid { grid-template-columns: 1fr; }
  .artikel-card { border-right: none; border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .geo-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .btn-gold.lg { width: 100%; justify-content: center; }
  .mm-ql-grid { grid-template-columns: 1fr; }
  .hero-h1 { letter-spacing: -2px; }
  .fakten-grid { grid-template-columns: 1fr; }
}
