/* ============================================================
   LAMURISTA – Endkunden Landingpage
   Design-System: Dark Premium · Source Code Pro · Gold/Sand #c9a876
   ============================================================ */

:root {
  /* Brand – Farbwelt aus dem Lamurista HardRock-Funnel */
  --ink:        #171412;   /* warmes Tiefbraun-Schwarz – Haupthintergrund dark */
  --ink-soft:   #201c19;   /* Karten auf dark */
  --ink-line:   #322c27;   /* Linien auf dark */
  --paper:      #f4f1ec;   /* warmes Off-White – helle Sektionen */
  --paper-soft: #ece7e0;   /* Karten auf hell */
  --stone:      #e5e4e3;   /* Lamurista Hellgrau */
  --accent:      #c9a876;   /* Lamurista Gold/Sand – Hauptakzent */
  --accent-deep: #a9885a;   /* Gold dunkler – für helle Sektionen */
  --gold:       #bda16b;   /* Original-Goldton */
  --text-dark:  #211d19;
  --text-mute-l:#645d55;   /* Fließtext auf hell */
  --text-mute-d:#a49c92;   /* Fließtext auf dunkel */

  /* Typo */
  --font: 'Source Code Pro', 'Courier New', monospace;
  --fs-h1: clamp(1.9rem, 5vw, 3.9rem);
  --fs-h2: clamp(1.7rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: clamp(.95rem, 1.15vw, 1.06rem);

  /* Layout */
  --container: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;            /* kantig = architektonisch */

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset & Basics ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Globale Skalierung: auf Desktop ~15% kompakter (alles rem-basierte
   skaliert mit); auf sehr grossen Screens wieder leicht hoch, damit
   nichts verloren wirkt. Mobil bleibt die volle Basis. */
@media (min-width: 901px) {
  html { font-size: 85%; }
}
@media (min-width: 2200px) {
  html { font-size: 95%; }
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--stone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
fieldset { border: none; }
legend { padding: 0; }

::selection { background: var(--accent); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }

.section--light {
  background: var(--paper);
  color: var(--text-dark);
}
.section--light p { color: var(--text-mute-l); }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }

h2 { font-size: var(--fs-h2); text-transform: uppercase; margin-bottom: 1.2rem; }
h2 em, h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.section__intro { max-width: 46ch; margin-bottom: 2.5rem; }

/* ---------- Grain Overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: grid; place-items: center;
  transition: clip-path 1s var(--ease) .2s;
  clip-path: inset(0 0 0 0);
}
.preloader.is-done { clip-path: inset(0 0 100% 0); }
.preloader__inner { text-align: center; }

/* Logo wird von links nach rechts „aufgesprüht":
   weiche Maskenkante = Sprühnebel-Look statt harter Wischkante */
.preloader__logo {
  position: relative;
  display: inline-block;
}
.preloader__logo img {
  width: min(240px, 60vw);
  height: auto;
  -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
          mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
  -webkit-mask-size: 250% 100%;
          mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
  animation: paintReveal 1.5s cubic-bezier(.45, 0, .25, 1) .35s forwards;
}
@keyframes paintReveal {
  to {
    -webkit-mask-position: 0% 0;
            mask-position: 0% 0;
  }
}

/* Goldener Sprühnebel, der mit der Kante mitwandert */
.preloader__spray {
  position: absolute;
  top: 50%; left: 0;
  width: 68px; height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,118,.55) 0%, rgba(201,168,118,.15) 45%, transparent 70%);
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  animation: sprayMove 1.5s cubic-bezier(.45, 0, .25, 1) .35s forwards;
}
@keyframes sprayMove {
  0%   { left: -4%;  opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 104%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__logo img { animation: none; -webkit-mask-image: none; mask-image: none; }
  .preloader__spray { display: none; }
}

@media (max-width: 600px) {
  .preloader__logo img { width: min(150px, 42vw); }
  .preloader__spray { width: 46px; height: 46px; }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, transform .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(16, 18, 20, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; gap: 2rem;
}
.header__logo img { height: 20px; width: auto; }
.header__nav {
  display: flex; gap: 1.8rem;
  margin-left: auto;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.header__nav a { position: relative; opacity: .75; transition: opacity .3s; }
.header__nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.header__nav a:hover { opacity: 1; }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* CTA im Menü nur mobil sichtbar
   (.header__nav vorangestellt, damit die Regel die spätere
   allgemeine .btn-Regel sicher übersteuert) */
.header__nav .header__nav-cta { display: none; }

/* Burger-Button (nur mobil) */
.header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .25s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  /* Mobil: Burger statt Navigation */
  .header__burger { display: flex; }

  /* Vollbild-Menü
     (feste Höhe statt inset:0 – der backdrop-filter des Headers macht
     ihn sonst zum Bezugsrahmen und das Menü bliebe headerhoch) */
  .header__nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(23, 20, 18, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 1.15rem;
    letter-spacing: .22em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .header__nav.is-open { opacity: 1; pointer-events: auto; }
  .header__nav a { opacity: .9; }

  .header__nav .header__nav-cta {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: .8rem;
    letter-spacing: .16em;
  }
  .header__nav .header__nav-cta::after { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s ease, background .3s ease, color .3s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(201,168,118,0);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(201,168,118,.55);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--small { padding: .7rem 1.3rem; font-size: .72rem; }
.btn--big { padding: 1.25rem 2.8rem; font-size: .92rem; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
  filter: saturate(.85) contrast(1.02) brightness(.8);
}
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.12) translateX(-2%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    /* Schwarz-Verlauf liegt OBENAUF: die Unterkante ist dadurch
       garantiert reines Schwarz -> nahtloser Übergang zum Award-Slider */
    linear-gradient(to top, #000 0%, #000 14%, rgba(0,0,0,.95) 24%, rgba(0,0,0,.55) 38%, transparent 56%),
    linear-gradient(100deg, rgba(23,20,18,.94) 22%, rgba(23,20,18,.55) 55%, rgba(23,20,18,.25) 100%);
}
.hero__content { position: relative; z-index: 2; padding-block: 8rem 6rem; }

.hero__eyebrow .flag-de {
  flex: 0 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
/* Lange Variante auf Desktop, kurze auf Mobil */
.hero__eyebrow .eyebrow-short { display: none; }
@media (max-width: 600px) {
  .hero__eyebrow .eyebrow-long { display: none; }
  .hero__eyebrow .eyebrow-short { display: inline; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .3em;
  color: var(--stone);
  border: 1px solid rgba(255,255,255,.15);
  padding: .55rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.hero__title {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.line-mask { display: block; overflow: hidden; }
.line-mask .line { display: block; }

.hero__sub {
  max-width: 52ch;
  color: var(--text-mute-d);
  margin-bottom: 2.4rem;
  font-size: clamp(.95rem, 1.3vw, 1.12rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--text-mute-d);
}
.hero__trust strong { color: var(--stone); font-weight: 600; }
.hero__trust .sep { width: 1px; height: 1.6em; background: rgba(255,255,255,.18); }
@media (max-width: 560px) { .hero__trust .sep { display: none; } .hero__trust { gap: .5rem 1.2rem; } }

/* Hero Reveal */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease var(--d, 0s), transform .9s var(--ease) var(--d, 0s);
}
body.is-loaded .reveal-hero { opacity: 1; transform: none; }
.line-mask .reveal-hero { transform: translateY(110%); }
body.is-loaded .line-mask .reveal-hero { transform: none; }

/* ---------- Awards Slider ---------- */
/* Reines Schwarz statt Warmschwarz: die Award-Logos haben schwarze
   Bild-Hintergründe – so verschmelzen sie unsichtbar mit der Sektion */
.awards {
  background: #000;
  padding-block: 2.2rem 1rem;
  position: relative;
}
/* Weiche vertikale Blende oben/unten: schluckt die Kanten der
   Logo-Bildkästen, deren "Schwarz" JPEG-bedingt nicht ganz schwarz ist */
.awards::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, transparent 30%, transparent 70%, #000 100%);
}
.awards-outer {
  width: 100%;
  background: transparent;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.awards-outer::before,
.awards-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.awards-outer::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.awards-outer::after { right: 0; background: linear-gradient(to left, #000, transparent); }

.awards-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: awardsScroll 15s linear infinite;
}
.awards-track:hover { animation-play-state: paused; }

@keyframes awardsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.awards-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Jedes Logo nimmt exakt 1/5 der Viewport-Breite ein */
  width: 20vw;
  opacity: .85;
  transition: opacity .3s, transform .3s;
}
.awards-logo:hover { opacity: 1; transform: scale(1.05); }
.awards-logo img {
  height: 55px;
  width: auto;
  max-width: calc(20vw - 20px);
  object-fit: contain;
  display: block;
  /* JPEG-Restgrau der Logo-Hintergründe auf echtes Schwarz drücken */
  filter: contrast(1.18) brightness(.97);
}
@media (max-width: 700px) {
  .awards-logo { width: 34vw; }
  .awards-logo img { height: 44px; max-width: calc(34vw - 20px); }
}

@media (prefers-reduced-motion: reduce) {
  .awards-track { animation: none; }
}

/* ---------- Scroll Reveal (global) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s ease var(--d, 0s), transform .9s var(--ease) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__bg img, .grain { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Manifest ---------- */
.manifest__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 900px) { .manifest__grid { grid-template-columns: 1fr; } }

.manifest__text p { margin-bottom: 1.2rem; max-width: 54ch; }

.manifest__list { margin-top: 1.8rem; display: grid; gap: .9rem; }
.manifest__list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: .95rem;
}
.manifest__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent-deep);
  font-weight: 700;
}

.parallax-img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.parallax-img img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}
.manifest__caption {
  margin-top: .8rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-mute-l);
}

/* ---------- Anwendungsbereiche ---------- */
.areas h2 { max-width: 24ch; }
.areas__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) { .areas__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.area-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .4s ease, transform .45s var(--ease), box-shadow .45s ease;
}
.area-card:hover {
  border-color: rgba(201,168,118,.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.6);
}
.area-card figure { aspect-ratio: 4 / 3; overflow: hidden; }
.area-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .6s ease;
  filter: saturate(.8);
}
.area-card:hover img { transform: scale(1.07); filter: saturate(1); }

.area-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.area-card__body h3 { font-size: var(--fs-h3); text-transform: uppercase; letter-spacing: .06em; }
.area-card__body p { font-size: .86rem; color: var(--text-mute-d); flex: 1; }
.area-card__link {
  font-size: .74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: .5rem;
}
.area-card__link i { font-style: normal; transition: transform .35s var(--ease); }
.area-card:hover .area-card__link i { transform: translateX(6px); }

/* ---------- Before / After ---------- */
.compare h2 { max-width: 26ch; }
.compare__widget {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  max-height: 38.75rem;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35);
}
/* Die echten Vorher/Nachher-Bilder sind Querformat (3:2):
   quadratischer Zuschnitt zeigt mobil deutlich mehr vom Raum als 4:5 */
@media (max-width: 700px) { .compare__widget { aspect-ratio: 1 / 1; } }

.compare__before, .compare__after { position: absolute; inset: 0; margin: 0; }
/* Eigene Stacking-Kontexte: Overlays der Vorher-Seite bleiben
   strikt UNTER der Nachher-Ebene – sonst rastert es beide Seiten */
.compare__before { z-index: 0; }
.compare__after  { z-index: 1; }
.compare__before img, .compare__after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Echtes Vorher/Nachher-Bildpaar (gleicher Raum, gleiche Perspektive) –
   keine Filter noetig, die Bilder erzaehlen die Geschichte selbst */
.compare__after { clip-path: inset(0 0 0 50%); will-change: clip-path; }

.compare__before figcaption, .compare__after figcaption {
  position: absolute; top: 1.1rem; z-index: 2;
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  padding: .45rem .9rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.compare__before figcaption { left: 1.1rem; background: rgba(23,20,18,.55); color: #fff; }
.compare__after figcaption { right: 1.1rem; background: rgba(201,168,118,.9); color: var(--ink); }

.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 44px; margin-left: -22px;
  display: flex; flex-direction: column; align-items: center;
  cursor: ew-resize;
  z-index: 3;
  outline: none;
}
.compare__handle-line { flex: 1; width: 2px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.compare__handle-knob {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  font-size: .8rem;
  letter-spacing: -.05em;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  transition: transform .3s var(--ease);
}
.compare__handle:hover .compare__handle-knob,
.compare__handle:focus-visible .compare__handle-knob { transform: scale(1.12); }

/* ---------- Gründe: Herz (emotional) & Kopf (rational) ---------- */
/* Beide Blöcke untereinander, durchgehend dunkel */
.reasons { background: var(--ink); }
.reasons__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.reasons__col {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  color: var(--stone);
}
.reasons__col .reasons__sub { color: var(--text-mute-d); }
.reasons__col .reason { border-color: rgba(255,255,255,.09); }
.reasons__col .reason__icon { color: var(--accent); background: rgba(201,168,118,.12); }
.reasons__col .reason strong { color: #fff; }
.reasons__col .reason p { color: #b8b0a5; }

.reasons__col--emotional {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(201,168,118,.1), transparent 60%),
    var(--ink);
  /* Folien-Effekt (alle Geräte): bleibt stehen, bis die Kopf-Folie
     drüberfährt. Ist die Sektion höher als der Viewport, parkt sie
     mit ihrer Unterkante am unteren Rand -> nichts wird abgeschnitten */
  position: sticky;
  top: calc(100vh - 100%);
  top: min(0px, calc(100svh - 100%));
  z-index: 1;
}
.reasons__col--rational {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(201,168,118,.08), transparent 60%),
    var(--ink);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(201,168,118,.35);
  box-shadow: 0 -40px 80px -30px rgba(0, 0, 0, .85);
}

/* Scroll-Puffer: transparent, die geparkte Herz-Folie bleibt
   dahinter voll sichtbar und lesbar, bevor die Überlappung startet */
.reasons__spacer { height: 0; }

/* Mobil: kompakte Abstände, kleineres "&", zentrierte Visuals */
@media (max-width: 900px) {
  .reasons__col { padding: 3rem 1.25rem 3.5rem; }
  .reasons__col--rational { padding-top: 4rem; } /* Luft für das "&" */

  /* Verweil-Phase: knapp ein halber Bildschirm Scroll-Strecke,
     in der das Herz komplett steht, bevor der Kopf drüberfährt */
  .reasons__spacer { height: 45vh; }

  /* Herz parkt etwas oberhalb der Unterkante -> letzter Punkt
     klebt nicht am Bildschirmrand */
  .reasons__col--emotional { top: min(0px, calc(100svh - 100% - 32px)); }

  .reasons__amp {
    width: 46px; height: 46px;
    top: -23px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px rgba(23,20,18,1), 0 10px 22px -8px rgba(0,0,0,.5);
  }


  .reason { grid-template-columns: 42px 1fr; gap: .9rem; padding: 1.1rem 0; }
  .reason__icon { width: 42px; height: 42px; }
  .reason__icon svg { width: 20px; height: 20px; }
  .reason strong { font-size: .96rem; }
  .reason p { font-size: .86rem; }
}

/* Desktop: Folien füllen den Bildschirm, Inhalt vertikal mittig */
@media (min-width: 901px) {
  .reasons__col {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .reasons__colgrid { width: 100%; }
  .reasons__col--rational { border-radius: 28px 28px 0 0; }
}

/* Visualisierung (WebGL-Canvas) links, Text rechts */
.reasons__colgrid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* Mobil: Visualisierung klein DIREKT NEBEN der Headline,
   Unterzeile + Punkte darunter in voller Breite.
   Flex statt Grid: die volle-Breite-Liste kann so die Spalten
   nicht aufblaehen (das hat vorher die Luecke erzeugt) */
@media (max-width: 900px) {
  .reasons__colgrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Visual + Headline als Paar mittig */
    align-items: center;
    gap: 0;
  }
  /* Inner-Container aufloesen -> h2/sub/Liste werden eigene Flex-Items */
  .reasons__inner { display: contents; }

  .reasons__col h2 { text-align: left; margin: 0; }
  .reasons__col .reasons__sub {
    width: 100%;
    margin: .8rem auto .6rem;
    max-width: 46ch;
    text-align: center;
  }
  .reasons__list { width: 100%; }
}

.reasons__visual {
  display: grid;
  place-items: center;
}
.reasons__visual canvas {
  display: block;
  width: 100%;
  max-width: 22.5rem;
  aspect-ratio: 1;
  height: auto;
}
@media (max-width: 900px) {
  /* Wrapper im Blockfluss: Canvas-Margins wirken 1:1 vorhersagbar
     (das place-items:center hat den Negativ-Ausgleich halbiert) */
  .reasons__visual { display: block; width: fit-content; }

  .reasons__visual canvas {
    width: clamp(96px, 26vw, 126px);
    max-width: none;
  }
  /* Transparente Canvas-Raender je Form ausgleichen + etwas Luft zum Text */
  #ditherHeart { margin-right: 8px; }
  /* Haus: ein Tick groesser als das Herz */
  #ditherHouse { margin-right: 20px; width: clamp(110px, 30vw, 144px); }
}

.reasons__inner { max-width: 640px; }

.reasons__sub {
  margin: 1rem 0 2.2rem;
  font-size: .95rem;
  line-height: 1.7;
  max-width: 40ch;
}

.reason {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid;
}
.reason:last-child { border-bottom: none; }

.reason__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
}
.reason__icon svg { width: 23px; height: 23px; }

.reason strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: .35rem;
  letter-spacing: .01em;
}
.reason p {
  font-size: .89rem;
  line-height: 1.7;
  margin: 0;
}

/* Goldenes „&" sitzt auf der Oberkante der Kopf-Folie und faehrt mit */
.reasons__amp {
  position: absolute;
  top: -2.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid; place-items: center;
  width: 5.25rem; height: 5.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: 'Space Grotesk', var(--font);
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(23,20,18,1), 0 18px 40px -12px rgba(0,0,0,.5);
  z-index: 3;
}

/* ---------- Vorteile: Text + Bild ---------- */
.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .benefits__layout { grid-template-columns: 1fr; } }

.benefits h2 { max-width: 18ch; }
.benefits__lead {
  margin: 1.2rem 0 0;
  color: var(--text-mute-d);
  max-width: 44ch;
  line-height: 1.8;
  font-size: 1rem;
}
.benefits__intro .btn { margin-top: 2.4rem; }

.benefits__media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 4.6;
  max-width: 32.5rem;
  justify-self: end;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}
@media (max-width: 900px) {
  .benefits__media { justify-self: start; max-width: 100%; aspect-ratio: 4 / 3; }
}
.benefits__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}

.stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  border-top: 1px solid var(--ink-line);
  padding-top: 3rem;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; } }

.stat__value {
  display: block;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat__value::after { content: attr(data-suffix); color: var(--accent); }
.stat__label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-mute-d);
}

/* ---------- Prozess: Editorial-Stil ---------- */
.process h2 { max-width: 26ch; }

/* Drei Spalten nebeneinander – jede mit feiner Linie oben */
.steps {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4.5vw, 4rem);
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; max-width: 32.5rem; margin-inline: auto; gap: 2.4rem; }
}

.steps__row {
  border-top: 1px solid #cfc7b6;
  padding-top: 1.8rem;
  transition: border-color .4s ease;
}
.steps__row:hover { border-top-color: var(--accent-deep); }

/* Große Outline-Nummer in moderner Display-Font */
.steps__num {
  display: block;
  font-family: 'Space Grotesk', var(--font);
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #c8b994;
  margin-bottom: 1.4rem;
  transition: color .45s ease;
}
.steps__row:hover .steps__num { color: var(--accent-deep); -webkit-text-stroke-color: var(--accent-deep); }

.steps__head h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--text-dark);
  letter-spacing: .01em;
}
.steps__meta {
  display: block;
  margin-top: .5rem;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent-deep);
}

.steps__text {
  font-size: .95rem;
  line-height: 1.75;
  margin: 1rem 0 0;
}

.process__cta { margin-top: 3.5rem; text-align: center; }

/* ---------- Galerie ---------- */
.gallery h2 { max-width: 26ch; }
/* Zwei endlos laufende Bildreihen: oben nach rechts, unten nach links */
.gallery__row {
  overflow: hidden;
  margin-top: 1.1rem;
}
.gallery__row:first-of-type { margin-top: 3rem; }

.gallery__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
/* Inhalt ist mehrfach vorhanden -> 50% Verschiebung = nahtlose Schleife.
   Negativer Delay: startet mitten in der Schleife, ohne Lücke am Rand */
.gallery__track--left  { animation: galLeft 45s linear infinite; animation-delay: -33s; }
.gallery__track--right { animation: galRight 45s linear infinite; animation-delay: -20s; }
@keyframes galLeft  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes galRight { from { transform: translateX(-50%); }  to { transform: translateX(0); } }

.gallery__row:hover .gallery__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .gallery__track--left, .gallery__track--right { animation: none; }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0 1.1rem 0 0; /* Abstand als margin, damit die 50%-Schleife exakt aufgeht */
  flex: 0 0 auto;
  width: clamp(17.5rem, 34vw, 30rem);
  height: clamp(12.5rem, 24vw, 20rem);
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s ease;
  filter: saturate(.8);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05); }

.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.2rem .9rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #fff;
  background: linear-gradient(to top, rgba(23,20,18,.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

.gallery__note {
  margin-top: 1.4rem;
  font-size: .72rem;
  color: var(--text-mute-d);
  letter-spacing: .08em;
}

/* ---------- Testimonials: großzügig, ohne Kasten ---------- */
.quotes__slider {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* Großes dekoratives Anführungszeichen */
.quotes__mark {
  position: absolute;
  top: -.15em; left: -.06em;
  font-family: 'Space Grotesk', var(--font);
  font-size: clamp(6rem, 11vw, 9.5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #cdbf9e;
  pointer-events: none;
}

/* Zitat: Text links, großes Kundenfoto rechts */
.quote {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 19rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s var(--ease);
  pointer-events: none;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }

.quote__stars {
  display: block;
  color: var(--accent-deep);
  font-size: 1.15rem;
  letter-spacing: .28em;
  margin-bottom: 1.4rem;
}

.quote p {
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 2rem;
}

.quote__person strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text-dark);
}
.quote__person span {
  display: block;
  margin-top: .3rem;
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-deep);
}

/* Kundenfoto rechts – präsent, aber nicht dominant */
.quote__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  width: 100%;
  justify-self: end;
  box-shadow: 0 28px 55px -32px rgba(60,48,30,.4);
}
.quote__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .quote { grid-template-columns: 1fr; gap: 1.8rem; }
  .quote__photo {
    order: -1;
    justify-self: start;
    aspect-ratio: 1 / 1;
    max-width: 200px;
  }
  /* Deko-Anführungszeichen kollidiert mobil mit dem Foto */
  .quotes__mark { display: none; }
  .quotes__slider { padding-top: 0; }
}

/* Navigation: Pfeile + Punkte */
.quotes__nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.quotes__arrow {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid #d8d0c0;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.05rem;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.quotes__arrow:hover {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #fff;
}
.quotes__dots { display: flex; gap: .6rem; }
.quotes__dots button {
  width: 34px; height: 3px;
  background: #ddd6c8;
  border-radius: 2px;
  transition: background .3s ease;
}
.quotes__dots button.is-active { background: var(--accent-deep); }

/* ---------- Lead-Formular ---------- */
.lead { overflow: hidden; }
.lead__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201,168,118,.09), transparent),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(189,161,107,.06), transparent);
  pointer-events: none;
}
/* Horizontal: Headline + Text links, Punkte + Button rechts */
.lead__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .lead__inner { grid-template-columns: 1fr; }
}

.lead__text h2 { max-width: 20ch; }
.lead__text p { color: var(--text-mute-d); max-width: 46ch; }

.lead__points {
  display: grid;
  gap: .9rem;
}
.lead__cta { margin-top: 2rem; }
.lead__points li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .92rem;
  font-weight: 500;
}
.lead__points li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

.lead__form {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}

/* Heyflow-Embed: bringt sein eigenes Design mit -> Karten-Rahmen komplett weg */
.lead__form--heyflow {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}
.lead__form--heyflow heyflow-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
}

.form__progress {
  height: 3px;
  background: var(--ink-line);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.form__progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 2px;
  transition: width .6s var(--ease);
}

.form__step { display: none; animation: stepIn .55s var(--ease); }
.form__step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}

.form__step legend {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.choice-grid--stack { grid-template-columns: 1fr; }

.choice {
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  font-size: .88rem;
  font-weight: 500;
  text-align: left;
  transition: border-color .3s ease, background .3s ease, transform .25s var(--ease);
}
.choice:hover {
  border-color: var(--accent);
  background: rgba(201,168,118,.07);
  transform: translateY(-2px);
}
.choice--wide { grid-column: 1 / -1; }

.input { display: block; margin-bottom: 1.1rem; }
.input span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-mute-d);
  margin-bottom: .45rem;
}
.input input {
  width: 100%;
  padding: .95rem 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.input input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,118,.15);
}
.input input.is-invalid { border-color: #d66; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .input-row { grid-template-columns: 1fr; } }

.checkbox {
  display: flex; gap: .8rem;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--text-mute-d);
  margin: 1.2rem 0 1.5rem;
  cursor: pointer;
}
.checkbox input { margin-top: .25em; accent-color: var(--accent); }
.checkbox a { color: var(--accent); text-decoration: underline; }

.form__hint {
  margin-top: 1rem;
  font-size: .72rem;
  text-align: center;
  color: var(--text-mute-d);
  letter-spacing: .06em;
}

.form__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink-line);
}
.form__back {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-mute-d);
  transition: color .3s ease;
}
.form__back:hover { color: var(--accent); }
.form__stepinfo {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute-d);
  margin-left: auto;
}
.form__next { margin-top: .5rem; }

.form__success { display: none; text-align: center; padding: 2rem 0; }
.form__success.is-active { display: block; animation: stepIn .55s var(--ease); }
.form__success-icon {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(201,168,118,.14);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 2rem;
}
.form__success h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: .7rem; }
.form__success p { color: var(--text-mute-d); max-width: 38ch; margin-inline: auto; }

/* ---------- Heyflow Popup-Modal ---------- */
.hf-modal {
  position: fixed; inset: 0;
  z-index: 9500; /* über Grain-Overlay */
  display: grid;
  place-items: center;
  padding: clamp(.8rem, 3vw, 2.5rem);
}
.hf-modal[hidden] { display: none; }

.hf-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 8, 7, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hf-modal__dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(92svh, 92vh);
  overflow-y: auto;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  box-shadow: 0 50px 120px -30px rgba(0,0,0,.9);
  animation: hfIn .35s var(--ease);
}
@keyframes hfIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.hf-modal__dialog heyflow-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hf-modal__close {
  position: sticky;
  top: .6rem;
  margin-left: calc(100% - 3.1rem);
  margin-right: .6rem;
  z-index: 2;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(23, 20, 18, .85);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  transition: background .3s ease, color .3s ease;
}
.hf-modal__close:hover { background: var(--accent); color: var(--ink); }

/* Mobil: kompaktes Popup mit Rand, nicht vollflächig */
@media (max-width: 600px) {
  .hf-modal { padding: 1rem; }
  .hf-modal__dialog {
    width: 100%;
    max-height: 86vh;
    max-height: 86dvh;
    border-radius: 12px;
  }
  .hf-modal__close {
    width: 44px; height: 44px;
    top: .6rem;
    margin-left: calc(100% - 3.4rem);
    margin-right: .6rem;
    font-size: 1.7rem;
    background: rgba(23, 20, 18, .92);
  }
}

/* ---------- FAQ ---------- */
.faq__container { max-width: 860px; }
.faq__list { margin-top: 2.5rem; }
.faq__item {
  border-bottom: 1px solid #ddd9d3;
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-weight: 600;
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
  transition: color .3s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-deep); }

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__answer { padding-bottom: 1.4rem; max-width: 62ch; }
.faq__answer p { font-size: .92rem; }

/* ---------- Final CTA ---------- */
.final {
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(201,168,118,.14), transparent),
    var(--ink);
  text-align: center;
}
.final__inner { max-width: 720px; }
.final h2 { margin-inline: auto; }
.final p { color: var(--text-mute-d); margin-bottom: 2.4rem; }

/* ---------- Mobile-Optimierung: Header & Hero ---------- */
@media (max-width: 600px) {

  /* Typografie insgesamt eine Stufe kleiner & ruhiger */
  body { font-size: .88rem; }
  h2 { font-size: 1.4rem; margin-bottom: .9rem; }
  .section__intro { font-size: .86rem; margin-bottom: 1.8rem; }

  /* Manifest / Textblöcke */
  .manifest__text p { font-size: .88rem; margin-bottom: 1rem; }
  .manifest__list li { font-size: .86rem; }
  .manifest__caption { font-size: .64rem; }

  /* Bereichs-Karten */
  .area-card__body { padding: 1.1rem 1.1rem 1.3rem; }
  .area-card__body h3 { font-size: .98rem; }
  .area-card__body p { font-size: .8rem; }
  .area-card__link { font-size: .68rem; }

  /* Herz/Kopf-Sektion */
  .reasons__col h2 { font-size: 1.3rem; }
  .reasons__col .reasons__sub { font-size: .84rem; }
  .reason strong { font-size: .9rem; }
  .reason p { font-size: .8rem; }

  /* Vorteile / Benefits */
  .benefits__lead { font-size: .88rem; line-height: 1.7; }

  /* Stats dezenter */
  .stat__value { font-size: 1.9rem; }
  .stat__label { font-size: .62rem; letter-spacing: .12em; }

  /* Schritte */
  .steps__num { font-size: 2.6rem; margin-bottom: .9rem; }
  .steps__head h3 { font-size: 1.05rem; }
  .steps__meta { font-size: .6rem; }
  .steps__text { font-size: .85rem; margin-top: .7rem; }
  .steps { margin-top: 2.6rem; }

  /* Testimonials */
  .quote__stars { font-size: .95rem; margin-bottom: 1rem; }
  .quote__person strong { font-size: .92rem; }
  .quote__person span { font-size: .66rem; }

  /* Formular */
  .form__step legend { font-size: 1rem; margin-bottom: 1.1rem; }
  .lead__pitch p { font-size: .88rem; }
  .lead__points li { font-size: .84rem; }

  /* FAQ */
  .faq__item summary { font-size: .9rem; }
  .faq__answer p { font-size: .84rem; }

  /* Buttons dezenter */
  .btn { font-size: .74rem; letter-spacing: .12em; }

  /* Header kompakter */
  .header__inner { padding: .85rem 1.1rem; gap: 1rem; }
  .header__logo img { height: 16px; }

  /* Hero: weniger Luft oben/unten, alles linksbündig sauber */
  .hero__content { padding-block: 6.5rem 4rem; }

  /* Eyebrow-Pill: kurze Textvariante, einzeilig */
  .hero__eyebrow {
    gap: .45rem;
    font-size: .58rem;
    letter-spacing: .05em;
    line-height: 1.5;
    padding: .45rem .75rem;
    margin-bottom: 1.4rem;
    white-space: nowrap;
  }
  .hero__eyebrow .flag-de { width: 15px; height: 9px; }

  /* Headline: kompakter, Zeilen brechen ausgewogen um */
  .hero__title {
    font-size: clamp(1.55rem, 7.2vw, 1.9rem);
    line-height: 1.22;
    margin-bottom: 1.2rem;
  }
  .hero__title .line {
    white-space: normal;
    text-wrap: balance; /* gleichmäßige Zeilenlängen (moderne Browser) */
  }
  .hero__sub { font-size: .92rem; margin-bottom: 1.8rem; }

  /* CTAs untereinander, volle Breite – bessere Tap-Targets */
  .hero__actions { flex-direction: column; gap: .7rem; margin-bottom: 2.2rem; }
  .hero__actions .btn { width: 100%; text-align: center; padding: 1.05rem 1rem; }

  /* Trust-Zeile: kompakt gestapelt */
  .hero__trust { flex-direction: column; align-items: flex-start; gap: .45rem; font-size: .72rem; }

  /* Formular & Sektionen: etwas engere Innenabstände */
  .lead__form { padding: 1.4rem 1.1rem; }
  .choice { padding: .95rem .9rem; font-size: .84rem; }
  .section { padding-block: 3.8rem; }

  /* Galerie: Bildunterschriften auf Touch immer sichtbar,
     Kacheln kompakter für flotteres Scrollen */
  .gallery__item figcaption { opacity: 1; transform: none; padding: 1.6rem .9rem .7rem; }
  .gallery__item { width: 240px; height: 170px; margin-right: .8rem; }

  /* iOS-Zoom-Falle: Inputs unter 16px lösen Auto-Zoom aus */
  .input input { font-size: 16px; }

  /* Alle Haupt-CTAs volle Breite – konsistente Tap-Flächen */
  .benefits__intro .btn,
  .process__cta .btn,
  .lead__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.05rem 1rem;
  }
  .btn--big { font-size: .8rem; }

  /* Awards: schmalere Fade-Kanten, damit Logos nicht verschluckt werden */
  .awards-outer::before, .awards-outer::after { width: 28px; }

  /* Testimonials: Zitat kompakter, Navigation gut erreichbar */
  .quote p { font-size: 1.2rem; margin-bottom: 1.4rem; }
  .quotes__nav { margin-top: 1.8rem; justify-content: space-between; }

  /* FAQ: etwas engere Reihen */
  .faq__item summary { padding: 1.1rem 0; gap: 1rem; }

  /* Vorher/Nachher: Griff-Knopf kompakter */
  .compare__handle-knob { width: 44px; height: 44px; font-size: .7rem; }

  /* Footer kompakter */
  .footer { padding-block: 2.4rem; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--ink-line);
  padding-block: 3.5rem;
  background: #100e0c;
}
.footer__inner { text-align: center; display: grid; gap: 1.1rem; justify-items: center; }
.footer__logo { height: 18px; width: auto; opacity: .9; }
.footer__claim {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--text-mute-d);
}
.footer__nav { display: flex; gap: 1.8rem; font-size: .78rem; }
.footer__nav a { color: var(--text-mute-d); transition: color .3s; }
.footer__nav a:hover { color: var(--accent); }
.footer__copy { font-size: .7rem; color: #5a5f66; letter-spacing: .06em; }
