/* ============================================================
   Die Energiepraxis – V6
   V4-Basis + V5-Features · Golden Circle Storytelling
   SVG-Animationen · Spotlight · Ergebnis-Zahlen
   ============================================================ */

/* ── SELF-HOSTED FONTS ─────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-Italic-Variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Material Symbols Outlined';
  src: url('../fonts/MaterialSymbolsOutlined.woff2') format('woff2');
  font-weight: 100 700;
  font-display: block;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 400; font-style: normal;
  font-size: 24px; line-height: 1;
  letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap; word-wrap: normal;
  direction: ltr; font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ── TOKENS (V4 Thermal Light) ─────────────────────────────── */
:root {
  /* Oberflächen-Stack (hell, warm) */
  --bg:         #FBF8F2;   /* Seite – warmes Cremeweiß             */
  --surface-1:  #FFFFFF;   /* Cards, erhabene Sections              */
  --surface-2:  #F4EFE2;   /* Leicht warme Fläche (Hover, Akzent)   */
  --surface-3:  #EDE5D1;   /* Noch wärmer                           */

  /* Linien & Borders (dunkel auf hell) */
  --border:       #E0D9C7;
  --border-soft:  rgba(26,34,32,.06);
  --border-mid:   rgba(26,34,32,.12);
  --border-strong:rgba(26,34,32,.22);

  /* Text (dunkel) */
  --text:         #1A2220;  /* Near-black warm                      */
  --text-2:       #4A5450;
  --text-3:       #7A827D;
  --text-4:       #A5ADA8;

  /* Markenfarben */
  --green-700:    #2E5B3F;  /* Markengrün, Logo-Bereich             */
  --green-800:    #234733;
  --green-900:    #192E22;
  --green-300:    #8FA894;  /* Gedämpftes Salbei für Klima-Akzente  */

  /* Amber-Glow – Hauptakzent (dunkler für Kontrast auf Hell) */
  --amber:        #D88B2A;  /* Basis                                 */
  --amber-bright: #E8A03D;  /* Hover                                 */
  --amber-deep:   #B0711E;  /* Pressed                               */
  --amber-glow:   rgba(216,139,42,.35);
  --amber-soft:   rgba(216,139,42,.12);

  /* Creme-Moment (ein seltener heller Abschnitt) */
  --cream:        #F4EFE2;
  --cream-ink:    #1B1F1C;  /* Text auf Creme                       */

  /* Fonts */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-italic:  'Fraunces', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --container:        1240px;
  --container-narrow: 880px;
  --gutter:           24px;
  --section-py:       96px;

  /* Rundungen */
  --r-xs:  6px;
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 44px;
  --r-full: 9999px;

  /* Schatten (weich auf hell) */
  --shadow-sm: 0 2px 8px rgba(26,34,32,.06), 0 1px 2px rgba(26,34,32,.04);
  --shadow-md: 0 10px 28px rgba(26,34,32,.10), 0 3px 8px rgba(26,34,32,.05);
  --shadow-lg: 0 28px 64px rgba(26,34,32,.14), 0 6px 16px rgba(26,34,32,.06);
  --shadow-glow: 0 0 28px var(--amber-glow);
  --shadow-focus: 0 0 0 3px rgba(216,139,42,.35);

  --ease:      cubic-bezier(.4, 0, .2, 1);
  --ease-soft: cubic-bezier(.2, .7, .2, 1);
  --ease-pop:  cubic-bezier(.34, 1.56, .64, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  caret-color: transparent;
  cursor: default;
}
input, select, textarea, [contenteditable] { caret-color: auto; }
img, svg, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--amber); color: #FFFFFF; }

/* Touch- & Tap-Optimierung */
html { -webkit-tap-highlight-color: rgba(216, 139, 42, .18); }
button, a, [role="button"], input[type="submit"] { touch-action: manipulation; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Skip-Link für Tastatur-Navigation: nur sichtbar bei Fokus */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  padding: 12px 18px;
  background: var(--text);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-100%);
  transition: transform .15s ease;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

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

/* ── LAYOUT ────────────────────────────────────────────────── */
/* Container nutzt max() mit env(safe-area-inset-*), damit Inhalt im Querformat
   nicht unter Notch/Cutout rutscht. Im Hochformat sind die Insets 0 → kein Effekt. */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left:  max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left:  max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

/* ── TYPO-BASIS ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -.02em;
}
p { color: var(--text-2); line-height: 1.65; }

/* Einzelne kursive Signatur-Zitate (Fraunces) */
.signature-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.35;
  letter-spacing: -.005em;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,248,242,.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease);
  /* Notch-/Cutout-Schutz: Inhalt rutscht unter die Status-Bar bei Geräten mit Display-Aussparung (iPhone 12+, Galaxy S22+, Pixel 7+) */
  padding-top: env(safe-area-inset-top);
}
.nav.scrolled {
  background: rgba(251,248,242,.94);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 100px;
  transition: height .3s var(--ease);
}
.nav-logo {
  position: relative;
  display: flex; align-items: center;
  min-width: 230px;
}
.nav-logo svg,
.nav-logo img {
  height: 84px; width: auto;
  display: block;
  /* Logo bleibt dunkel auf hellem Grund */
  opacity: 1;
  transition: height .3s var(--ease), opacity .25s var(--ease);
}
/* Text-Wordmark "Die Energiepraxis" — erscheint im scrolled-State, wird per JS injiziert */
.nav-wordmark {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #54584d;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-wordmark-accent { color: #dd9023; }

/* Scrolled-State: Navbar schrumpft, Logo wird durch Wordmark ersetzt */
.nav.scrolled .nav-inner { height: 64px; }
.nav.scrolled .nav-logo svg,
.nav.scrolled .nav-logo img {
  height: 48px;
  opacity: 0;
}
.nav.scrolled .nav-wordmark { opacity: 1; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease-soft);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber);
  color: #FFFFFF;
  padding: 11px 20px 11px 22px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 20px rgba(216,139,42,.22);
}
.nav-cta::after {
  content: '→'; font-weight: 400; font-size: 16px;
  transition: transform .25s var(--ease);
}
.nav-cta:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(216,139,42,.38);
}
.nav-cta:hover::after { transform: translateX(3px); }

.nav-mobile-btn {
  display: none; background: none; border: none;
  padding: 10px; color: var(--text); border-radius: var(--r-sm);
}
.nav-mobile-btn:hover { background: var(--surface-1); }
.nav-mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
  overscroll-behavior: contain;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: 16px 24px; font-size: 15px; font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile-link:hover, .nav-mobile-link.active {
  color: var(--text); background: var(--surface-2);
}
.nav-mobile-cta {
  margin: 16px 24px 0; text-align: center;
  background: var(--amber); color: var(--bg);
  padding: 14px; border-radius: var(--r-full);
  font-weight: 700; font-size: 15px;
}

/* ═══ HERO – Thermografie-Moment ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;        /* Fallback für ältere Browser */
  min-height: 100dvh;       /* dynamic viewport height: kein Layout-Shift wenn Mobile-Adressleiste ein-/ausfährt */
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% 45%;
  opacity: .82;
  filter: brightness(1.02) contrast(1.02) saturate(.95);
}
/* Heller Verlauf über Bild (Cream von links, rechts Bild sichtbar) */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(251,248,242,.96) 0%,
      rgba(251,248,242,.82) 34%,
      rgba(251,248,242,.46) 62%,
      rgba(251,248,242,.10) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(251,248,242,.92) 100%);
}
/* Thermografie-Glow-Flächen (langsam animiert, dezent) */
.hero-thermal {
  position: absolute; inset: -10%;
  z-index: 1; pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .65;
}
.hero-thermal::before,
.hero-thermal::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(90px);
  display: block;
}
.hero-thermal::before {
  top: -12%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle,
    rgba(232,160,61,.55) 0%,
    rgba(232,160,61,.18) 38%,
    transparent 72%);
  animation: thermalFloat 20s ease-in-out infinite;
}
.hero-thermal::after {
  bottom: -20%; left: -14%;
  width: 520px; height: 520px;
  background: radial-gradient(circle,
    rgba(60,120,78,.45) 0%,
    rgba(46,91,63,.15)  45%,
    transparent 75%);
  animation: thermalFloat 26s ease-in-out infinite reverse;
}
@keyframes thermalFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-50px, 35px) scale(1.08); }
  66%      { transform: translate(40px, -25px) scale(.94); }
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-inner { max-width: 780px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(10px);
  color: var(--text-2);
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

.hero-h1 {
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 28px;
}
.h1-primary {
  display: block;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.035em;
  color: var(--text);
}
.h1-secondary {
  display: block;
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px);
  color: var(--amber);
  line-height: 1.15;
  margin-top: 6px;
  letter-spacing: -.01em;
}
.hero-sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.55;
  max-width: 580px;
}
.hero-text {
  font-size: 15.5px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Floating Glass-Stats unten rechts im Hero */
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-top: 64px;
}
.hero-stat {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.hero-stat .label {
  font-size: 12.5px; color: var(--text-2);
  margin-top: 8px; letter-spacing: .02em;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600;
  letter-spacing: .005em;
  border: 1px solid transparent;
  cursor: pointer; user-select: none;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .3s var(--ease);
  position: relative;
  will-change: transform;
}
.btn .arrow { transition: transform .25s var(--ease-soft); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary, .btn-earth, .btn-ochre {
  background: var(--amber);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(216,139,42,.22);
}
.btn-primary:hover, .btn-earth:hover, .btn-ochre:hover {
  background: var(--amber-bright);
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(216,139,42,.40);
}

.btn-ghost {
  background: rgba(255,255,255,.72);
  border-color: var(--amber);
  color: var(--amber);
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--amber);
  color: #FFFFFF;
  border-color: var(--amber);
}

.btn-outline, .btn-forest {
  background: transparent;
  border-color: var(--amber);
  color: var(--amber);
  font-weight: 600;
}
.btn-outline:hover, .btn-forest:hover {
  background: var(--amber);
  color: #FFFFFF;
}

.btn-lg { padding: 16px 28px 16px 30px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-sm { padding: 10px 18px 10px 20px; font-size: 13px; }

/* Runder kleiner Icon-Button (Pfeil) */
.btn-icon {
  width: 44px; height: 44px; padding: 0;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn-icon:hover {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

/* ── TRUST-STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 14px 44px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2);
}
.trust-item .material-symbols-outlined { font-size: 18px; color: var(--amber); }
.trust-divider { width: 1px; height: 16px; background: var(--border); }

/* ── BADGE-BANNER (Marquee) ───────────────────────────────── */
.badge-banner {
  background: var(--surface-1);
  overflow: hidden; position: relative;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
}
.badge-banner::before, .badge-banner::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.badge-banner::before { left: 0; background: linear-gradient(to right, var(--surface-1), transparent); }
.badge-banner::after  { right: 0; background: linear-gradient(to left,  var(--surface-1), transparent); }
.badge-track {
  display: flex; width: max-content;
  animation: scrollBadges 60s linear infinite;
}
/* Marquee läuft immer durch, auch bei Hover */
.badge-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px; white-space: nowrap;
}
.badge-item:not(:last-child) { border-right: 1px solid var(--border-soft); }
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
  box-shadow: 0 0 8px var(--amber-glow);
}
.badge-label {
  font-size: 12.5px; font-weight: 500;
  color: var(--text-2); letter-spacing: .02em;
}
@keyframes scrollBadges {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION-HELFER ───────────────────────────────────────── */
.section    { padding: var(--section-py) 0; position: relative; }
.section-sm { padding: 80px 0; }
.bg-surface-1 { background: var(--surface-1); }
.bg-surface-2 { background: var(--surface-2); }
/* Legacy-Klassen – Rhythmus Basis ↔ leicht erhaben */
.bg-cream { background: var(--bg); color: var(--text); }
.bg-white { background: var(--surface-1); color: var(--text); }
.bg-sage, .bg-paper, .bg-sand, .bg-ochre, .bg-warm, .bg-dark, .bg-darkest {
  background: var(--surface-1); color: var(--text);
}

/* Seltener Creme-Moment – bewusster Bruch */
.bg-cream-moment {
  background: var(--cream); color: var(--cream-ink);
}
.bg-cream-moment h1, .bg-cream-moment h2, .bg-cream-moment h3 { color: var(--cream-ink); }
.bg-cream-moment p { color: #3E4540; }

/* Sektion-Kopfzeile */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 26px; height: 1px;
  background: var(--amber); border-radius: 2px;
}
.section-label-light { color: var(--amber); }
.section-label-light::before { background: var(--amber); }

.section-title, .section-title-light {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  color: var(--text);
}
.section-sub, .section-sub-light {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--text-2);
  line-height: 1.6; max-width: 620px;
}
.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }

/* ── ÜBER-MICH (Launch-Onepager) – lesbare Absätze ────────── */
.about-launch p {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-launch p:last-of-type { margin-bottom: 0; }

/* ── BENTO-GRID für Leistungen (asymmetrisch) ─────────────── */
.services-grid, .services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
/* Erste Reihe: 3/3, zweite Reihe: 2/2/2 (3+3 auf 6 Cols = asymmetrisch via spans) */
.services-grid .service-card:nth-child(1) { grid-column: span 3; }
.services-grid .service-card:nth-child(2) { grid-column: span 3; }
.services-grid .service-card:nth-child(3) { grid-column: span 2; }
.services-grid .service-card:nth-child(4) { grid-column: span 2; }
.services-grid .service-card:nth-child(5) { grid-column: span 2; }
.services-grid .service-card:nth-child(6) { grid-column: span 6; }

.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  min-height: 280px;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--amber-soft), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--amber);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-number {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--amber);
  letter-spacing: .1em;
  margin-bottom: 24px;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.service-number::before { content: '0'; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--amber-soft); border-color: var(--amber);
}
.service-icon .material-symbols-outlined { font-size: 22px; color: var(--amber); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px; line-height: 1.2;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: 15px; color: var(--text-2);
  line-height: 1.6; flex-grow: 1;
}
.service-card-footer {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  color: var(--amber);
  text-transform: uppercase; letter-spacing: .08em;
}
.service-badge .material-symbols-outlined { font-size: 14px; }

/* Read-More Pfeil-Link in Cards */
.blog-read, .service-card .blog-read {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  margin-top: 14px;
  transition: color .2s, gap .2s var(--ease);
}
.blog-read:hover { color: var(--amber); gap: 12px; }
.blog-read .material-symbols-outlined { font-size: 16px; }

/* Expand */
.service-detail { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.service-detail.open { display: block; }
.service-detail p { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.toggle-detail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--amber);
  background: none; border: none; padding: 0; margin-top: 14px;
}
.toggle-detail:hover { color: var(--amber-bright); }
.toggle-detail .material-symbols-outlined { font-size: 16px; transition: transform .2s; }
.toggle-detail.open .material-symbols-outlined { transform: rotate(180deg); }

/* ── "WAS IST..." – Zweispaltig ──────────────────────────── */
.energiepraxis-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 88px; align-items: center;
}
.energiepraxis-text p {
  font-size: 17.5px; color: var(--text-2);
  line-height: 1.75; margin-bottom: 18px;
}
.energiepraxis-text p.strong {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  color: var(--text);
  font-size: 22px;
  padding-left: 22px;
  border-left: 2px solid var(--amber);
  margin-top: 32px; margin-bottom: 0;
  line-height: 1.4;
}

.ep-visual-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  position: relative; overflow: hidden;
}
.ep-visual-card::before {
  content: ''; position: absolute;
  top: -40%; right: -20%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 65%);
  pointer-events: none;
}
.ep-visual-card > * { position: relative; }
.ep-visual-card .ep-icon {
  width: 56px; height: 56px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.ep-visual-card .ep-icon .material-symbols-outlined { font-size: 28px; color: var(--amber); }
.ep-visual-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
  letter-spacing: -.01em;
}
.ep-visual-card p { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 28px; }
.ep-stat-row {
  display: flex; gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.ep-stat { text-align: left; flex: 1; }
.ep-stat .num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  color: var(--amber); line-height: 1;
  letter-spacing: -.02em;
}
.ep-stat .label {
  font-size: 12px; color: var(--text-3); margin-top: 8px;
  letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
}

/* ── WHY-SECTION – Bento-Mix ─────────────────────────────── */
.why-grid-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-intro .section-sub-light { font-size: 17px; }

.why-list { display: flex; flex-direction: column; gap: 10px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.why-item:hover {
  border-color: var(--amber);
  background: var(--surface-2);
  transform: translateX(3px);
}
.why-check {
  width: 30px; height: 30px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 0 14px var(--amber-glow);
}
.why-check .material-symbols-outlined { font-size: 16px; color: var(--bg); font-weight: 700; }
.why-item p {
  font-size: 15.5px; color: var(--text);
  line-height: 1.5;
}
.why-note {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  background: var(--amber-soft);
  border: 1px solid rgba(232,160,61,.32);
  border-radius: var(--r-full);
  padding: 10px 18px;
}
.why-note .material-symbols-outlined { font-size: 18px; color: var(--amber); }
.why-note span { font-size: 13px; color: var(--text); }

/* ── PROZESS-SCHRITTE ─────────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  position: relative;
  padding: 28px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.process-step:hover {
  border-color: var(--amber);
  background: var(--surface-2);
}
.process-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  display: block;
}
.process-num::before { content: '0'; opacity: .35; }
.process-step h3 {
  font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
  font-family: var(--font-display);
  letter-spacing: -.005em;
}
.process-step p {
  font-size: 14.5px; color: var(--text-2); line-height: 1.6;
}

/* ── LEISTUNG-BLÖCKE (Unterseite) ─────────────────────────── */
.leistung-block {
  padding: 100px 0; scroll-margin-top: 90px;
  border-top: 1px solid var(--border-soft);
}
.leistung-block:first-of-type { border-top: none; }
.leistung-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leistung-inner--reverse .leistung-image { order: 2; }
.leistung-inner--reverse .leistung-body  { order: 1; }
.leistung-image {
  aspect-ratio: 4/3;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--text-3);
  overflow: hidden;
  position: relative;
}
.leistung-image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, var(--amber-soft) 0%, transparent 60%);
  pointer-events: none;
}
.leistung-image img { width: 100%; height: 100%; object-fit: cover; }
.leistung-image .material-symbols-outlined { font-size: 42px; }
.leistung-image-label { font-size: 13px; }
.leistung-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.025em;
}
.leistung-body .leistung-lead {
  font-size: 17.5px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 20px;
}
.leistung-body .leistung-detail {
  font-size: 16px; color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.leistung-body .leistung-detail p { margin-bottom: 14px; }
.leistung-body .leistung-detail p:last-child { margin-bottom: 0; }
.leistung-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── CTA-BANNER – warme Cremefläche mit Amber-Glow ───────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 88px 80px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* Wenn die umgebende Section selbst cream ist, würde der cream-Banner
   verschwimmen → automatisch auf einen weiß-zu-cream-Verlauf wechseln,
   damit der Banner sichtbar abgesetzt bleibt. */
.section.bg-cream .cta-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--surface-2) 100%);
  border-color: var(--border-mid);
  box-shadow:
    0 64px 128px -20px rgba(26,34,32,.28),
    0 24px 48px -12px rgba(26,34,32,.14),
    0 6px 12px rgba(26,34,32,.06);
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -40%; right: -5%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 62%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -50%; left: -8%;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,139,42,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700; color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.cta-banner p {
  font-size: 17px; color: var(--text-2);
  margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-banner-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PAGE-HERO (Unterseiten) ─────────────────────────────── */
.page-hero {
  padding: 180px 0 100px;
  position: relative; overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  isolation: isolate;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -20%; right: -5%;
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 60%);
  pointer-events: none;
  animation: thermalFloat 24s ease-in-out infinite;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -50%; left: -8%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,139,42,.12) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero .section-label { color: var(--amber); }
.page-hero .section-label::before { background: var(--amber); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700; color: var(--text);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-2); line-height: 1.55;
  max-width: 640px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* ── PROJECT CARD (Referenzen) ────────────────────────────── */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.project-image {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 360px;
  color: var(--text-3);
}
.project-image .material-symbols-outlined { font-size: 56px; }
.project-image p { font-size: 13px; margin: 0; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }

.project-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.project-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}
.project-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.project-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-tags li {
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 9999px;
  background: var(--amber-soft);
  color: var(--amber);
}
.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  margin-top: 6px;
}
.project-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-stat-label {
  font-size: 11.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.project-stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
@media (max-width: 920px) {
  .project-card { grid-template-columns: 1fr; }
  .project-image { min-height: 240px; }
  .project-content { padding: 32px 28px; gap: 16px; }
  .project-stats { gap: 18px; }
  .project-stat-value { font-size: 19px; }
}

.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.testimonial-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.t-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.t-stars svg { width: 15px; height: 15px; fill: var(--amber); color: var(--amber); }
.t-text {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 16px; color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--amber); font-size: 15px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.t-name  { font-size: 14.5px; font-weight: 600; color: var(--text); }
.t-service { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }
.t-placeholder {
  background: var(--surface-1);
  border: 1px dashed var(--border);
  opacity: .6;
}

/* ── BLOG-CARDS ───────────────────────────────────────────── */
/* ── BLOG TOOLBAR (Suche + Kategorie-Tabs) ────────────────── */
.blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.blog-search {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--text-3);
  pointer-events: none;
}
.blog-search input {
  width: 100%;
  padding: 12px 44px 12px 44px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 9999px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.blog-search input::-webkit-search-cancel-button { display: none; }
.blog-search input::placeholder { color: var(--text-3); }
.blog-search input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.blog-search-clear {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: color .15s, background .15s;
}
.blog-search-clear:hover { color: var(--text); background: var(--surface-2); }
.blog-search-clear .material-symbols-outlined { font-size: 18px; }
.blog-search-clear[hidden] { display: none; }

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-filter-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  min-height: 40px;
  background: var(--surface-1);
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.blog-filter-tab:hover {
  border-color: var(--amber);
  color: var(--text);
}
.blog-filter-tab.is-active {
  background: var(--amber);
  color: #FFFFFF;
  border-color: var(--amber);
}

/* Coming-Soon-Karten: nicht klickbar, deutlich als „geplant" erkennbar */
.blog-card--coming {
  opacity: .72;
  cursor: default;
}
.blog-card--coming:hover {
  transform: none;
  border-color: var(--border);
}
/* „Geplant"-Datum als dezenter Badge mit gestricheltem Rahmen */
.blog-card--coming .blog-date {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  border: 1px dashed var(--border-mid);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Empty State (keine Suchtreffer) */
.blog-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-3);
}
.blog-empty .material-symbols-outlined {
  font-size: 48px;
  color: var(--text-3);
  margin-bottom: 12px;
  display: block;
}
.blog-empty p {
  font-size: 15px;
  margin: 0;
}

/* Mehr-Anzeigen-Button */
.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.blog-load-more[hidden] { display: none; }

/* hidden-Attribut muss display:flex der Karte überschreiben */
.blog-card[hidden] { display: none; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.blog-img {
  aspect-ratio: 16/10; position: relative;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: var(--bg);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: var(--r-full);
}
.blog-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-date {
  font-size: 12px; color: var(--text-3);
  margin-bottom: 10px; letter-spacing: .04em;
  text-transform: uppercase; font-weight: 500;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--text); line-height: 1.2; margin-bottom: 12px;
  letter-spacing: -.01em;
}
.blog-body p {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.6;
  flex-grow: 1;
}

/* ── KONTAKT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-form-wrap {
  display: flex;
  height: 100%;
}
.contact-form-wrap .form-card {
  flex: 1;
}
.contact-info h2,
.contact-info h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}
.contact-info > p {
  font-size: 17px; color: var(--text-2);
  line-height: 1.6; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon .material-symbols-outlined { font-size: 20px; color: var(--amber); }
.contact-item-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 2px;
}
.contact-item-text {
  font-size: 15px; color: var(--text); font-weight: 500;
}
.contact-item a.contact-item-text:hover { color: var(--amber); }

/* ── FORMULAR ─────────────────────────────────────────────── */
.form-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.form-card-note {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 28px;
}
.label-optional {
  color: var(--text-3);
  font-weight: 400;
}

/* Datenschutz-Hinweis unter dem Submit-Button — dezent, nicht als Hürde */
.form-privacy-note {
  font-size: 12.5px;
  color: var(--text-3);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}
.form-privacy-note a {
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.form-privacy-note a:hover { color: var(--amber); }

/* Checkliste „Das Erstgespräch ist…" — wiederverwendbar für Vorteile-Boxen */
.checklist-box {
  padding: 28px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-top: auto; /* Push to bottom in flex column → bündig mit Form-Card-Bottom */
}
.checklist-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin: 0 0 18px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.checklist .material-symbols-outlined {
  font-size: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* Telefon-Item-Text bei „Nummer folgt"-Platzhalter etwas dezenter */
.contact-item-text--placeholder {
  color: var(--text-3);
  font-weight: 400;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group .label-required::after {
  content: '*'; color: var(--amber); margin-left: 3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 16px; color: var(--text);
  background: #FFFFFF;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--border-strong); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: #FFFFFF;
  box-shadow: var(--shadow-focus);
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234A5450' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 42px;
}
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-2); line-height: 1.55;
  margin-top: 8px; cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--amber); cursor: pointer;
}
.form-check a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.form-note { font-size: 12.5px; color: var(--text-3); margin-top: 14px; line-height: 1.55; }
.form-success {
  display: none;
  padding: 18px 22px;
  background: var(--amber-soft);
  border: 1px solid rgba(232,160,61,.36);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14.5px;
}
.form-success.show { display: block; }
.form-honeypot {
  position: absolute; left: -5000px; opacity: 0; pointer-events: none;
}

/* ── KOOPERATION ──────────────────────────────────────────── */
/* Lead-/Intro-Texte (z.B. Kooperationen Konzept) */
.intro-text {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.intro-text:last-of-type { margin-bottom: 0; }
.intro-text--highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
}

/* Kompakte Vorteile-Liste — schlichter als coop-card, ohne Kasten/Border */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 28px !important;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}
.benefit p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.coop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.coop-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.coop-card:hover {
  border-color: var(--amber);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.coop-card-icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.coop-card-icon .material-symbols-outlined { font-size: 24px; color: var(--amber); }
.coop-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  font-family: var(--font-display);
}
.coop-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

.benefits-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.benefit-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0; margin-top: 8px;
  box-shadow: 0 0 8px var(--amber-glow);
}
.benefit-item p { font-size: 16px; color: var(--text-2); line-height: 1.55; }

/* ── B2B-BLOCK (Verwaltungen) ─────────────────────────────── */
.b2b-block {
  background:
    linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 72px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.b2b-block::before {
  content: ''; position: absolute;
  top: -35%; right: -10%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 62%);
  pointer-events: none;
}
.b2b-block > * { position: relative; }
.b2b-block .section-label { color: var(--amber); }
.b2b-block h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}
.b2b-block p {
  font-size: 16.5px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 28px;
}
.b2b-list { display: flex; flex-direction: column; gap: 10px; }
.b2b-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500;
  color: var(--text);
  transition: border-color .2s, transform .2s;
}
.b2b-item:hover {
  border-color: var(--amber);
  transform: translateX(3px);
}
.b2b-item .material-symbols-outlined {
  font-size: 20px; color: var(--amber); flex-shrink: 0;
}

/* ── ÜBER MICH ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.about-photo {
  aspect-ratio: 4/5;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; position: sticky; top: 104px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .material-symbols-outlined { font-size: 56px; color: var(--text-3); }
.about-photo p { font-size: 13px; color: var(--text-3); }
.about-content h2,
.about-content .about-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.04;
  margin-bottom: 10px;
  letter-spacing: -.025em;
}
.about-content .about-subtitle {
  font-size: 15px; color: var(--amber);
  font-weight: 500; margin-bottom: 30px;
  letter-spacing: .04em; text-transform: uppercase;
}
.about-content p {
  font-size: 17px; color: var(--text-2);
  line-height: 1.75; margin-bottom: 20px;
}
.about-content p:last-of-type { margin-bottom: 0; }

.principles { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.principle {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: border-color .2s, background .2s;
}
.principle:hover { border-color: var(--amber); background: var(--surface-2); }
.principle-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--amber);
  line-height: 1; flex-shrink: 0; width: 40px;
  letter-spacing: -.02em;
}
.principle-num::before { content: '0'; opacity: .35; }
.principle h3 {
  font-size: 16.5px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  font-family: var(--font-display);
}
.principle p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* ── LEGAL-SEITEN ─────────────────────────────────────────── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: var(--text); margin-top: 44px; margin-bottom: 14px;
  letter-spacing: -.015em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--text);
  margin-top: 28px; margin-bottom: 10px;
}
.legal-content h4 {
  font-family: var(--font-body);
  font-size: 15.5px; font-weight: 600;
  color: var(--text);
  margin-top: 18px; margin-bottom: 6px;
}
.legal-content p, .legal-content ul {
  font-size: 15.5px; color: var(--text-2);
  line-height: 1.75; margin-bottom: 14px;
}
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--amber-bright); }
.legal-content strong { color: var(--text); }
/* Buttons innerhalb .legal-content behalten ihre Button-Optik (kein Link-Style) */
.legal-content a.btn { text-decoration: none; }
.legal-content a.btn-primary, .legal-content a.btn-earth, .legal-content a.btn-ochre,
.legal-content a.btn-primary:hover, .legal-content a.btn-earth:hover, .legal-content a.btn-ochre:hover { color: #FFFFFF; }

/* ── FOOTER – warme Cremefläche passend zum Rest ──────────── */
.footer {
  background: var(--surface-2);
  color: var(--text);
  padding: 96px 0 36px;
  /* Home-Indicator-Schutz: zusätzlicher Abstand auf Geräten mit Bottom-Bar (iPhone X+) */
  padding-bottom: calc(36px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Vereinheitlichte Footer-Farben — nur 2 Ebenen:
   var(--text)   = Spaltentitel + alle Links (prominent)
   var(--text-2) = Subtexte (Tagline, Credentials, Copyright, Standort) */
.footer .footer-brand p { color: var(--text-2); }
.footer .footer-col h4 { color: var(--text); }
.footer .footer-col a,
.footer .footer-tel-placeholder { color: var(--text); font-weight: 500; }
.footer .footer-col a:hover { color: var(--amber); }
.footer .footer-bottom { border-top-color: var(--border); }
.footer .footer-bottom p,
.footer .footer-legal a { color: var(--text-2); font-weight: 500; }
.footer .footer-legal a:hover { color: var(--amber); }
.footer .footer-credentials { color: var(--text-2); }
.footer .footer-social a {
  background: #FFFFFF;
  border-color: var(--border);
  color: var(--text-2);
}
.footer .footer-social a:hover {
  background: var(--amber); color: #FFFFFF; border-color: var(--amber);
}
.footer::before {
  content: ''; position: absolute;
  top: -40%; right: -5%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 65%);
  pointer-events: none;
}
.footer .container { position: relative; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; margin-bottom: 64px;
}
.footer-brand svg,
.footer-brand img {
  height: 64px; width: auto;
  display: block;
  /* Logo bleibt dunkel auf hellem Footer */
  opacity: 1;
}
.footer-brand p {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.7; margin-top: 20px; max-width: 300px;
}
.footer-credentials {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.footer-credentials span { display: inline-flex; align-items: center; gap: 8px; }
.footer-credentials .material-symbols-outlined { font-size: 16px; color: var(--amber); }

.footer-col h4 {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-3); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--amber); }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background .2s, color .2s, border-color .2s;
  margin: 0;
}
.footer-social a:hover {
  background: var(--amber); color: var(--bg); border-color: var(--amber);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 13px;
  color: var(--text-3);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--amber); }

/* Kontakt-Spalte im Footer */
.footer-tel-placeholder { color: var(--text-3) !important; }

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }
.delay-4 { transition-delay: .24s; }
.delay-5 { transition-delay: .30s; }

/* Zahlen-Counter Zielwert-Text */
.count-up { font-variant-numeric: tabular-nums; }

/* ── UTILITIES ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }  .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }  .mt-56 { margin-top: 56px; }
.mb-8  { margin-bottom:  8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid .service-card:nth-child(n) { grid-column: span 2; }
  .services-grid .service-card:nth-child(6) { grid-column: span 4; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .energiepraxis-grid { gap: 56px; }
  .contact-grid { gap: 48px; }
  .cta-banner { padding: 64px 48px; }
  .b2b-block { grid-template-columns: 1fr; gap: 40px; padding: 56px 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .about-photo { position: static; aspect-ratio: 5/4; max-width: 380px; }
}
@media (max-width: 780px) {
  :root { --section-py: 54px; --gutter: 20px; }
  .container {
    padding-left:  max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .nav-inner { height: 68px; }
  .nav-logo svg,
  .nav-logo img { height: 44px !important; }
  .footer-brand > svg,
  .footer-brand > img { height: 52px !important; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(n) { grid-column: span 1; }
  .energiepraxis-grid,
  .why-grid-cols,
  .about-grid,
  .contact-grid,
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-grid, .blog-grid, .coop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .page-hero { padding: 130px 0 72px; }
  .page-hero h1 { font-size: clamp(32px, 6vw, 44px); line-height: 1.08; }
  .section-title, .section-title-light { font-size: clamp(28px, 5vw, 38px); line-height: 1.1; }
  .section-header { margin-bottom: 56px; }
  .form-card { padding: 28px 24px; }
  .leistung-block { padding: 64px 0; }
  .leistung-inner { grid-template-columns: 1fr; gap: 32px; }
  .leistung-inner--reverse .leistung-image { order: 0; }
  .leistung-inner--reverse .leistung-body  { order: 0; }
  .b2b-block { padding: 36px 24px; }
  .trust-inner { gap: 14px 24px; }
  .trust-divider { display: none; }
  .ep-visual-card { padding: 32px 28px; }
  .ep-stat .num { font-size: 30px; }
  .blog-filter-tab { padding: 11px 18px; min-height: 44px; }
  .blog-filter-tabs { gap: 8px 6px; }
  /* Button-Container auf Mobile: untereinander gestapelt, zentriert */
  .hero-actions,
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  /* Alle Buttons auf Mobile: gleiche Breite, zentriert.
     Ausnahmen: btn-icon (runder 44px-Icon-Button), btn-full (Form-Submit volle Breite) */
  .btn:not(.btn-icon):not(.btn-full) {
    display: flex;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Narrow Phones (≤480px): iPhone SE, alte Geräte, sehr schmale Viewports */
@media (max-width: 480px) {
  :root { --section-py: 42px; --gutter: 16px; }
  .container {
    padding-left:  max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .nav-inner { height: 64px; }
  .nav-logo svg,
  .nav-logo img { height: 40px !important; }
  .footer-brand > svg,
  .footer-brand > img { height: 48px !important; }
  .nav-mobile-cta { margin: 14px 16px 0; padding: 13px; }
  .nav-mobile-link { padding: 14px 20px; }
  .hero { padding: 92px 0 48px; }
  .hero-eyebrow { font-size: 11px; padding: 7px 14px 7px 10px; margin-bottom: 24px; }
  .hero-h1 { margin-bottom: 22px; }
  .hero-sub { margin-bottom: 14px; }
  .hero-text { font-size: 14.5px; margin-bottom: 32px; }
  .hero-stats { margin-top: 36px; gap: 10px; }
  .hero-stat { padding: 18px 20px; }
  .hero-stat .num { font-size: 28px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 22px; font-size: 14.5px; }
  .page-hero { padding: 108px 0 56px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.05; }
  .section-title, .section-title-light { font-size: clamp(24px, 7vw, 32px); }
  .section-header { margin-bottom: 44px; }
  .cta-banner { padding: 40px 20px; border-radius: var(--r-xl); }
  .cta-banner p { font-size: 15.5px; margin-bottom: 28px; }
  .form-card { padding: 24px 18px; }
  .checklist-box { padding: 22px 18px; }
  .b2b-block { padding: 28px 18px; }
  .ep-visual-card { padding: 24px 20px; }
  .leistung-block { padding: 48px 0; }
  .leistung-inner { gap: 24px; }
  .warum-stat-highlight { padding: 18px 20px; }
  .warum-stat-number { min-width: 0; font-size: 34px; }
  .house-svg-container { padding: 18px 14px; border-radius: var(--r-lg); }
  .result-card { padding: 28px 22px; }
  .result-visual { width: 100px; height: 100px; margin-bottom: 16px; }
  .manifest-quote { margin: 22px 0 26px; }
  .manifest-sub { font-size: 15.5px; margin-bottom: 32px; }
  .about-teaser-img-wrapper { max-width: 280px; }
  .about-teaser-facts { gap: 18px 24px; padding-top: 22px; margin-top: 22px; }
  .testimonial-card { padding: 24px 22px; }
  .project-content { padding: 24px 20px; gap: 14px; }
  .project-image { min-height: 180px; }
  .project-image .material-symbols-outlined { font-size: 44px; }
  .project-title { font-size: 21px; }
  .project-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
  }
  .project-tags { gap: 6px; }
  .project-tags li { font-size: 12px; padding: 4px 10px; }
  .blog-body { padding: 22px 20px; }
  .blog-toolbar { gap: 14px; margin-bottom: 28px; }
  .footer-grid { gap: 28px; }
  .article-hero { padding: 100px 0 36px; }
  .article-body { padding: 40px 0; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .badge-track { animation: none; }
  .hero-thermal { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   V6 ADDITIONS — SVG-Animationen, Ergebnis-Karten, Manifest,
   About-Teaser, Spotlight, House-SVG
   ══════════════════════════════════════════════════════════════ */

/* ── MONO-UTILITY ─────────────────────────────────────────── */
.mono { font-family: var(--font-mono); }

/* ── WARUM-GRID (Text + House-SVG) ────────────────────────── */
.warum-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 72px; align-items: center;
}
.warum-text p {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 18px;
}
.warum-stat-highlight {
  display: flex; align-items: center; gap: 24px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--r-md);
  padding: 20px 28px;
  margin: 32px 0;
  overflow: hidden;
}
.warum-stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.02em;
  flex: 0 0 auto;
  min-width: 200px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.warum-stat-context p {
  font-size: 15.5px; color: var(--text-2);
  line-height: 1.55; margin-bottom: 6px;
}
.warum-stat-suffix {
  font-size: .45em; font-weight: 500;
  color: var(--text-3);
  vertical-align: super;
  margin-left: 2px;
}
.warum-stat-source {
  font-size: 11.5px; color: var(--text-3);
  letter-spacing: .03em;
}

/* ── HOUSE SVG ANIMATION (from V5) ────────────────────────── */
.house-svg-container {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
/* Kein extra Glow — Wärmeverlust-Annotationen reichen als Akzent */
.house-svg-container svg { position: relative; width: 100%; height: auto; }
.house-svg-caption {
  font-family: var(--font-body);
  font-size: 13px; color: var(--text-3);
  letter-spacing: .01em;
  margin-top: 16px; text-align: center;
}

/* SVG draw-line animation */
.draw-line {
  /* dash + riesige Gap → keine Muster-Wiederholung, kein Sub-Pixel-Schnipsel.
     Fallback 9999 versteckt die Linie, bis JS die exakte Länge via getTotalLength gesetzt hat. */
  stroke-dasharray: var(--len, 9999) 99999;
  stroke-dashoffset: var(--len, 9999);
  transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.house-svg-container.active .draw-line {
  stroke-dashoffset: 0;
}

/* SVG thermal zones */
.thermal-zone {
  opacity: 0;
  transition: opacity .8s ease;
  transition-delay: calc(var(--d, 0) * 1s);
}
.house-svg-container.active .thermal-zone {
  opacity: 1;
}

/* SVG annotations */
.house-annotation {
  opacity: 0;
  transform: translate(var(--ax, 0), var(--ay, 0));
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--d, 0) * 1s);
}
.house-svg-container.active .house-annotation {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── RESULTS GRID (Konkreter Nutzen) ──────────────────────── */
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.result-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}
.result-visual {
  width: 160px; height: 160px;
  margin: 0 auto 28px;
}
.result-visual svg { width: 100%; height: 100%; }
.result-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--text); margin-bottom: 12px;
  letter-spacing: -.01em;
}
.result-card p {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.6;
}

/* Animated ring */
.result-ring {
  transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1);
}
.result-card.visible .result-ring,
.result-card:is(.visible) .result-ring {
  stroke-dashoffset: 151 !important; /* 540 - 389 = ~72% of ring */
}

/* Animated arrow bounce */
.result-arrow-animate {
  animation: none;
}
.result-card.visible .result-arrow-animate {
  animation: arrowBounce 2s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── MANIFEST SECTION ─────────────────────────────────────── */
.manifest-section {
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.manifest-section::before {
  content: ''; position: absolute;
  bottom: -20%; right: -8%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,139,42,.08) 0%, transparent 55%);
  pointer-events: none;
  animation: glowFloat 18s ease-in-out infinite;
}
@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.06); }
}
.manifest-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifest-block .section-label-light {
  color: var(--amber);
}
.manifest-block .section-label-light::before {
  background: var(--amber);
}
.manifest-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 28px 0 32px;
}
.manifest-quote .break { display: block; }
.manifest-quote em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.manifest-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 40px;
}
.manifest-facts {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.manifest-fact {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text-2);
  font-weight: 500;
}
.manifest-fact .material-symbols-outlined {
  font-size: 20px; color: var(--amber);
}

/* ── ABOUT TEASER ─────────────────────────────────────────── */
.about-teaser-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 72px; align-items: center;
}
.about-teaser-img-wrapper {
  aspect-ratio: 4/5;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.about-teaser-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--text-3);
}
.about-teaser-placeholder .material-symbols-outlined {
  font-size: 56px;
}
.about-teaser-placeholder span:last-child {
  font-size: 13px;
}
.about-teaser-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-teaser-role {
  font-size: 14px; color: var(--amber);
  font-weight: 600; margin-bottom: 24px;
  letter-spacing: .04em; text-transform: uppercase;
}
.about-teaser-content p {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 18px;
}
.about-teaser-facts {
  display: flex; gap: 32px;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid var(--border);
}
.about-teaser-fact { text-align: left; }
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.02em;
}
.fact-label {
  font-size: 12px; color: var(--text-3);
  margin-top: 6px; letter-spacing: .04em;
  text-transform: uppercase; font-weight: 500;
  line-height: 1.35;
}

/* ── SPOTLIGHT EFFECT (cursor-tracked, global) ────────────── */
.spotlight-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,139,42,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .35s ease;
}

/* ── BLOG IMAGE PLACEHOLDER ───────────────────────────────── */
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-4);
}
.blog-img-placeholder .material-symbols-outlined {
  font-size: 42px;
}

/* ── V6 RESPONSIVE ADDITIONS ─────────────────────────────── */
@media (max-width: 1100px) {
  .warum-grid { gap: 48px; }
  .results-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .about-teaser-grid { gap: 48px; }
  .manifest-quote { font-size: clamp(28px, 4vw, 52px); }
}
@media (max-width: 780px) {
  .warum-grid,
  .about-teaser-grid { grid-template-columns: 1fr; gap: 36px; }
  .results-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-visual { width: 120px; height: 120px; margin-bottom: 20px; }
  .warum-stat-highlight { flex-direction: column; gap: 16px; align-items: flex-start; }
  .about-teaser-img-wrapper { max-width: 320px; margin: 0 auto; }
  .manifest-quote { font-size: clamp(24px, 6vw, 40px); }
  .manifest-facts { align-items: flex-start; }
  .about-teaser-facts { flex-wrap: wrap; gap: 24px; }
  .house-svg-container { padding: 20px 16px; }
}

/* ── V6 REDUCED MOTION ADDITIONS ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .draw-line { stroke-dashoffset: 0 !important; transition: none !important; }
  .thermal-zone { opacity: 1 !important; transition: none !important; }
  .house-annotation { opacity: 1 !important; transform: none !important; transition: none !important; }
  .result-ring { stroke-dashoffset: 151 !important; transition: none !important; }
  .result-arrow-animate { animation: none !important; }
  .manifest-section::before { animation: none; }
  .spotlight-glow { display: none; }
}

/* ── ARTICLE (Blog Post) ─────────────────────────────────── */
/* Master-Grid: Hero, Body und Footer alle auf der gleichen Content-Spalte (rechts);
   TOC sticky links — spannt über die ganze Artikel-Höhe und scrollt mit. */
.article-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 800px);
  grid-template-areas:
    "toc hero"
    "toc body"
    "toc footer";
  gap: 0 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.article-hero {
  grid-area: hero;
  padding: 160px 0 32px;
  border-bottom: 1px solid var(--border);
}
.article-breadcrumb {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.article-breadcrumb a { color: var(--text-3); transition: color .2s; text-decoration: none; }
.article-breadcrumb a:hover { color: var(--amber); }
.article-breadcrumb .sep { color: var(--text-4); }

.article-meta {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
/* .blog-tag ist im Card-Image absolut positioniert; im Article-Header inline */
.article-meta .blog-tag { position: static; }
.article-meta-text {
  font-family: var(--font-body);
  font-size: 13px; color: var(--text-3);
  font-weight: 500;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 28px;
  text-wrap: balance;
}
.article-title em {
  font-style: italic; font-weight: 400; color: var(--amber);
  font-family: var(--font-italic);
}
.article-dek {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 40px;
}
.article-byline {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.article-byline-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--amber-deep);
}

.article-toc {
  grid-area: toc;
  align-self: start;
  position: sticky;
  top: 100px;
  font-family: var(--font-body);
  margin-top: 160px;
}
.article-toc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 14px;
}
.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--border);
}
.article-toc li { margin: 0; }
.article-toc a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-3);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color .15s, border-color .15s;
}
.article-toc a:hover { color: var(--text); }
.article-toc a.is-active {
  color: var(--text);
  border-left-color: var(--amber);
  font-weight: 500;
}

.article-body {
  grid-area: body;
  padding: 80px 0;
}
.article-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 22px;
}
.article-body p.lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(19px, 1.6vw, 22px);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 36px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: 64px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -.015em;
}
.article-body blockquote {
  margin: 48px -40px;
  padding: 32px 40px;
  border-left: 3px solid var(--amber);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -.015em;
  text-wrap: balance;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 28px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}
.article-body strong { font-weight: 600; color: var(--text); }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.article-body a:hover { color: var(--amber-deep); }
.article-body hr {
  border: none;
  margin: 56px auto;
  max-width: 100px;
  border-top: 1px solid var(--border-strong);
}

.article-footer {
  grid-area: footer;
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
}
.article-footer-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Next Article / Back link */
.article-next {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.article-next-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.article-next-label::before {
  content: ''; width: 24px; height: 1px; background: var(--amber);
}
.article-next-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  text-wrap: balance;
  transition: color .2s;
}
.article-next:hover .article-next-title { color: var(--amber); }
.article-next-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Article responsive */
@media (max-width: 720px) {
  .article-body blockquote { margin: 40px 0; padding: 24px; }
  .article-body { padding: 56px 0; }
  .article-hero { padding: 120px 0 48px; }
  .article-footer { padding: 32px 0 56px; }
}

/* Mobile/Tablet: TOC ausblenden, Content voll-Breite */
@media (max-width: 980px) {
  .article-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "body"
      "footer";
    max-width: 800px;
    gap: 0;
  }
  .article-toc { display: none; }
}

/* Sprungmarken-Versatz wegen sticky Nav */
.article-body h2[id] { scroll-margin-top: 100px; }

/* ── LEISTUNG-SVG (Animationen auf Unterseiten) ──────────── */
.leistung-visual {
  aspect-ratio: 4/3;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 25%, var(--amber-soft) 0%, transparent 60%);
  pointer-events: none;
  opacity: .5;
}
.leistung-visual {
  contain: layout paint;
}
.leistung-visual .leistung-svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.leistung-visual.active .draw-line { stroke-dashoffset: 0; }
.leistung-svg-eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  fill: var(--text-3);
}

/* iSFP-Scene */
.isfp-step {
  opacity: 0;
  transition: opacity .5s ease;
  transition-delay: calc(var(--d, 0) * 1s);
}
.isfp-scene.active .isfp-step { opacity: 1; }
.isfp-step-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  fill: var(--text);
}
.isfp-bar {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  transition: transform .6s cubic-bezier(.3,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.isfp-scene.active .isfp-bar { transform: scaleY(1); }
.isfp-cls text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  fill: var(--text-2);
}
.isfp-arrowtip {
  opacity: 0;
  transition: opacity .2s ease;
  transition-delay: .75s;
}
.isfp-scene.active .isfp-arrowtip { opacity: 1; }
/* Linie und Pfeilspitze müssen identisch interpolieren → linear */
.isfp-path.draw-line {
  transition: stroke-dashoffset 1.2s linear;
  transition-delay: calc(var(--d, 0) * 1s);
}
.isfp-badge {
  opacity: 0;
  transition: opacity .55s ease;
  transition-delay: calc(var(--d, 0) * 1s);
}
.isfp-scene.active .isfp-badge { opacity: 1; }
.isfp-badge-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Lüftung-Scene */
.lueftung-house,
.lueftung-furniture {
  opacity: 0;
  transition: opacity .5s ease;
  transition-delay: calc(var(--d, 0) * 1s);
}
/* Möbel dünner als Hauskontur → Hierarchie:
   Hülle (1.5) > Strömung (2.5) > Möbel (0.9) */
.lueftung-furniture * {
  stroke-width: 0.9;
}
.lueftung-scene.active .lueftung-house { opacity: 1; }
.lueftung-scene.active .lueftung-furniture { opacity: 1; }

.lueftung-wt {
  opacity: 0;
  transform: scale(.9);
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
  transition: opacity .5s ease, transform .5s cubic-bezier(.3,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.lueftung-scene.active .lueftung-wt {
  opacity: 1;
  transform: scale(1);
}
.lueftung-wt-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  fill: var(--text-2);
}
.lueftung-roof-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .04em;
  fill: var(--text-3);
}

.lueftung-stream.draw-line {
  transition: stroke-dashoffset var(--dur, .9s) linear;
  transition-delay: calc(var(--d, 0) * 1s);
}

.lueftung-bubble {
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
  transition: opacity .55s ease, transform .55s cubic-bezier(.3,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.lueftung-scene.active .lueftung-bubble {
  opacity: 1;
  transform: translateY(0);
}
.lueftung-bubble-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ── TIMELINE (Werdegang) ─────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.3,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline.active .timeline-item {
  opacity: 1;
  transform: translateY(0);
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.timeline-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-icon .material-symbols-outlined {
  font-size: 20px;
  color: var(--amber);
}
/* Akzent für aktuellen Status („Heute") */
.timeline-icon--accent {
  background: var(--amber);
  border-color: var(--amber);
}
.timeline-icon--accent .material-symbols-outlined {
  color: #FFFFFF;
}
/* Verbindungslinie: absolute positioniert vom unteren Rand des Icons
   bis kurz vor das nächste Icon — symmetrische 8px-Lücken oben/unten. */
.timeline-line {
  position: absolute;
  left: 21.5px;        /* horizontale Mitte des 44px-Icons */
  top: 52px;           /* 8px unter Icon (Icon endet bei y=44) */
  bottom: 8px;         /* 8px vor dem nächsten Icon */
  width: 1px;
  background: rgba(26,34,32,.15);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: calc((var(--d, 0) + .25) * 1s);
}
.timeline.active .timeline-line { transform: scaleY(1); }
.timeline-content { padding-top: 10px; }
.timeline-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .isfp-bar, .isfp-step, .isfp-badge, .isfp-arrowtip,
  .lueftung-house, .lueftung-furniture, .lueftung-wt, .lueftung-bubble,
  .timeline-item, .timeline-line {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  .nav, .footer, .cta-banner, .hero-actions, .form-card, .hero-thermal,
  .manifest-section, .badge-banner { display: none; }
  a { color: #000; text-decoration: underline; }
  * { color: #000 !important; background: #fff !important; }
}
