/* ==========================================================
   Pecuria OHZ — site.css (Rebuild 2026-07-27)
   Design-DNA: Referenz (Zweiton Papier/Tinte, Filmkorn, Haarlinien,
   editorialer Typumgang) + Referenz (Nummern-Eyebrows,
   Eckrahmen, Liquid-Button) + Referenz (Scrims, Intro).
   Tokens: global.css (Pecuria Brand). Lädt nach lenis.css.
   ========================================================== */

:root {
  --paper: #FFFFFF;
  --ink: var(--pc-brown);            /* #3D382D */
  --soft-ink: rgba(61, 56, 45, 0.66);
  --line: rgba(61, 56, 45, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --paper-rgb: 255, 255, 255;
  --green: var(--pc-green);          /* #ADFFCD */
  --maxw: 80rem;                     /* 1280px, Referenz max-w-7xl */
  --gutter: clamp(20px, 3.5vw, 48px);
  --ease-exp: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  min-width: 320px;
  overflow-x: clip; /* schwebende Foto-Karten dürfen nie horizontales Scrollen erzeugen */
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }
[data-bg="dark"] ::selection { background: var(--paper); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 0.15s var(--ease-exp);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
[data-bg="dark"] :focus-visible { outline-color: var(--green); }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Filmkorn (Referenz has-grain, fix hinter allem) ---------- */
.grain-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url(../img/grain.svg);
  background-repeat: repeat;
  background-size: 220px 220px;
}

/* ---------- Typo-System (Referenz Skala, ESBuild) ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft-ink);
}
[data-bg="dark"] .eyebrow,
.eyebrow--light { color: rgba(173, 255, 205, 0.75); }

.display {
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.016em;
}
h1, h2, h3 { font-weight: 500; letter-spacing: -0.012em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4.2rem); line-height: 1.02; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.12; }

.small { font-size: 0.8rem; line-height: 1.55; }
.body-copy { font-size: 0.95rem; line-height: 1.7; color: var(--soft-ink); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--soft-ink);
}

/* SplitText: 3D-Charakter-Reveals brauchen Perspektive */
[data-anim="h"], [data-hero] h1, [data-statement] { perspective: 800px; }
.split-char, .split-word, .split-line { display: inline-block; will-change: transform; }
.split-line { overflow: hidden; }

/* ---------- Buttons ---------- */
/* Primär: Pille mit Referenz-Liquid-Fill (Fill steigt von unten,
   border-radius morpht mit — reines CSS) */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease-inout);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto 0;
  height: 100%;
  border-radius: 100%;
  z-index: -1;
  transition: inset 0.5s var(--ease-inout), border-radius 0.5s var(--ease-inout);
}
@media (min-width: 992px) {
  .btn:hover::after { inset: 0 0 auto 0; border-radius: 0; }
}
.btn--green { background: var(--green); color: var(--ink); }
.btn--green::after { background: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink::after { background: var(--pc-green); }
@media (min-width: 992px) {
  .btn--ink:hover { color: var(--ink); }
}
.btn--lg { padding: 18px 38px; font-size: 0.88rem; }
.btn--ghost {
  background: none;
  color: inherit;
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.btn--ghost::after { display: none; }
/* Referenz Outline-Pille (wr-pill / btn--outline) */
.btn--outline {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(var(--paper-rgb), 0.35);
  padding: 13px 26px;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.5s var(--ease-inout);
}
.btn--outline::after { display: none; }
@media (min-width: 992px) {
  .btn--outline:hover {
    border-color: var(--green);
    background: rgba(173, 255, 205, 0.14);
  }
}
/* Referenz Quadrat-Button (btn--square, z. B. Nach-oben) */
.btn-square {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(var(--paper-rgb), 0.35);
  border-radius: 0;
  color: var(--paper);
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.btn-square:hover { border-color: var(--green); background: rgba(173, 255, 205, 0.14); }

/* Text-Link mit Pfeil (Referenz "Send inquiry →") */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: inherit;
}
.link-arrow i {
  font-style: normal;
  transition: transform 0.5s var(--ease-exp);
}
.link-arrow:hover i { transform: translateX(6px); }

/* Underline-Sweep (Referenz link-underline, Origin-Flip) */
.link-underline { display: inline-block; position: relative; text-decoration: none; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.6s var(--ease-inout);
}
.link-underline:hover::after,
.link-underline:focus-visible::after { transform-origin: 0 50%; transform: scaleX(1); }

/* ---------- Header (Grid 1fr auto 1fr, Referenz) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  color: var(--paper);
  transition: color 0.4s ease, background 0.4s ease;
}
.site-header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header__logo { display: inline-flex; width: 128px; }
.site-header__logo img { width: 100%; height: auto; }
.site-header .logo-dark { display: none; }
.site-header.is-scrolled .logo-dark { display: block; }
.site-header.is-scrolled .logo-light { display: none; }
.site-header__nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.site-header__nav a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.site-header__nav a:hover { opacity: 1; color: var(--green); }
.site-header.is-scrolled { color: var(--ink); }
.site-header.is-scrolled .site-header__nav a:hover { color: var(--ink); }
.site-header__cta { display: flex; justify-content: flex-end; }
.site-header__cta .btn { padding: 14px 28px; font-size: 0.8rem; }
/* Glas-Layer beim Scrollen (Referenz-Muster) */
.site-header.is-glass {
  background: rgba(61, 56, 45, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.site-header.is-glass.is-scrolled {
  background: rgba(var(--paper-rgb), 0.82);
}
@media (max-width: 767px) {
  .site-header__nav { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .site-header__logo { width: 104px; }
}

/* ---------- Preloader (Referenz-Port, unverändert übernommen) ---------- */
.master-preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--pc-brown);
}
[data-preloader].wr-intro {
  --p: 0;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: var(--pc-brown);
  pointer-events: all;
}
.wr-intro.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.wr-intro__gradient {
  position: absolute;
  inset: 0;
  opacity: calc(1 - var(--p));
  transition: opacity 0.35s ease;
  filter: blur(40px);
  pointer-events: none;
}
.wr-intro__gradient span { position: absolute; border-radius: 50%; }
.wr-intro__gradient span:nth-child(1) {
  width: 70vw; height: 70vw; left: -20vw; top: -10vh;
  background:rgba(173, 255, 205, 0.4);
}
.wr-intro__gradient span:nth-child(2) {
  width: 55vw; height: 55vw; right: -10vw; top: -20vh;
  background:rgba(222, 255, 235, 0.28);
}
.wr-intro__gradient span:nth-child(3) {
  width: 60vw; height: 60vw; left: 40vw; bottom: -20vh;
  background:rgba(30, 27, 20, 0.9);
}
.wr-intro__cols {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}
.wr-intro__col {
  position: relative;
  flex: 1 1 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.wr-intro__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.55, 0, 0.1, 1);
}
.wr-intro__col--right .wr-intro__shot { clip-path: inset(0 0 100% 0); }
.wr-intro.is-reveal .wr-intro__col--left .wr-intro__shot:nth-child(1),
.wr-intro.is-reveal .wr-intro__col--right .wr-intro__shot:nth-child(1) {
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}
.wr-intro.is-reveal .wr-intro__col--left .wr-intro__shot:nth-child(2),
.wr-intro.is-reveal .wr-intro__col--right .wr-intro__shot:nth-child(2) {
  clip-path: inset(0 0 0 0);
  transition-delay: 1.1s;
}
.wr-intro.is-reveal .wr-intro__col--left .wr-intro__shot:nth-child(3),
.wr-intro.is-reveal .wr-intro__col--right .wr-intro__shot:nth-child(3) {
  clip-path: inset(0 0 0 0);
  transition-delay: 2.2s;
}
.wr-intro.is-close .wr-intro__col--left {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.55, 0, 0.1, 1);
}
.wr-intro.is-close .wr-intro__col--right {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(0.55, 0, 0.1, 1);
}
.wr-intro__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  font-weight: 600;
  font-size: clamp(44px, 6.8vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--pc-green);
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: center center;
  transition: transform 1.45s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s ease 1.1s;
  will-change: transform;
  backface-visibility: hidden;
}
.wr-intro__logo-ghost,
.wr-intro__logo-fill { display: block; white-space: nowrap; }
.wr-intro__logo-ghost {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.28;
}
.wr-intro__logo-fill {
  position: relative;
  clip-path: inset(calc((1 - var(--p)) * 100%) 0 0 0);
  transition: clip-path 0.25s ease;
}
.wr-intro.is-logo-up .wr-intro__logo {
  transform: translate3d(-50%, calc(-50% - 50vh + 34px), 0) scale(0.4);
  opacity: 0;
}
@media (max-width: 767px) {
  .wr-intro__logo { font-size: clamp(36px, 8.8vw, 48px); }
  .wr-intro.is-logo-up .wr-intro__logo {
    transform: translate3d(calc(-50% - 50vw + 52px), calc(-50% - 50vh + 26px), 0) scale(0.5);
    opacity: 0;
  }
}

/* ---------- S1 Hero (Referenz: min-h-svh, Baseline-Komposition) ---------- */
.hero-scroll-area { height: 200svh; position: relative; }
.hero {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-out;
}
.hero__slide.is-active { opacity: 1; }
/* 4-Stufen-Scrim (Referenz): Mitte hell lassen, unten fast deckend */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:rgba(30, 27, 20, 0.55);
  pointer-events: none;
}
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(28px, 4vh, 56px);
}
.hero__kicker { margin-bottom: 20px; color: rgba(var(--paper-rgb), 0.7); }
.hero__title-row {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.hero__title {
  flex: 1;
  max-width: 21ch;
  font-size: clamp(2rem, 5.2vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -0.016em;
  font-weight: 500;
}
.hero__title .accent { color: var(--green); }
.hero__nav-btns { display: flex; gap: 8px; flex: none; padding-bottom: 6px; }
.hero__nav-btns button {
  background: none;
  border: none;
  color: rgba(var(--paper-rgb), 0.5);
  padding: 6px;
  line-height: 0;
  transition: color 0.3s ease;
}
.hero__nav-btns button:hover { color: var(--paper); }
.hero__nav-btns svg { width: 26px; height: 26px; }
.hero__sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(var(--paper-rgb), 0.85);
}
.hero__cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(173, 255, 205, 0.8);
}
/* Badge-Leiste: 4 Felder über Haarlinie (statt Pills) */
.badges {
  margin-top: 32px;
  border-top: 1px solid rgba(var(--paper-rgb), 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.badges li {
  padding: 16px 20px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.55;
  color: rgba(var(--paper-rgb), 0.75);
}
.badges li + li { border-left: 1px solid rgba(var(--paper-rgb), 0.14); padding-left: 20px; }
.badges b {
  color: var(--green);
  font-weight: 600;
  margin-right: 4px;
}
@media (max-width: 991px) {
  .badges { grid-template-columns: 1fr 1fr; }
  .badges li:nth-child(odd) { border-left: none; padding-left: 0; }
  .badges li { padding-bottom: 4px; }
}
@media (max-width: 767px) {
  .hero__title-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .badges { grid-template-columns: 1fr; }
  .badges li { border-left: none; padding-left: 0; }
}

/* ---------- Sektionen: Grundrhythmus (Referenz py-Rampe, großzügig) ---------- */
.section-pad { padding-block: clamp(56px, 7vw, 112px); }
.section-pad--tight { padding-block: clamp(40px, 5vw, 80px); }
/* Grundrisse → Sicherheit: beide light, sonst doppelter Luftspalt */
.floors.section-pad--tight {
  padding-bottom: clamp(24px, 3vw, 40px);
}
.floors ~ .wr-stats.section-pad {
  padding-top: clamp(32px, 4vw, 56px);
}
/* Sicherheit → nächste Sektion: kein doppelter Luftspalt */
.wr-stats.section-pad {
  padding-bottom: clamp(32px, 4vw, 56px);
}
.sec-head { margin-bottom: clamp(28px, 4vw, 56px); }
.sec-head .display { margin-top: 16px; max-width: 20ch; }

/* ---------- Vollbild-Szene (Referenz design-slide-1: Riesentitel rechts,
   Textblock unten links, Doppel-Scrim) ---------- */
.scene {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}
.scene__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.scene__bg img { width: 100%; height: 115%; object-fit: cover; }
.scene__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 27, 20, 0.2);
  pointer-events: none;
}
.scene__caption {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.scene__title {
  margin-top: 16px;
  font-size: clamp(3.4rem, 11vw, 10.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.scene__sub {
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(var(--paper-rgb), 0.75);
}
.scene__text {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(28px, 5vh, 56px);
  z-index: 2;
}
.scene__text span {
  display: block;
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(var(--paper-rgb), 0.85);
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.38);
}
@media (max-width: 767px) {
  .scene__caption { align-items: flex-start; text-align: left; }
  .scene__text { position: static; margin-top: 40px; }
}

/* ---------- Referenz Sticky-Overlap ----------
   Port des .sticky--under-previous-Musters: die Sektion zieht sich
   100svh über den gepinnten Vorgänger (negative margin), ihr erster
   Viewport wird per clip-path versteckt — der Vorgänger bleibt
   dahinter sichtbar, bis der Inhalt ihn überfährt. */
.ovl-under {
  position: relative;
  z-index: 2;
  margin-top: calc(-100 * var(--svh, 1svh));
  clip-path: polygon(0 calc(100 * var(--svh, 1svh)), 100% calc(100 * var(--svh, 1svh)), 100% 100%, 0 100%);
  transform: translateZ(1px);
}
.ovl-under::before {
  content: "";
  display: block;
  height: calc(100 * var(--svh, 1svh));
}
/* Port von .sticky--under-next: der VORGÄNGER bleibt 100svh länger gepinnt,
   während der Nachfolger ihn überfährt (Spacer + negative margin heben sich
   im Fluss auf, geben dem Sticky-Kind aber 100svh mehr Laufweg). */
.ovl-hold { margin-bottom: calc(-100 * var(--svh, 1svh)); }
.ovl-hold::after {
  content: "";
  display: block;
  height: calc(100 * var(--svh, 1svh));
}
/* Szene: gepinnter 100svh-Stage in 200svh-Laufweg (für Overlap des Nachfolgers) */
.scene-area { height: 200svh; position: relative; }
.scene-area .scene {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 0;
}
@media (max-width: 767px) {
  .ovl-under { margin-top: 0; clip-path: none; transform: none; }
  .ovl-under::before { display: none; }
  .ovl-hold { margin-bottom: 0; }
  .ovl-hold::after { display: none; }
  .scene-area { height: auto; }
  .scene-area .scene { position: relative; height: auto; min-height: 100svh; }
}

/* Referenz-Divider: vertikale Haarlinie, zentriert */
.divider {
  height: clamp(64px, 9vw, 128px);
  display: flex;
  justify-content: center;
}
.line-v { width: 1px; height: 100%; background: var(--line); }

/* ---------- S2 Statement + Destatis (Referenz opportunity) ---------- */
/* Vollbild-Szene: 200svh gesamt = 100svh Clip-Zone (.ovl-under) + 100svh sichtbar */
.statement {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: calc(200 * var(--svh, 1svh));
}
.statement__inner {
  max-width: 64rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.statement__head,
.statement .display { position: relative; z-index: 2; }
@media (max-width: 767px) {
  .statement { min-height: calc(100 * var(--svh, 1svh)); }
}

/* Schwebende Foto-Karten (Referenz Galerie-Motiv): gekippt, gestaffelt,
   liegen HINTER dem Text und reiten beim Overlap mit über den Hero */
.float-card {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 32px 70px -18px rgba(61, 56, 45, 0.4);
}
.float-card img { width: 100%; height: 100%; object-fit: cover; }
.statement .float-card--1 {
  top: -4%;
  right: -15vw;
  width: min(280px, 18vw);
  aspect-ratio: 4 / 5;
  transform: rotate(6deg);
}
.statement .float-card--2 {
  bottom: -6%;
  left: -15vw;
  width: min(260px, 17vw);
  aspect-ratio: 4 / 3;
  transform: rotate(-7deg);
}
.statement .float-card--3 {
  top: -170px;
  left: 56%;
  width: min(150px, 11vw);
  aspect-ratio: 1 / 1;
  transform: rotate(-12deg);
}
@media (max-width: 1023px) { .float-card { display: none; } }
.statement__head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.statement .display {
  font-size: clamp(1.8rem, 4.3vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: none;
}

/* ---------- S2b Destatis-Datenband (Referenz Stat-Panel, dunkel) ---------- */
/* Vollbild-Band: min. ein Viewport hoch, Inhalt vertikal zentriert.
   Atmosphäre statt flacher Tinte: warme Radial-Verläufe (Referenz Canvas) */
.markt-data {
  background:var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100 * var(--svh, 1svh));
}
.markt-data > .wrap { width: 100%; }
.markt-data__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 18px;
  margin-bottom: clamp(36px, 5vw, 72px);
}
.markt-data__head-note {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(var(--paper-rgb), 0.5);
}
.markt-data__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
}
@media (max-width: 860px) { .markt-data__grid { grid-template-columns: 1fr; } }
.chart-card { margin: 0; }
.chart-card svg { width: 100%; height: auto; display: block; overflow: visible; }
.markt-data .pt { cursor: default; outline: none; }
.markt-data .pt .tip {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.markt-data .pt:hover .tip,
.markt-data .pt:focus .tip { opacity: 1; }
.markt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}
.markt-row:first-child { border-top: 1px solid var(--line-dark); }
.markt-row b {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
}
.markt-row span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(var(--paper-rgb), 0.55);
  text-align: right;
}
.markt-row--highlight b { color: var(--green); }
.markt-data__source {
  margin-top: 20px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(var(--paper-rgb), 0.5);
}

/* ---------- S3 Objekt: Fakten-Ledger (Referenz facts band) ----------
   Vollbild-Szene: Ledger links, Foto-Spalte rechts; 200svh gesamt
   (100svh Clip-Zone durch .ovl-under + 100svh sichtbar, Inhalt zentriert) */
.facts {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: calc(200 * var(--svh, 1svh));
}
.facts > .wrap {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facts__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}
.facts__media {
  overflow: hidden;
  border-radius: var(--radius-card);
  height: clamp(360px, 62vh, 640px);
}
.facts__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .facts__grid { grid-template-columns: 1fr; }
  .facts__media { height: 320px; order: 2; }
}
@media (max-width: 767px) {
  .facts { min-height: calc(100 * var(--svh, 1svh)); }
}
.facts__ledger { border-top: 1px solid var(--line); }
.facts__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: clamp(18px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}
.facts__row b {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.016em;
}
.facts__row span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-ink);
  text-align: right;
}
.facts__note { margin-top: 22px; }

/* ---------- S3b Varianten: 2 Karten mit Referenz-Eckrahmen ---------- */
.variants { background: var(--paper); }
.variants__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 860px) { .variants__grid { grid-template-columns: 1fr; } }
/* Referenz Residenzen-Karte: dunkel, Radius 18, Haarlinien-Border, Progress-Linie */
.variant-card {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(var(--paper-rgb), 0.14);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
@media (min-width: 992px) {
  .variant-card:hover { border-color: var(--green); transform: translateY(-2px); }
}
.variant-card__line {
  position: relative;
  display: block;
  height: 1.5px;
  background: rgba(var(--paper-rgb), 0.2);
}
.variant-card__line span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 38%;
  background: var(--green);
}
.variant-card__type {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(173, 255, 205, 0.8);
}
.variant-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.variant-card__media img { width: 100%; height: 100%; object-fit: cover; }
.variant-card h3 { margin-top: 6px; font-size: clamp(1.4rem, 2.2vw, 2rem); }
.variant-card table { width: 100%; border-collapse: collapse; }
.variant-card td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.88rem;
  vertical-align: top;
}
.variant-card td:first-child { color: rgba(var(--paper-rgb), 0.65); padding-right: 16px; }
.variant-card td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
/* Mobil: nowrap zwingt die Tabelle breiter als den Viewport – Werte dürfen umbrechen */
@media (max-width: 600px) {
  .variant-card td:last-child { white-space: normal; }
}
.variant-card .btn--outline { align-self: flex-start; margin-top: 6px; }
/* Referenz .decor: 8-teiliger unterbrochener Eckrahmen */
.decor { position: absolute; inset: 0; pointer-events: none; color: var(--line); }
.decor i { position: absolute; border: 0 solid currentColor; }
.decor i:nth-child(1) { left: 0; top: 0; width: 24px; height: 24px; border-left-width: 1px; border-top-width: 1px; }
.decor i:nth-child(2) { right: 0; top: 0; width: 24px; height: 24px; border-right-width: 1px; border-top-width: 1px; }
.decor i:nth-child(3) { right: 0; bottom: 0; width: 24px; height: 24px; border-right-width: 1px; border-bottom-width: 1px; }
.decor i:nth-child(4) { left: 0; bottom: 0; width: 24px; height: 24px; border-left-width: 1px; border-bottom-width: 1px; }
.decor i:nth-child(5) { left: 36px; right: 36px; top: 0; border-top-width: 1px; }
.decor i:nth-child(6) { left: 36px; right: 36px; bottom: 0; border-bottom-width: 1px; }
.decor i:nth-child(7) { top: 36px; bottom: 36px; left: 0; border-left-width: 1px; }
.decor i:nth-child(8) { top: 36px; bottom: 36px; right: 0; border-right-width: 1px; }
.micro-cta {
  margin-top: clamp(48px, 6vw, 80px);
  text-align: center;
}
.micro-cta p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.008em;
  max-width: 30ch;
  margin: 0 auto 24px;
}

/* ---------- S4 Sicherheit: Vorteils-Grid (pecuria.de-Look) ---------- */
.wr-stats {
  position: relative;
  background: #FFFFFF;
  color: var(--ink);
  /* S bleibt in der Sektion; kein Page-Horizontal-Scroll */
  overflow-x: clip;
  overflow-y: visible;
}
.wr-stats__intro {
  position: relative;
  z-index: 2;
  /* Top-Abstand kommt von .section-pad – hier nur noch leichter Innenabstand */
  padding-top: 0;
  padding-bottom: clamp(32px, 5vw, 64px);
}
.wr-stats__intro h2 {
  margin-top: 16px;
  max-width: 22ch;
  color: #3D382D;
}
.wr-stats__grid-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(24px, 3vw, 40px);
  /* Unterer Abstand kommt von .wr-stats.section-pad – hier kein Extra-Luftspalt */
  padding-bottom: 0;
  overflow: visible;
}
/* S hinter Headline + Cards, voll deckend (keine Opacity) */
.wr-stats__blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 50%;
  top: 58%;
  width: min(980px, 100%);
  max-width: 100%;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 1;
}
.wr-stats__blob-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}
.wr-stats__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  max-width: 784px; /* 980px − 20% */
  width: 100%;
  margin-inline: auto;
  /* Hälfte des Row-Versatzes zurück: Cluster optisch mittig */
  transform: translateX(calc(clamp(40px, 7vw, 88px) * -0.5));
}
.wr-stats__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}
.wr-stats__row--shift {
  /* Versatz wie pecuria.de — transform hält Kartenbreite identisch */
  transform: translateX(clamp(40px, 7vw, 88px));
}
.wr-stats .wr-stat__card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1.5px solid #3D382D;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
/* Badge wie pecuria.de: linksbündige Pille, nicht volle Kopfzeile */
.wr-stats .wr-stat__head {
  display: inline-block;
  align-self: flex-start;
  width: 78%;
  min-width: 200px;
  max-width: 100%;
  flex-shrink: 0;
  margin-top: 0;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px) clamp(16px, 1.8vw, 22px);
  background: #3D382D;
  border-radius: 0 999px 999px 0;
  transition: background-color 0.15s ease;
}
.wr-stats .wr-stat__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px);
}
.wr-stats .wr-stat__num {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ADFFCD;
  transition: color 0.15s ease;
}
.wr-stats .wr-stat__label {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.3;
  color: #ADFFCD;
  transition: color 0.15s ease;
}
.wr-stats .wr-stat__text {
  margin: 0 0 18px;
  font-size: max(1.05rem, min(1.2rem, calc(1.05rem + 2.4 * ((100vw - 720px) / 480))));
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: rgba(61, 56, 45, 0.9);
  transition: color 0.15s ease;
}
.wr-stats .wr-stat__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 24px;
  border: 1.5px solid #3D382D;
  border-radius: 999px;
  background: #FFFFFF;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #3D382D;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.wr-stats .wr-stat__cta::after { display: none; }

/* Hover-Invert wie pecuria.de: dunkle Karte, Mint-Badge, weißer Text, Outline-CTA */
@media (min-width: 992px) {
  .wr-stats .wr-stat__card:hover {
    background: #3D382D;
    border-color: #3D382D;
  }
  .wr-stats .wr-stat__card:hover .wr-stat__head {
    background: #ADFFCD;
  }
  .wr-stats .wr-stat__card:hover .wr-stat__num,
  .wr-stats .wr-stat__card:hover .wr-stat__label {
    color: #3D382D;
  }
  .wr-stats .wr-stat__card:hover .wr-stat__text {
    color: #FFFFFF;
  }
  .wr-stats .wr-stat__card:hover .wr-stat__cta {
    background: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
  }
}
@media (max-width: 767px) {
  .wr-stats__grid {
    max-width: none;
    transform: none;
  }
  .wr-stats__row {
    grid-template-columns: 1fr;
  }
  .wr-stats__row--shift {
    transform: none;
  }
  .wr-stats__blob {
    width: 100%;
    max-width: 100%;
    top: 55%;
    opacity: 1;
  }
  .wr-stats__intro {
    padding-top: clamp(36px, 6vw, 64px);
    padding-bottom: clamp(24px, 4vw, 40px);
  }
}

/* ---------- S5 Rechenbeispiel (Referenz frosted card über Foto) ---------- */
.calc {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.calc__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.calc__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 70%;
}
.calc__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:var(--pc-brown);
}
.calc__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 9vw, 140px);
}
/* Referenz l-map-Muster: helles Panel schiebt sich rechts über das dunkle Foto */
.calc__panel {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 64px);
  max-width: 640px;
  margin-left: auto;
  margin-right: 0;
}
.calc__panel h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  max-width: 22ch;
}
.calc__panel .eyebrow { color: var(--soft-ink); }
.calc__key {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--soft-ink);
  max-width: 56ch;
}
.calc__panel table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: clamp(20px, 2.5vw, 32px);
  border-top: none;
}
.calc__panel td {
  padding: 16px 28px;
  border-bottom: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  vertical-align: middle;
  color: #3D382D;
}
.calc__panel td:first-child {
  color: #3D382D;
  padding-right: 16px;
  width: 52%;
  border-radius: 999px 0 0 999px;
}
.calc__panel td:last-child {
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0 999px 999px 0;
}
/* Abwechselnde Mint-Pillen (Referenz pecuria.de Zahlen & Fakten) */
.calc__panel tr:nth-child(odd) td {
  background: #ADFFCD;
}
.calc__panel tr:nth-child(even) td {
  background: transparent;
}
/* Mobil: Werte dürfen umbrechen, sonst überragt die Tabelle den Viewport
   (muss NACH der nowrap-Regel stehen – gleiche Spezifität, Kaskade entscheidet) */
@media (max-width: 600px) {
  .calc__panel td {
    padding: 14px 18px;
    font-size: 0.92rem;
  }
  .calc__panel td:last-child { white-space: normal; }
}
.calc__panel tr.highlight td { font-weight: 600; color: #3D382D; }
.calc__panel tr.highlight td:last-child::before { content: none; }
.disclaimer {
  margin-top: 24px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--soft-ink);
}
.calc__closing {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .calc__panel .disclaimer {
    margin-top: 28px;
    margin-bottom: 8px;
  }
  .calc__closing {
    margin-top: 28px;
    padding-top: 28px;
  }
}

/* ---------- S6 Vorbelegungsrecht (Referenz interiors: 50/50-Split) ---------- */
.vbr { background: var(--paper); }
.vbr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92svh;
}
.vbr-split__media { overflow: hidden; }
.vbr-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vbr-split__panel {
  background: var(--pc-green-40);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vbr-split__panel-inner {
  padding: clamp(48px, 7vw, 112px) var(--gutter) clamp(48px, 6vw, 88px);
  max-width: 620px;
}
.vbr-split__panel h2 {
  margin-top: 16px;
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}
.vbr-split__lead {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--soft-ink);
}
@media (max-width: 860px) {
  .vbr-split { grid-template-columns: 1fr; min-height: 0; }
  .vbr-split__media { aspect-ratio: 4 / 3; }
}

/* ---------- Galerie-Strip (Referenz Bildband): Endlos-Marquee,
   versetzt gestaffelte Karten, reines Bildband ohne Copy ---------- */
.strip {
  background: var(--paper);
  padding-block: clamp(64px, 8vw, 128px);
  overflow: hidden;
}
.strip__track {
  display: flex;
  width: max-content;
  animation: strip-scroll 52s linear infinite;
}
.strip__row {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}
.strip figure {
  flex: none;
  width: clamp(240px, 27vw, 430px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.strip img { width: 100%; height: 100%; object-fit: cover; }
@keyframes strip-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ---------- S7 Betreiber (Referenz pillars, 2-up) ---------- */
.pillars { background: var(--paper); }
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
/* Betreiber & Verwaltung: nebeneinander auf gleicher Höhe (Kundenwunsch) */
@media (max-width: 767px) { .pillars__grid { grid-template-columns: 1fr; } }
.pillar { display: flex; flex-direction: column; gap: 18px; }
.pillar__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.pillar__body {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar__body h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
.pillar__body p { font-size: 0.95rem; line-height: 1.7; color: var(--soft-ink); max-width: 46ch; }
.logo-note {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--soft-ink);
  opacity: 0.7;
}

/* ---------- S8 Prozess (Ledger-Spalten mit Riesenziffern) ---------- */
.process {
  background:var(--ink);
  color: var(--paper);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 56px);
  counter-reset: step;
}
@media (max-width: 767px) { .process__steps { grid-template-columns: 1fr; } }
.process__steps li {
  counter-increment: step;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}
.process__steps li::before {
  content: "0" counter(step);
  display: block;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.process__steps b {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.008em;
  margin-bottom: 10px;
}
.process__steps p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(var(--paper-rgb), 0.7);
  max-width: 36ch;
}
.process__trust {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process__trust p {
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.008em;
  max-width: 34ch;
}

/* ---------- S9 FAQ (Referenz answers Ledger + Akkordeon) ---------- */
.answers { background: var(--paper); }
.answers__paren {
  font-size: 0.875rem;
  color: var(--soft-ink);
}
.answers__head h2 { margin-top: 10px; max-width: 22ch; }
.answers__list { border-top: 1px solid var(--line); }
.answers__list details { border-bottom: 1px solid var(--line); }
.answers__list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: baseline;
  gap: 24px;
  padding: clamp(24px, 3.2vw, 38px) 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.008em;
}
.answers__list summary::-webkit-details-marker { display: none; }
.answers__list summary::after {
  content: "";
  width: 14px;
  height: 14px;
  justify-self: end;
  align-self: center;
  background: var(--ink);
  clip-path: polygon(6.5px 0, 7.5px 0, 7.5px 6.5px, 14px 6.5px, 14px 7.5px, 7.5px 7.5px, 7.5px 14px, 6.5px 14px, 6.5px 7.5px, 0 7.5px, 0 6.5px, 6.5px 6.5px);
  transition: transform 0.45s var(--ease-inout);
}
.answers__list details[open] summary::after { transform: rotate(45deg); }
.answers__list details > p {
  padding: 0 0 clamp(24px, 3vw, 36px);
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--soft-ink);
}
@media (min-width: 768px) {
  .answers__list details > p { margin-left: 30%; }
}

/* ---------- S10 Abschluss (Referenz hero-Komposition wiederholt) ---------- */
.inquiry {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.inquiry__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inquiry__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}
.inquiry__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:rgba(30, 27, 20, 0.4);
}
.inquiry__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(96px, 14vh, 160px) clamp(32px, 5vh, 64px);
}
/* Referenz design-slide-1: Titelblock rechtsbündig */
.inquiry__head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
}
.inquiry__title {
  margin-top: 18px;
  font-size: clamp(2.3rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 15ch;
}
@media (max-width: 767px) {
  .inquiry__head { align-items: flex-start; text-align: left; }
}
.inquiry__row {
  margin-top: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.inquiry__meta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 2;
  color: rgba(var(--paper-rgb), 0.65);
}
.inquiry__meta b { color: var(--paper); font-weight: 600; display: block; }

/* ---------- Footer (im dunklen Abschluss, Referenz contact-Fuß) ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
}
/* Referenz Footer: Linkzeile + Nach-oben-Quadrat, dann große zentrierte Marke */
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line-dark);
}
.site-footer__top nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer__top nav a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: rgba(var(--paper-rgb), 0.7);
  transition: color 0.3s ease;
}
.site-footer__top nav a:hover { color: var(--green); }
.site-footer__logo-band {
  display: flex;
  justify-content: center;
  padding-block: clamp(48px, 8vw, 128px);
}
.site-footer__logo-band img {
  width: clamp(260px, 38vw, 540px);
  height: auto;
}
.site-footer__legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
@media (max-width: 767px) { .site-footer__legal { grid-template-columns: 1fr; } }
.site-footer__legal p { color: rgba(var(--paper-rgb), 0.55); }
.site-footer__legal a { color: rgba(var(--paper-rgb), 0.8); }
.site-footer__copy {
  padding-block: 22px clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line-dark);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(var(--paper-rgb), 0.5);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


/* ---------- Funnel-Modal (Klassen unverändert, Look neu) ---------- */
.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(30, 27, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  /* iOS: Safe-Area + scrollbarer Overlay, sonst clippt 92vh gegen die Safari-Leiste */
  padding: max(12px, env(safe-area-inset-top, 0px))
           max(12px, env(safe-area-inset-right, 0px))
           max(12px, env(safe-area-inset-bottom, 0px))
           max(12px, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.funnel-overlay.is-open { display: flex; }
.funnel {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 960px;
  /* svh = sichtbarer Viewport inkl. Leiste; vh/dvh clippt auf iPhone oft oben/unten */
  max-height: calc(
    100svh
    - max(24px, env(safe-area-inset-top, 0px))
    - max(24px, env(safe-area-inset-bottom, 0px))
  );
  overflow-y: auto;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  margin-block: auto;
  flex-shrink: 0;
}
.funnel__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.funnel__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 160px;
  background: rgba(61, 56, 45, 0.06);
}
.funnel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.funnel__slide.is-active { opacity: 1; }
@media (max-width: 899px) {
  .funnel__slide {
    object-position: center 62%;
  }
  .funnel__media {
    height: 132px;
  }
  .funnel {
    padding: 16px 16px 18px;
  }
}
.funnel__body { min-width: 0; }
@media (min-width: 900px) {
  .funnel__layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.15fr);
    gap: 28px;
    min-height: min(640px, 80vh);
  }
  .funnel__media {
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }
}
.funnel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(20, 17, 12, 0.22);
  font-size: 1.45rem;
  font-weight: 500;
  color: #3d382d;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.funnel__close:hover {
  background: #fff;
}
.funnel__progress {
  height: 2px;
  background: var(--line);
  margin: 20px 0 32px;
  overflow: hidden;
}
.funnel__progress-bar {
  height: 100%;
  width: 20%;
  background: var(--ink);
  transition: width 0.25s ease;
}
.funnel__step { display: none; border: none; }
.funnel__step.is-active { display: block; }
.funnel__step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}
.funnel__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-ink);
}
.funnel__lead {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--soft-ink);
  max-width: 42ch;
}
/* Auswahl wie Pecuria-Kontaktfelder: Mint-Rand + Brand-Rundung;
   Hover wie Primary-CTA: Liquid-Fill von unten (Mint). */
.option-list {
  display: grid;
  gap: 10px;
  border: none;
}
.option-list label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-card);
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease-inout), border-color 0.25s ease, background-color 0.25s ease;
}
.option-list label::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto 0;
  height: 100%;
  border-radius: 100%;
  z-index: -1;
  background: var(--green);
  transition: inset 0.5s var(--ease-inout), border-radius 0.5s var(--ease-inout);
}
@media (min-width: 992px) {
  .option-list label:hover::after {
    inset: 0 0 auto 0;
    border-radius: 0;
  }
}
.option-list .option-key {
  position: relative;
  flex: none;
  width: 1.25em;
  font-weight: 600;
  color: var(--soft-ink);
}
.option-list label:has(input:checked) .option-key { color: var(--green); }
.option-list input[type="radio"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex: none;
  margin: 0;
  border: 1.5px solid rgba(61, 56, 45, 0.45);
  border-radius: 50%;
  background: transparent;
  transition: border-color 0.15s ease 0s;
}
.option-list input[type="radio"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  /* Grau erst nach Liquid-Fill (0.5s), beim Leave sofort zurück */
  transition: background-color 0.15s ease 0s;
}
@media (min-width: 992px) {
  .option-list label:hover input[type="radio"] {
    border-color: var(--ink);
    transition-delay: 0.5s;
  }
  .option-list label:hover input[type="radio"]::after {
    background: var(--ink); /* gleiches Ink/Grau wie CTA-Buttons */
    transition-delay: 0.5s;
  }
}
.option-list label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.option-list label:has(input:checked)::after { background: var(--green); }
.option-list label:has(input:checked) input[type="radio"] {
  border-color: var(--green);
  transition-delay: 0s;
}
.option-list label:has(input:checked) input[type="radio"]::after {
  background: var(--green);
  transition-delay: 0s;
}
.funnel__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.funnel__nav .btn {
  padding: 15px 30px;
  font-size: 0.88rem; /* Fallback; brand-look setzt Primary auf 1.15rem */
}
.funnel__nav .btn--ink {
  /* Primary bleibt sichtbar nur via JS; Ghost/Back unverändert */
}
.funnel__nav.is-quiz-step #funnelNext {
  display: none;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--soft-ink);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 2px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(61, 56, 45, 0.3);
  border-radius: 0;
  transition: border-color 0.25s ease;
}
.field input:focus { outline: none; border-color: var(--ink); }
.field .hint { font-size: 0.75rem; color: var(--soft-ink); margin-top: 6px; }
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 20px 0;
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--ink); flex: none; }
.form-error { color: #B03A2E; font-size: 0.85rem; margin-top: 12px; display: none; }
.form-error.is-visible { display: block; }
.funnel__note {
  margin-top: 16px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--soft-ink);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .sticky-features__media img,
  .sticky-features__item { transition: none; }
  .funnel__slide { transition: none; }
  .option-list label,
  .option-list label::after { transition: none; }
}

/* ---------- Preloader v2: Karten-Collage (Desktop) / Nur-Gradient (Mobile) ----------
   Choreo laeuft komplett ueber --p (0..1, vom rAF-Loop gesetzt):
   Karten teilen sich gestaffelt aus der Mitte aus, Wortmarke fuellt davor. */
.pl-cards { position: absolute; inset: 0; pointer-events: none; }
.pl-card {
  position: absolute; left: 50%; top: 50%; margin: 0;
  overflow: hidden; border-radius: var(--radius-card);
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.55);
  will-change: transform, opacity;
}
.pl-card img, .pl-card picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.pl-card--1 {
  --pc: clamp(0, calc((var(--p, 0) - 0.04) * 2.6), 1);
  width: min(26vw, 400px); aspect-ratio: 4 / 5;
  opacity: var(--pc);
  transform: translate3d(calc(-50% + var(--pc) * -26vw), calc(-50% + var(--pc) * -9vh), 0)
             rotate(calc(var(--pc) * -7deg)) scale(calc(0.86 + 0.14 * var(--pc)));
}
.pl-card--2 {
  --pc: clamp(0, calc((var(--p, 0) - 0.16) * 2.6), 1);
  width: min(24vw, 360px); aspect-ratio: 4 / 5;
  opacity: var(--pc);
  transform: translate3d(calc(-50% + var(--pc) * 27vw), calc(-50% + var(--pc) * -14vh), 0)
             rotate(calc(var(--pc) * 6deg)) scale(calc(0.86 + 0.14 * var(--pc)));
}
.pl-card--3 {
  --pc: clamp(0, calc((var(--p, 0) - 0.28) * 2.6), 1);
  width: min(30vw, 460px); aspect-ratio: 16 / 10;
  opacity: var(--pc);
  transform: translate3d(calc(-50% + var(--pc) * 11vw), calc(-50% + var(--pc) * 31vh), 0)
             rotate(calc(var(--pc) * 3deg)) scale(calc(0.86 + 0.14 * var(--pc)));
}
/* Abgang: Karten ziehen nach oben weg, sobald die Wortmarke zum Header fliegt */
.wr-intro.is-close .pl-card {
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
  opacity: 0 !important;
}
.wr-intro.is-close .pl-card--1 { transform: translate3d(calc(-50% - 34vw), -120%, 0) rotate(-10deg) !important; }
.wr-intro.is-close .pl-card--2 { transform: translate3d(calc(-50% + 34vw), -130%, 0) rotate(9deg) !important; }
.wr-intro.is-close .pl-card--3 { transform: translate3d(-42%, 140%, 0) rotate(6deg) !important; }
/* Wortmarke vor den Karten */
.wr-intro__logo { z-index: 3; }
/* Mobile: keine Karten, nur Gradient + Wortmarke (schneller Einstieg, LCP) */
@media (max-width: 767px) { .pl-cards { display: none; } }
