:root {
  --c-primary-sand: #AD9678;
  --c-primary-sand-dark: #9A8567;
  --c-secondary-blue: #67789D;
  --c-cream-light: #F6F1E9;
  --c-cream-base: #EFE6D7;
  --c-ceramic-warm: #E2D3B8;
  --c-stone-soft: #D4C5AB;
  --c-night: #0F1623;
  --c-charcoal: #1F2A3D;
  --c-text-default: #2A2A2A;
  --c-text-muted: #6F6F6F;
  --c-success: #5B7C6A;
  --c-warning: #C4995F;
  --c-error: #8B4A4A;

  --font-display: "Bodoni Moda", Georgia, serif;
  /* Optische Größe der Schmuckschrift (Bodoni variabel). Kleiner = dickere Haarlinien
     bei gleicher Stammdicke. Achsenbereich 6–96. Ein Wert – global steuerbar. */
  --bodoni-opsz: 16;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;

  --header-h: 133px;
  --shadow-card: 0 4px 24px rgba(15,22,35,0.06);
  --shadow-card-hover: 0 16px 40px rgba(15,22,35,0.12);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-default);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  /* Sicherheitsnetz gegen horizontales Wackeln auf Mobilgeräten */
  overflow-x: clip;
  /* opsz wird vererbt: die variable Bodoni nimmt sie auf (dickere Haarlinien),
     die statische Montserrat ignoriert die unbekannte Achse. */
  font-variation-settings: "opsz" var(--bodoni-opsz);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.12; overflow-wrap: break-word; hyphens: auto; }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; }
p { margin: 0 0 1.1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-primary-sand);
  margin: 0 0 18px;
  display: block;
}
.eyebrow.on-dark { color: var(--c-stone-soft); }
.lead { font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: var(--c-text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
  padding: 16px 32px; border-radius: 4px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--c-primary-sand); color: #fff; }
.btn-primary:hover { background: var(--c-primary-sand-dark); transform: scale(1.02); }
.btn-secondary { border-color: var(--c-secondary-blue); color: var(--c-secondary-blue); background: transparent; }
.btn-secondary:hover { background: var(--c-secondary-blue); color: #fff; }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--c-night); }
.btn-ghost {
  background: transparent; padding: 0; color: var(--c-primary-sand); border: none;
  font-weight: 600; position: relative;
}
.btn-ghost::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: var(--c-primary-sand); transition: width .3s ease;
}
.btn-ghost:hover::after { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { background: #fff; box-shadow: 0 2px 18px rgba(15,22,35,.07); }

/* Obere Utility-Leiste: Kontakt + Social */
.topbar { border-bottom: 1px solid rgba(255,255,255,.14); transition: border-color .35s ease; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-contact { display: flex; gap: 22px; font-size: 12.5px; color: rgba(255,255,255,.82); transition: color .35s ease; }
.topbar-contact a:hover { color: var(--c-primary-sand); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-link { font-size: 12.5px; color: rgba(255,255,255,.82); transition: color .25s ease; }
.topbar-link:hover { color: var(--c-primary-sand); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social .soc { color: rgba(255,255,255,.82); display: inline-flex; transition: color .25s ease; }
.topbar-social .soc:hover { color: var(--c-primary-sand); }
.topbar-social svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.scrolled .topbar { border-bottom-color: rgba(15,22,35,.08); }
.scrolled .topbar-contact, .scrolled .topbar-social .soc { color: var(--c-text-muted); }

/* Hauptleiste: links | Logo | rechts */
.header-grid {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; height: 92px;
}
.brand { justify-self: center; display: flex; align-items: center; gap: 10px; }
.brand img { height: 74px; width: auto; transition: height .35s ease; }
.scrolled .header-grid { height: 78px; }
.scrolled .brand img { height: 60px; }
/* Zwei Logo-Varianten: helle (Sandbogen + weißer Schriftzug) über dem dunklen Hero,
   farbiges Original beim Scrollen / auf hellen Seiten. */
.brand-logo-color { display: none; }
.brand-logo-light { display: block; }
.scrolled .brand-logo-light { display: none; }
.scrolled .brand-logo-color { display: block; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav-left { justify-self: start; }
.main-nav-right { justify-self: end; }
.nav-link {
  font-size: 14px; font-weight: 500; color: #fff; transition: color .25s ease;
  display: inline-flex; align-items: center; gap: 5px; padding: 8px 0;
}
.scrolled .nav-link { color: var(--c-text-default); }
.nav-link:hover { color: var(--c-primary-sand); }
.nav-item { position: relative; }
.nav-item .chev {
  display: inline-block; width: 8px; height: 8px; margin-left: 2px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(-135deg) translateY(-1px); opacity: 1; }

/* Mega menu – je nach Seite links/rechts verankert, damit es nie über den Rand ragt */
.mega {
  position: absolute; top: calc(100% + 12px);
  background: #fff; border-radius: 12px; box-shadow: 0 20px 50px rgba(15,22,35,.15);
  padding: 14px; width: 400px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}
.mega.has-thumbs { width: 480px; }
.main-nav-left .mega { left: 0; }
.main-nav-right .mega { right: 0; }
/* Unsichtbare Brücke über die Lücke, damit der Hover beim Wechsel Link -> Menü nicht abreißt */
.mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-title { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-text-muted); margin: 6px 12px 8px; }
.mega-list { display: flex; flex-direction: column; }
.mega-link { display: flex; align-items: center; gap: 14px; padding: 9px 12px; border-radius: 8px; transition: background .2s ease; }
.mega-link:hover, .mega-link:focus-visible { background: var(--c-cream-light); }
.mega-thumb { flex: 0 0 auto; width: 58px; height: 46px; border-radius: 7px; overflow: hidden; background: var(--c-cream-base); }
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-text { display: flex; flex-direction: column; min-width: 0; }
.mega-label { font-size: 14.5px; font-weight: 500; color: var(--c-text-default); white-space: nowrap; transition: color .2s ease; }
.mega-desc { font-size: 12.5px; line-height: 1.45; color: var(--c-text-muted); margin-top: 2px; }
.mega-link:hover .mega-label { color: var(--c-primary-sand); }

.nav-cta { margin-left: 6px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #fff; transition: background .35s ease; }
.scrolled .burger span { background: var(--c-night); }

/* Schnell-Kontakt-Icons (nur mobil, links vom Logo) */
.mobile-quick { display: none; align-items: center; gap: 16px; }
.mobile-quick a { color: #fff; display: inline-flex; transition: color .25s ease; }
.mobile-quick a:hover { color: var(--c-primary-sand); }
.mobile-quick svg { width: 24px; height: 24px; fill: currentColor; display: block; }
.scrolled .mobile-quick a, body.header-solid .mobile-quick a { color: var(--c-night); }

/* Mobile overlay – visibility verhindert, dass das verschobene Menü horizontales
   Scrollen erzeugt („Seite lässt sich seitlich schieben"). */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--c-night); color: #fff;
  transform: translateX(100%); visibility: hidden;
  transition: transform .4s cubic-bezier(.65,0,.35,1), visibility 0s linear .4s;
  display: flex; flex-direction: column; padding: 28px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform .4s cubic-bezier(.65,0,.35,1), visibility 0s linear 0s; }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-menu .mm-head img { height: 42px; }
.mm-close { background: none; border: none; color: #fff; font-size: 34px; line-height: 1; cursor: pointer; }
.mm-nav { display: flex; flex-direction: column; }
.mm-link { font-family: var(--font-display); font-size: 28px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
/* Aufklapp-Gruppen (natives <details>, kein JS nötig) */
.mm-group > summary.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; user-select: none;
}
.mm-group > summary.mm-link::-webkit-details-marker { display: none; }
.mm-chev {
  width: 10px; height: 10px; margin-left: 12px; flex: 0 0 auto;
  border-right: 2px solid rgba(255,255,255,.7); border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg) translateY(-2px); transition: transform .25s ease;
}
.mm-group[open] > summary .mm-chev { transform: rotate(-135deg) translateY(-1px); }
.mm-sub { display: flex; flex-direction: column; padding: 6px 0 14px; }
.mm-sublink {
  font-size: 17px; padding: 10px 0 10px 16px; color: var(--c-stone-soft);
  border-left: 1px solid rgba(255,255,255,.14); margin-left: 2px; transition: color .2s ease;
}
.mm-sublink:hover { color: #fff; }
.mobile-menu .btn { margin-top: 28px; }
.mm-contact { margin-top: auto; padding-top: 30px; font-size: 14px; color: var(--c-stone-soft); }
.mm-social { display: flex; gap: 18px; margin-top: 16px; }
.mm-social .soc { color: var(--c-stone-soft); display: inline-flex; transition: color .2s ease; }
.mm-social .soc:hover { color: #fff; }
.mm-social svg { width: 21px; height: 21px; fill: currentColor; display: block; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; position: relative; overflow: hidden; padding: calc(var(--header-h) + 40px) 20px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .img-placeholder { width: 100%; height: 100%; border: none; border-radius: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,35,0.35) 0%, rgba(15,22,35,0.78) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(38px, 6.5vw, 78px); font-weight: 400; margin: 0 0 22px; }
.hero .sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: rgba(255,255,255,.9); max-width: 700px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .microcopy { margin-top: 18px; font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.7); }
.trust-strip {
  margin-top: 46px; display: flex; gap: 14px 30px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.82);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-primary-sand); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-cue span { display: block; width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.scroll-cue span::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 2px; background: rgba(255,255,255,.7); animation: scrolldot 1.6s ease infinite; }
@keyframes scrolldot { 0%{opacity:1;top:7px} 70%{opacity:0;top:18px} 100%{opacity:0} }

/* ---------- Placeholder ---------- */
.img-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(173,150,120,.05) 0 14px, rgba(173,150,120,.1) 14px 28px),
    var(--c-cream-base);
  border: 1px dashed var(--c-stone-soft); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--c-text-muted); font-size: 12px; letter-spacing: .04em; padding: 18px; min-height: 180px;
}

/* ---------- Section helpers ---------- */
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.bg-cream { background: var(--c-cream-light); }
.bg-blue { background: var(--c-secondary-blue); color: #fff; }
.bg-night { background: var(--c-night); color: #fff; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* Trust marker bar (section 2) */
.markerbar { border-bottom: 1px solid var(--c-cream-base); }
.markerbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding-top: 26px; padding-bottom: 26px; }
.marker { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--c-charcoal); }
.marker .stars { color: var(--c-primary-sand); letter-spacing: 2px; }
.marker .chip { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border: 1px solid var(--c-stone-soft); border-radius: 40px; color: var(--c-text-muted); }

/* Cards grid (section 3) */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
/* Utility: 2-spaltige Variante (ersetzt frühere Inline-Styles; bricht mobil sauber um) */
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.path-card {
  background: #fff; border-radius: 6px; box-shadow: var(--shadow-card); padding: 38px 32px;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--c-cream-base);
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.path-card .icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--c-cream-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--c-primary-sand);
}
.path-card .icon svg { width: 28px; height: 28px; }
.path-card h3 { margin-bottom: 12px; }
.path-card p { color: var(--c-text-muted); font-size: 15.5px; flex-grow: 1; }
.path-card .btn-ghost { margin-top: 18px; align-self: flex-start; }

/* Story split (section 4 / 10) */
.split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
/* Utility: nahezu gleich breite Split-Spalten (ersetzt Inline-Style der Partnerseite) */
.split-even { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.split.reverse .split-text { order: -1; }
/* Startseiten-„Über uns": Bild quadratisch, rechts, oben am Text ausgerichtet. */
.split-about { align-items: start; }
.split-about .split-img { aspect-ratio: 1 / 1; }
.split-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-card); }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.split-img:hover img { transform: scale(1.04); }
.value-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 14px; }
.value-list li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--c-text-default); }
.value-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px;
  border-left: 2px solid var(--c-primary-sand); border-bottom: 2px solid var(--c-primary-sand);
  transform: rotate(-45deg);
}

/* Stepper (section 5) */
.stepper { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; counter-reset: step; }
/* Utility: 3-stufige Variante (Tippgeber) – erbt die mobilen Umbrüche des Steppers */
.stepper-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { position: relative; }
.step .num { font-family: var(--font-display); font-size: 56px; color: var(--c-primary-sand); line-height: 1; opacity: .55; margin-bottom: 14px; }
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--c-text-muted); font-size: 15px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; right: -14px; width: 28px; height: 1px;
  background: var(--c-stone-soft);
}
.step-cta { text-align: center; margin-top: clamp(40px, 5vw, 60px); }

/* Testimonials (section 6) */
.tslider { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.tslide { display: none; animation: tfade .5s ease; }
.tslide.active { display: block; }
@keyframes tfade { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.tquote { font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--c-charcoal); margin: 0 auto 28px; max-width: 760px; }
.tquote::before { content: "\201C"; font-size: 64px; color: var(--c-primary-sand); display: block; line-height: .4; margin-bottom: 18px; }
.tperson { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tperson .avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.tperson .avatar .img-placeholder { min-height: 56px; height: 56px; width: 56px; padding: 0; font-size: 9px; border-radius: 50%; }
.tperson .meta { text-align: left; }
.tperson .meta strong { font-weight: 600; font-size: 15px; }
.tperson .meta small { display: block; color: var(--c-text-muted); font-size: 13px; }
.tnav { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-stone-soft); border: none; cursor: pointer; padding: 0; transition: background .25s ease, transform .25s ease; }
.tdot.active { background: var(--c-primary-sand); transform: scale(1.25); }

/* Stats (section 7) */
.stats-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.stat-card { background: #fff; border-radius: 6px; padding: 36px 26px; text-align: center; box-shadow: var(--shadow-card); }
.stat-card .big { font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); color: var(--c-primary-sand); line-height: 1; }
.stat-card .label { font-size: 14px; color: var(--c-text-muted); margin-top: 12px; }

/* Quiz CTA (section 8) */
.quizcta { text-align: center; }
.quizcta h2 { color: #fff; max-width: 760px; margin: 0 auto 18px; }
.quizcta .sub { color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto 26px; }
.quiz-points { display: flex; gap: 12px 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.quiz-points li { list-style: none; display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: rgba(255,255,255,.92); }
.quiz-points li::before { content: ""; width: 13px; height: 8px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Objects (section 9) */
.obj-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease; }
.obj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.obj-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.obj-media .img-placeholder { min-height: 100%; height: 100%; border: none; border-radius: 0; }
.obj-tag { position: absolute; top: 14px; right: 14px; background: rgba(246,241,233,.94); color: var(--c-primary-sand-dark); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 13px; border-radius: 40px; }
.obj-body { padding: 24px 26px 28px; }
.obj-body h3 { font-size: 22px; margin-bottom: 16px; }
.obj-specs { display: flex; gap: 22px; flex-wrap: wrap; border-top: 1px solid var(--c-cream-base); padding-top: 16px; }
.obj-specs div { font-size: 13px; color: var(--c-text-muted); }
.obj-specs strong { display: block; font-size: 16px; color: var(--c-charcoal); font-weight: 600; }
.center-cta { text-align: center; margin-top: 44px; }

/* FAQ (section 11) */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-cream-base); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 44px 24px 0; position: relative; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); color: var(--c-charcoal); }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 26px; color: var(--c-primary-sand); transition: transform .3s ease; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--c-text-muted); padding: 0 40px 24px 0; margin: 0; font-size: 15.5px; }

/* Final CTA (section 12) */
.finalcta { text-align: center; position: relative; overflow: hidden; }
.finalcta .fc-bg { position: absolute; inset: 0; opacity: .18; }
.finalcta .fc-bg .img-placeholder { width: 100%; height: 100%; border: none; border-radius: 0; }
.finalcta .wrap { position: relative; z-index: 1; }
.finalcta h2 { color: #fff; max-width: 760px; margin: 0 auto 16px; }
.finalcta .sub { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.finalcta .fc-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.finalcta .microcopy { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-charcoal); color: rgba(255,255,255,.78); padding-top: clamp(56px, 7vw, 84px); }
.footer-top { text-align: center; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top img { height: 52px; margin: 0 auto 16px; }
.footer-claim { font-family: var(--font-display); font-size: 22px; color: var(--c-stone-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; padding: 52px 0; }
.footer-cols h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-primary-sand); margin: 0 0 18px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-cols a, .footer-cols li { font-size: 14px; color: rgba(255,255,255,.72); }
.footer-cols a:hover { color: #fff; }
.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(255,255,255,.72); }
.footer-contact .fc-name { color: #fff; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: #fff; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: center; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }
.footer-trust span { display: inline-flex; align-items: center; gap: 8px; }
.footer-trust .stars { color: var(--c-primary-sand); }
.footer-service { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: center; padding: 22px 0 40px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.55); }
.footer-service a:hover { color: #fff; }

/* ---------- Barrierefreiheit: Skip-Link + sichtbarer Tastatur-Fokus ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 500; background: var(--c-night, #0F1623); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; font-size: 15px; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-primary-sand, #C7A15A);
  outline-offset: 2px;
}

/* Sticky mobile CTA – erscheint erst, sobald der Besucher zu scrollen beginnt (site.js). */
.mobile-cta { display: none; position: fixed; right: 16px; bottom: 16px; z-index: 90; box-shadow: 0 8px 24px rgba(15,22,35,.28); opacity: 0; transform: translateY(90px); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.mobile-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
}

/* Telefonnummer in Button-Beschriftungen: als Ganzes umbrechen, nie mittendrin. */
.tel-block { display: inline-block; white-space: nowrap; }

/* Reveal animation – Inhalte sind IMMER sichtbar; die Animation ist reine Verbesserung
   und wird nur aktiv, wenn JS die Klasse .js-reveal an <html> setzt. Fällt JS aus
   (oder verpasst der Observer ein Element), bleibt der Inhalt sichtbar. */
.reveal { opacity: 1; transform: none; }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

.obj-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --header-h: 104px; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .header-grid { grid-template-columns: 1fr auto 1fr; height: 104px; }
  .scrolled .header-grid { height: 104px; }
  .mobile-quick { display: flex; }
  .brand { justify-self: center; }
  .burger { justify-self: end; }
  .brand img, .scrolled .brand img { height: 88px; }
  .burger { display: flex; }
  .stepper, .stepper-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .obj-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .barchart { min-width: 420px; }
  .step:not(:last-child)::after { display: none; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  :root { --header-h: 96px; }
  .header-grid, .scrolled .header-grid { height: 96px; }
  .brand img, .scrolled .brand img { height: 80px; }
  .cards-3, .stats-4, .cols-2 { grid-template-columns: minmax(0, 1fr); }
  .btn { white-space: normal; text-align: center; }
  .barchart .bar .val { font-size: 13px; }
  .obj-grid { grid-template-columns: minmax(0, 1fr); }
  .split, .split.reverse, .split-even { grid-template-columns: minmax(0, 1fr); }
  .split.reverse .split-text { order: 0; }
  .stepper, .stepper-3 { grid-template-columns: minmax(0, 1fr); }
  .mobile-cta { display: inline-flex; }
  /* Quiz-Teaser („Was ist Ihre Immobilie heute wirklich wert?"): Punkte untereinander,
     Häkchen bündig zur ersten Zeile, Button volle Breite. */
  .quiz-points { flex-direction: column; align-items: flex-start; width: fit-content; max-width: 100%; margin: 0 auto 28px; }
  .quiz-points li { align-items: flex-start; text-align: left; }
  .quiz-points li::before { flex: 0 0 13px; margin-top: 6px; }
  .quizcta .btn { width: 100%; }
  .markerbar .wrap { justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- CMS-Ergänzungen: echte Bilder in Bild-Slots ---------- */
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.obj-media img { width: 100%; height: 100%; object-fit: cover; }
.tperson .avatar img { width: 56px; height: 56px; object-fit: cover; }
.tippgeber-img { width: 100%; height: 100%; }
.tippgeber-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.split.reverse .tippgeber-img { box-shadow: var(--shadow-card); border-radius: 8px; overflow: hidden; }
.finalcta .fc-bg img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Heller Header (für Seiten mit hellem Hero, z. B. Kontakt) ---------- */
body.header-solid main { padding-top: var(--header-h); }
body.header-solid .site-header { background: #fff; box-shadow: 0 2px 18px rgba(15,22,35,.07); }
body.header-solid .topbar { border-bottom-color: rgba(15,22,35,.08); }
body.header-solid .topbar-contact, body.header-solid .topbar-link, body.header-solid .topbar-social .soc { color: var(--c-text-muted); }
body.header-solid .nav-link { color: var(--c-text-default); }
body.header-solid .brand-logo-light { display: none; }
body.header-solid .brand-logo-color { display: block; }
body.header-solid .burger span { background: var(--c-night); }

/* ---------- Öffentliches Kontaktformular ---------- */
.cform { max-width: 720px; margin: 0 auto; }
.cform .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
@media (max-width: 600px) { .cform .row { grid-template-columns: 1fr; } }
.cform .field { margin-bottom: 18px; }
.cform label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.cform input[type=text], .cform input[type=email], .cform input[type=tel], .cform select, .cform textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 14px 18px; border: 1.5px solid var(--c-cream-base);
  border-radius: 4px; background: #fff; color: var(--c-text-default);
}
.cform textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--c-primary-sand); box-shadow: 0 0 0 3px rgba(173,150,120,.15); }
.cform .field.has-error input, .cform .field.has-error select, .cform .field.has-error textarea { border-color: var(--c-error); }
.cform .err { color: var(--c-error); font-size: 13px; margin-top: 5px; }
.cform .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 6px 0; }
.cform .consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }
.cform .microcopy { font-size: 13px; color: var(--c-text-muted); margin-top: 14px; }
.cform-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-banner { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14.5px; }
.form-banner.ok { background: #EAF1EC; color: #33553F; border: 1px solid #C9DECF; }
.form-banner.err { background: #F6E9E9; color: #7A3B3B; border: 1px solid #E6C9C9; }

/* Kontakt-Optionen: Icon-Kreis wie Wege-Karten, plus zentrierte Cards */
.contact-card { text-align: center; align-items: center; }
.contact-card .icon { margin-left: auto; margin-right: auto; }
.contact-card .btn, .contact-card .btn-ghost { margin-top: auto; }

/* Trust-Abschluss (zentrierte Häkchen-Reihe) */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: center; }
.trust-row .item { position: relative; padding-left: 30px; font-size: 15px; }
.trust-row .item::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--c-primary-sand); border-bottom: 2px solid var(--c-primary-sand); transform: rotate(-45deg); }

/* ---------- Wissen-Hub: Suche & Filter-Pillen ---------- */
.wissen-tools { max-width: 900px; margin: 0 auto 44px; text-align: center; }
.wissen-search { width: 100%; max-width: 460px; font: inherit; font-size: 16px; padding: 14px 20px; border: 1.5px solid var(--c-cream-base); border-radius: 40px; margin-bottom: 20px; }
.wissen-search:focus { outline: none; border-color: var(--c-primary-sand); box-shadow: 0 0 0 3px rgba(173,150,120,.15); }
.wissen-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.wissen-pill { font: inherit; font-size: 13.5px; padding: 8px 16px; border-radius: 40px; border: 1px solid var(--c-stone-soft); background: #fff; color: var(--c-text-muted); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.wissen-pill:hover { border-color: var(--c-primary-sand); color: var(--c-primary-sand-dark); }
.wissen-pill.active { background: var(--c-primary-sand); border-color: var(--c-primary-sand); color: #fff; }
.wissen-card .obj-body h3 { font-size: 21px; margin-bottom: 10px; }

/* ---------- Marktbericht: CSS-Balkendiagramme (ohne JS-Bibliothek) ---------- */
.barchart-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--c-cream-base); border-radius: 10px; padding: 28px 24px 20px; box-shadow: var(--shadow-card); }
.barchart-wrap h3 { font-size: 18px; margin-bottom: 22px; }
.barchart { display: flex; align-items: flex-end; gap: 10px; height: 220px; }
.barchart .bar { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; height: 100%; }
.barchart .bar .val { font-family: var(--font-display); font-size: 15px; color: var(--c-charcoal); margin-bottom: 8px; white-space: nowrap; }
/* Balken-Zone: füllt den Raum zwischen Wert und Beschriftung; die Füllhöhe (%) bezieht
   sich auf diese Zone -> Balken sind proportional zum Wert. */
.barchart .bar .barea { flex: 1 1 auto; min-height: 0; width: 100%; max-width: 54px; display: flex; align-items: flex-end; justify-content: center; }
.barchart .bar .fill { width: 100%; background: linear-gradient(180deg, var(--c-primary-sand), var(--c-ceramic-warm)); border-radius: 6px 6px 0 0; min-height: 4px; }
.barchart .bar .lbl { font-size: 12px; color: var(--c-text-muted); margin-top: 10px; text-align: center; line-height: 1.2; }
.chart-source { font-size: 12.5px; color: var(--c-text-muted); margin-top: 16px; font-style: italic; }

/* ---------- Sand-Hero (Kooperations-Landingpages, warme Anmutung) ---------- */
.hero.hero-sand::after { background: linear-gradient(180deg, rgba(173,150,120,0.55) 0%, rgba(95,80,58,0.88) 100%); }

/* ---------- DSGVO-Cookie-Hinweis ---------- */
.consent-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; padding: 16px; display: flex; justify-content: center; }
.consent-banner .cb-box { width: min(680px, 100%); background: #fff; border-radius: 14px; box-shadow: 0 18px 60px rgba(15,22,35,.35); padding: 24px 26px; border: 1px solid var(--c-cream-base); }
.consent-banner .cb-title { font-family: var(--font-display); font-weight: 500; font-size: 21px; margin: 0 0 8px; }
.consent-banner .cb-text { font-size: 14px; line-height: 1.6; color: var(--c-text-muted); margin: 0 0 6px; }
.consent-banner .cb-text a { color: var(--c-primary-sand-dark); text-decoration: underline; }
.consent-banner .cb-service { font-size: 12.5px; color: var(--c-text-muted); margin: 0 0 4px; }
.consent-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.consent-banner .btn { padding: 12px 22px; font-size: 14px; }
@media (max-width: 480px) { .consent-banner .cb-actions .btn { width: 100%; justify-content: center; } }
