/* =========================================================
   fit2aligned.com — Design System v1 (Prototyp)
   Warm Cream · Deep Earth · Antique Gold · Terracotta · Forest
   ========================================================= */

/* Fonts werden in functions.php via wp_enqueue_style geladen — kein @import hier
   (vermeidet doppelten Request + render-blocking auf dem Critical Path). */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Farben */
  --bg:         #f5efe4;   /* Warm Cream */
  --bg-soft:    #ede4d3;   /* Soft Sand */
  --card:       #fbf7ee;   /* Card Cream */
  --ink:        #2a241c;   /* Deep Earth (Logo) */
  --ink-2:      #3d3830;
  --ink-3:      #6b6357;
  --ink-4:      #a89e8d;
  --line:       rgba(42, 36, 28, 0.09);
  --line-2:     rgba(42, 36, 28, 0.16);

  --accent:       #b85b3c;   /* Terracotta (primärer Akzent) */
  --accent-hi:    #c96a4a;
  --accent-deep:  #8d3f25;
  --gold:         #b8924a;   /* Antique Gold (Logo) */
  --gold-hi:      #c8a456;
  --forest:       #2f4a3a;   /* B2B Deep Forest */
  --forest-hi:    #3d6049;
  --forest-deep:  #1f2a23;   /* Tiefster Forest fuer dunkle Sektionen / Gradients */

  /* Light-on-Dark Palette (B2B-Sektion, CTA-Block, Status-Banner) */
  --bg-on-dark:   #fbf7ee;   /* Cream auf dunklem Hintergrund */
  --ink-on-dark:  #d4cfc1;   /* Sand auf dunklem Hintergrund */

  /* Schatten */
  --shadow:        0 1px 2px rgba(42, 36, 28, 0.04), 0 8px 24px rgba(42, 36, 28, 0.06);
  --shadow-lg:     0 2px 4px rgba(42, 36, 28, 0.04), 0 24px 48px rgba(42, 36, 28, 0.08);
  --shadow-accent: 0 8px 24px rgba(184, 91, 60, 0.25);
  --shadow-soft:   0 6px 20px rgba(42, 36, 28, 0.10);

  /* Bewegung */
  --ease:  cubic-bezier(.2, .8, .2, 1);
  --dur:   .35s;
  --dur-2: .6s;

  /* Typo */
  --font:  'Inter', system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --serif: 'Fraunces', Georgia, serif;

  /* Radien */
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 300;
  text-decoration: none; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { left: 8px; }

/* ----- Scroll-Progress (oben, dünn, golden) ----- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: linear-gradient(90deg, var(--gold-hi), var(--accent));
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform .1s linear;
  pointer-events: none;
}

/* ----- Hintergrund-Deko (sehr dezent, langsam atmend) ----- */
.bg-deco { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-deco::before, .bg-deco::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(140px);
  will-change: transform, opacity;
}
.bg-deco::before {
  width: 60vw; height: 60vw; left: -12%; top: -10%;
  background: radial-gradient(circle, rgba(184,91,60,0.18), transparent 60%);
  opacity: .5;
  animation: breathe1 18s ease-in-out infinite;
}
.bg-deco::after {
  width: 55vw; height: 55vw; right: -12%; top: 35%;
  background: radial-gradient(circle, rgba(47,74,58,0.14), transparent 60%);
  opacity: .45;
  animation: breathe2 38s ease-in-out infinite;
}
.bg-deco::before { animation-duration: 32s; }
@keyframes breathe1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .42; }
  50%      { transform: translate3d(1.5%, -2%, 0) scale(1.05); opacity: .52; }
}
@keyframes breathe2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .38; }
  50%      { transform: translate3d(-1.5%, 1.5%, 0) scale(1.06); opacity: .48; }
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 5; }
section { position: relative; z-index: 5; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 16px;
  transition: top var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav.hidden { transform: translateY(-120%); }
.nav-inner {
  display: flex; align-items: center; gap: 6px;
  background: rgba(251, 247, 238, 0.85);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 7px 7px 16px;
  box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: 14px; }
.brand-mark { height: 28px; width: 28px; }
.brand-text {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em;
}
.brand-text b { color: var(--gold); font-weight: 600; font-style: italic; }

.nav-links { display: flex; gap: 2px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--ink-2); font-size: .88rem; font-weight: 500;
  padding: 9px 14px; border-radius: 999px; transition: var(--dur) var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--ink); background: rgba(42, 36, 28, 0.05); }

.nav .nav-cta {
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .88rem;
  margin-left: 6px; transition: var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(42, 36, 28, 0.18);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184, 91, 60, 0.32); }

.lang {
  display: flex; background: rgba(42, 36, 28, 0.06); border-radius: 999px;
  padding: 3px; margin-left: 6px;
}
.lang button {
  border: none; background: transparent; color: var(--ink-3);
  padding: 8px 13px; border-radius: 999px; font-weight: 600;
  font-size: .76rem; letter-spacing: .04em; transition: var(--dur) var(--ease);
  min-height: 36px; min-width: 36px;
}
.lang button.active { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06); }
/* Lang-FOUC-Fix: html[data-f2a-lang] (gesetzt von Inline-Script im Header) ueberschreibt
   den serverseitig gerenderten .active-Zustand bevor JS uebernimmt. */
html[data-f2a-lang="en"] .lang button[data-lang="de"].active { background: transparent; color: var(--ink-2); box-shadow: none; }
html[data-f2a-lang="en"] .lang button[data-lang="en"] { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06); }

.hamburger {
  display: none; background: transparent; border: none; padding: 12px;
  color: var(--ink); min-width: 44px; min-height: 44px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: currentColor;
  border-radius: 2px; margin: 5px 0; transition: .3s;
}

@media (max-width: 980px) {
  .nav-inner {
    padding: 8px 8px 8px 14px; width: 100%; border-radius: 18px;
    flex-wrap: wrap; align-items: center;
  }
  /* Brand links, Rest rechts gepuscht */
  .brand { margin-right: auto; }
  /* Sprachschalter bleibt sichtbar — direkt links neben Hamburger */
  .lang { order: 1; margin-left: 0; margin-right: 8px; }
  /* Hamburger ganz rechts, gleiche Zeile wie Brand + Lang */
  .hamburger { display: block; order: 2; margin-left: 0; }
  /* "Anfrage senden" nicht doppelt in Top-Bar — mobile-cta unten ersetzt das */
  .nav-cta { display: none; }
  /* v1.34.36: Footer-Links Tap-Target-Min auf Mobile */
  .foot-col ul li a { display: inline-block; padding: 6px 0; min-height: 36px; line-height: 1.4; }
  /* v1.34.36: Sticky-Header-Blur auf Mobile aus, schont GPU + Scroll-Performance */
  .site-header .nav-inner { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(245,239,228,.96); }
  /* Nav-Links: zweite Zeile, nur wenn geöffnet */
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 2px;
    padding: 10px 4px 6px; border-top: 1px solid var(--line); margin-top: 6px;
    order: 10;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 14px; }
}

.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(16px); border-top: 1px solid var(--line);
}
.mobile-cta a {
  display: block; text-align: center; background: var(--ink); color: #fff;
  padding: 14px; border-radius: 14px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(42, 36, 28, 0.22);
}
@media (max-width: 780px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 86px; }
}

/* ========== TYPOGRAFIE ========== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184, 91, 60, 0.08);
  border: 1px solid rgba(184, 91, 60, 0.18);
  padding: 7px 14px; border-radius: 999px;
  font-size: .74rem; font-weight: 600;
  color: var(--accent-deep); letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; box-shadow: 0 0 0 4px rgba(184, 91, 60, 0.12);
  animation: pulse-dot 3.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 91, 60, 0.12); }
  50%      { box-shadow: 0 0 0 7px rgba(184, 91, 60, 0.03); }
}

.h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -.026em;
  margin: 22px 0; color: var(--ink);
}
.h1 em { font-style: italic; color: var(--accent); font-weight: 500; }

/* Word-by-word reveal für Hero-Headline (sanfter) */
.word-reveal .w {
  display: inline-block; opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.word-reveal.in .w { opacity: 1; transform: none; }
.word-reveal .w1 { transition-delay:  80ms; }
.word-reveal .w2 { transition-delay: 170ms; }
.word-reveal .w3 { transition-delay: 260ms; }
.word-reveal .w4 { transition-delay: 350ms; }
.word-reveal .w5 { transition-delay: 440ms; }
.word-reveal .w6 { transition-delay: 530ms; }
.word-reveal .w7 { transition-delay: 620ms; }
.word-reveal .w8 { transition-delay: 710ms; }
.word-reveal .w9 { transition-delay: 800ms; }

/* Gold-Underline, nur unter zentrierten Section-Head H2 */
.section-head .h2 {
  position: relative; padding-bottom: 14px; display: inline-block;
}
.section-head .h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 64px; height: 2px; transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold-hi), transparent);
  transform-origin: center;
  transition: transform 1.2s var(--ease) .25s;
}
.section-head[data-reveal].in .h2::after,
[data-reveal].in .section-head .h2::after,
[data-reveal-stagger].in .section-head .h2::after { transform: translateX(-50%) scaleX(1); }

.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.024em;
  margin-bottom: 14px; color: var(--ink);
}
.h2 em { font-style: italic; color: var(--accent); font-weight: 500; }

.lead { font-size: 1.12rem; color: var(--ink-2); max-width: 560px; line-height: 1.6; }

.label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(184, 91, 60, 0.08);
  border: 1px solid rgba(184, 91, 60, 0.16);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.sub { color: var(--ink-2); font-size: 1.04rem; line-height: 1.6; max-width: 640px; margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: var(--dur) var(--ease); border: none;
  text-decoration: none !important;       /* Buttons NIE unterstrichen, auch nicht als <a> */
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover, .btn:focus-visible { text-decoration: none !important; }
.btn .arrow { transition: transform var(--dur) var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }

/* Glanz-Sweep auf CTA */
.btn-primary, .btn-accent, .btn-gold, .ff-submit {
  position: relative; overflow: hidden;
}
.btn-primary::before, .btn-accent::before, .btn-gold::before, .ff-submit::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::before, .btn-accent:hover::before, .btn-gold:hover::before, .ff-submit:hover::before {
  transform: translateX(120%);
}

.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(42, 36, 28, 0.04); border-color: var(--ink-3); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(184, 91, 60, 0.25); }
.btn-accent:hover { background: var(--accent-hi); transform: translateY(-2px); }

.btn-gold { background: var(--gold-hi); color: var(--forest-deep); font-weight: 700; box-shadow: 0 8px 24px rgba(200, 164, 86, 0.3); }
.btn-gold:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--bg-on-dark); border: 1px solid rgba(251, 247, 238, 0.3); }
.btn-outline-light:hover { background: rgba(251, 247, 238, 0.08); border-color: var(--bg-on-dark); }

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Atmospheric Glow-Orbs hinter dem Hero, sehr dezent, animiert */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.hero::before {
  top: -120px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.22), transparent 70%);
  animation: heroOrbDrift 22s ease-in-out infinite alternate;
}
.hero::after {
  bottom: -100px; left: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184, 91, 60, 0.18), transparent 70%);
  animation: heroOrbDrift 26s ease-in-out infinite alternate-reverse;
}
@keyframes heroOrbDrift {
  0%   { transform: translate(0, 0) scale(1); opacity: .85; }
  50%  { transform: translate(30px, -20px) scale(1.08); opacity: 1; }
  100% { transform: translate(-20px, 30px) scale(.96); opacity: .8; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 0 60px; }
  .hero::before { width: 380px; height: 380px; top: -80px; right: -120px; }
  .hero::after { width: 340px; height: 340px; bottom: -60px; left: -120px; }
}

/* Eyebrow mit dünner gold-Linie rechts daneben — Magazin-Detail */
.hero .eyebrow {
  position: relative;
  padding-right: 56px;
  display: inline-flex;
}
.hero .eyebrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: translateY(-50%);
}

.hero-meta {
  display: flex; gap: 24px; margin-top: 32px;
  flex-wrap: wrap; color: var(--ink-3); font-size: .86rem;
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* Portrait-Wrapper mit dekorativem Frame-Effekt */
.portrait {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #ede4d3, #d9c9a8 70%, #bfa882);
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  will-change: transform;
  isolation: isolate;
}
.portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(184, 146, 74, .14), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(47, 74, 58, .10), transparent 55%);
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: .9;
  pointer-events: none;
}
/* Vier Gold-Eckmarken auf dem Portrait für Editorial-Plate-Vibe */
.portrait::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(184, 146, 74, .35);
  border-radius: calc(var(--r-lg) - 14px);
  pointer-events: none;
  z-index: 2;
}
.portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(42,36,28,.06), 0 40px 80px rgba(42,36,28,.16);
}
.portrait picture { display: block; width: 100%; height: 100%; }
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  display: block;
  position: relative;
  z-index: 0;
}

/* Schwebender Akzent-Dot oben rechts beim Portrait */
.portrait-accent {
  position: absolute;
  top: -14px; right: -14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(184, 91, 60, .35);
  z-index: 3;
  animation: portraitAccentPulse 3s ease-in-out infinite;
}
@keyframes portraitAccentPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(184, 91, 60, .35); }
  50%      { transform: scale(1.12); box-shadow: 0 8px 26px rgba(184, 91, 60, .5); }
}
@media (prefers-reduced-motion: reduce) {
  .portrait-accent { animation: none; }
}

.portrait-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(251, 247, 238, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 16px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  z-index: 3;
}
.portrait-badge .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--serif); font-weight: 600; flex-shrink: 0;
}
.portrait-badge .nm { font-weight: 600; font-size: .92rem; line-height: 1.2; }
.portrait-badge .rl { color: var(--ink-3); font-size: .78rem; }

/* ========== LOGOS / TRUST ========== */
.logos {
  padding: clamp(40px, 5vw, 60px) 0 clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(56px, 7vw, 96px);
}
.logos-label {
  text-align: center; color: var(--ink-3);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px;
}
.logos-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 48px; }
.logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 10px;
  opacity: .72; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), filter var(--dur) var(--ease);
  filter: grayscale(0.35);
}
.logo-item:hover { opacity: 1; filter: none; transform: translateY(-2px); }
.logo-david {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--ink-2); font-weight: 500; letter-spacing: -.01em; line-height: 1;
  text-align: center;
}
.logo-david small {
  display: block; font-size: .6rem; letter-spacing: .34em;
  text-align: center; font-style: normal; font-family: var(--font);
  color: var(--ink-3); margin-top: 2px; font-weight: 600;
}
.logo-glueck {
  font-family: var(--serif); font-size: 1.4rem; color: var(--ink-2);
  font-weight: 500; display: flex; align-items: baseline; gap: 2px; letter-spacing: -.01em; line-height: 1;
}
.logo-glueck b { color: var(--gold); font-weight: 500; }
.logo-glueck i {
  font-size: .72rem; font-style: italic; color: var(--ink-3);
  margin-left: 4px; font-family: var(--serif);
}
.logo-generic {
  font-family: var(--font); font-size: .92rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-2); line-height: 1;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-generic::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: .5;
}
.logo-more {
  color: var(--ink-3); font-size: .86rem;
  font-style: italic; font-family: var(--serif);
}

/* ========== MARQUEE (Keyword-Laufband) ========== */
.marquee {
  position: relative;
  margin: clamp(80px, 10vw, 128px) 0 clamp(56px, 7vw, 88px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245,239,228,0), rgba(237,228,211,0.35), rgba(245,239,228,0));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  gap: 56px;
  animation: marquee 46s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--ink-2);
  letter-spacing: -.015em;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-item::after {
  content: "✦";
  font-style: normal; color: var(--gold-hi);
  font-size: .9em;
}
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ========== STATS ========== */
.stats { padding: clamp(64px, 8vw, 112px) 0 clamp(24px, 4vw, 56px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat-v {
  font-family: var(--serif); font-size: 2.4rem; color: var(--ink);
  font-weight: 500; letter-spacing: -.02em; line-height: 1;
  transition: transform .5s var(--ease);
}
.stats-grid > div:hover .stat-v { transform: translateY(-2px); }
.stat-v em { color: var(--accent); font-style: italic; }
.trust-stats .num, .stats-grid .stat-v em { display: inline-block; }
.stat-l {
  color: var(--ink-3); font-size: .78rem; margin-top: 8px;
  letter-spacing: .05em; text-transform: uppercase; font-weight: 500;
}

/* ========== SECTIONS ========== */
.section { padding: 90px 0; }
@media (max-width: 780px) { .section { padding: 64px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .label { margin-bottom: 14px; }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px;
  transition: var(--dur-2) var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.card .method-num, .method-num { transition: transform .5s var(--ease), color .3s var(--ease); }
.card:hover .method-num { transform: translateX(4px); color: var(--accent-deep); }
.card .ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(184, 91, 60, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .ico svg { width: 20px; height: 20px; }
.card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  letter-spacing: -.015em; margin-bottom: 10px; color: var(--ink);
}
.card p { color: var(--ink-2); font-size: .96rem; line-height: 1.6; }

/* ========== B2B PREMIUM (dunkel) ========== */
.section-b2b {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: #f5efe4;
  border-radius: 36px;
  margin: 40px 16px;
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}
.section-b2b::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(200, 164, 86, 0.14), transparent 50%);
  pointer-events: none;
}
.section-b2b .label {
  background: rgba(200, 164, 86, 0.18);
  border-color: rgba(200, 164, 86, 0.3);
  color: #e8c97a;
}
.section-b2b .h2 { color: var(--bg-on-dark); }
.section-b2b .h2 em { color: var(--gold-hi); }
.section-b2b .sub { color: var(--ink-on-dark); }

@media (max-width: 780px) {
  .section-b2b { margin: 20px 8px; padding: 60px 22px; border-radius: 24px; }
}

.topic-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto 40px;
}
@media (max-width: 780px) { .topic-grid { grid-template-columns: 1fr; } }

.topic-card {
  background: rgba(251, 247, 238, 0.06);
  border: 1px solid rgba(251, 247, 238, 0.12);
  border-radius: 20px;
  padding: 28px;
  transition: var(--dur-2) var(--ease);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.topic-card::after {
  content: ""; position: absolute; inset: auto -40% -40% auto;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,86,.14), transparent 65%);
  opacity: 0; transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.topic-card:hover {
  background: rgba(251, 247, 238, 0.1);
  border-color: rgba(200, 164, 86, 0.4);
  transform: translateY(-4px);
}
.topic-card:hover::after { opacity: 1; transform: scale(1.1); }
.topic-card:hover .ic { transform: rotate(-6deg) scale(1.06); }
.topic-card .ic { transition: transform .5s var(--ease); }
.topic-card .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-hi), #a8852e);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-deep); margin-bottom: 16px;
  font-weight: 700; font-family: var(--serif);
}
.topic-card h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  margin-bottom: 8px; color: var(--bg-on-dark);
}
.topic-card p { color: var(--ink-on-dark); font-size: .94rem; line-height: 1.55; }

.b2b-meta {
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center;
  margin: 32px 0 36px; color: var(--ink-on-dark); font-size: .9rem;
}
.b2b-meta span { display: flex; align-items: center; gap: 8px; }
.b2b-meta svg { width: 16px; height: 16px; color: var(--gold-hi); }
.b2b-cta-row { text-align: center; margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== METHODE (3-Schritt, Standard-Grid) ========== */
.method {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .method { grid-template-columns: 1fr; } }
.method-step { padding: 30px; }
.method-num {
  font-family: var(--serif); font-style: italic; font-size: 2.4rem;
  color: var(--accent); font-weight: 500; line-height: 1; margin-bottom: 14px;
}
.method-step h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  margin-bottom: 10px; letter-spacing: -.015em; color: var(--ink);
}
.method-step p { color: var(--ink-2); font-size: .96rem; }

/* ========== METHOD-EXPLORER (interaktives Showcase) ========== */
.method-explorer {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px;
  align-items: stretch; margin-top: 40px;
}
@media (max-width: 880px) { .method-explorer { grid-template-columns: 1fr; gap: 20px; } }

.method-tabs {
  display: flex; flex-direction: column; gap: 8px;
}
.method-tab {
  all: unset;
  /* nach `all: unset` müssen wir box-sizing explizit setzen, sonst überlaufen
     padding-Werte den Container auf kleinen Screens (Mobile-Bug-Fix). */
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
/* Inner-Wrapper für Title+Subtitle: min-width:0 verhindert Grid-Overflow,
   flex-column macht aus den span-Spans saubere Block-Reihen. */
.method-tab > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.method-tab:hover { border-color: var(--line-2); transform: translateX(3px); }
.method-tab.active {
  background: linear-gradient(135deg, var(--bg-on-dark), #f5e8d4);
  border-color: rgba(184, 91, 60, 0.28);
  transform: translateX(5px);
  box-shadow: 0 2px 4px rgba(42,36,28,.04), 0 16px 32px rgba(42,36,28,.06);
}
.method-tab .mt-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.6rem; color: var(--ink-4);
  font-weight: 500; line-height: 1;
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.method-tab.active .mt-num { color: var(--accent); transform: scale(1.1); }
.method-tab .mt-t {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em;
  display: block;
  overflow-wrap: anywhere;
}
.method-tab .mt-s {
  font-size: .82rem; color: var(--ink-3); margin-top: 4px;
  display: block;
  overflow-wrap: anywhere; line-height: 1.4;
}

.method-stage {
  position: relative; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--bg-on-dark), #f1e6d3);
  border: 1px solid var(--line);
  padding: 64px 48px 48px; overflow: hidden;
  min-height: 460px;
}
@media (max-width: 880px) {
  .method-stage { padding: 52px 32px 36px; min-height: 420px; }
}
.method-stage::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(200,164,86,0.14), transparent 70%);
  pointer-events: none;
}
.method-panel {
  position: absolute; inset: 64px 48px 48px; display: flex; flex-direction: column; justify-content: flex-start;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
@media (max-width: 880px) {
  .method-panel { inset: 52px 32px 36px; }
}
.method-panel.active { opacity: 1; transform: none; pointer-events: auto; }

.method-big-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(4.4rem, 8.5vw, 7rem);
  color: var(--accent); line-height: .95; margin-bottom: 20px;
  opacity: .3;
}
.method-panel h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500; letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 14px; line-height: 1.15;
}
.method-panel p {
  color: var(--ink-2); font-size: 1rem; line-height: 1.65;
  max-width: 480px;
}
.method-panel ul {
  list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px;
}
.method-panel li {
  color: var(--ink-2); font-size: .92rem; padding-left: 20px; position: relative;
}
.method-panel li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ========== ÜBER PATRICIA (ausgebaut) ========== */
.about-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px;
  align-items: center; max-width: 1040px; margin: 0 auto;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #f1e6d3, #d9c9a8);
  box-shadow: var(--shadow);
}
.about-visual picture { display: block; width: 100%; height: 100%; }
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  display: block;
  transition: transform .8s var(--ease);
}
.about-visual:hover img { transform: scale(1.02); }

.about-text p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 0; }
.about-text .first-line { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-style: italic; }
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.cred-tag {
  font-size: .78rem; padding: 7px 14px;
  border-radius: 999px; background: #fff;
  border: 1px solid var(--line-2); color: var(--ink-2);
  font-weight: 500; transition: var(--dur) var(--ease);
}
.cred-tag:hover { border-color: var(--accent); color: var(--accent-deep); }
.about-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ========== HUMAN DESIGN (untergeordnet) ========== */
.hd-panel {
  background: linear-gradient(135deg, rgba(184, 91, 60, 0.06), rgba(47, 74, 58, 0.06));
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 780px) {
  .hd-panel {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;          /* zentriert ALLE Grid-Children horizontal */
    padding: 32px 24px;
    gap: 20px;
  }
  .hd-panel .hd-icon { margin: 0 auto; }
  .hd-panel .btn { width: auto; min-width: 220px; justify-content: center; }
}
.hd-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--forest));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
}
.hd-panel h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 6px;
}
.hd-panel p { color: var(--ink-2); font-size: .94rem; }

/* ========== TESTIMONIALS ========== */
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 780px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-c {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px;
  transition: var(--dur-2) var(--ease);
}
.testi-c:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-c blockquote { position: relative; transition: color .3s var(--ease); }
.testi-c blockquote::before {
  content: "\201C"; position: absolute; left: -4px; top: -24px;
  font-family: var(--serif); font-size: 3.6rem; color: var(--accent);
  opacity: .18; line-height: 1; font-style: normal;
}
.stars { color: var(--accent); font-size: .95rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-c blockquote {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  font-weight: 400; line-height: 1.5; color: var(--ink); margin-bottom: 18px;
}
.who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--forest));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; flex-shrink: 0;
}
.nm { font-weight: 600; font-size: .92rem; line-height: 1.2; }
.rl { color: var(--ink-3); font-size: .78rem; }

/* ========== TRUST-STATS ========== */
.trust {
  padding: 50px 0; text-align: center;
  background: var(--bg-soft);
  border-radius: var(--r-lg); margin: 40px 0;
}
.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }
.trust-stats .num { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); font-weight: 500; }
.trust-stats .lb { font-size: .82rem; color: var(--ink-3); margin-top: 4px; }

/* ========== KONTAKT-FORM ========== */
.contact-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 720px; margin: 0 auto;
}
.ff-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.ff-row label { font-weight: 600; font-size: .86rem; color: var(--ink-2); }
.ff-row input, .ff-row select, .ff-row textarea {
  padding: 13px 14px; border: 1px solid var(--line-2);
  border-radius: 12px; background: #fff; color: var(--ink);
  font-family: inherit; font-size: .95rem; transition: .2s;
}
.ff-row textarea { min-height: 120px; resize: vertical; }
.ff-row input:focus, .ff-row select:focus, .ff-row textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 91, 60, 0.15);
}
.ff-submit {
  width: 100%; background: var(--ink); color: #fff;
  padding: 15px; border: none; border-radius: 999px;
  font-weight: 700; font-size: .98rem; cursor: pointer;
  transition: var(--dur);
}
.ff-submit:hover { background: var(--accent); }
.ff-note { font-size: .78rem; color: var(--ink-3); text-align: center; margin-top: 10px; }

/* ========== FOOTER ========== */
footer.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  color: var(--ink-3); font-size: .88rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand img { height: 28px; width: 28px; object-fit: contain; }
.foot-claim { color: var(--ink-3); font-size: .92rem; line-height: 1.6; max-width: 340px; }
.foot-col h3 {
  font-family: var(--serif); color: var(--ink); font-weight: 500;
  font-size: 1rem; margin-bottom: 14px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
/* WCAG-AA Kontrast: ink-2 (#3d3830) auf bg-soft (#f5efe4) = 9.5:1, deutlich ueber 4.5:1 */
.foot-col a, .foot-meta a, .foot-bottom a:not(.cc-reopen) { color: var(--ink-2); }
.foot-col a:hover, .foot-meta a:hover { color: var(--accent-deep); }
.foot-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.foot-meta svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.foot-social {
  display: flex; gap: 10px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.foot-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ink-2);
  transition: color .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}
.foot-social a:hover, .foot-social a:focus-visible {
  color: var(--gold); border-color: var(--gold);
  background: rgba(184,146,74, .06); transform: translateY(-1px);
}
.foot-social svg { width: 18px; height: 18px; }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.foot-legal a { color: var(--ink-3); margin-right: 14px; }
.foot-legal a:hover { color: var(--accent); }

/* ========== FOOTER NEWSLETTER (Brevo-Anmelde-Form) ===================
 * Zentrierter Editorial-Block oberhalb der Foot-Bottom-Zeile. Headline +
 * Beschreibung mittig, Form darunter mit breiter Pill — kein toter Raum.
 * -------------------------------------------------------------------- */
/* Screen-Reader-Only-Text — visuell weg, für Screenreader da. WordPress
 * lieferte das früher als Default mit, durch unser Dequeue der Block-CSS
 * jetzt im Theme selbst nötig. */
.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.newsletter-block--full {
  position: relative;
  margin: 56px auto 0;
  padding: 60px 48px 52px;
  max-width: 820px;
  background: linear-gradient(180deg, var(--card) 0%, #f6ecd9 100%);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 56px -32px rgba(64, 38, 18, .22);
}
/* Gold-Rule oben — Magazin-Editorial-Detail */
.newsletter-block--full::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
/* Sehr subtle Warm-Glow für mehr Tiefe */
.newsletter-block--full::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(184, 146, 74, .05), transparent 60%);
  pointer-events: none;
}
.newsletter-block-text { margin-bottom: 32px; position: relative; z-index: 1; }
.newsletter-block-text .label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .78rem;
  letter-spacing: .16em;
}
.newsletter-block-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.newsletter-block-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.newsletter-block--full p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin: 0 auto;
  max-width: 520px;
}

/* ----- Variant: INLINE (kompakt am Ende eines Beitrags) ----- */
.newsletter-block--inline {
  margin: 24px auto 0;
  padding: 32px 0 36px;
  max-width: 720px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.newsletter-block--inline .label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .76rem;
  letter-spacing: .14em;
}
.newsletter-block--inline .newsletter-block-text { margin-bottom: 20px; }
.newsletter-block--inline .newsletter-block-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--ink);
}
.newsletter-block--inline .newsletter-block-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.newsletter-block--inline p {
  color: var(--ink-3);
  font-size: .92rem;
  line-height: 1.5;
  font-family: var(--serif);
  font-style: italic;
  margin: 0 auto;
  max-width: 480px;
}

.newsletter-form {
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}
.newsletter-hp {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0; pointer-events: none;
}
.newsletter-row {
  display: flex; gap: 10px; align-items: stretch;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 6px rgba(64, 38, 18, .04);
}
.newsletter-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, .14), 0 4px 10px rgba(64, 38, 18, .06);
}
.newsletter-row input[type="email"] {
  flex: 1;
  border: 0; background: transparent;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.newsletter-row input[type="email"]::placeholder { color: var(--ink-4); }
.newsletter-submit {
  border: 0; cursor: pointer;
  background: var(--ink);
  color: var(--card);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s ease, transform .2s ease;
}
.newsletter-submit:hover, .newsletter-submit:focus-visible {
  background: var(--accent);
  transform: translateX(2px);
}
.newsletter-submit[disabled] { opacity: .55; cursor: progress; }
.newsletter-submit .arrow { transition: transform .2s ease; }
.newsletter-submit:hover .arrow { transform: translateX(3px); }

.newsletter-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .82rem; color: var(--ink-3); line-height: 1.5;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0;
  width: 14px; height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
}
.newsletter-consent a { color: var(--ink); border-bottom: 1px solid var(--line-2); }
.newsletter-consent a:hover { border-bottom-color: var(--accent); color: var(--accent); }

.newsletter-msg {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  font-family: var(--serif);
  font-style: italic;
}
.newsletter-msg.is-success { color: var(--forest); }
.newsletter-msg.is-error { color: var(--accent-deep); }

@media (max-width: 760px) {
  .newsletter-block--full {
    padding: 44px 28px 40px;
    border-radius: 22px;
  }
  .newsletter-block--inline { padding: 24px 0 28px; }
  .newsletter-row { padding: 5px 5px 5px 18px; }
  .newsletter-submit { padding: 9px 18px; font-size: .85rem; }
}
@media (max-width: 480px) {
  .newsletter-block--full {
    padding: 36px 20px 32px;
    border-radius: 18px;
  }
  .newsletter-block--full p,
  .newsletter-block--inline p { font-size: .92rem; }
  .newsletter-row {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }
  .newsletter-row input[type="email"] {
    padding: 6px 10px;
    width: 100%;
    font-size: 1rem;     /* iOS zoom-prevention threshold */
  }
  .newsletter-submit {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: .92rem;
  }
}

/* ========== PERSONAL-MOMENT (Über Patricia) ==========================
 * Persönliche Off-Camera-Sektion mit Bild + Text. Bild ist Hochformat
 * (1280x2274), wir begrenzen es auf eine angenehme Größe.
 * -------------------------------------------------------------------- */
.personal-moment {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
/* Pull-quote-mark in Gold, der ÜBER die Spalten hinweg ragt — Magazin-Detail */
.personal-moment::before {
  content: '\201C';                        /* Unicode “ */
  position: absolute;
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: .12;
  top: -2.4rem;
  left: 38%;
  pointer-events: none;
  z-index: 0;
  font-style: italic;
}
.personal-moment-figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line-2);
  padding: 16px 16px 0;
  position: relative;
  box-shadow: 0 28px 56px -32px rgba(64, 38, 18, .42);
}
.personal-moment-figure picture { display: block; width: 100%; }
.personal-moment-figure img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center 28%;
}
/* Caption-Strip unten — Museum-Plate-Style */
.personal-moment-figure::after {
  content: 'Off Camera \00B7 April 2026';
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--ink-3);
  text-align: center;
  padding: 14px 0 12px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  letter-spacing: .06em;
}
/* Magazin-Numeration vor dem Label */
.personal-moment-text .label::before {
  content: 'No. 01 \2014 ';                /* Unicode — */
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.personal-moment-text > * { position: relative; z-index: 1; }
.personal-moment-text .label { display: inline-block; margin-bottom: 16px; }
.personal-moment-text .h2 { margin-bottom: 18px; }
.personal-moment-text p.muted { color: var(--ink-3); font-size: .94rem; }

@media (max-width: 760px) {
  .personal-moment { grid-template-columns: 1fr; gap: 32px; }
  .personal-moment-figure { max-width: 380px; margin: 0 auto; }
  .personal-moment::before { font-size: 8rem; top: -1.4rem; left: 12%; }
}

/* ========== MANIFESTO-IMAGE (Methode — Nervensystem-Quote) =========
 * Visuelles Zitat-Bild als Manifest-Statement, zentriert, Ein-Bild-Section.
 * -------------------------------------------------------------------- */
.manifesto-image {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
  position: relative;
  padding: 0;
}
/* Layered Cream-Paper-Backing — leicht gedreht hinter dem Bild, gibt Tiefe */
.manifesto-image::before {
  content: '';
  position: absolute;
  inset: -10px -14px 60px -14px;
  background: var(--card);
  border: 1px solid var(--line);
  transform: rotate(-1.2deg);
  z-index: 0;
  border-radius: 4px;
  box-shadow: 0 18px 40px -22px rgba(64, 38, 18, .25);
}
/* Frame-Container hält Bild + Eckmarken zusammen */
.manifesto-frame {
  position: relative;
  display: block;
  z-index: 1;
}
.manifesto-frame img {
  width: 100%; height: auto;
  display: block;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55);
}
/* Vier Gold-Eckmarken — exakt an den Bild-Ecken */
.manifesto-frame .corner-mark {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.manifesto-frame .corner-mark.tl { top: 12px;    left: 12px;    border-right: 0; border-bottom: 0; }
.manifesto-frame .corner-mark.tr { top: 12px;    right: 12px;   border-left: 0;  border-bottom: 0; }
.manifesto-frame .corner-mark.bl { bottom: 12px; left: 12px;    border-right: 0; border-top: 0;    }
.manifesto-frame .corner-mark.br { bottom: 12px; right: 12px;   border-left: 0;  border-top: 0;    }

.manifesto-image figcaption {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== VIDEO-FRAME (Methode — Eindruck einer Session) =========
 * Native HTML5-Player mit preload=none. Erst beim Klick auf den nativen
 * Play-Button startet der Download — Page-Load bleibt schnell.
 * -------------------------------------------------------------------- */
.video-frame {
  max-width: 980px;
  margin: 32px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1410;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55);
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-frame:not(.is-playing) { cursor: pointer; }
.video-player {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #1a1410;
}
.video-player::-webkit-media-controls-panel { background: transparent; }

/* Sanfte Cinema-Vignette + Press-Play-Caption — verschwindet beim Play */
.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.0) 32%, rgba(0,0,0,.32) 100%),
    linear-gradient(180deg, transparent 0%, rgba(26,20,16,.55) 100%);
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 1;
}
.video-frame::before {
  content: 'Press play \00B7 Sequence 01';
  position: absolute;
  bottom: 28px; left: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--card);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  transition: opacity .35s ease;
  pointer-events: none;
}
.video-frame.is-playing::after,
.video-frame.is-playing::before { opacity: 0; }

/* Filter im Pause-Zustand: leicht entsättigt + erhöhter Kontrast = Film-Still-Vibe */
.video-frame:not(.is-playing) .video-player {
  filter: contrast(1.06) saturate(.9);
  transition: filter .35s ease;
}

/* Film-Eckmarken in Gold — wie auf einem Lichtspielhaus-Print */
.video-frame .film-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
  z-index: 3;
  opacity: .8;
  pointer-events: none;
}
.video-frame .film-corner.tl { top: 16px;    left: 16px;    border-right: 0; border-bottom: 0; }
.video-frame .film-corner.br { bottom: 16px; right: 16px;   border-left: 0;  border-top: 0;    }

@media (max-width: 760px) {
  .video-frame { aspect-ratio: 4 / 5; border-radius: 16px; }
  .video-frame::before { bottom: 18px; left: 20px; font-size: .9rem; }
}

/* ========== REVEAL-ANIMATION (dezent, mit Progressive-Enhancement) ==========
 * Default: alles sichtbar — auch ohne JS bleibt der Inhalt lesbar.
 * Nur wenn das HTML-Element die Klasse `.js-reveal-ready` trägt (gesetzt
 * durch ein inline-Script im <head>), wird das opacity:0-„pending"-State
 * aktiviert; sobald der IntersectionObserver `.in` setzt, fadet es ein.
 */
[data-reveal], [data-reveal-stagger] > * {
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.js-reveal-ready [data-reveal]:not(.in) {
  opacity: 0; transform: translateY(18px);
}
.js-reveal-ready [data-reveal-stagger]:not(.in) > * {
  opacity: 0; transform: translateY(14px);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 400ms; }

/* ========== SUB-PAGE: BREADCRUMB & SUB-HERO ========== */
.sub-hero { padding: 120px 0 40px; }
@media (max-width: 780px) { .sub-hero { padding: 100px 0 24px; } }
.sub-hero-inner { max-width: 780px; }
.sub-hero .h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin: 18px 0 16px; }
.sub-hero .lead { max-width: 660px; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--ink-3);
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--ink-3); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .bc-sep { color: var(--ink-4); }

.nav-links a.active { color: var(--ink); background: rgba(184, 91, 60, 0.08); }

/* ========== FORMAT-CARDS (4er Grid) ========== */
.format-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
@media (max-width: 780px) { .format-grid { grid-template-columns: 1fr; } }

.format-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px;
  transition: var(--dur-2) var(--ease);
  overflow: hidden;
}
.format-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.format-card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.format-card:hover::after { transform: scaleY(1); }
.fc-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.fc-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-deep);
  background: rgba(184, 91, 60, 0.08); padding: 5px 11px; border-radius: 999px;
}
.fc-num {
  font-family: var(--serif); font-style: italic;
  color: var(--ink-4); font-size: 1.6rem; font-weight: 500; line-height: 1;
}
.format-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 10px; letter-spacing: -.015em; color: var(--ink);
}
.format-card > p { color: var(--ink-2); font-size: .98rem; line-height: 1.6; margin-bottom: 16px; }
.fc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.fc-list li {
  position: relative; padding-left: 18px;
  color: var(--ink-2); font-size: .9rem;
}
.fc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 2px; background: var(--gold);
  border-radius: 2px;
}

/* ========== PROCESS-STEPS (3-Schritt) ========== */
.section-process { background: var(--bg-soft); margin-top: 40px; padding: 80px 0; border-radius: var(--r-lg); }
@media (max-width: 780px) { .section-process { padding: 60px 0; margin: 0 8px; } }

.process-steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto; padding: 0;
}
@media (max-width: 880px) { .process-steps { grid-template-columns: 1fr; } }

.ps-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
  transition: var(--dur-2) var(--ease);
  position: relative;
}
.ps-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.ps-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.ps-num {
  font-family: var(--serif); font-style: italic;
  font-size: 2.2rem; color: var(--accent); font-weight: 500; line-height: 1;
}
.ps-when {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.ps-card h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  margin-bottom: 8px; letter-spacing: -.015em;
}
.ps-card p { color: var(--ink-2); font-size: .94rem; line-height: 1.6; }

/* ========== TIMELINE (Beispieltag) ========== */
.timeline {
  max-width: 760px; margin: 0 auto; position: relative;
  padding-left: 14px;
}
.timeline::before {
  content: ""; position: absolute; left: 78px; top: 12px; bottom: 12px;
  width: 1px; background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
@media (max-width: 600px) {
  .timeline { padding-left: 0; }
  .timeline::before { left: 56px; }
}
.tl-row {
  display: grid; grid-template-columns: 88px 1fr; gap: 20px;
  align-items: flex-start; margin-bottom: 14px; position: relative;
}
@media (max-width: 600px) {
  .tl-row { grid-template-columns: 64px 1fr; gap: 14px; }
}
.tl-time {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--accent); font-weight: 500;
  text-align: right; padding-top: 14px;
  position: relative;
}
.tl-time::after {
  content: ""; position: absolute; right: -16px; top: 22px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-hi); border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line-2);
}
@media (max-width: 600px) {
  .tl-time::after { right: -10px; }
}
.tl-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px;
  transition: var(--dur) var(--ease);
}
.tl-card:hover { border-color: var(--accent); transform: translateX(2px); }
.tl-card h4 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  margin-bottom: 4px; color: var(--ink);
}
.tl-card p { color: var(--ink-2); font-size: .9rem; line-height: 1.55; }

/* ========== TOPIC-CARD: Light-Variante (auf Cream) ========== */
.topic-grid-light { grid-template-columns: repeat(2, 1fr); max-width: 920px; }
@media (max-width: 780px) { .topic-grid-light { grid-template-columns: 1fr; } }
.topic-card.light {
  background: var(--card);
  border: 1px solid var(--line);
}
.topic-card.light:hover {
  background: #fff;
  border-color: rgba(184, 91, 60, 0.3);
}
.topic-card.light h3 { color: var(--ink); }
.topic-card.light p { color: var(--ink-2); }
.topic-card.light .ic {
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: #fff;
}

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 0;
  transition: border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: rgba(184, 91, 60, 0.32); background: #fff; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; padding-right: 56px;
  font-family: var(--serif); font-size: 1.06rem; font-weight: 500;
  color: var(--ink); position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 12px; height: 2px; background: var(--accent);
  transform: translateY(-50%);
  transition: transform var(--dur) var(--ease);
}
.faq-item summary::before {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 12px; height: 2px; background: var(--accent);
  transform: translateY(-50%) rotate(90deg);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::before { transform: translateY(-50%) rotate(0); }
.faq-item p {
  padding: 0 22px 20px; color: var(--ink-2);
  font-size: .96rem; line-height: 1.65;
}

/* ========== CTA-BLOCK (dunkel, am Seiten-Ende) ========== */
.cta-block {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  border-radius: var(--r-xl);
  padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
  margin: 0 16px;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(200, 164, 86, 0.18), transparent 55%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-block .h2 { color: var(--bg-on-dark); }
.cta-block .h2 em { color: var(--gold-hi); }
.cta-block p {
  color: var(--ink-on-dark); font-size: 1.08rem; line-height: 1.6;
  max-width: 520px; margin: 14px auto 28px;
}
@media (max-width: 780px) {
  .cta-block { padding: 56px 24px; margin: 0 8px; border-radius: 24px; }
}

/* ========== KONTAKTFORMULAR — STATUS-BANNER & HONEYPOT ========== */
.contact-status {
  display: block;
  max-width: 600px;
  margin: 0 auto 32px auto !important;
  padding: 28px 32px !important;
  border-radius: 18px !important;
  border: 1px solid var(--line);
  background: #faf6ef;
  text-align: center !important;
  box-shadow: 0 8px 24px rgba(42, 36, 28, 0.05);
  position: relative;
}
.contact-status::before {
  content: "";
  display: block;
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-position: center; background-repeat: no-repeat; background-size: 24px;
}
.contact-status strong {
  display: block !important;
  font-family: var(--serif) !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  font-style: italic;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em;
}
.contact-status p {
  margin: 0 !important;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.55;
}
.contact-status--ok {
  background: linear-gradient(180deg, rgba(47,74,58,0.08), rgba(200,164,86,0.05)) !important;
  border-color: rgba(47, 74, 58, 0.28) !important;
}
.contact-status--ok::before {
  background-color: rgba(47, 74, 58, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f4a3a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}
.contact-status--ok strong { color: var(--forest); }
.contact-status--err {
  background: rgba(184, 91, 60, 0.07) !important;
  border-color: rgba(184, 91, 60, 0.32) !important;
}
.contact-status--err::before {
  background-color: rgba(184, 91, 60, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b85b3c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 9v4'/><path d='M12 17h.01'/><circle cx='12' cy='12' r='10'/></svg>");
}
.contact-status--err strong { color: var(--accent, #b85b3c); }

/* Honeypot — komplett unsichtbar für Menschen (mehrfach abgesichert) */
.fit2a-hp,
.fit2a-hp * {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ========== MOBILE POLISH (≤ 600 px) ==========
 * Gezielte Anpassungen, damit auf schmalen Phones alles atmet
 * und Texte nicht aus den Cards laufen.
 */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Method-Explorer auf Mobile kompakter */
  .method-tab { padding: 16px 18px; gap: 14px; border-radius: 16px; }
  .method-tab .mt-num { font-size: 1.35rem; }
  .method-tab .mt-t { font-size: 1.02rem; }
  .method-tab .mt-s { font-size: 0.78rem; line-height: 1.4; }
  .method-tab.active { transform: translateX(2px); }
  .method-tab:hover { transform: translateX(0); }
  /* Stage braucht min-height — sonst kollabiert sie, weil method-panels
     absolut positioniert sind (alle Panels stapeln sich übereinander). */
  .method-stage { padding: 36px 22px 36px; min-height: 380px; }
  .method-panel { inset: 36px 22px 36px; }
  .method-stage h3 { font-size: 1.45rem; }
  .method-stage .method-big-num { font-size: 4.4rem; margin-bottom: 12px; }
  .method-panel p { font-size: 0.95rem; }
  .method-panel ul { margin-top: 12px; }
  .method-panel li { font-size: 0.92rem; }

  /* Hero-Padding etwas reduzieren */
  .hero { padding: 100px 0 32px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Hero-Buttons: untereinander auf ganz kleinen Phones */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; text-align: center; }

  /* Section-Padding auf Mobile schlanker */
  .section { padding: 56px 0; }

  /* H1/H2 Text-Wrapping bei langen Wörtern */
  .h1, .h2 { overflow-wrap: anywhere; }

  /* Format-Cards: kompakter */
  .format-card { padding: 22px 20px; }
  .ps-card { padding: 22px 20px; }

  /* CTA-Block-Padding */
  .cta-block { padding: 56px 24px; }
}

/* ========== EXTRA SMALL (≤ 380 px, alte iPhones / kleine Androids) ========== */
@media (max-width: 380px) {
  .h1 { font-size: 2.1rem !important; }
  .h2 { font-size: 1.65rem !important; }
  .container { padding: 0 14px; }
}

/* ========== Datenschutz-Hinweis am Form ========== */
.ff-privacy {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.55;
  text-align: center;
  margin: 14px auto 0;
  max-width: 520px;
}
.ff-privacy a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 95, 79, 0.4);
}
.ff-privacy a:hover { color: var(--accent); }

/* ========== POLISH-PAKET (Top-Designer-Niveau) ==========
 * Sticky-Nav-Offset, Focus-Visible, Hamburger-Animation,
 * konsistente Touch-Targets, Form-Loading-State.
 */

/* 1) Sticky-Nav-Offset für Anchor-Targets — beim Klick auf #section
 *    landet der Top der Section nicht hinter der Nav, sondern darunter. */
section[id], .section[id], main[id] {
  scroll-margin-top: 92px;
}
@media (max-width: 600px) {
  section[id], .section[id], main[id] { scroll-margin-top: 78px; }
}

/* 2) Konsistente Focus-Outlines für Tastatur-User (a11y).
 *    Keyboard-Nutzer bekommen klaren goldenen Ring, Maus-Nutzer nicht. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
.btn:focus-visible,
a.btn:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline-offset: 0;
  border-radius: 12px;
}

/* 3) Hamburger animiert in ein X wenn das Mobile-Menü offen ist.
 *    Kleine Sache, aber typisch Top-Designer. */
.hamburger span {
  transform-origin: center;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 4) Touch-Targets >= 44px auf Mobile (iOS-/Android-HIG).
 *    Buttons im Pop-up, Lang-Switcher, Hamburger. */
@media (max-width: 600px) {
  .lang button { min-width: 44px; min-height: 36px; padding: 8px 12px; }
  .hamburger { min-width: 44px; min-height: 44px; padding: 10px; }
  .btn { min-height: 48px; padding: 14px 22px; }
  .nav-cta { min-height: 44px; }
  .ff-submit { min-height: 52px; }
}

/* 5) Form-Loading-State — beim Klick auf "Anfrage senden" wird Button
 *    visuell deaktiviert + dezenter Spinner-Effekt (CSS-only). */
.ff-submit.is-loading {
  pointer-events: none;
  opacity: 0.72;
  position: relative;
  color: transparent !important;
}
.ff-submit.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px; height: 20px;
  border: 2px solid rgba(245, 239, 228, 0.4);
  border-top-color: #faf6ef;
  border-radius: 50%;
  animation: f2a-spin 0.8s linear infinite;
}
@keyframes f2a-spin { to { transform: rotate(360deg); } }

/* 6) Tap-Highlight unauffällig auf iOS (sonst grauer Block beim Touch). */
a, button { -webkit-tap-highlight-color: rgba(184, 91, 60, 0.15); }

/* 7) Selection-Color auf Brand-Farbe. */
::selection { background: rgba(184, 91, 60, 0.25); color: var(--ink); }
::-moz-selection { background: rgba(184, 91, 60, 0.25); color: var(--ink); }

/* ========== POPUP / NUDGE ========== */
.fit2a-popup {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  width: 360px; max-width: calc(100vw - 32px);
  background: #faf6ef;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 50px rgba(42, 36, 28, 0.18), 0 4px 12px rgba(42, 36, 28, 0.06);
  font-family: var(--font);
  color: var(--ink);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}
.fit2a-popup[hidden] { display: none !important; }
.fit2a-popup.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .fit2a-popup {
    bottom: 96px; /* überlappt nicht den mobile-cta sticky button */
    left: 12px; right: 12px; width: auto;
    padding: 22px 22px 20px;
  }
  body.fit2a-popup-open { padding-bottom: 0; }
}

.fit2a-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink-3);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.fit2a-popup-close:hover { background: rgba(42, 36, 28, 0.06); color: var(--ink); }
.fit2a-popup-close svg { width: 16px; height: 16px; }

.fit2a-popup-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.fit2a-popup-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.fit2a-popup-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.fit2a-popup-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.fit2a-popup-text {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 20px;
}

.fit2a-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fit2a-popup-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg-on-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.fit2a-popup-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.fit2a-popup-dismiss {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: 0.85rem;
  font-family: var(--font);
  cursor: pointer;
  padding: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 95, 79, 0.3);
}
.fit2a-popup-dismiss:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .bg-deco { display: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
  .fit2a-popup { transition: opacity 0.2s linear; }
}

/* =========================================================
   Polish-Pass v1.12 — Editorial Details, FAQ-Animation,
   Linked-Cards, Back-to-Top.
   Inspiriert von Premium-Coaching-Sites (Hintsa, Egon Zehnder,
   School of Life Business). Alle Effekte unter prefers-reduced-motion
   automatisch deaktiviert (Block weiter oben).
   ========================================================= */

/* 1) Drop-Cap für editorial-erste-Absätze
   Wird automatisch auf .about-text > p:first-of-type angewendet,
   nur wenn die p-Eltern-Sektion die Klasse `editorial` hat. */
.editorial > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.6em;
  line-height: 0.9;
  float: left;
  margin: 0.08em 0.12em 0 -0.04em;
  color: var(--accent);
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .editorial > p:first-of-type::first-letter { font-size: 2.8em; }
}

/* 2) Smooth FAQ Open/Close — funktioniert in modernen Browsern,
   in älteren ist's einfach das Standard-Toggle. */
.faq-item {
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq-item p {
  animation: faq-fade-in 0.45s var(--ease);
}
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
/* Subtile Akzent-Linie links bei geöffnetem FAQ — visual cue */
.faq-item[open] {
  background: #fff;
  box-shadow: inset 3px 0 0 var(--accent);
}

/* 3) Klickbare Topic-Cards (wenn als <a> gerendert, z. B. auf 404):
   Klare Affordance via Pfeil rechts oben + Hover-Verschiebung. */
a.topic-card.light {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
a.topic-card.light::after {
  content: "→";
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink-4);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
a.topic-card.light:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}
a.topic-card.light:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* 4) Back-to-Top Button — sichtbar nach 600px Scroll, fixed bottom-left
   (rechts ist Popup-Bereich, links bleibt frei).
   Auf Mobile bottom-right statt links, oberhalb der mobile-cta-Bar. */
.back-to-top {
  position: fixed;
  left: 24px; bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(42, 36, 28, 0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
  z-index: 95;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 780px) {
  .back-to-top {
    left: auto;
    right: 16px;
    bottom: 100px; /* über der mobile-cta */
  }
}

/* 5) Section-Rhythm: subtile alternierende Hintergründe für visuellen Takt
   Wird über Modifier-Klasse `section--soft` gesetzt, statt globaler nth-child
   Logik (hält das Design-System explizit). */
.section--soft {
  background: var(--bg-soft);
}
.section--soft + .section--soft { background: var(--bg); }

/* 6) Editorial Pull-Quote — eingerahmtes größeres Zitat innerhalb von Fließtext */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  max-width: 640px;
}
.pullquote em { color: var(--accent); font-style: normal; }

/* 7) Sub-hero Eyebrow: subtle gradient line beside text (premium detail) */
.sub-hero .eyebrow {
  position: relative;
}
/* Gold-Linie, 1px, links unter dem Dot, dezent — zeigt subtilen Editorial-Akzent */
.sub-hero .sub-hero-inner > .eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold-hi), transparent);
  vertical-align: middle;
  margin-left: 12px;
  opacity: 0.6;
}

/* 8) Improved focus-visible for cards (a11y polish) */
.topic-card:focus-visible,
.format-card:focus-visible,
.ps-card:focus-visible,
.testi-c:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* prefers-reduced-motion hat Vorrang (siehe oben) */

/* =========================================================
   Cookie Consent Banner v1.14 — DSGVO-konform, lightweight
   ========================================================= */

.fit2a-consent {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 200;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 32px 24px;
  box-shadow: 0 24px 64px rgba(42, 36, 28, 0.16), 0 4px 12px rgba(42, 36, 28, 0.06);
  font-family: var(--font);
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
  /* Initial fade-in */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fit2a-consent[hidden] { display: none !important; }
.fit2a-consent.is-visible {
  opacity: 1;
  transform: none;
}

.fit2a-consent-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit2a-consent-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  /* WCAG-AA: --accent (#b85b3c) auf bg-on-dark = 3.5:1 (FAIL fuer 0.7rem normal text);
     --accent-deep (#8d3f25) = 5.8:1 = PASS. Lighthouse-A11y-Fix v1.34.6. */
  color: var(--accent-deep);
}

.fit2a-consent-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.2; letter-spacing: -0.015em;
  margin: 8px 0 4px;
  color: var(--ink);
}
.fit2a-consent-title em { font-style: italic; color: var(--accent-deep); /* WCAG-AA fix: 4.0:1 → 6.5:1 auf bg-on-dark */ }

.fit2a-consent-text {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: 600px;
}

.fit2a-consent-categories {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 6px; border-top: 1px solid var(--line);
}
.fit2a-consent-categories[hidden] { display: none; }

.fit2a-consent-category {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.fit2a-consent-category:hover { border-color: var(--line-2); background: #fff; }
.fit2a-consent-category:has(input:checked) {
  border-color: rgba(184, 91, 60, 0.32);
  background: #fff;
}
.fit2a-consent-category input {
  margin-top: 4px;
  width: 18px; height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.fit2a-consent-category input:disabled { cursor: not-allowed; opacity: 0.6; }
.fit2a-consent-category strong {
  display: block;
  font-size: 0.92rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.fit2a-consent-category span {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.fit2a-consent-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}

.fit2a-consent-btn {
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--dur) var(--ease);
  min-height: 40px;
}
.fit2a-consent-btn--primary {
  background: var(--ink);
  color: var(--bg-on-dark);
}
.fit2a-consent-btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.fit2a-consent-btn--secondary {
  background: transparent;
  border-color: var(--ink-3);
  color: var(--ink);
}
.fit2a-consent-btn--secondary:hover { background: rgba(42, 36, 28, 0.05); }
.fit2a-consent-btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-2);
}
.fit2a-consent-btn--ghost:hover { background: rgba(42, 36, 28, 0.04); }
.fit2a-consent-btn--text {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 99, 87, 0.3);
  margin-left: auto;
}
.fit2a-consent-btn--text:hover { color: var(--ink); }
.fit2a-consent-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fit2a-consent-footer {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 0;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.fit2a-consent-footer a {
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(107, 99, 87, 0.3);
}
.fit2a-consent-footer a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 600px) {
  .fit2a-consent {
    left: 12px; right: 12px; bottom: 12px;
    padding: 22px 22px 20px;
    border-radius: 18px;
  }
  .fit2a-consent-actions { flex-direction: column; align-items: stretch; }
  .fit2a-consent-btn { width: 100%; }
  .fit2a-consent-btn--text { margin-left: 0; }
  /* Über mobile-cta — auf Mobile wird die mobile-cta nach unten verschoben */
  body:has(.fit2a-consent.is-visible) .mobile-cta { transform: translateY(120%); }
}

/* prefers-reduced-motion (Block weiter oben deaktiviert globale Animationen) */
@media (prefers-reduced-motion: reduce) {
  .fit2a-consent { transition: opacity 0.2s linear; }
}

/* =========================================================
   Print Styles — sauberes Drucken (Patricia kann z. B.
   ein Konzept als PDF exportieren via Browser → Drucken)
   ========================================================= */
@media print {
  /* Hide alles, was beim Druck stört */
  .nav, .mobile-cta, .scroll-progress, .bg-deco, .grain,
  .fit2a-popup, .fit2a-consent, .back-to-top,
  .hero-actions, .b2b-cta-row, .cta-block,
  .marquee, .skip-link, .nav-cta, .lang, .hamburger {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    line-height: 1.4;
  }

  /* Container darf voll bleiben */
  .container { max-width: none; padding: 0; }

  /* Section-Abstände kleiner */
  .section { padding: 24pt 0; break-inside: avoid; }
  .sub-hero { padding: 0 0 24pt; }

  /* Typografie für Druck */
  .h1, .h2, h1, h2, h3 { color: #000; font-weight: 600; break-after: avoid; }
  .h1 em, .h2 em, h2 em { color: #000; font-style: italic; }
  a { color: #000; text-decoration: underline; }

  /* URLs hinter Links anzeigen (nur externe, nicht Anker) */
  a[href^="http"]:not([href*="fit2aligned.com"])::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

  /* Bilder klein halten */
  img { max-width: 100% !important; height: auto !important; page-break-inside: avoid; }

  /* Cards gerahmt für Druck */
  .topic-card, .format-card, .ps-card, .testi-c, .faq-item {
    border: 1px solid #ccc !important;
    background: #fff !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }

  /* Footer kompakter */
  .site-footer { background: #fff; color: #000; padding: 16pt 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 12pt; }
  .foot-bottom { border-top: 1px solid #ccc; padding-top: 8pt; }
}

/* =========================================================
   Cookie Re-Open Trigger — im Footer-Legal-Bereich
   ========================================================= */
.foot-legal button.cc-reopen {
  background: transparent;
  border: 0;
  /* WCAG 2.5.8 Target Size (Min): 24x24 CSS px. Mobile + Desktop einheitlich.
     Ohne padding wuerde der reine Text-Button 14-18px tall sein → FAIL. */
  padding: 6px 4px;
  min-height: 24px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.foot-legal button.cc-reopen:hover { color: var(--accent); }

/* =========================================================
   Block M (v1.16) — Editorial Polish: Hairlines, Links, Rhythm
   Detail-Layer aus Premium-B2B-Sites (Hintsa, Egon Zehnder).
   Alle Effekte unter prefers-reduced-motion deaktiviert.
   ========================================================= */

/* 1) Animierte Gold-Hairline zwischen Sektionen
      Utility-Klasse: <hr class="hairline"> oder <div class="hairline">
      Wird von 0 zu 100% animiert, wenn das Element in den Viewport kommt
      (data-reveal triggert dasselbe `.in`-System wie der Rest).            */
.hairline {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  margin: clamp(40px, 6vw, 72px) auto;
  background: linear-gradient(90deg, transparent 0%, var(--gold-hi) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.8s var(--ease) 0.2s, opacity 0.8s var(--ease);
  opacity: 0.7;
  max-width: 720px;
}
.hairline.in,
[data-reveal].in .hairline,
[data-reveal] .hairline.in { transform: scaleX(1); }
/* .hairline ist standardmäßig scaleX(0) — sichtbar nur mit eigenem data-reveal+.in. Kein opacity:0 nötig. */

/* Variante mit kleinem Punkt in der Mitte (editorial Akzent) */
.hairline--dot {
  position: relative;
}
.hairline--dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-hi);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s var(--ease) 1.2s;
  box-shadow: 0 0 0 4px rgba(200, 164, 86, 0.16);
}
.hairline--dot.in::after,
[data-reveal].in .hairline--dot::after { transform: translate(-50%, -50%) scale(1); }

/* 2) Verfeinerte Link-Underlines im Fließtext (Editorial-Detail)
      Greift auf .post-content + .about-text + .lead — also überall wo
      Patricia fließenden Inhalts-Text rendert. Nav/Footer/CTAs ausgenommen. */
.post-content a:not(.btn),
.about-text a:not(.btn),
.lead a:not(.btn),
.faq-item p a:not(.btn) {
  color: var(--accent-deep);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s var(--ease), color 0.3s var(--ease);
  padding-bottom: 1px;
}
.post-content a:not(.btn):hover,
.about-text a:not(.btn):hover,
.lead a:not(.btn):hover,
.faq-item p a:not(.btn):hover {
  background-size: 100% 1px;
  color: var(--accent);
}

/* 3) Section--soft modifier für visuellen Takt (alternierende Hintergründe)
      Wird selektiv auf wichtige Sektionen angewendet, um Monotonie zu brechen.
      Already declared in Block I — hier ergänzt um sanfte Polster-Trans. */
.section--soft {
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 8%, var(--bg-soft) 92%, transparent 100%);
}

/* 4) Subtile Border-Top auf erstem Element nach Sub-Hero (visuelle Trennung) */
.sub-hero + .section::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-hi);
  margin: 0 auto 32px;
  opacity: 0.5;
}
@media (max-width: 600px) {
  .sub-hero + .section::before { margin-bottom: 24px; }
}

/* 5) Numbered Section-Label Refinement — wenn ein Eyebrow eine Zahl hat,
      bekommt die Zahl einen subtilen Goldring (siehe me.s.lbl "Ebene 01") */
.label[data-numbered],
.eyebrow[data-numbered] {
  position: relative;
  padding-right: 40px;
}
.label[data-numbered]::after,
.eyebrow[data-numbered]::after {
  content: attr(data-num);
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05em;
  color: var(--gold);
  font-weight: 500;
}

/* 6) Improved Card Stack auf Mobile — kleinere Lücken zwischen den Karten,
      damit der Stack nicht so „leer" wirkt */
@media (max-width: 600px) {
  .topic-grid, .topic-grid-light, .format-grid, .method, .testi-grid, .process-steps {
    gap: 14px !important;
  }
}

/* 7) Smooth-Scroll-Polish: Anker-Klicks scrollen mit etwas Offset wegen
      sticky nav. CSS-only mit scroll-margin-top.                          */
:target,
[id^="kontakt"],
[id^="anfrage"],
[id^="formular"],
[id^="ablauf"],
[id^="formate"],
[id^="weg"],
[id^="ausbildung"],
[id^="was-ist"],
[id^="format"],
[id^="faq"],
[id^="b2b"],
[id^="fuehrung"],
[id^="methode"],
[id^="referenzen"],
[id^="trust"],
[id^="ueber"],
[id^="hd"] {
  scroll-margin-top: 96px;
}

/* 8) Refinement: Rounding der Cards auf Mobile etwas weniger (spart Pixel,
      wirkt kompakter ohne unruhig zu sein) */
@media (max-width: 600px) {
  .topic-card, .format-card, .ps-card, .testi-c, .faq-item, .hd-panel {
    border-radius: 16px;
  }
}

/* 9) Enhanced eyebrow on light variants — Mini Akzent-Linie unter dem Text
      (subtil, nur sichtbar wenn man drauf achtet) — ergänzt Block I */
.section-head .label,
.section-head .eyebrow {
  position: relative;
}

/* =========================================================
   Bug #11 (mobile bottom-overlap fix) — wenn Popup oder Cookie-Banner
   sichtbar sind, blende Back-to-Top + Mobile-CTA aus, damit sich die
   fixed-positioned Elemente nicht stapeln auf kleinen Screens.
   ========================================================= */
body.fit2a-popup-open .back-to-top,
body:has(.fit2a-consent.is-visible) .back-to-top {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
}

@media (max-width: 780px) {
  body:has(.fit2a-consent.is-visible) .mobile-cta {
    transform: translateY(120%);
  }
}

/* =========================================================
   Block R (v1.22) — Editorial Differentiation
   Inspiriert von Wallpaper / NYT Magazine — 3 Moves, die
   typische Coaching-Sites nicht haben:
   1. Section-Number-Bleed (Magazin-Optik)
   2. Hanging-Punctuation auf Pullquotes
   3. Editorial-Indicia-Zeile
   ========================================================= */

/* 1) Section-Number-Bleed */
.section-numbered { position: relative; overflow: hidden; }
.section-numbered::before {
  content: attr(data-num);
  position: absolute;
  top: -0.15em;
  right: clamp(-2vw, -0.05em, 1vw);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.10;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.03em;
  z-index: 0;
}
.section-numbered > * { position: relative; z-index: 1; }
@media (max-width: 600px) {
  .section-numbered::before { font-size: clamp(5rem, 22vw, 8rem); opacity: 0.07; }
}

/* 2) Hanging-Punctuation für Pullquotes — verfeinert die Block I-Klasse */
.pullquote {
  position: relative;
  /* hanging-punctuation hat moderate Browser-Unterstützung; Fallback via ::before */
  hanging-punctuation: first;
}
.pullquote::before {
  content: "\201E"; /* „ */
  position: absolute;
  left: -0.5em;
  top: -0.05em;
  color: var(--accent);
  opacity: 0.4;
  font-family: var(--serif);
  font-size: 1.6em;
  line-height: 1;
}

/* 3) Editorial-Indicia-Zeile — kleine Magazin-Seitennummerierung */
.indicia {
  display: block;
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.indicia b {
  color: var(--accent-deep);
  font-weight: 600;
  font-style: italic;
}

/* 4) Patricia-Signatur SVG — animiert beim Scroll-Reveal */
.signature {
  display: block;
  width: 180px;
  height: 50px;
  margin-top: 16px;
  opacity: 0.85;
}
.signature path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.8s var(--ease) 0.3s;
}
[data-reveal].in .signature path,
.signature.in path { stroke-dashoffset: 0; }
.js-reveal-ready .signature:not(.in) path { stroke-dashoffset: 400; }

/* ==========================================================================
 * BLOCK AE — Editorial-Refinements v1.32.0
 * Drop-Caps, Button-Tilt, Card-Tilt — drei Mikro-Details die den Unterschied
 * zwischen "premium template" und "designed by hand" ausmachen.
 * ========================================================================== */

/* 1) Drop-Cap auf erstem Lead/Sub-Paragraph in Sub-Hero und Section-Heads.
      Magazin-Klassiker: Fraunces-Italic mit Gold-Highlight-Stripe. */
.sub-hero-inner > .lead::first-letter,
.section-head + .container > .sub:first-of-type::first-letter,
.method-section .sub:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 3.6em;
  line-height: .85;
  padding: 6px 12px 0 0;
  color: var(--accent);
  background: linear-gradient(180deg, transparent 60%, rgba(184, 146, 74, .12) 60%);
}
@media (max-width: 600px) {
  .sub-hero-inner > .lead::first-letter,
  .section-head + .container > .sub:first-of-type::first-letter,
  .method-section .sub:first-of-type::first-letter { font-size: 2.8em; }
}

/* 2) Button-Tilt-on-Hover: -0.4 Grad. Subtle „handgesetzt" feel.
      Greift nur, wenn Hover wirklich verfuegbar ist (kein Touch-Glitch). */
@media (hover: hover) {
  .btn-primary:hover, .btn-accent:hover, .btn-gold:hover {
    transform: translateY(-3px) rotate(-.4deg);
  }
  .btn-primary:active, .btn-accent:active, .btn-gold:active {
    transform: translateY(-1px) rotate(.2deg);
    transition-duration: .12s;
  }
}

/* 3) Card-Tilt: alternierender +/- 0.5 Grad Mood-Board-Feel auf Cards.
      Topic-Cards, Format-Cards, Testimonial-Cards. */
@media (hover: hover) {
  .topic-card.light, .format-card, .testi-c {
    transform-origin: 50% 100%;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .18s ease;
  }
  .topic-card.light:hover, .format-card:hover, .testi-c:hover {
    transform: translateY(-6px) rotate(-.5deg);
    box-shadow:
      0 28px 56px -28px rgba(184, 91, 60, .18),
      0 6px 14px -8px rgba(42, 36, 28, .08);
  }
  .topic-card.light:nth-child(2n):hover,
  .format-card:nth-child(2n):hover,
  .testi-c:nth-child(2n):hover {
    transform: translateY(-6px) rotate(.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-accent:hover, .btn-gold:hover,
  .topic-card.light:hover, .format-card:hover, .testi-c:hover {
    transform: none;
  }
}

/* ==========================================================================
 * BLOCK AI — SAFE Polish v1.34.1 (additive, isoliert, nichts ueberschreiben)
 * Drei sichere Additions die das Editorial-Gefuehl verstaerken.
 * ========================================================================== */

/* 1) Deutsche Silbentrennung in laengeren Texten — verhindert haessliche
      Worttrennung bei "Geschaeftsfuehrungen" oder "Verantwortungsgrenzen"
      auf Mobile. Browser entscheidet wo sinnvoll.
      Nur auf p im about-text und auf Lead-Paragraphen, nicht auf Headlines. */
.about-text p,
.method-section p,
.lead,
.sub,
.about-text .first-line {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

/* 2) Mobile-Touch-Targets mind. 44x44px (WCAG 2.2 AAA Empfehlung).
      Footer-Social-Icons sind aktuell 36px — auf Touch-Devices zu klein.
      Wirkt nur auf Touch-Geraeten ohne Hover. */
@media (hover: none) and (pointer: coarse) {
  .foot-social a,
  .foot-legal a,
  .foot-meta a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Foot-meta-Icons (Mail, Pin, Clock) haben Text daneben — nur den Link-Bereich erweitern */
  .foot-meta a { min-width: auto; padding: 6px 0; }
}

/* 3) Bessere Print-Ausgabe — Patricia exportiert evtl. Anfragen-Liste oder
      eine Page als PDF. Sorgt fuer saubere Druckdarstellung ohne Hover-Effekte
      und mit ink-saving Hintergrund. */
@media print {
  /* URLs hinter Links zeigen, damit Druckversion sinnvoll ist */
  a[href^="http"]:not([href*="fit2aligned.com"])::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
  }
  /* Hero, FAQ-Animationen, Cookie-Banner, Newsletter-Block raus aus Druck */
  .cookie-banner,
  .newsletter-block,
  .scroll-progress,
  .mobile-cta,
  .fit2a-popup,
  .video-frame video {
    display: none !important;
  }
  /* Ink-saving: hellere Backgrounds, schwarzer Text */
  body, .section, .section--soft {
    background: #fff !important;
    color: #000 !important;
  }
}

/* ==========================================================================
 * BLOCK AK — Editorial-Refinements v1.34.2 (CSS-only, isoliert, additiv)
 * Vier sichtbare Magazin-Refinements. Nichts ueberschrieben, nichts ersetzt.
 * Kann jederzeit in 1 Edit zurueckgerollt werden.
 * ========================================================================== */

/* 1) DISPLAY-SECTION-HEADLINES — Magazin-groesse statt Landing-page-Standard.
      Wirkt nur auf .section-head .h2 (NICHT auf .h2 in Cards/Footer).
      Mobile bleibt sane (clamp lower-bound). */
.section-head .h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -.028em;
  line-height: 1.06;
}
@media (max-width: 600px) {
  .section-head .h2 {
    font-size: clamp(1.95rem, 7vw, 2.4rem);
    line-height: 1.1;
  }
}

/* 2) EYEBROW-HAIRLINE — v1.34.11: ::before-Linie ENTFERNT.
      Vorher Bug: Linie saß inside des .label-Tags und ging optisch durch
      den Pill-Background durch. Magazin-Counter "· 01" via ::after (Block
      AL unten) bleibt — der ist Charakter genug. */
.section-head .label:not([data-numbered]) {
  position: relative;
}

/* 3) MOBILE-TOUCH-TARGETS — Buttons auf Touch-Devices min 48x48px (WCAG 2.2 AAA).
      Ergaenzt die heute Nacht hinzugekommenen Footer-Touch-Targets. */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, .ff-submit, .mobile-cta a {
    min-height: 48px;
    align-items: center;
  }
}

/* 4) DROP-CAP erweitert — auch auf About-Text-First-Line (war nur sub-hero).
      Verstaerkt den Editorial-Charakter wo lange Texte stehen.
      Nur auf about-text + manifesto-Pages, nicht generisch alle p. */
.about-text > p.first-line::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 3.2em;
  line-height: .85;
  padding: 6px 12px 0 0;
  color: var(--accent);
  background: linear-gradient(180deg, transparent 60%, rgba(184, 146, 74, .12) 60%);
}
@media (max-width: 600px) {
  .about-text > p.first-line::first-letter { font-size: 2.6em; }
}

/* ==========================================================================
 * BLOCK AL — Magazin-Counter + Hairline-Section-Breaks v1.34.3
 * Beide CSS-only, additiv, jeweils mit defensiven Selektoren die mit
 * existing data-numbered Labels und section--soft / section-process
 * NICHT kollidieren.
 * ========================================================================== */

/* 1) MAGAZIN-COUNTER — kleine italic-serif Numerierung nach jedem Section-Label.
      Skip Labels mit data-numbered (Methode-Page „Ebene 01/02/03" hat eigene). */
body { counter-reset: secn 0; }

.section-head .label:not([data-numbered]) {
  counter-increment: secn;
}
.section-head .label:not([data-numbered])::after {
  content: " · " counter(secn, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  color: var(--accent-deep);
  margin-left: 4px;
  letter-spacing: 0;
  text-transform: none;
  opacity: .65;
}

/* 2) HAIRLINE-SECTION-BREAKS zwischen aufeinanderfolgenden section.section.
      Position absolute innerhalb der Folge-Section, nutzt vorhandenes
      padding-top als Abstand. Skip Sections mit padding-top:0, section--soft
      und section-process (haben eigenes Background-Pattern). */
section.section + section.section:not([style*="padding-top:0"]):not(.section--soft):not(.section-process) {
  position: relative;
}
section.section + section.section:not([style*="padding-top:0"]):not(.section--soft):not(.section-process)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hi), transparent);
  opacity: .35;
  pointer-events: none;
}

/* ==========================================================================
 * BLOCK AM — Brand-Sigil v1.34.4
 * Eigenes Mark („zwei aligned strokes") als Brand-Identifikator.
 * Erscheint in: End-of-Page-Mark (zwischen letzter Section und Footer) und
 * im Footer-Copyright-Bereich. Inline-SVG via fit2a_sigil() Helper.
 * ========================================================================== */

.fit2a-sigil {
  display: inline-block;
  vertical-align: middle;
  color: var(--gold);
  flex-shrink: 0;
  transition: color .18s ease, transform .35s var(--ease);
}
.fit2a-sigil--sm { width: 18px; height: 18px; }
.fit2a-sigil--md { width: 28px; height: 28px; }
.fit2a-sigil--lg { width: 56px; height: 56px; }

/* End-of-Page-Mark — zentrierter Pause-Punkt zwischen Content und Footer */
.fit2a-end-mark {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 56px 0 8px;
  opacity: .5;
  transition: opacity .25s ease;
}
.fit2a-end-mark:hover { opacity: .85; }
.fit2a-end-mark .fit2a-sigil { color: var(--gold); }

@media (max-width: 600px) {
  .fit2a-end-mark { padding: 36px 0 4px; }
  .fit2a-end-mark .fit2a-sigil--lg { width: 44px; height: 44px; }
}

/* =========================================================
   BLOCK AR (v1.34.16) — Quellen-Sektion auf /methode/
   GEO-Optimization: external citations boost AI-Search-Citation-Rate.
   ========================================================= */
.me-sources-list {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.me-sources-list li {
  padding: 22px 26px;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.me-sources-list strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}

.me-sources-list em {
  color: var(--ink-2);
  font-style: italic;
}

.me-sources-list a.link-arrow {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.me-sources-list a.link-arrow:hover {
  color: var(--accent);
  border-bottom-color: var(--gold);
}

.me-sources-disclaimer {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.me-sources-disclaimer small {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.55;
  font-style: italic;
}

/* Hero soft-link (Sub-CTA unter Hauptbuttons) — v1.34.10 */
.hero-soft-link {
  margin: 18px 0 0;
  font-size: 0.92rem;
  opacity: 0.78;
}

.hero-soft-link a {
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.hero-soft-link a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--gold);
}

.hero-soft-link .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s var(--ease);
}

.hero-soft-link a:hover .arrow {
  transform: translateX(3px);
}

/* =========================================================
   BLOCK AQ (v1.34.9) — Trust-Card auf /anfrage/
   Patricia-Foto + Quote + 4 Bullets, vor dem Formular.
   Conversion-Booster ohne aufdringlich zu wirken.
   ========================================================= */
.trust-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 32px;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.trust-portrait picture,
.trust-portrait img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%; /* v1.34.27: Gesicht zentrieren statt geometrisch mittig */
  display: block;
}

.trust-body { display: flex; flex-direction: column; gap: 18px; }

.trust-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.005em;
}

.trust-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-top: 10px;
  letter-spacing: .02em;
}

.trust-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 22px;
  font-size: .9rem;
  color: var(--ink-2);
}

.trust-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-bullets svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px;
    text-align: center;
  }
  .trust-portrait { display: flex; justify-content: center; }
  .trust-portrait picture, .trust-portrait img { width: 110px; height: 110px; }
  .trust-bullets {
    text-align: left;
    grid-template-columns: 1fr;
  }
}

/* Footer-signature — kleines Sigil neben Copyright */
.foot-bottom .foot-sigil {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--gold);
  opacity: .65;
}

/* =========================================================
   BLOCK AN (v1.34.7) — Erfahrungen / Case Studies
   Editorial-Karten fuer 2 anonymisierte Begleitungen.
   Bewusst zurueckhaltend: kein Logo-Walk, keine Zahlen-Show.
   ========================================================= */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.case-card {
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.case-card:hover {
  border-color: var(--line-2);
}

@media (prefers-reduced-motion: no-preference) {
  .case-card:hover { transform: translateY(-2px); }
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.case-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-hi), transparent);
  flex-shrink: 0;
}

.case-context {
  font-size: 0.85rem;
  color: var(--ink-2);
  font-feature-settings: "tnum";
  line-height: 1.5;
}

.case-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}

.case-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3, var(--ink-2));
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--accent-deep);
  opacity: 0.85;
}

.case-section p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.case-shifts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-shifts li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.case-shifts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.case-quote {
  margin: 4px 0 0;
  padding: 16px 20px 18px;
  background: rgba(184, 146, 74, 0.06); /* gold @ 6% */
  border-left: 2px solid var(--gold);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-quote span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.case-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.case-disclaimer {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.case-disclaimer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 720px) {
  .case-grid { gap: 20px; }
  .case-card { padding: 24px 22px 22px; gap: 18px; }
  .case-quote { padding: 14px 16px; }
}

/* =========================================================
   BLOCK AO (v1.34.7) — Lead-Magnet: Capture + Resource Pages
   /nervensystem-check/  + /nervensystem-check-anleitung/
   Capture-Funnel mit Email-Form, Resource hat Print-CSS.
   ========================================================= */

/* --- Capture Page --- */
.lm-hero { padding-bottom: 40px; }

.lm-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 24px;
}

/* v1.34.10: 3-spaltig fuer Inhalts-Cards (1, 2, 3). Card 4 separat als
   .lm-highlight darunter — bewusst asymmetrisch, weil PDF-Format kein
   Inhalts-Feature ist. */
.lm-list--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 920px) {
  .lm-list--3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .lm-list--3col { grid-template-columns: 1fr; }
}

.lm-list li {
  display: flex;
  gap: 18px;
  padding: 24px 24px 22px 22px;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .lm-list li:hover {
    border-color: var(--line-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(42, 36, 28, 0.06);
  }
}

/* === Highlight-Card (Card 4: PDF-Format) === */
.lm-highlight {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0 0;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--bg-on-dark) 0%, #f3e9d4 100%);
  border: 1px solid rgba(184, 146, 74, 0.32);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.lm-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(184, 146, 74, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.lm-highlight-icon {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.14);
  color: var(--accent-deep);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lm-highlight-icon svg {
  width: 44px;
  height: 44px;
}

.lm-highlight-body {
  position: relative;
  z-index: 1;
}

.lm-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.lm-highlight-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.lm-highlight h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}

.lm-highlight p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 64ch;
}

@media (max-width: 600px) {
  .lm-highlight {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 24px 22px;
    gap: 18px;
  }
  .lm-highlight-icon { width: 72px; height: 72px; }
  .lm-highlight-icon svg { width: 32px; height: 32px; }
}

.lm-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: -0.02em;
}

.lm-list h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.3;
}

.lm-list p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.lm-capture-card {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 36px 36px 32px;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lm-capture-head .h2 {
  margin: 8px 0 10px;
}

.lm-capture-head p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

.lm-form { display: flex; flex-direction: column; gap: 16px; }

.lm-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lm-row input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.lm-row input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.lm-submit { white-space: nowrap; }

.lm-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lm-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.5;
  cursor: pointer;
}

.lm-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.lm-status {
  font-size: 0.92rem;
  color: var(--accent-deep);
  min-height: 1.2em;
}

.lm-status.is-error { color: #b94a3a; }
.lm-status.is-success { color: #2d6a3d; }

.lm-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-2);
}

.lm-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lm-trust svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.lm-context {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lm-context p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.lm-cta-line { margin-top: 18px; }

@media (max-width: 600px) {
  .lm-capture-card { padding: 26px 22px 22px; }
  .lm-row { flex-direction: column; }
  .lm-submit { width: 100%; justify-content: center; }
}

/* --- Resource Page (Nervensystem-Check) --- */
.ns-hero { padding-bottom: 24px; }

.ns-actions { margin-top: 24px; }

#nsPrintBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#nsPrintBtn svg {
  width: 16px;
  height: 16px;
}

.ns-step-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  counter-reset: nsstep;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ns-step-list li {
  position: relative;
  padding: 16px 20px 16px 64px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
  counter-increment: nsstep;
}

.ns-step-list li::before {
  content: counter(nsstep, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-deep);
  letter-spacing: -0.02em;
}

.ns-step-list strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

/* Quiz */
.ns-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}

.ns-area {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 26px 22px;
  background: var(--bg-on-dark);
  margin: 0;
}

.ns-area legend {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 6px;
  margin-bottom: 4px;
}

.ns-area-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ns-area-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ns-area-sub {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 18px;
  font-style: italic;
}

.ns-q {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.ns-q:first-of-type { border-top: 0; padding-top: 6px; }

.ns-q-text {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}

.ns-scale {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ns-scale-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
}

.ns-scale-opt input { position: absolute; opacity: 0; pointer-events: none; }

.ns-scale-opt:has(input:checked) {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--bg-on-dark);
}

.ns-scale-opt:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.ns-scale-opt:has(input:checked):hover {
  color: var(--bg-on-dark);
}

.ns-scale-legend {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--ink-3, var(--ink-2));
  opacity: 0.75;
}

.ns-area-sum {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
}

.ns-area-score, .ns-total-score {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}

.ns-of-15, .ns-of-60 {
  font-size: 0.85rem;
  color: var(--ink-2);
  opacity: 0.7;
}

.ns-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 22px 26px;
  background: var(--bg-soft);
  border: 1px solid var(--gold);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.ns-total .ns-total-score {
  font-size: 2.2rem;
  font-weight: 600;
}

/* Zonen */
.ns-zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.ns-zone {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-on-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ns-zone--green { border-left: 4px solid #6b8a5a; }
.ns-zone--amber { border-left: 4px solid #b8924a; }
.ns-zone--red   { border-left: 4px solid #b94a3a; }

.ns-zone.is-active {
  box-shadow: 0 8px 32px rgba(42, 36, 28, 0.10);
  border-color: var(--accent-deep);
}

.ns-zone-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ns-zone-range {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ns-zone h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0;
}

.ns-zone p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.ns-zone-do strong { color: var(--ink); }

/* Tools — v1.34.11 dynamic asymmetric Layout
   Statt 3 gleichformatige Cards: gestapelte Editorial-Cards, jede mit
   eigener Body-Icon-Marke + großer italic Magazin-Number.
   1. Card linksbündig, 2. zentriert leicht versetzt, 3. linksbündig wie 1.
   Auf Mobile fluidly stack. */
.ns-tool-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.ns-tool {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 32px;
  padding: 28px 32px 28px 28px;
  background: var(--bg-on-dark);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .ns-tool:hover {
    border-color: rgba(184, 146, 74, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 36, 28, 0.06);
  }
}

/* Asymmetrisches Versetzen — gibt Editorial-Rhythmus */
.ns-tool--02 {
  margin-left: 6%;
  margin-right: -2%;
  background: linear-gradient(135deg, var(--bg-on-dark) 0%, #f6ecd8 100%);
}

.ns-tool--03 {
  margin-left: 2%;
}

.ns-tool-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
  border-right: 1px solid var(--line);
  position: relative;
}

.ns-tool-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.ns-tool-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-deep);
  opacity: 0.85;
}

.ns-tool-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.ns-tool-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.ns-tool-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.ns-tool h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ns-tool-when {
  font-size: 0.86rem;
  color: var(--ink-2);
  margin: 0;
}

.ns-tool-when strong { color: var(--ink); font-weight: 600; }

.ns-tool p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.ns-tool-why {
  font-size: 0.85rem;
  color: var(--ink-2);
  opacity: 0.85;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .ns-tool {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px;
  }
  .ns-tool--02, .ns-tool--03 { margin-left: 0; margin-right: 0; }
  .ns-tool-marker {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    gap: 18px;
    justify-content: flex-start;
  }
  .ns-tool-num { font-size: 1.8rem; }
  .ns-tool-icon { width: 40px; height: 40px; }
}

/* Final CTA */
.ns-cta-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 36px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--gold);
}

.ns-cta-card .h2 { margin: 0 0 16px; }
.ns-cta-card p { margin: 0 0 24px; color: var(--ink-2); line-height: 1.55; }

@media (max-width: 600px) {
  .ns-area { padding: 20px 18px; }
  .ns-scale { gap: 6px; }
  .ns-scale-opt { width: 34px; height: 34px; font-size: 0.85rem; }
  .ns-scale-legend { width: 100%; margin: 8px 0 0; justify-content: space-between; }
  .ns-cta-card { padding: 28px 22px; }
}

/* --- Print-CSS für Resource-Page --- */
@media print {
  .site-header, .site-footer, .breadcrumb, .ns-actions, .no-print,
  .skip-link, .lang-toggle, .scroll-progress, #cookie-consent,
  .fit2a-consent, .ns-cta-card .btn { display: none !important; }

  body {
    background: white !important;
    color: black !important;
    font-size: 11pt;
    line-height: 1.5;
  }

  .container { max-width: 100% !important; padding: 0 !important; }

  .ns-area, .ns-zone, .ns-tool, .ns-cta-card, .ns-step-list li {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .ns-area, .ns-zones, .ns-tools, .ns-cta { page-break-before: auto; }

  .h1, .h2, .ns-area legend, .ns-zone h3, .ns-tool h3 {
    color: black !important;
  }

  .ns-scale-opt {
    background: white !important;
    border: 1px solid #555 !important;
    color: #333 !important;
  }
  .ns-scale-opt:has(input:checked) {
    background: #333 !important;
    color: white !important;
    border-color: #333 !important;
  }

  .gold-rule, .hairline { display: none; }

  /* Sigil im print weglassen */
  .fit2a-end-mark { display: none !important; }

  /* Anchor-Links im Print sichtbar machen */
  a::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #666; }
  a[href^="#"]::after, a.btn::after { content: ""; }
}

/* =========================================================
   BLOCK AP (v1.34.7) — Self-hosted Fonts (Fraunces + Inter)
   Vorher: Google Fonts CDN → 2× DNS-Roundtrip + Render-blocking CSS.
   Jetzt: woff2 lokal in /assets/fonts/, latin + latin-ext subsets.
   Lizenz: beide unter SIL Open Font License 1.1, Self-Host erlaubt.
   Variable Font: Fraunces hat opsz+wght axes, Inter hat wght axis.
   ========================================================= */

/* Fraunces normal (latin) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fraunces italic (latin) */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter (latin) — Variable Font, weight axis */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* prefers-reduced-motion respected via global rule above */


/* ============== MULTI-STEP FORM (v1.34.26) ============== */
.fit2a-multistep .ms-progress {
  margin-bottom: 24px;
}
.fit2a-multistep .ms-progress-bar {
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.fit2a-multistep .ms-progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--terra,#8d3f25), var(--gold,#b8924a));
  transition: width 0.35s ease;
}
.fit2a-multistep .ms-progress-label {
  margin-top: 8px;
  font-size: .78rem;
  letter-spacing: 1px;
  color: var(--sand,#6b6357);
  text-transform: uppercase;
  font-weight: 600;
}
.fit2a-multistep .ms-step {
  border: none;
  padding: 0;
  margin: 0;
}
.fit2a-multistep .ms-step-title {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--forest,#2a241c);
}
.fit2a-multistep .ms-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.fit2a-multistep .ms-prev {
  background: transparent;
  color: var(--sand,#6b6357);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: .92rem;
}
.fit2a-multistep .ms-prev:hover {
  border-color: var(--terra,#8d3f25);
  color: var(--terra,#8d3f25);
}
.fit2a-multistep .ms-next {
  margin-left: auto;
}
/* v1.34.29: Robust mit inline-styles via JS. CSS hier nur Visuelles, kein display-toggle.
   Alle Steps sichtbar by default (No-JS-Fallback). JS setzt inline style.display direkt. */
.fit2a-multistep .ms-progress { display: none; }
.js-multistep-on .fit2a-multistep .ms-progress { display: block; }
.fit2a-multistep .ms-step legend.ms-step-title { padding-left: 0; }
.fit2a-multistep fieldset.ms-step { border: 0; padding: 0; margin: 0 0 16px; }

