/* =========================================================
   Immobilien Toskana – Hauptstylesheet (v2)
   Mobile-First, CSS Custom Properties, BEM-nahe Klassen
   Emotion-First, edles Toskana-Feeling
   ========================================================= */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #9b7246 #f3ece3;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Farben – warme Toskana-Palette mit Gold-Akzent (vom neuen Logo) */
  --color-primary: #b24a20; /* Terracotta */
  --color-primary-dark: #8a3714; /* Dunkles Terracotta */
  --color-primary-soft: #f1ddc9; /* Sandiges Beige */
  --color-gold: #c89a4f; /* Gold-Ton aus Logo */
  --color-gold-dark: #9b7246;
  --color-accent: #6b7c4a; /* Gedämpftes Olivgrün */
  --color-bg: #fbf7f2; /* Warmes Off-White */
  --color-bg-alt: #f3ece3; /* Sand */
  --color-bg-deep: #2a201b; /* Tiefes Warmbraun fuer dunkle Sektionen */
  --color-surface: #ffffff;
  --color-text: #2a2320;
  --color-text-muted: #6f655e;
  --color-text-light: #f5ece1;
  --color-border: #e5dbd0;
  --color-border-strong: #c9b9a8;
  --color-star: #d4a03a;

  /* Typografie */
  --font-head: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.5rem;
  --fs-display: clamp(1.8rem, 2.8vw + 0.8rem, 3.2rem);

  --lh-tight: 1.05;
  --lh-head: 1.15;
  --lh-body: 1.7;

  /* Abstände */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 800px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius: 14px;
  --radius-lg: 24px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(42, 35, 32, 0.06);
  --shadow: 0 8px 24px rgba(42, 35, 32, 0.08);
  --shadow-lg: 0 30px 70px rgba(42, 35, 32, 0.22);
  --shadow-gold: 0 12px 40px rgba(200, 154, 79, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-elegant: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 280ms;
  --t-slow: 600ms;
  --t-cinematic: 1400ms;

  --header-h: 80px;
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
a:hover {
  color: var(--color-primary-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: var(--lh-head);
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.015em;
}
h1 {
  font-size: var(--fs-3xl);
  font-weight: 400;
}
h2 {
  font-size: var(--fs-2xl);
}
h3 {
  font-size: var(--fs-xl);
}
h4 {
  font-size: var(--fs-lg);
}
h2 em,
h1 em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
p {
  margin: 0 0 var(--space-md);
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: clamp(5rem, 8vw, 9rem) 0;
  position: relative;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--soft {
  background: #f8efe2;
}
.section--dark {
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(200, 154, 79, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(178, 74, 32, 0.2),
      transparent 55%
    );
  pointer-events: none;
}
.section--dark > .container {
  position: relative;
  z-index: 1;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}
.section--dark .section__lead {
  color: rgba(245, 236, 225, 0.78);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
}
.section__kicker {
  gap: 0;
}
.section--dark .section__kicker {
  color: var(--color-gold);
}
.section__lead {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
/* Breitere Variante: bricht auf zwei ausgeglichene Zeilen statt drei */
.section__lead--wide {
  max-width: 72ch;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-out),
    background-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(178, 74, 32, 0.35);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(178, 74, 32, 0.45);
}

.btn--gold {
  background: linear-gradient(135deg, #d8a85b 0%, #b08237 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #e2b569 0%, #c89148 100%);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--t-base) var(--ease-out);
}
.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Schleier im Hero-Modus direkt im Background — kein Pseudo-Element,
     das beim Scrollen ein eigenes GPU-Layer neu rendert. */
  background: linear-gradient(
    180deg,
    rgba(15, 10, 8, 0.45),
    rgba(15, 10, 8, 0.15) 70%,
    transparent
  );
  border-bottom: 0;
  /* Hinweis: transform / will-change wurden hier entfernt, weil sie einen
     Containing-Block für fixed-positionierte Kinder erzeugen — das mobile
     Menü (Kind dieses Headers) konnte dadurch nicht das Viewport füllen. */
  transition:
    background var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}
.site-header.is-scrolled,
.site-header.nav-open {
  background: rgb(251, 247, 242);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  z-index: 110;
}
.site-header__logo img,
.site-header__logo svg {
  height: 56px;
  width: auto;
  transition:
    filter var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out);
}
.site-header:not(.is-scrolled) .site-header__logo img {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
/* Zwei Logo-Versionen: weiß über Hero, dunkel im gescrollten Header */
.site-header__logo .logo--light {
  display: block;
}
.site-header__logo .logo--dark {
  display: none;
}
.site-header.is-scrolled .site-header__logo .logo--light,
.site-header.nav-open .site-header__logo .logo--light {
  display: none;
}
.site-header.is-scrolled .site-header__logo .logo--dark,
.site-header.nav-open .site-header__logo .logo--dark {
  display: block;
}
.site-header__logo:hover img {
  transform: scale(1.04);
}
.site-nav {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}
.site-nav a {
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-base) var(--ease-out);
}
.site-header:not(.is-scrolled) .site-nav a:not(.site-nav__cta) {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.site-header.is-scrolled .site-nav a:not(.site-nav__cta) {
  color: var(--color-text);
  text-shadow: none;
}
.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.site-header:not(.is-scrolled) .site-nav a:not(.site-nav__cta)::after {
  background: var(--color-gold);
}
.site-nav a:not(.site-nav__cta):hover {
  color: var(--color-primary);
}
.site-header:not(.is-scrolled) .site-nav a:not(.site-nav__cta):hover {
  color: var(--color-gold);
}
.site-nav a:not(.site-nav__cta):hover::after {
  transform: scaleX(1);
}

.site-nav a.site-nav__cta {
  margin-left: var(--space-sm);
  padding: 0.7rem 1.4rem !important;
  font-size: var(--fs-xs);
  color: #fff;
  transition:
    background-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}
.site-nav a.site-nav__cta:hover {
  color: #fff;
  transform: none;
}

/* Mobile Toggle */
.nav-toggle {
  background: none;
  border: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  z-index: 110;
  transition: color var(--t-base) var(--ease-out);
}
.site-header:not(.is-scrolled) .nav-toggle {
  color: #fff;
}
.site-header.nav-open .nav-toggle {
  color: var(--color-text);
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}
.nav-toggle__close {
  display: none;
}
.is-open .nav-toggle__open {
  display: none;
}
.is-open .nav-toggle__close {
  display: block;
}

@media (max-width: 1023px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg)
      var(--space-3xl);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease-elegant);
    overflow-y: auto;
    /* Über alle Sektionen, aber unter dem Header (z-index 100), damit X-Button klickbar bleibt */
    z-index: 99;
  }
  .site-nav.is-open {
    display: flex;
    transform: translateX(0);
  }
  .site-nav a {
    font-size: var(--fs-2xl);
    font-family: var(--font-head);
    padding: var(--space-sm) 0;
    color: var(--color-text) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav__cta {
    margin: var(--space-md) 0 0;
    align-self: flex-start;
    font-family: var(--font-body) !important;
    font-size: var(--fs-sm) !important;
    background: var(--color-primary);
    color: #fff !important;
    padding: 0.95rem 1.75rem !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--header-h);
  width: 100%;
}
/* SVG-Toskana-Szene als Hintergrund */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__sky {
  width: 100%;
  height: 100%;
  display: block;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 10, 8, 0.55) 0%,
      rgba(15, 10, 8, 0.18) 18%,
      transparent 35%,
      transparent 60%,
      rgba(15, 10, 8, 0.55) 100%
    ),
    radial-gradient(
      ellipse at left center,
      rgba(15, 10, 8, 0.45),
      transparent 55%
    );
  z-index: -1;
  pointer-events: none;
}

/* Sonne pulsiert sanft */
.hero__sun {
  transform-origin: 1080px 320px;
  animation: sunPulse 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px #fff4d6);
}
@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

/* Wolken ziehen langsam von rechts nach links */
.hero__cloud {
  animation: cloudDrift linear infinite;
}
.hero__cloud--1 {
  animation-duration: 80s;
  animation-delay: -10s;
}
.hero__cloud--2 {
  animation-duration: 110s;
  animation-delay: -40s;
}
.hero__cloud--3 {
  animation-duration: 95s;
  animation-delay: -70s;
}
@keyframes cloudDrift {
  0% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(-1800px);
  }
}

/* Vögel fliegen über den Himmel */
.hero__bird {
  animation: birdFly linear infinite;
  opacity: 0.65;
}
.hero__bird--1 {
  animation-duration: 22s;
  animation-delay: 0s;
}
.hero__bird--2 {
  animation-duration: 28s;
  animation-delay: -8s;
}
.hero__bird--3 {
  animation-duration: 25s;
  animation-delay: -15s;
}
@keyframes birdFly {
  0% {
    transform: translate(1500px, 220px) scale(0.8);
  }
  50% {
    transform: translate(720px, 160px) scale(1);
  }
  100% {
    transform: translate(-100px, 240px) scale(0.7);
  }
}

/* Hügel haben sehr subtile Parallax-Verschiebung */
.hero__hill--far {
  animation: hillSwayFar 16s ease-in-out infinite alternate;
}
.hero__hill--mid {
  animation: hillSwayMid 14s ease-in-out infinite alternate;
}
.hero__hill--near {
  animation: hillSwayNear 12s ease-in-out infinite alternate;
}
@keyframes hillSwayFar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-15px);
  }
}
@keyframes hillSwayMid {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(8px);
  }
}
@keyframes hillSwayNear {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-6px);
  }
}

/* Lichtpartikel / Pollen */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.hero__particles span {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 230, 180, 0.7);
  box-shadow: 0 0 8px rgba(255, 220, 150, 0.6);
  animation: particleFloat linear infinite;
}
.hero__particles span:nth-child(1) {
  left: 8%;
  animation-duration: 18s;
  animation-delay: 0s;
}
.hero__particles span:nth-child(2) {
  left: 22%;
  animation-duration: 24s;
  animation-delay: -4s;
}
.hero__particles span:nth-child(3) {
  left: 38%;
  animation-duration: 20s;
  animation-delay: -10s;
  width: 3px;
  height: 3px;
}
.hero__particles span:nth-child(4) {
  left: 51%;
  animation-duration: 26s;
  animation-delay: -16s;
}
.hero__particles span:nth-child(5) {
  left: 64%;
  animation-duration: 22s;
  animation-delay: -7s;
  width: 5px;
  height: 5px;
}
.hero__particles span:nth-child(6) {
  left: 73%;
  animation-duration: 19s;
  animation-delay: -12s;
}
.hero__particles span:nth-child(7) {
  left: 82%;
  animation-duration: 28s;
  animation-delay: -18s;
  width: 3px;
  height: 3px;
}
.hero__particles span:nth-child(8) {
  left: 91%;
  animation-duration: 23s;
  animation-delay: -2s;
}
.hero__particles span:nth-child(9) {
  left: 30%;
  animation-duration: 30s;
  animation-delay: -20s;
}
.hero__particles span:nth-child(10) {
  left: 58%;
  animation-duration: 25s;
  animation-delay: -14s;
  width: 3px;
  height: 3px;
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) translateX(40px);
    opacity: 0;
  }
}

/* Layout: Text links, Collage rechts */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
}
@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.25fr 1fr;
    gap: var(--space-2xl);
  }
}
.hero__inner {
  position: relative;
  max-width: 100%;
  z-index: 2;
}
/* Mobile: Texte zentriert ausrichten */
@media (max-width: 639px) {
  .hero__inner {
    text-align: center;
  }
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__ctas {
    justify-content: center;
  }
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 10, 8, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: var(--space-md);
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-elegant) 0.2s forwards;
}
.hero__kicker {
  gap: 0;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 4vw + 0.6rem, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.hero__title-line {
  display: block;
  padding: 0.05em 0.12em 0.18em 0;
  margin-bottom: -0.1em;
  overflow: visible;
}
.hero__title-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLine 1.2s var(--ease-elegant) forwards;
}
.hero__title-line:nth-child(1) span {
  animation-delay: 0.35s;
}
.hero__title-line:nth-child(2) span {
  animation-delay: 0.55s;
}
.hero__title-line:nth-child(3) span {
  animation-delay: 0.75s;
}
.hero__title em {
  font-style: italic;
  color: #fff5dc;
  font-weight: 500;
  text-shadow:
    0 2px 14px rgba(15, 10, 8, 0.85),
    0 0 40px rgba(15, 10, 8, 0.5);
  display: inline-block;
  padding-right: 0.08em;
  transition: transform 0.45s var(--ease-out);
  cursor: default;
  transform-origin: left center;
}
.hero__title em:hover {
  transform: scale(1.07);
}
@keyframes heroLine {
  0% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__slogan {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.6vw + 0.5rem, 1.6rem);
  font-style: italic;
  color: #e8c07a;
  margin: var(--space-md) 0 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-elegant) 0.85s forwards;
}
.hero__slogan em {
  font-style: italic;
  color: #fff5dc;
  font-weight: 500;
}
.hero__lead {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin: var(--space-sm) 0 var(--space-lg);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.55;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-elegant) 1s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-elegant) 1.2s forwards;
}
/* Mobile: Buttons volle Breite, Text zentriert */
@media (max-width: 639px) {
  .hero__ctas .btn {
    width: 100%;
  }
}
@media (min-width: 640px) {
  .hero__ctas {
    gap: var(--space-md);
  }
}

/* Bilder-Collage rechts */
.hero__collage {
  position: relative;
  display: none;
  height: 520px;
  opacity: 0;
  animation: heroFadeIn 1.2s var(--ease-elegant) 1s forwards;
}
@media (min-width: 1024px) {
  .hero__collage {
    display: block;
  }
}
.hero__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(15, 10, 8, 0.55),
    0 0 0 4px rgba(255, 255, 255, 0.92),
    0 0 0 5px rgba(0, 0, 0, 0.08);
  margin: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo--1 {
  width: 54%;
  height: 46%;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  animation: photoFloat1 8s ease-in-out infinite;
  z-index: 2;
}
.hero__photo--2 {
  width: 50%;
  height: 42%;
  top: 14%;
  right: 0;
  transform: rotate(4deg);
  animation: photoFloat2 9s ease-in-out infinite;
  z-index: 3;
}
.hero__photo--3 {
  width: 60%;
  height: 48%;
  bottom: 2%;
  left: 18%;
  transform: rotate(-2deg);
  animation: photoFloat3 10s ease-in-out infinite;
  z-index: 1;
}
@keyframes photoFloat1 {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-12px);
  }
}
@keyframes photoFloat2 {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-16px);
  }
}
@keyframes photoFloat3 {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-8px);
  }
}

/* Stempel-Badge "30 Jahre Erfahrung" */
.hero__collage-stamp {
  position: absolute;
  top: 38%;
  left: -6%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--color-gold, #c89a4f);
  color: #2a201b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  box-shadow: 0 12px 30px rgba(15, 10, 8, 0.4);
  z-index: 4;
  animation: stampSpin 24s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.hero__stamp-num {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.hero__stamp-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
@keyframes stampSpin {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-elegant) 1.7s forwards;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.3);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

/* ---------- Pillars (Krake / 3 Säulen) ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.pillar {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pillar.is-visible {
  transition:
    opacity 900ms var(--ease-elegant),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-cinematic) var(--ease-elegant);
}
.pillar:hover .pillar__media img {
  transform: scale(1.08);
}
/* "Der Filter & das Bollwerk" – Bild etwas heller */
.pillar--featured .pillar__media img {
  filter: brightness(1.42);
}
.pillar__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 15, 12, 0.4), transparent 50%);
}
.pillar__num {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  z-index: 2;
}
.pillar__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}
.pillar__stage {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-primary);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.pillar__title {
  font-size: var(--fs-xl);
  margin: 0;
}
.pillar__quote {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--color-gold-dark);
  font-size: var(--fs-base);
  line-height: 1.4;
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-gold);
}
.pillar__text {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  margin: 0;
  flex: 1;
}
.pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-xs);
}
.pillar__list li {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.pillar__list li::before {
  content: "✓";
  color: var(--color-gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-top: auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pillar__link::after {
  content: "→";
  transition: transform var(--t-base) var(--ease-out);
}
.pillar__link:hover::after {
  transform: translateX(6px);
}

.pillar--featured {
  /* Wie die anderen Karten, nur mit einem leichten Sand-Hauch */
  background: #f6ede0;
}

/* Honorar-Hinweis */
.honorar-note {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid rgba(155, 114, 70, 0.18);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 4px 18px rgba(155, 114, 70, 0.08);
}
.honorar-note__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.honorar-note__icon svg {
  width: 24px;
  height: 24px;
}
.honorar-note h3 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}
.honorar-note p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .honorar-note {
    flex-direction: column;
    padding: var(--space-md);
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stat {
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
}
.stat:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat__value sup {
  font-size: 0.52em;
  line-height: 1;
  margin-left: 0.1em;
  margin-top: 0.05em;
  color: var(--color-gold);
}
.stat__label {
  color: rgba(245, 236, 225, 0.85);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
}

/* ---------- Story / Split ---------- */
.split {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-alt);
}
.split__media img,
.split__media .split__svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-cinematic) var(--ease-elegant);
}
.split__media:hover img,
.split__media:hover .split__svg {
  transform: scale(1.04);
}
.split__media-tag {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.split__media-tag strong {
  color: var(--color-primary);
  font-size: var(--fs-md);
  font-family: var(--font-head);
  font-weight: 400;
  display: block;
}
.split__content h2 {
  margin-bottom: var(--space-md);
}
.split__quote {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--color-text);
  line-height: 1.4;
}
.split__features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  gap: var(--space-md);
}
.split__features li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.split__features-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  align-self: center;
  font-size: 0;
}
.split__features strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-text);
}
.split__features li > div {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  gap: var(--space-lg);
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-base) var(--ease-out);
}
.step:last-child {
  border-bottom: 0;
}
.step:hover {
  background: rgba(178, 74, 32, 0.04);
}
.step__num {
  font-family: var(--font-head);
  font-size: var(--fs-2xl);
  color: var(--color-gold-dark);
  line-height: 1;
}
.step__title {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-xs);
}
.step__text {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* ---------- Regions ---------- */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
  padding: 0;
}
.regions li {
  list-style: none;
}
.regions__tag {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  transition:
    background var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
.regions__tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Galerie ---------- */
.slideshow {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  /* Soft fade-out an den Rändern */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.slideshow__track {
  display: flex;
  gap: var(--space-md);
  animation: slideshowScroll 75s linear infinite;
  width: max-content;
}
.slideshow:hover .slideshow__track {
  animation-play-state: paused;
}
@keyframes slideshowScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slideshow__item {
  flex-shrink: 0;
  width: 480px;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
}
.slideshow__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-cinematic) var(--ease-elegant);
  display: block;
}
.slideshow__item:hover img {
  transform: scale(1.06);
}

/* ---------- Voices (editoriales Bewertungs-Layout) ---------- */
.voices {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .voices {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* Featured Hauptstimme */
.voice--featured {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.voice--featured::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  left: -0.05em;
  font-family: var(--font-head);
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
.voice__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}
.voice__stars {
  color: var(--color-star);
  font-size: 0.95rem;
  letter-spacing: 3px;
  line-height: 1;
}
.voice__rating-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.voice__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.4rem, 1.4vw + 1rem, 2.1rem);
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
  position: relative;
  z-index: 1;
}
.voice__person {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.voice__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold-dark);
  background: linear-gradient(135deg, #f5e6cf, #ead2a8);
  border: 1px solid rgba(155, 114, 70, 0.3);
  flex-shrink: 0;
}
.voice__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.voice__meta strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 600;
}
.voice__meta span {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* Liste mit weiteren Stimmen */
.voice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.voice-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}
.voice-item:first-child {
  border-top: none;
  padding-top: 0;
}
.voice-item:last-child {
  padding-bottom: 0;
}
.voice-item__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  background: linear-gradient(135deg, #f5e6cf, #ead2a8);
  border: 1px solid rgba(155, 114, 70, 0.25);
  flex-shrink: 0;
}
.voice-item__body {
  flex: 1;
  min-width: 0;
}
.voice-item__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 var(--space-xs);
}
.voice-item__person {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.voice-item__person strong {
  color: var(--color-text);
  font-weight: 600;
  margin-right: var(--space-xs);
}

/* ---------- Testimonials (alt, ungenutzt) ---------- */
.testimonials {
  display: grid;
  gap: var(--space-lg);
}
.testimonial {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow: hidden;
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.25em;
  right: 0.1em;
  font-family: var(--font-head);
  font-size: 10rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--color-border-strong);
}
.testimonial__stars {
  color: var(--color-star);
  font-size: 0.9rem;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial__text {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.2rem);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}
.testimonial__author strong {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: var(--space-sm);
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}
.faq__item[open] {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}
.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-lg);
  font-weight: 600;
  font-size: var(--fs-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--t-fast) var(--ease-out);
}
.faq__summary::-webkit-details-marker {
  display: none;
}
.faq__summary:hover {
  color: var(--color-primary);
}
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  transition:
    transform var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before {
  width: 14px;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transition: transform var(--t-base) var(--ease-out);
}
.faq__item[open] .faq__icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq__body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq__body p:last-child {
  margin-bottom: 0;
}
.faq__body ul {
  margin: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  list-style: disc;
  color: var(--color-text-muted);
}
.faq__body ul li {
  margin-bottom: 0.25rem;
}
.faq__note {
  margin-top: var(--space-xl);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.faq__note a {
  color: var(--color-primary);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  color: #fff;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cta-banner__scene {
  width: 100%;
  height: 100%;
  display: block;
}
.cta-banner h2,
.cta-banner p,
.cta-banner__ctas {
  position: relative;
  z-index: 2;
}
/* Mond pulsiert sanft */
.cta-moon {
  transform-origin: 1100px 120px;
  animation: moonGlow 5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(255, 240, 200, 0.8));
}
@keyframes moonGlow {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
/* Sterne funkeln */
.cta-stars circle {
  animation: starTwinkle ease-in-out infinite;
}
.cta-stars circle:nth-child(odd) {
  animation-duration: 3.2s;
  animation-delay: 0s;
}
.cta-stars circle:nth-child(even) {
  animation-duration: 4.5s;
  animation-delay: -1.8s;
}
.cta-stars circle:nth-child(3n) {
  animation-duration: 2.8s;
  animation-delay: -0.9s;
}
@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.2;
  }
}
/* Lichter der Ortschaften flackern leicht */
.cta-lights circle {
  animation: lightFlicker 6s ease-in-out infinite;
}
.cta-lights circle:nth-child(even) {
  animation-delay: -2s;
}
.cta-lights circle:nth-child(3n) {
  animation-delay: -4s;
}
@keyframes lightFlicker {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.4;
  }
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 2, 0.3) 0%,
    rgba(10, 5, 2, 0.1) 40%,
    rgba(10, 5, 2, 0.35) 100%
  );
  z-index: 1;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  max-width: 720px;
  margin: 0 auto var(--space-md);
}
.cta-banner p {
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-md);
}
.cta-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.25rem) 0;
}
.contact__info-item {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-top: 1px solid var(--color-border);
}
.contact__info-item:first-child {
  border-top: none;
  padding-top: 0;
}
.contact__info-item:last-child {
  padding-bottom: 0;
}
.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--color-gold-dark);
  border-radius: 50%;
  border: 1px solid rgba(155, 114, 70, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out);
}
.contact__info-icon svg {
  width: 18px;
  height: 18px;
}
.contact__info-item:hover .contact__info-icon {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.contact__info-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold-dark);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.contact__info-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.005em;
}
.contact__info-value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base) var(--ease-out);
}
.contact__info-value a:hover {
  color: var(--color-gold-dark);
}

.form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  gap: var(--space-md);
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  gap: var(--space-md);
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__field label {
  font-size: var(--fs-sm);
  font-weight: 600;
}
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(178, 74, 32, 0.1);
}
.form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.form__check {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.form__check input {
  margin-top: 0.25rem;
}
.form__honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  font-size: var(--fs-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  display: none;
}
.form__status.is-success {
  display: block;
  background: #e8f0e0;
  color: #3d5226;
}
.form__status.is-error {
  display: block;
  background: #f5dcd2;
  color: #7d2a10;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1411;
  color: #d8cec4;
  padding: var(--space-3xl) 0 var(--space-lg);
  font-size: var(--fs-sm);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-gold),
    transparent
  );
}
.site-footer__grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xl);
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-md);
}
.site-footer__brand img {
  height: 72px;
  width: auto;
  margin-bottom: var(--space-md);
}
.site-footer__brand p {
  color: #b8aea4;
  max-width: 320px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.site-footer a {
  color: #d8cec4;
}
.site-footer a:hover {
  color: var(--color-gold);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: #8a7f74;
}

/* ---------- To-Top Button ---------- */
.to-top {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(178, 74, 32, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity var(--t-base) var(--ease-out),
    visibility var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out);
  z-index: 90;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}
.to-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--space-md);
  backdrop-filter: blur(8px);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease-out);
}
.lightbox__close:hover {
  transform: rotate(90deg);
}

/* ---------- Passwort-Gate (Preview) ---------- */
.password-gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg-deep) 0%, #4a2c1a 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.password-gate__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.password-gate__logo {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-lg);
  display: block;
}
.password-gate__title {
  font-family: var(--font-head);
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}
.password-gate__text {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin: 0 0 var(--space-lg);
}
.password-gate__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.password-gate__input {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(155, 114, 70, 0.3);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  transition: border-color var(--t-base) var(--ease-out);
}
.password-gate__input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.password-gate__error {
  color: var(--color-primary);
  font-size: var(--fs-sm);
  min-height: 1.4em;
  margin: 0;
}
.password-gate__hint {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  margin: var(--space-md) 0 0;
  opacity: 0.7;
}

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  max-width: 540px;
  margin-left: auto;
  background: var(--color-surface);
  border: 1px solid rgba(155, 114, 70, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 20px 60px rgba(15, 10, 8, 0.25);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-elegant),
    transform 0.4s var(--ease-elegant);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__title {
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}
.cookie-banner__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}
.cookie-banner__link {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}
.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(155, 114, 70, 0.3);
}
.btn--secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-gold-dark);
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: var(--space-md);
  }
  .cookie-banner__actions {
    flex-direction: column-reverse;
  }
  .cookie-banner__actions .btn {
    width: 100%;
  }
}

/* H2 ohne Umbruch (für Desktop), bricht auf Mobile auf */
.h2--nowrap {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .h2--nowrap {
    white-space: normal;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}
/* Nowrap-Headlines brauchen vollen Container, damit text-align: center
   die Headline tatsächlich mittig setzt (statt links zu beschneiden). */
.section__head:has(.h2--nowrap) {
  max-width: none;
}
/* Stats-Headline einzeilig auch auf mittelgroßen Screens */
.h2--stats {
  font-size: clamp(1.25rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
}

/* ---------- Brücke / Elena ---------- */
.bruecke {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .bruecke {
    grid-template-columns: 1.1fr 1fr;
  }
}
.bruecke__lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-xl);
}
.bruecke__person {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  border-left: 3px solid var(--color-gold);
}
.bruecke__person-photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
}
.bruecke__person strong {
  display: block;
  font-size: var(--fs-lg);
  color: var(--color-text);
}
.bruecke__person-role {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
}
.bruecke__person-text {
  margin: 0;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.bruecke__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}
.bruecke__features li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.bruecke__features svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}
.bruecke__features strong {
  display: block;
  margin-bottom: 0.25rem;
}
.bruecke__features li > div {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.bruecke__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(155, 114, 70, 0.18);
  aspect-ratio: 3 / 4;
}
.bruecke__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-cinematic) var(--ease-elegant);
}
.bruecke__visual:hover img {
  transform: scale(1.04);
}

/* Sättigungsfilter, damit die Fotos farblich nicht so kräftig wirken */
.media-tint img {
  filter: saturate(0.8); /* Farbintensität runter – niedriger = blasser */
}
.bruecke__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Vorteile (5er Grid) ---------- */
.vorteile {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .vorteile {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  /* Drei Karten nebeneinander */
  .vorteile {
    grid-template-columns: repeat(3, 1fr);
  }
}
.vorteil {
  background: var(--color-surface);
  border: 1px solid rgba(155, 114, 70, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  hyphens: auto;
  -webkit-hyphens: auto;
  transition:
    transform 0.55s var(--ease-elegant),
    box-shadow 0.55s var(--ease-elegant),
    border-color 0.55s var(--ease-elegant);
}
.vorteil:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(155, 114, 70, 0.15);
  border-color: var(--color-gold);
}
.vorteil__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
}
.vorteil h3 {
  font-size: var(--fs-base);
  margin: 0;
  line-height: 1.3;
}
.vorteil p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Legal Pages ---------- */
.legal-hero {
  background: var(--color-bg-alt);
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-md)
    var(--space-2xl);
  border-bottom: 1px solid rgba(155, 114, 70, 0.15);
}
.legal-hero .section__kicker {
  margin-bottom: var(--space-sm);
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 var(--space-sm);
}
.legal-hero p {
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  margin: 0;
}
.legal-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid rgba(155, 114, 70, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--t-base) var(--ease-out);
}
.legal-card:hover {
  box-shadow: 0 4px 24px rgba(155, 114, 70, 0.1);
}
.legal-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.legal-card__icon svg {
  width: 20px;
  height: 20px;
}
.legal-card h2 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.legal-card p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
  line-height: 1.7;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card a {
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .legal-card {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}
.error-page__code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 22vw, 12rem);
  line-height: 1;
  color: var(--color-primary);
  margin: 0;
  font-style: italic;
}

/* ---------- Reveal Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms var(--ease-elegant),
    transform 500ms var(--ease-elegant),
    box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 60ms;
}
.reveal--delay-2 {
  transition-delay: 120ms;
}
.reveal--delay-3 {
  transition-delay: 180ms;
}
.reveal--delay-4 {
  transition-delay: 240ms;
}

/* ---------- Decorative Divider ---------- */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-2xl) auto;
  color: var(--color-gold-dark);
  max-width: 200px;
}
.divider-leaf::before,
.divider-leaf::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-border-strong),
    transparent
  );
}
.divider-leaf svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}

/* ---------- Warum wir (vertikal mittig, kompakter) ---------- */
#story {
  min-height: 70vh;
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
#story > .container {
  width: 100%;
}
/* Divider innerhalb von #story enger anlegen, damit der Content
   visuell tatsächlich in der Mitte sitzt und nicht der Divider-margin
   den Schwerpunkt nach oben schiebt. */
#story .divider-leaf {
  margin: var(--space-lg) auto 0;
}

/* ---------- Exklusivit&auml;ts-Hinweis ---------- */
.select-note {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 640px;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  position: relative;
}
.select-note__mark {
  display: block;
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0;
}
.select-note p {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.7vw + 0.85rem, 1.35rem);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  font-style: normal;
}
.select-note em {
  font-style: italic;
  color: var(--color-gold-dark);
}

/* ---------- Prinzip-Block (Akzent) ---------- */
.principle {
  min-height: 70vh;
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.principle > .container {
  width: 100%;
}
.principle__inner {
  text-align: center;
  padding-block: var(--space-lg);
}
.principle__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw + 0.6rem, 2.1rem);
  line-height: 1.35;
  color: var(--color-text);
  margin: var(--space-lg) auto 0;
  max-width: 60ch;
  letter-spacing: 0.005em;
  position: relative;
}
.principle__quote::before,
.principle__quote::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(
    to right,
    transparent,
    var(--color-gold),
    transparent
  );
}
.principle__quote::after {
  margin: var(--space-md) auto 0;
}
.principle__answer {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.15rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: var(--space-lg) auto 0;
  max-width: 56ch;
}
.principle__answer em {
  font-style: italic;
  color: var(--color-gold-dark);
  font-weight: 500;
}
.principle__answer strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split__media {
    order: 2;
  }
  .contact {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-2xl);
  }
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    transform: none;
    position: static;
    inset: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
  }
  .nav-toggle {
    display: none;
  }
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-2xl);
  }
  /* In 2-Spalten: Schritt 04 (last-child) soll die Linie behalten wie Schritt 03 */
  .step:last-child {
    border-bottom: 1px solid var(--color-border);
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title-line span {
    transform: translateY(0);
  }
  .hero__kicker,
  .hero__slogan,
  .hero__lead,
  .hero__ctas,
  .hero__stats,
  .hero__scroll {
    opacity: 1;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__bg img {
    animation: none;
  }
}
