/* ============================================================
   Il Paradiso Verde LLC — styles.css
   Farbwelt: „Lebendiger Garten" (Blattgrün · Terrakotta/Ocker · Creme)
   Fonts: Spectral (Display/Serif) · Plus Jakarta Sans (Body/UI)
   Architektur: CSS Custom Properties + BEM · Fluid Type mit clamp()
   ============================================================ */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("../assets/fonts/spectral-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../assets/fonts/plus-jakarta-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../assets/fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../assets/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../assets/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Grün-Familie */
  --forest:      #1f3d25;   /* tiefe Basis, Dark-Sections, Buttons */
  --forest-2:    #24572f;   /* etwas heller */
  --leaf:        #3f8f4e;   /* Primär-Markengrün */
  --sprout:      #6cbf6b;   /* frischer Akzent */
  --sprout-soft: #cfe6c4;   /* zarte Fläche */

  /* Warm-Familie (Terrakotta / Ocker / Sonne) */
  --terracotta:  #b0542e;   /* Akzent, AA-sicher auf Creme + weisser Text */
  --terracotta-bright: #cf7844;
  --ochre:       #d99a3f;   /* Sonnenlicht/Ernte, Deko */
  --ochre-soft:  #f2e3c2;

  /* Neutralwerte */
  --cream:       #faf6ee;   /* Haupt-Hintergrund, warm */
  --cream-2:     #f3ecdd;   /* Warm-Section */
  --sand:        #ece1cc;   /* Border/Struktur */
  --ink:         #21301d;   /* Haupttext, warmes Dunkelgrün */
  --muted:       #56634e;   /* Sekundärtext (AA auf Creme) */
  --line:        #e3d9c6;

  /* Rollen */
  --bg:          var(--cream);
  --text:        var(--ink);

  /* Radius / Shadow */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(31, 61, 37, .06);
  --shadow-md: 0 14px 40px rgba(31, 61, 37, .12);
  --shadow-lg: 0 30px 70px rgba(31, 61, 37, .18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1140px;

  /* Fluid Type */
  --fs-eyebrow: .82rem;
  --fs-body: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --fs-lead: clamp(1.12rem, 1.02rem + 0.55vw, 1.4rem);
  --fs-h3: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  --fs-h2: clamp(1.8rem, 1.4rem + 1.9vw, 2.9rem);
  --fs-h1: clamp(2.5rem, 1.7rem + 3.9vw, 4.6rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Jakarta", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.22; }
p  { margin: 0 0 1rem; max-width: 65ch; }

a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img, svg { max-width: 100%; display: block; }
strong { font-weight: 700; color: var(--forest-2); }

::selection { background: var(--sprout); color: var(--forest); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* Skip-Link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--forest); color: #fff; padding: .6rem 1rem;
  border-radius: var(--r-sm); z-index: 100; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--forest); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Jakarta", sans-serif; font-weight: 600; font-size: .98rem;
  line-height: 1; text-decoration: none;
  padding: .95rem 1.55rem; border-radius: var(--r-pill);
  background: var(--_bg); color: var(--_fg);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn--primary { --_bg: var(--forest); }
.btn--primary:hover { background: var(--forest-2); }
.btn--accent { --_bg: var(--terracotta); }
.btn--accent:hover { background: #9c4826; }
.btn--ghost {
  --_bg: transparent; --_fg: var(--forest);
  border-color: var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: #fff; }
.btn--hero-ghost {
  --_bg: rgba(255,255,255,.12); --_fg: #fff;
  border-color: rgba(255,255,255,.6); backdrop-filter: blur(2px);
}
.btn--hero-ghost:hover { background: rgba(255,255,255,.22); }

/* ---------- Eyebrow / Section heads ---------- */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "Jakarta", sans-serif; font-weight: 600;
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--terracotta);
  display: inline-block; border-radius: 2px;
}
.section { padding: clamp(3.8rem, 2.6rem + 5vw, 7rem) 0; }
.section--warm { background: var(--cream-2); }
.section--sprout { background: linear-gradient(180deg, var(--cream) 0%, #eef4e6 100%); }
.section__head { max-width: 44rem; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.4rem); }
.section__head p { color: var(--muted); font-size: var(--fs-lead); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 238, .82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm); border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; padding: .85rem 0; }
.nav__logo {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; margin-right: auto;
}
.nav__logo svg { width: 40px; height: 40px; flex: none; }
.nav__logo-word {
  font-family: "Spectral", serif; font-weight: 600; font-size: 1.28rem;
  color: var(--forest); letter-spacing: -.01em; white-space: nowrap;
}
.nav__logo-word em { color: var(--leaf); font-style: normal; }
.nav__links { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 500; font-size: .96rem; color: var(--forest); text-decoration: none;
  position: relative; padding: .25rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }
.nav__cta--desktop { flex: none; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--forest); padding: .3rem; width: 44px; height: 44px;
}
.nav__toggle svg { width: 26px; height: 26px; }

.nav__menu, .nav__backdrop, .nav__close { display: none; }

@media (max-width: 860px) {
  .nav > nav, .nav__cta--desktop { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__backdrop {
    display: block; position: fixed; inset: 0; z-index: 45;
    background: rgba(31, 61, 37, .45); opacity: 0; transition: opacity .3s var(--ease);
  }
  .nav__backdrop.is-open { opacity: 1; }
  .nav__menu {
    display: flex; flex-direction: column; gap: 1.4rem;
    position: fixed; top: 0; right: 0; z-index: 46;
    width: min(82vw, 340px); height: 100dvh;
    background: var(--cream); padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu .nav__links { flex-direction: column; gap: 1.2rem; }
  .nav__menu .nav__links a { font-size: 1.15rem; }
  .nav__close {
    display: inline-flex; position: absolute; top: 1.2rem; right: 1.2rem;
    background: none; border: none; color: var(--forest); cursor: pointer;
    width: 44px; height: 44px; align-items: center; justify-content: center;
  }
  .nav__close svg { width: 26px; height: 26px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: clip; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,40,24,.34) 0%, rgba(20,40,24,.20) 40%, rgba(20,40,24,.66) 100%),
    linear-gradient(90deg, rgba(20,40,24,.55) 0%, rgba(20,40,24,0) 62%);
}
/* Fallback-Hintergrund, falls (noch) kein Bild: organischer Verlauf */
.hero--nomedia {
  background:
    radial-gradient(120% 90% at 15% 0%, #4a9a58 0%, transparent 55%),
    radial-gradient(120% 120% at 100% 100%, #163a1f 0%, transparent 60%),
    linear-gradient(160deg, #26582f 0%, #1a3d22 100%);
}
.hero__inner {
  min-height: clamp(560px, 82vh, 820px);
  display: flex; align-items: center;
  padding: 7rem 0 5rem;
}
.hero__content { max-width: 43rem; color: #fff; }
.hero__content .section__eyebrow { color: var(--ochre); }
.hero__content .section__eyebrow::before { background: var(--ochre); }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero h1 em { font-style: italic; color: var(--sprout); }
.hero__lead {
  font-size: var(--fs-lead); color: rgba(255,255,255,.92);
  max-width: 38rem; margin: 1.4rem 0 2rem; text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__note {
  display: flex; align-items: center; gap: .6rem;
  font-size: .92rem; color: rgba(255,255,255,.86); margin: 0;
}
.hero__note svg { width: 20px; height: 20px; flex: none; stroke: var(--sprout); }

/* wachsende Trennlinie (atmender Mikro-Effekt) */
.leaf-divider { display: flex; justify-content: center; padding: 1rem 0 0; }
.leaf-divider svg { width: 46px; height: 46px; }

/* ============================================================
   Ansatz (Transformation)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; background: var(--sprout-soft);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--card {
  display: flex; flex-direction: column; justify-content: center;
  aspect-ratio: auto; padding: clamp(1.8rem, 1rem + 3vw, 3rem);
  background: linear-gradient(155deg, var(--forest-2) 0%, var(--forest) 100%);
  color: #fff;
}
.split__media--card h3 { color: #fff; }
.split__media--card .quote {
  font-family: "Spectral", serif; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  font-style: italic; line-height: 1.35; color: var(--sprout); margin: .4rem 0 1.2rem;
}
.split__media--card p { color: rgba(255,255,255,.86); }

.checklist { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; }
.checklist svg {
  width: 26px; height: 26px; flex: none; margin-top: 2px;
  padding: 4px; border-radius: 50%; background: var(--sprout-soft); stroke: var(--forest-2);
}
.checklist span { color: var(--muted); }
.checklist strong { color: var(--forest-2); }

/* ============================================================
   Journey (Transformation in Etappen)
   ============================================================ */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 820px) { .journey { grid-template-columns: 1fr; } }
.journey__step {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 2rem 1.6rem 1.7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.section--warm .journey__step { background: #fff; }
.journey__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sprout); }
.journey__num {
  font-family: "Spectral", serif; font-size: 2.4rem; font-weight: 600;
  color: var(--sprout); line-height: 1; display: block; margin-bottom: .6rem;
}
.journey__step h3 { margin-bottom: .35rem; }
.journey__step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ============================================================
   Angebote (Cards)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.card {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.1rem 1.8rem; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.section--warm .card { background: #fff; }
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--ochre));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sprout); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: var(--sprout-soft); color: var(--forest-2);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin-bottom: 1.2rem; }
.card__tag {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  color: var(--terracotta); background: var(--ochre-soft);
  padding: .3rem .75rem; border-radius: var(--r-pill);
}

/* ============================================================
   Zitat-Band
   ============================================================ */
.band {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--forest-2) 0%, var(--forest) 100%);
  color: #fff; text-align: center;
  padding: clamp(3.6rem, 2.6rem + 4vw, 6rem) 0;
}
.band::before, .band::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(108,191,107,.28) 0%, transparent 70%);
}
.band::before { width: 380px; height: 380px; top: -140px; left: -100px; }
.band::after  { width: 460px; height: 460px; bottom: -220px; right: -120px;
  background: radial-gradient(circle, rgba(217,154,63,.22) 0%, transparent 70%); }
.band__quote {
  font-family: "Spectral", serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.5rem, 1.15rem + 1.9vw, 2.6rem); line-height: 1.3;
  max-width: 22ch; margin: 0 auto 1rem; color: #fff;
}
.band__sub { color: var(--sprout-soft); max-width: 46ch; margin: 0 auto; }

/* ============================================================
   Für wen
   ============================================================ */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; } }
.audience__item {
  padding: 1.8rem 1.6rem; border-left: 3px solid var(--sprout);
  background: var(--cream); border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.section--warm .audience__item { background: #fff; }
.audience__item:hover { transform: translateX(4px); border-left-color: var(--terracotta); }
.audience__item .num {
  font-family: "Spectral", serif; font-size: 1rem; font-weight: 600;
  color: var(--terracotta); letter-spacing: .1em;
}
.audience__item h3 { margin: .4rem 0 .4rem; font-size: 1.22rem; }
.audience__item p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: .85rem; }
.faq__item {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; transition: border-color .3s var(--ease);
}
.section--warm .faq__item { background: #fff; }
.faq__item[open] { border-color: var(--sprout); box-shadow: var(--shadow-sm); }
.faq__q {
  font-family: "Jakarta", sans-serif; font-weight: 600; font-size: 1.06rem; color: var(--forest);
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; font-family: "Jakarta", sans-serif; font-size: 1.5rem; font-weight: 400;
  color: var(--terracotta); transition: transform .3s var(--ease); flex: none; line-height: 1;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.25rem; color: var(--muted); }
.faq__a p { margin: 0; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact { background: linear-gradient(160deg, var(--forest-2) 0%, var(--forest) 100%); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
.contact h2 { color: #fff; }
.contact .section__eyebrow { color: var(--ochre); }
.contact .section__eyebrow::before { background: var(--ochre); }
.contact__lead { color: rgba(255,255,255,.88); font-size: var(--fs-lead); max-width: 34rem; }
.contact__meta { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact__meta li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.9); }
.contact__meta svg { width: 22px; height: 22px; flex: none; stroke: var(--sprout); }
.contact__meta a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Form */
.form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  backdrop-filter: blur(3px);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: rgba(255,255,255,.92); }
.field input, .field textarea {
  width: 100%; font-family: "Jakarta", sans-serif; font-size: 1rem; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm); padding: .8rem .95rem; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.5); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sprout); background: rgba(255,255,255,.12);
}
.form__submit { width: 100%; margin-top: .4rem; }
.form__status { margin: 1rem 0 0; font-size: .92rem; min-height: 1.2em; }
.form__status.is-ok  { color: var(--sprout); }
.form__status.is-err { color: #ffcbb0; }
.form__note { margin: 1rem 0 0; font-size: .82rem; color: rgba(255,255,255,.62); }
.form__note a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #16301c; color: rgba(255,255,255,.72); padding: 3rem 0 2rem; }
.site-footer__inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center;
  padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer__logo { display: inline-flex; align-items: center; gap: .6rem; }
.site-footer__logo svg { width: 34px; height: 34px; }
.site-footer__logo-word { font-family: "Spectral", serif; font-weight: 600; font-size: 1.15rem; color: #fff; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-footer__links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .95rem; }
.site-footer__links a:hover { color: var(--sprout); }
.site-footer__copy { padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ============================================================
   Scroll-Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }

/* atmende Akzentlinie (Mikro-Effekt aus dem Bewegungs-Vokabular) */
@keyframes breathe { 0%,100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(.72); opacity: .7; } }
.section__eyebrow::before { animation: breathe 4.5s var(--ease) infinite; transform-origin: left; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card:hover, .journey__step:hover, .audience__item:hover { transform: none; }
  .section__eyebrow::before { animation: none; }
  * { scroll-behavior: auto !important; }
}
