/* ============================================================
   HERZWERK-ACADEMY · Zentrales Stylesheet
   ------------------------------------------------------------
   Aufbau:
   01 · Fonts (lokal, DSGVO-sauber)
   02 · Design-Tokens (Farben, Typo, Abstände — 8px-Grid)
   03 · Base / Reset
   04 · Typografie-Klassen
   05 · Buttons (immer Pill)
   06 · Layout-Utilities
   07 · Navigation + Mobile-Menü
   08 · Hero
   09 · Sektionen & Komponenten (Cards, Stats, Listen …)
   10 · Formulare
   11 · Footer
   12 · Animationen / Reveals
   13 · Landingpage-Bausteine (Conversion-Seiten)
   14 · Responsive
   15 · Reduced Motion
   ============================================================ */


/* ── 01 · FONTS ──────────────────────────────────────────── */
@font-face {
  font-family: 'Urbanist';
  src: url('/fonts/Urbanist-VariableFont_wght.woff2') format('woff2-variations'),
       url('/fonts/Urbanist-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('/fonts/Urbanist-Italic-VariableFont_wght.woff2') format('woff2-variations'),
       url('/fonts/Urbanist-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-VariableFont.woff2') format('woff2-variations'),
       url('/fonts/DMSans-VariableFont.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Italic-VariableFont.woff2') format('woff2-variations'),
       url('/fonts/DMSans-Italic-VariableFont.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('/fonts/Caveat-VariableFont.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}


/* ── 02 · TOKENS ─────────────────────────────────────────── */
:root {
  /* Farben */
  --hw-brand:   #1C3A5E;   /* Markenblau   */
  --hw-action:  #2A5F8F;   /* Aktionsblau  */
  --hw-white:   #FFFFFF;
  --hw-slate:   #4D6580;   /* Schiefer     */
  --hw-amber:   #C9975A;   /* Bernstein    */
  --hw-night:   #0B1929;   /* Tiefe Nacht  */
  --hw-snow:    #F4F7FA;   /* Eisweiß      */
  --hw-line:    #DDE6EF;   /* Hairlines    */

  --hw-fg-soft:        #8FA3B8;
  --hw-on-dark-muted:  rgba(255,255,255,0.60);
  --hw-on-dark-faint:  rgba(255,255,255,0.38);
  --hw-line-dark:      rgba(255,255,255,0.12);

  /* Typografie */
  --hw-font-display: 'Urbanist', system-ui, sans-serif;
  --hw-font-body:    'DM Sans', system-ui, sans-serif;
  --hw-font-accent:  'Caveat', 'Brush Script MT', cursive;

  /* Abstände — 8px-Grid */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 48px;  --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;

  /* Radius */
  --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-pill: 999px;

  /* Schatten */
  --sh-md: 0 4px 12px rgba(28,58,94,0.06);
  --sh-lg: 0 8px 32px rgba(28,58,94,0.08);
  --sh-xl: 0 24px 60px rgba(28,58,94,0.12);

  /* Bewegung */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  /* Layout */
  --container: 1200px;
  --pad-x: 24px;
  --nav-h: 72px;
}
@media (min-width: 760px) { :root { --pad-x: 48px; } }


/* ── 03 · BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--hw-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hw-slate);
  background: var(--hw-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hw-action); text-decoration: none; transition: color var(--dur-base) var(--ease); }
p a:hover, li a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--hw-amber); color: #fff; }
:focus-visible { outline: 3px solid rgba(42,95,143,0.45); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; top: 0; left: 0; z-index: 200;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
  background: var(--hw-brand); color: #fff; padding: 0; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus {
  width: auto; height: auto; overflow: visible;
  clip: auto; clip-path: none; padding: 12px 24px;
}


/* ── 04 · TYPOGRAFIE ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--hw-font-display);
  color: var(--hw-brand);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 7.2vw, 84px); font-weight: 800; line-height: 0.98; letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 4vw, 44px);   font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: clamp(21px, 2.4vw, 25px); font-weight: 600; line-height: 1.2;  letter-spacing: -0.025em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p  { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--hw-brand); }

.lead  { font-size: clamp(17px, 1.6vw, 19px); line-height: 1.65; }
.small { font-size: 14px; line-height: 1.6; }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hw-amber);
  margin-bottom: var(--sp-3);
}
.label--slate { color: var(--hw-slate); }

.caveat {
  font-family: var(--hw-font-accent);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.3;
  color: var(--hw-brand);
}
.signature {
  font-family: var(--hw-font-accent);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--hw-brand);
}
/* Echte Namens-Signatur (Bilddatei aus dem Logo-Lockup):
   signatur-brand.png (helle Flächen) · signatur-white.png / signatur-amber.png (dunkle Flächen) */
.sig-img { height: 56px; width: auto; display: block; }
.sig-img--sm { height: 40px; }

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p, .on-dark .lead { color: var(--hw-on-dark-muted); }
.on-dark .caveat, .on-dark .signature { color: rgba(255,255,255,0.85); }

.amber { color: var(--hw-amber); }


/* ── 05 · BUTTONS — immer Pill ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--hw-font-body);
  font-weight: 500; font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .arr { display: inline-block; transition: transform var(--dur-base) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--primary { background: var(--hw-brand); color: #fff; }
.btn--primary:hover { background: var(--hw-night); }

/* Hinweis: Brand Book sieht Weiß auf Bernstein vor — bewusst auf Tiefe Nacht
   geändert, damit der Kontrast WCAG AA erfüllt (2,6:1 → 6,5:1). */
.btn--amber { background: var(--hw-amber); color: var(--hw-night); font-weight: 600; }
.btn--amber:hover { background: #B58348; color: var(--hw-night); }
.btn--amber .arr { color: var(--hw-night); }

.btn--secondary { background: transparent; color: var(--hw-brand); border-color: var(--hw-brand); }
.btn--secondary:hover { background: var(--hw-snow); }

.btn--ghost { background: transparent; color: var(--hw-brand); border-color: var(--hw-line); }
.btn--ghost:hover { border-color: var(--hw-brand); }

.btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn--ghost-dark:hover { border-color: rgba(255,255,255,0.7); }

.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; }

.text-link {
  font-weight: 500; color: var(--hw-action);
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-bottom-color: currentColor; }


/* ── 06 · LAYOUT ─────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: 880px; }
.container--text { max-width: 720px; }

.section { padding: var(--sp-8) 0; }
.section--snow { background: var(--hw-snow); }
.section--dark { background: var(--hw-night); position: relative; overflow: hidden; }
@media (min-width: 900px) { .section { padding: var(--sp-9) 0; } }

/* Dezente Radial-Glows auf dunklen Flächen */
.glow::before, .glow::after {
  content: ''; position: absolute; pointer-events: none; border-radius: 50%;
}
.glow::before {
  top: -220px; right: -180px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(42,95,143,0.32) 0%, transparent 68%);
}
.glow::after {
  bottom: -200px; left: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,151,90,0.13) 0%, transparent 68%);
}

.divider { height: 1px; background: var(--hw-line); border: 0; margin: 0; }

.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
/* Kleines Linien-Detail vor Sektions-Labels (nicht bei zentrierten Köpfen) */
.section-head:not(.section-head--center) .label::before,
.grid-2 > div > .label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: var(--hw-amber); opacity: 0.7;
  vertical-align: middle; margin-right: 12px;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}


/* ── 07 · NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.nav-logo { display: block; position: relative; height: 40px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; transition: opacity var(--dur-slow) var(--ease); }
.nav-logo .logo-light { position: absolute; inset: 0; opacity: 1; }
.nav-logo .logo-dark  { opacity: 0; }

.nav-links { display: none; list-style: none; margin: 0; padding: 0; align-items: center; gap: var(--sp-5); }
.nav-links a:not(.btn) {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: color var(--dur-base) var(--ease);
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] { color: #fff; }

/* Nach dem Scrollen: heller Glas-Zustand */
.nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--hw-line);
}
.nav.is-scrolled .nav-logo .logo-light { opacity: 0; }
.nav.is-scrolled .nav-logo .logo-dark  { opacity: 1; }
.nav.is-scrolled .nav-links a:not(.btn) { color: var(--hw-slate); }
.nav.is-scrolled .nav-links a:not(.btn):hover,
.nav.is-scrolled .nav-links a:not(.btn)[aria-current="page"] { color: var(--hw-brand); }

/* Variante für helle Seiten ohne dunklen Hero */
.nav--solid { background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom-color: var(--hw-line); }
.nav--solid .nav-logo .logo-light { opacity: 0; }
.nav--solid .nav-logo .logo-dark  { opacity: 1; }
.nav--solid .nav-links a:not(.btn) { color: var(--hw-slate); }
.nav--solid .nav-links a:not(.btn):hover,
.nav--solid .nav-links a:not(.btn)[aria-current="page"] { color: var(--hw-brand); }

/* Burger */
.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; width: 24px; border-radius: 2px;
  background: #fff;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease), background var(--dur-slow) var(--ease);
}
.nav.is-scrolled .nav-burger span, .nav--solid .nav-burger span { background: var(--hw-brand); }
body.menu-open .nav-burger span { background: #fff !important; }
/* Bei offenem Menü: Nav immer im dunklen Zustand, egal wie weit gescrollt */
body.menu-open .nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
}
body.menu-open .nav .logo-light { opacity: 1 !important; }
body.menu-open .nav .logo-dark  { opacity: 0 !important; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* Mobile-Menü: Vollbild, Tiefe Nacht */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--hw-night);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-8) var(--pad-x) var(--sp-6);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility 0s linear var(--dur-slow);
  overflow: hidden;
}
.mobile-menu::after {
  content: ''; position: absolute; bottom: -180px; right: -140px; width: 480px; height: 480px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(201,151,90,0.14) 0%, transparent 68%);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity var(--dur-slow) var(--ease); }
body.menu-open { overflow: hidden; }

.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li + li { margin-top: var(--sp-3); }
.mobile-menu a:not(.btn) {
  font-family: var(--hw-font-display);
  font-size: clamp(32px, 8vw, 44px); font-weight: 700; letter-spacing: -0.025em;
  color: #fff;
}
.mobile-menu a:not(.btn):hover { color: var(--hw-amber); }
.mobile-menu .mobile-menu-cta { margin-top: var(--sp-6); }
.mobile-menu li {
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
body.menu-open .mobile-menu li { opacity: 1; transform: none; }
body.menu-open .mobile-menu li:nth-child(1) { transition-delay: 60ms; }
body.menu-open .mobile-menu li:nth-child(2) { transition-delay: 110ms; }
body.menu-open .mobile-menu li:nth-child(3) { transition-delay: 160ms; }
body.menu-open .mobile-menu li:nth-child(4) { transition-delay: 210ms; }
body.menu-open .mobile-menu li:nth-child(5) { transition-delay: 260ms; }


/* ── 08 · HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--hw-night);
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: 62% 35%;             /* Richtung des beleuchteten Gipfels */
  animation: kenburns 26s var(--ease) both;
}
@keyframes kenburns {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
/* Scrim: links lesbar, unten nahtlos in Tiefe Nacht */
.hero-scrim { position: absolute; inset: 0; }
.hero-scrim::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,25,41,0.92) 18%, rgba(11,25,41,0.55) 55%, rgba(11,25,41,0.28) 100%);
}
.hero-scrim::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(to bottom, rgba(11,25,41,0) 0%, rgba(11,25,41,0.85) 62%, var(--hw-night) 100%);
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; }
.hero-glow::after {
  content: ''; position: absolute; bottom: -160px; left: -100px; width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,90,0.12) 0%, transparent 68%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  width: 100%;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + var(--sp-5));
  padding-bottom: var(--sp-5);
}
@media (min-width: 900px) {
  .hero-inner { padding-top: calc(var(--nav-h) + var(--sp-7)); padding-bottom: var(--sp-6); }
}
.hero h1 { color: #fff; max-width: 880px; margin-bottom: var(--sp-5); }
.hero .hero-sub {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--hw-on-dark-muted);
  max-width: 560px;
  margin-bottom: var(--sp-5);
}
@media (min-width: 900px) { .hero .hero-sub { margin-bottom: var(--sp-6); } }
.hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
/* Auf schmalen Screens: Hero-CTAs vollbreit, lange Labels dürfen umbrechen,
   damit kein Button-Text über den Rand läuft. */
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; white-space: normal; }
}

/* Sternenhimmel auf dunklen Flächen (Canvas wird per JS eingefügt) */
.stars-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero .stars-canvas { z-index: 1; }   /* über dem Scrim, unter dem Inhalt */

/* „Licht folgt Dir": Der Hero-Canvas zeichnet Sterne, einen warmen
   Lichthof am Mauszeiger und Sternschnuppen. Screen-Blend lässt das
   Licht das Bergfoto darunter tatsächlich aufhellen. */
.hero .stars-canvas, .page-hero .stars-canvas { mix-blend-mode: screen; }

/* Kleiner runder Status-Badge im Hero (z. B. „Mit Björn Fischer · Start …") */
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start;            /* nicht über die volle Hero-Breite strecken */
  padding: 7px 20px 7px 7px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 14px; font-weight: 500; color: #fff;
  margin-bottom: var(--sp-4);
  box-shadow: var(--sh-md);
}
.hero-badge .ava {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--hw-amber); flex-shrink: 0;
}
.hero-badge.no-ava { padding: 8px 16px 8px 13px; }
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hw-amber);
  box-shadow: 0 0 0 0 rgba(201,151,90,0.55);
  animation: badgePulse 2.4s var(--ease) infinite;
}
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,151,90,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201,151,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,151,90,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-badge .dot { animation: none; } }

/* „Über mich" auf den Landingpages nutzt denselben rechteckigen
   Rahmen wie die Startseite (.portrait-frame). */

/* Hero-Inhalt gleitet beim Wegscrollen sanft nach unten weg (JS) */
.hero-inner { will-change: transform, opacity; }

/* Zeilen-Reveal der Headline */
/* Reveal-Maske: padding-bottom schafft Raum für Unterlängen (g, ß, y),
   das negative margin-bottom hält die optische Zeilenhöhe konstant. */
.line-reveal { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.line-reveal > span {
  display: block;
  transform: translateY(125%);
  animation: lineUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes lineUp { to { transform: translateY(0); } }

/* Eintritt von Label, Sub, CTA */
.hero-fade {
  opacity: 0; transform: translateY(14px);
  animation: heroFade 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes heroFade { to { opacity: 1; transform: none; } }

/* Beweisleiste unten im Hero */
.hero-proof {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  width: 100%;
}
.hero-proof-inner {
  border-top: 1px solid var(--hw-line-dark);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-5);
  padding: var(--sp-5) 0 var(--sp-6);
}
.proof-item .num {
  font-family: var(--hw-font-display);
  font-weight: 800; font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em; line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: var(--sp-2);
}
.proof-item .num .suffix { color: var(--hw-amber); }
.proof-item .cap { font-size: 13px; color: var(--hw-on-dark-faint); line-height: 1.45; }
@media (min-width: 760px) {
  .hero-proof-inner { grid-template-columns: repeat(4, 1fr); }
}


/* ── 09 · SEKTIONEN & KOMPONENTEN ────────────────────────── */

/* Editorial-Statement mit Wort-Reveal */
.statement {
  font-family: var(--hw-font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600; line-height: 1.25; letter-spacing: -0.025em;
  color: var(--hw-brand);
  text-wrap: balance;
  margin: 0;
}
.statement .w { opacity: 0.12; transition: opacity 0.5s var(--ease); }
.statement .w.is-on { opacity: 1; }
.statement .hl { color: var(--hw-amber); }

/* Bild-Karten */
.img-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, var(--hw-night), var(--hw-brand));
}
.img-card img { width: 100%; height: 100%; object-fit: cover; }

/* Parallax-Wrapper: das innere Bild ist höher und wird sanft verschoben */
.parallax { overflow: hidden; border-radius: var(--r-xl); }
.parallax img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }

/* Überlappende Stat-Card auf Bildern */
.media-stack { position: relative; }
.media-stack .float-card {
  position: absolute; right: -8px; bottom: 24px;
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: var(--sp-4) var(--sp-5);
  max-width: 280px;
}
.float-card .num {
  font-family: var(--hw-font-display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--hw-brand); display: block; margin-bottom: 4px;
}
.float-card .cap { font-size: 13px; color: var(--hw-slate); line-height: 1.5; }
@media (min-width: 900px) { .media-stack .float-card { right: -32px; bottom: 40px; } }

/* Handwerk-Liste (editorial, kein Card-Grid) */
.craft-list { list-style: none; margin: 0; padding: 0; }
.craft-item {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-2) var(--sp-6);
  padding: var(--sp-5) var(--sp-3);
  border-top: 1px solid var(--hw-line);
  position: relative;
  transition: background var(--dur-base) var(--ease);
}
.craft-item:last-child { border-bottom: 1px solid var(--hw-line); }
.craft-item::before {
  content: ''; position: absolute; left: 0; top: -1px; bottom: -1px; width: 3px;
  background: var(--hw-amber); border-radius: 999px;
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur-slow) var(--ease);
}
.craft-item:hover { background: #fff; }
.craft-item:hover::before { transform: scaleY(1); }
.craft-num {
  font-family: var(--hw-font-display); font-weight: 800;
  font-size: 15px; letter-spacing: 0.06em;
  color: var(--hw-fg-soft);
  transition: color 0.7s var(--ease) 0.25s, text-shadow 0.7s var(--ease) 0.25s;
}
/* Die Nummern „glimmen auf", sobald die Zeile in den Blick scrollt */
.craft-item.is-in .craft-num {
  color: var(--hw-amber);
  text-shadow: 0 0 18px rgba(201,151,90,0.45);
}
.craft-item h3 { margin-bottom: var(--sp-2); }
.craft-item p { max-width: 560px; margin: 0; font-size: 15px; }
@media (min-width: 760px) {
  .craft-item { grid-template-columns: 80px 280px 1fr; align-items: baseline; padding: var(--sp-6) var(--sp-4); }
  .craft-item h3 { margin: 0; }
}

/* Angebots-Cards */
.offer-card {
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--dur-base) var(--ease);
}
.offer-card:hover { box-shadow: var(--sh-lg); }
.offer-card .bar {
  height: 3px; width: 48px; border-radius: 999px;
  background: var(--hw-brand);
  margin-bottom: var(--sp-4);
  transition: width var(--dur-slow) var(--ease);
}
.offer-card:hover .bar { width: 96px; }
.offer-card .bar--amber { background: var(--hw-amber); }
.offer-card .bar--action { background: var(--hw-action); }
.offer-card h3 { margin-bottom: var(--sp-3); }
.offer-card p { font-size: 15px; }
.offer-card .price {
  font-family: var(--hw-font-display); font-weight: 700; font-size: 26px;
  letter-spacing: -0.02em; color: var(--hw-brand);
  margin: var(--sp-4) 0;
}
.offer-card .price small { font-family: var(--hw-font-body); font-size: 14px; font-weight: 300; color: var(--hw-slate); letter-spacing: 0; }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* Hervorgehobene dunkle Card (Zirkel) */
.offer-card--dark {
  background: var(--hw-night); border-color: var(--hw-night);
  overflow: hidden;
}
.offer-card--dark::after {
  content: ''; position: absolute; top: -120px; right: -120px; width: 320px; height: 320px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(201,151,90,0.16) 0%, transparent 68%);
}
.offer-card--dark h3, .offer-card--dark .price { color: #fff; }
.offer-card--dark p { color: var(--hw-on-dark-muted); }
.offer-card--dark .price small { color: var(--hw-on-dark-faint); }
.offer-badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--hw-night); background: var(--hw-amber);
  padding: 6px 14px; border-radius: var(--r-pill);
}

/* Portrait mit versetztem Rahmen */
.portrait-frame { position: relative; max-width: 480px; }
.portrait-frame::before {
  content: ''; position: absolute; inset: 16px -12px -12px 16px;
  border: 1px solid var(--hw-amber); border-radius: var(--r-xl);
  opacity: 0.5; pointer-events: none;
}
@media (min-width: 900px) {
  .portrait-frame::before { inset: 24px -24px -24px 24px; }
}
.portrait-frame img { position: relative; border-radius: var(--r-xl); }

/* Testimonial */
.quote { position: relative; text-align: center; max-width: 840px; margin: 0 auto; }
.quote .mark {
  font-family: var(--hw-font-display);
  font-size: 140px; font-weight: 800; line-height: 0;
  color: var(--hw-amber); opacity: 0.25;
  display: block; height: 56px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--hw-font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600; line-height: 1.3; letter-spacing: -0.02em;
  color: var(--hw-brand);
  text-wrap: balance;
}
.quote figcaption { margin-top: var(--sp-4); font-size: 14px; color: var(--hw-slate); }

/* Checkliste mit Pfeil-Glyphe */
.check-list { list-style: none; margin: 0 0 var(--sp-5); padding: 0; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: var(--sp-3);
  font-size: 16px;
}
.check-list li::before {
  content: '→'; position: absolute; left: 0; top: 0;
  color: var(--hw-amber); font-weight: 500;
}
.on-dark .check-list li { color: var(--hw-on-dark-muted); }

/* Chips */
.chip {
  display: inline-block; font-size: 13px; font-weight: 400;
  padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--hw-line); color: var(--hw-slate);
}
.on-dark .chip { border-color: var(--hw-line-dark); color: var(--hw-on-dark-muted); }


/* ── 10 · FORMULARE ──────────────────────────────────────── */
.field { margin-bottom: var(--sp-4); }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--hw-brand); margin-bottom: var(--sp-2);
}
.field input[type="text"], .field input[type="email"],
.field select, .field textarea {
  width: 100%;
  font-family: var(--hw-font-body); font-size: 16px; font-weight: 300;
  color: var(--hw-brand);
  background: #fff;
  border: 1px solid var(--hw-line); border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--hw-action);
  box-shadow: 0 0 0 3px rgba(42,95,143,0.15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field--check { display: flex; gap: 12px; align-items: flex-start; }
.field--check input { margin-top: 5px; accent-color: var(--hw-brand); width: 16px; height: 16px; flex-shrink: 0; }
.field--check label { font-size: 13px; font-weight: 300; color: var(--hw-slate); margin: 0; }
.form-hint { font-size: 13px; color: var(--hw-fg-soft); }

/* Honeypot unsichtbar */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }


/* ── 11 · FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--hw-night);
  padding: var(--sp-8) 0 var(--sp-5);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--hw-line-dark);
}
.footer::after {
  content: ''; position: absolute; top: -240px; right: -200px; width: 560px; height: 560px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(42,95,143,0.22) 0%, transparent 68%);
}
.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: 14px; color: var(--hw-on-dark-faint); max-width: 320px; }
.footer .footer-head {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--hw-font-body);
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: var(--sp-2); }
.footer ul a { font-size: 14px; color: var(--hw-on-dark-muted); }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid var(--hw-line-dark);
  padding-top: var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 13px; color: var(--hw-on-dark-faint); }
.footer-sig { font-family: var(--hw-font-accent); font-weight: 600; font-size: 26px; color: var(--hw-amber); }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-6); }
}


/* ── 12 · REVEALS (Scroll-Eintritte) ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Stagger-Hilfen */
.d1 { --d: 90ms; } .d2 { --d: 180ms; } .d3 { --d: 270ms; } .d4 { --d: 360ms; }


/* Unterseiten-Hero: kompakter dunkler Kopf */
.page-hero {
  background: var(--hw-night);
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + var(--sp-7)) 0 var(--sp-7);
}
@media (min-width: 900px) {
  .page-hero { padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-8); }
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 60px); max-width: 800px; }
.page-hero p { color: var(--hw-on-dark-muted); max-width: 640px; }

/* Anker unter der fixen Navigation freihalten */
[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* Liste „nicht für Dich" */
.cross-list { list-style: none; margin: 0 0 var(--sp-5); padding: 0; }
.cross-list li {
  position: relative; padding-left: 32px; margin-bottom: 16px;
  font-size: 16px;
}
.cross-list li::before {
  content: '—'; position: absolute; left: 0; top: 0;
  color: var(--hw-fg-soft); font-weight: 500;
}

/* Schmale Inhaltsspalte für Rechtstexte */
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 28px); margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-5); }
.prose ul { color: var(--hw-slate); padding-left: 20px; }
.prose li { margin-bottom: var(--sp-2); }

/* Platzhalter-Markierung für Impressum/Datenschutz */
.todo-mark { background: rgba(201,151,90,0.16); border-radius: 4px; padding: 0 4px; }


/* ── 13 · LANDINGPAGE-BAUSTEINE ──────────────────────────── */
.lp-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: var(--sp-4) 0;
}
.lp-nav .nav-inner { height: auto; }
.lp-nav img { height: 40px; width: auto; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(11,25,41,0.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--hw-line-dark);
  padding: 12px var(--pad-x);
  display: flex; align-items: center; justify-content: center; gap: var(--sp-4);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .sticky-text { display: none; font-size: 14px; color: var(--hw-on-dark-muted); }
.sticky-cta .sticky-text strong { color: #fff; font-weight: 500; }
@media (min-width: 760px) {
  .sticky-cta { justify-content: space-between; }
  .sticky-cta .sticky-text { display: block; }
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hw-line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) 0;
  font-family: var(--hw-font-display); font-weight: 600; font-size: 17px;
  color: var(--hw-brand);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-family: var(--hw-font-display); font-size: 22px; font-weight: 400;
  color: var(--hw-amber);
  transition: transform var(--dur-base) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 var(--sp-4); max-width: 680px; font-size: 15px; }

.price-card {
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column;
  position: relative;
}
.price-card--featured { border-color: var(--hw-brand); box-shadow: var(--sh-xl); }
.price-card .price-tag {
  font-family: var(--hw-font-display); font-weight: 800; font-size: 44px;
  letter-spacing: -0.025em; color: var(--hw-brand); line-height: 1;
  margin: var(--sp-3) 0 var(--sp-1);
}
.price-card .price-note { font-size: 13px; color: var(--hw-fg-soft); margin-bottom: var(--sp-4); }
.price-card .price-strike { text-decoration: line-through; color: var(--hw-fg-soft); font-size: 20px; font-weight: 400; margin-right: 8px; }


/* ── 14 · KLEINE HELFER ──────────────────────────────────── */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }


/* ── 15 · REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { animation: none; transform: none; }
  .line-reveal > span { transform: none; animation: none; }
  .hero-fade { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
  .statement .w { opacity: 1; }
  .parallax img { transform: none !important; height: 100%; }
  .hero-inner { transform: none !important; opacity: 1 !important; }
}
