/* ==========================================================================
   Bache Fassaden — fassade-direkt.de
   Premium-handwerklich, deutsch-zurückhaltend
   ========================================================================== */

:root {
  --bg: #f4f1ea;
  --bg-elev: #fbf9f4;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #2c2a26;
  --muted: #6b6357;
  --line: #e1dcd0;
  --line-strong: #cfc7b6;
  --accent: #8a6a3b;
  --accent-soft: #b8945e;
  --dark: #14130f;
  --serif: 'Cormorant Garamond', 'Source Serif Pro', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --shadow-1: 0 1px 0 rgba(20, 19, 15, 0.04);
  --shadow-2: 0 8px 32px -12px rgba(20, 19, 15, 0.18);
  --shadow-3: 0 20px 60px -20px rgba(20, 19, 15, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.02em; }
em { font-style: italic; color: var(--accent); }
p { color: var(--ink-soft); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.muted { color: var(--muted); }

/* ===== Skip-link ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 12px 18px; background: var(--ink); color: #fff;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-1); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.brand {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  letter-spacing: -0.01em; display: inline-flex; align-items: baseline; gap: 6px;
}
.brand .brand-mark { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 0.92rem; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-block; padding: 11px 20px; border-radius: var(--r);
  background: var(--ink); color: #fff; font-size: 0.88rem; font-weight: 500;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
@media (min-width: 880px) { .nav-links { display: flex; } }

/* ===== Hero ===== */
.hero { padding: 64px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(800px 400px at 85% 10%, rgba(138, 106, 59, 0.08), transparent 60%),
    radial-gradient(600px 300px at 0% 90%, rgba(20, 19, 15, 0.04), transparent 60%);
}
.hero-grid {
  display: grid; gap: 48px; align-items: start;
  grid-template-columns: 1fr; position: relative;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.45fr 1fr; gap: 80px; align-items: center; } }
.hero h1 { margin: 18px 0 24px; max-width: 18ch; }
.hero h1 .accent-mark {
  position: relative; display: inline-block; white-space: nowrap;
}
.hero h1 .accent-mark::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: rgba(184, 148, 94, 0.32); z-index: -1;
}
.hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 56ch; line-height: 1.65; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 32px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 26px; border-radius: var(--r);
  background: var(--ink); color: #fff;
  font-size: 0.95rem; font-weight: 500;
  transition: transform .18s, background .18s, box-shadow .18s;
  box-shadow: var(--shadow-2);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-3); }
.btn-primary .arrow { transition: transform .18s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; padding: 14px 22px;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  font-size: 0.9rem; color: var(--ink); background: transparent;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-elev); }

/* Hero Trust-Cards */
.hero-trust { display: flex; flex-direction: column; gap: 14px; }
.trust-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 24px; display: flex; gap: 18px; align-items: center;
  box-shadow: var(--shadow-1); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.trust-card:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.trust-card .num {
  flex: 0 0 36px; height: 36px; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.2rem; color: var(--accent);
  border: 1px solid var(--line-strong); border-radius: 50%;
}
.trust-card .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust-card .detail { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-top: 2px; }

/* ===== Trust-Stack ===== */
.trust-stack {
  background: var(--bg-elev);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-stack-inner {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; align-items: center;
  font-size: 0.85rem; color: var(--muted);
}
.trust-stack-inner > span, .trust-stack-inner > a { display: inline-flex; align-items: center; gap: 8px; }
.trust-stack-inner a { color: var(--ink); font-weight: 500; transition: color .15s; }
.trust-stack-inner a:hover { color: var(--accent); }
.trust-stack-inner .stars { color: var(--accent); letter-spacing: 1px; }
.trust-stack-inner .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); display: none;
}
@media (min-width: 880px) { .trust-stack-inner .dot { display: inline-block; } }

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; color: var(--muted); }

/* ===== Funnel ===== */
.funnel-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%); }
.funnel-section .section-head { margin: 0 auto 40px; text-align: center; }
.funnel-shell {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); max-width: 760px; margin: 0 auto;
  padding: 36px 28px;
}
@media (min-width: 768px) { .funnel-shell { padding: 48px; } }

.funnel-progress {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
}
.funnel-progress .bar { flex: 1; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.funnel-progress .fill { height: 100%; background: var(--accent); width: 8%; transition: width .35s ease; }

.slide { display: none; animation: slideIn .35s ease; }
.slide.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.slide h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.slide .helper { color: var(--muted); margin-bottom: 28px; }

.path-cards { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 720px) { .path-cards { grid-template-columns: 1fr 1fr; } }
.path-card {
  text-align: left; padding: 28px; border: 1px solid var(--line);
  background: var(--bg-elev); border-radius: var(--r-lg);
  transition: all .2s; display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}
.path-card:hover { border-color: var(--accent); background: var(--paper); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.path-card .meta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.path-card .ttl { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.path-card .time { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.path-card .desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; margin-top: 4px; }

/* Option-grid (klick-kacheln) */
.opt-grid { display: grid; gap: 10px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 600px) { .opt-grid { grid-template-columns: 1fr 1fr; } }
.opt {
  display: block; padding: 16px 18px; border: 1px solid var(--line);
  background: var(--bg-elev); border-radius: var(--r);
  text-align: left; font-size: 0.95rem; color: var(--ink);
  transition: all .15s; cursor: pointer;
}
.opt:hover { border-color: var(--accent); background: var(--paper); }

/* Form-fields */
.field { margin-top: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-strong);
  background: var(--paper); border-radius: var(--r); font-size: 0.95rem;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138, 106, 59, 0.12);
}
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 2fr; } }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--line-strong);
  border-radius: var(--r); cursor: pointer; font-size: 0.9rem;
  transition: all .15s;
}
.radio-row label:hover { border-color: var(--accent); }
.radio-row input { accent-color: var(--accent); }

/* Honeypot */
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

/* Foto-Upload */
.dropzone {
  border: 2px dashed var(--line-strong); border-radius: var(--r-lg);
  padding: 28px; text-align: center; background: var(--bg-elev);
  transition: all .15s; cursor: pointer;
}
.dropzone:hover, .dropzone.over { border-color: var(--accent); background: var(--paper); }
.dropzone .dz-title { font-family: var(--serif); font-size: 1.15rem; }
.dropzone .dz-sub { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.dropzone input[type=file] { display: none; }
.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.thumb {
  position: relative; width: 78px; height: 78px; border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--line-strong); background: var(--bg);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .x {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(20, 19, 15, 0.85); color: #fff;
  display: grid; place-items: center; font-size: 14px; line-height: 1;
}
.upload-warn { color: #b54628; font-size: 0.85rem; margin-top: 8px; }

/* Slide nav */
.slide-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.slide-nav .back { color: var(--muted); font-size: 0.9rem; padding: 8px 4px; }
.slide-nav .back:hover { color: var(--ink); }
.slide-nav .submit-btn { margin-left: auto; }

/* Reward slide */
.reward { padding: 16px 0; }
.reward h3 { color: var(--accent); }
.reward p { font-size: 1.02rem; color: var(--ink-soft); margin: 12px 0 24px; line-height: 1.65; }

/* Confirmation */
.confirm { text-align: center; padding: 30px 0 12px; }
.confirm .check {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 36px;
  box-shadow: 0 12px 40px -10px rgba(138, 106, 59, 0.5);
}
.confirm h3 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.confirm .sub { color: var(--muted); margin: 10px auto 28px; max-width: 420px; }
.confirm ol { list-style: none; max-width: 460px; margin: 0 auto 24px; text-align: left; }
.confirm ol li {
  padding: 14px 0 14px 44px; position: relative;
  border-top: 1px solid var(--line); color: var(--ink-soft);
}
.confirm ol li:last-child { border-bottom: 1px solid var(--line); }
.confirm ol li::before {
  counter-increment: stp; content: counter(stp);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--accent);
  color: var(--accent); display: grid; place-items: center; font-size: 0.85rem; font-weight: 600;
  font-family: var(--serif);
}
.confirm ol { counter-reset: stp; }
.confirm .foot { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }

/* ===== Reference cards ===== */
.refs-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .refs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .refs-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ref-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.ref-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-3); }
.ref-img {
  aspect-ratio: 4/3; background:
    linear-gradient(135deg, #d8cfbb 0%, #b8a786 50%, #8a6a3b 100%);
  position: relative;
}
.ref-img::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 16px),
    repeating-linear-gradient(90deg, rgba(20,19,15,0.05) 0 2px, transparent 2px 18px);
}
.ref-card:nth-child(2) .ref-img { background: linear-gradient(135deg, #cfc7b6 0%, #8a8474 100%); }
.ref-card:nth-child(3) .ref-img { background: linear-gradient(135deg, #b8945e 0%, #6b5536 100%); }
.ref-card:nth-child(4) .ref-img { background: linear-gradient(135deg, #d4cab3 0%, #94835e 100%); }
.ref-card:nth-child(5) .ref-img { background: linear-gradient(135deg, #a89b80 0%, #4f4636 100%); }
.ref-card:nth-child(6) .ref-img { background: linear-gradient(135deg, #c0b194 0%, #7a6644 100%); }

.ref-body { padding: 22px 24px 26px; }
.ref-city { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.ref-year { font-size: 0.8rem; color: var(--muted); margin-left: 8px; }
.ref-title { font-family: var(--serif); font-size: 1.3rem; margin: 8px 0 4px; color: var(--ink); }
.ref-detail { font-size: 0.9rem; color: var(--muted); }

.refs-more { text-align: center; margin-top: 40px; }
.refs-more a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 4px; font-size: 0.95rem; }
.refs-more a:hover { color: var(--accent); }

/* ===== Testimonials ===== */
.testimonials { background: var(--dark); color: #ece7da; padding: 90px 0; }
.testimonials h2 { color: #fff; }
.testimonials .eyebrow { color: var(--accent-soft); }
.tm-grid {
  display: grid; gap: 28px; margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
.tm {
  border-left: 2px solid var(--accent); padding: 6px 0 6px 22px;
}
.tm blockquote {
  font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: #ece7da;
  font-weight: 400;
}
.tm cite {
  display: block; margin-top: 14px;
  font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-soft); font-weight: 600;
}

/* ===== Andreas ===== */
.andreas-grid {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .andreas-grid { grid-template-columns: 280px 1fr; gap: 72px; } }
.andreas-photo {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  background: var(--dark); position: relative; margin: 0 auto;
  box-shadow: var(--shadow-3);
}
@media (min-width: 880px) { .andreas-photo { width: 280px; height: 280px; } }
.andreas-photo img { width: 100%; height: 100%; object-fit: cover; }
.andreas-fallback {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 5rem; color: #fff; background: var(--dark);
  font-weight: 400; letter-spacing: -0.02em;
}
.andreas-bio h2 { margin: 14px 0 18px; }
.andreas-bio blockquote {
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft);
  line-height: 1.65; border-left: 2px solid var(--accent); padding-left: 22px;
  margin: 22px 0; font-style: italic;
}
.andreas-bio .name-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.andreas-bio .name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.andreas-bio .role { font-size: 0.85rem; color: var(--muted); }
.andreas-bio .region {
  display: block; font-size: 0.85rem; color: var(--muted); margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ===== Cross-link ===== */
.cross-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 760px) { .cross-grid { grid-template-columns: 1fr 1fr; } }
.cross-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: all .25s; display: block; position: relative; overflow: hidden;
}
.cross-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cross-card .pre { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.cross-card h3 { margin: 12px 0 10px; }
.cross-card .sub { color: var(--muted); font-size: 0.95rem; }
.cross-card .arr {
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  transition: all .2s;
}
.cross-card:hover .arr { background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(-45deg); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 40px 24px 0;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--accent); transition: transform .25s;
  font-family: var(--sans); font-weight: 300;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 24px; color: var(--muted); line-height: 1.7; max-width: 70ch; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #b8b1a0; padding: 70px 0 30px; }
.footer-grid {
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; } }
.footer-brand h4 {
  font-family: var(--serif); font-size: 1.5rem; color: #fff;
  font-weight: 400; margin-bottom: 16px;
}
.footer-brand p { color: #94907f; font-size: 0.92rem; margin-bottom: 6px; }
.footer-brand a { color: var(--accent-soft); }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #b8b1a0; font-size: 0.92rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid #2a2822;
  font-size: 0.82rem; color: #7a7565; text-align: center;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 480px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); padding: 22px 24px;
  box-shadow: var(--shadow-3); z-index: 80;
  font-size: 0.88rem; color: var(--ink-soft);
}
.cookie-banner.hidden { display: none; }
.cookie-banner .row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.cookie-banner button {
  flex: 1; min-width: 130px;
  padding: 11px 16px; border-radius: var(--r); font-size: 0.88rem; font-weight: 500;
  transition: all .15s;
}
.cookie-banner .secondary { border: 1px solid var(--line-strong); color: var(--ink); background: transparent; }
.cookie-banner .secondary:hover { border-color: var(--ink); }
.cookie-banner .primary { background: var(--ink); color: #fff; }
.cookie-banner .primary:hover { background: var(--accent); }

/* ===== Modals ===== */
.modal {
  position: fixed; inset: 0; background: rgba(20, 19, 15, 0.6);
  display: none; z-index: 100; padding: 24px;
  align-items: center; justify-content: center;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-card {
  background: var(--paper); border-radius: var(--r-lg);
  max-width: 720px; width: 100%; padding: 40px 32px 36px; position: relative;
  max-height: 86vh; overflow-y: auto;
}
@media (min-width: 600px) { .modal-card { padding: 48px 56px; } }
.modal-card h2 { margin-bottom: 18px; }
.modal-card p { margin-bottom: 14px; line-height: 1.7; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem; color: var(--muted);
}
.modal-close:hover { color: var(--ink); background: var(--bg); }

/* ===== Mobile nav ===== */
@media (max-width: 879px) {
  .nav-links { display: none !important; }
}

/* ===== Loading overlay ===== */
.loading {
  position: absolute; inset: 0; background: rgba(255,255,255,0.85);
  display: none; align-items: center; justify-content: center;
  border-radius: var(--r-lg); z-index: 5;
}
.loading.show { display: flex; }
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--line-strong);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.funnel-shell { position: relative; scroll-margin-top: 80px; }

/* Inline error toast */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
  background: #b54628; color: #fff; padding: 12px 20px; border-radius: var(--r);
  font-size: 0.9rem; z-index: 90; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.toast.show { opacity: 1; }

/* =========================================================
 * UI-Fixes 2026-05-11 — Google-Reviews + Path-Time prominence
 * ========================================================= */

/* Reviews-Hinweis als plain inline-Text im Trust-Stack (kein Button-Style) */
.trust-stack-inner strong {
  color: var(--ink);
  font-weight: 700;
}

/* Form-Trust: zweite Trust-Reinforcement-Zeile im Section-Head der Funnel-Section */
.section-head p.form-trust {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}
.section-head p.form-trust .stars-inline {
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-right: 4px;
}
.section-head p.form-trust strong {
  color: var(--ink);
  font-weight: 700;
}

/* Path-Card Time: rounded chip statt plain text — Pfad-Differenzierer */
.path-card .time {
  display: inline-block;
  align-self: flex-start;
  background: rgba(138, 106, 59, 0.10);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  margin: 8px 0 4px;
}

/* Path-Card Timeline: was passiert wann (24h → 48h → 72h) */
.path-card .timeline {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.path-card .timeline .step {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.9rem;
}
.path-card .timeline .step .t {
  display: inline-block;
  min-width: 38px;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}
.path-card .timeline .step .e {
  color: var(--ink-soft);
  flex: 1;
}

/* Path-Card Offer-ETA: prominente Versprechen-Zeile direkt unter dem Titel */
.path-card .offer-eta {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: -2px;
}

/* Hero-Andreas Compact Card (ersetzt hero-trust im Hero rechts) */
.hero-andreas {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-2);
}
.hero-andreas-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.hero-andreas-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-andreas-fallback {
  width: 100%; height: 100%;
  background: var(--accent-soft); color: var(--paper);
  font-family: var(--serif); font-size: 3rem; font-weight: 600;
  display: grid; place-items: center;
}
.hero-andreas-info {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.hero-andreas-info .eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.hero-andreas-name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-top: 4px; }
.hero-andreas-role { font-size: 0.85rem; color: var(--muted); }
.hero-andreas-quote {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 10px 0 4px;
  max-width: 38ch;
  border-left: none;
  padding: 0;
}
.hero-andreas-region {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Funnel-Trust-Cards: 3er-Reihe horizontal ueber der Form */
.funnel-trust-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 0 auto 40px;
  max-width: 980px;
}
@media (min-width: 720px) {
  .funnel-trust-cards { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
 * Visual-Tweaks 2026-05-11: warmer Creams + Button-Affordance
 * ========================================================= */

/* Andreas-Card: weicheres Cream statt pure white */
.hero-andreas { background: #f7f3eb; }

/* Option-Buttons im Wizard: klarer als klickbare Buttons erkennbar */
.opt {
  background: #f7f3eb;
  border-color: var(--line-strong);
  box-shadow: 0 1px 2px rgba(20, 19, 15, 0.04), 0 2px 6px rgba(20, 19, 15, 0.04);
  font-weight: 500;
}
.opt:hover {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 2px 4px rgba(20, 19, 15, 0.06), 0 8px 20px rgba(20, 19, 15, 0.08);
  transform: translateY(-1px);
}

/* Radio-Row Buttons (Eigentuemer/Verwalter/Anderes): gleiche Affordance */
.radio-row label {
  background: #f7f3eb;
  box-shadow: 0 1px 2px rgba(20, 19, 15, 0.04);
}
.radio-row label:hover {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(20, 19, 15, 0.06);
}
.radio-row input:checked + ::before,
.radio-row label:has(input:checked) {
  background: var(--paper);
  border-color: var(--accent);
}

/* Pfad-Cards (slide 1): leicht warmer + Button-Schatten */
.path-card {
  background: #f7f3eb;
  box-shadow: 0 1px 2px rgba(20, 19, 15, 0.04), 0 4px 12px rgba(20, 19, 15, 0.05);
}
.path-card:hover {
  background: var(--paper);
  box-shadow: var(--shadow-2);
}

/* Ref-Image: real photos (overrides gradient+pattern placeholders).
   Img absolut positioniert => Parent-Box wird NUR durch aspect-ratio 4/3 bestimmt,
   nicht durch intrinsische Image-Hoehe. object-fit: cover cropt das Bild auf 4/3. */
.ref-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-elev);
  overflow: hidden;
  position: relative;
}
.ref-img::after { display: none !important; }
.ref-card:nth-child(2) .ref-img,
.ref-card:nth-child(3) .ref-img,
.ref-card:nth-child(4) .ref-img,
.ref-card:nth-child(5) .ref-img,
.ref-card:nth-child(6) .ref-img { background: var(--bg-elev); }
.ref-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ref-card:hover .ref-img img { transform: scale(1.04); }
