/* ================================================================
   PETRA EBERT-HÄUSER · STYLESHEET
   Off-White Basis · Petrol/Jeansblau · Himbeer als Signature
   Stand 2026-05-14
================================================================ */

/* ============================================================
   1.  TOKENS
============================================================ */
:root {
  /* Off-White Basis */
  --off-white:      #FAF9F6;
  --off-white-2:    #FDFCFA;
  --white:          #FFFFFF;

  /* Petrol / Jeansblau */
  --petrol:         #2A3D5E;
  --petrol-mid:     #3E5680;
  --petrol-soft:    #5876A8;
  --petrol-pale:    #E2E8F2;

  /* Himbeer (Signature) */
  --himbeer:        #A33A66;
  --himbeer-dark:   #75204A;
  --himbeer-light:  #D672A0;
  --himbeer-pale:   #EDD9E4;

  /* Text */
  --text:           #2A2530;
  --text-muted:     #7A6F78;
  --line:           rgba(42,61,94,0.10);
  --line-strong:    rgba(42,61,94,0.18);

  /* Type */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --ff-accent: 'Montserrat', sans-serif;

  /* Motion */
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:     0.3s var(--ease);
  --t:          0.45s var(--ease);
  --t-slow:     0.9s  var(--ease);

  /* Layout */
  --wrap:       1200px;
  --pad-x:      clamp(24px, 5vw, 64px);

  /* Logo-Filter: weiß → Petrol (Approximation für CSS-filter auf weißem PNG) */
  --logo-petrol-filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(1800%) hue-rotate(195deg) brightness(75%) contrast(95%);
}

/* ============================================================
   2.  RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--off-white);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Selection */
::selection { background: var(--himbeer); color: var(--off-white); }

/* Reduce-Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   3.  CUSTOM CURSOR
============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--himbeer);
  border-radius: 50%;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(163,58,102,0.55);
  border-radius: 50%;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease),
              opacity 0.3s var(--ease);
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(163,58,102,0.10);
  border-color: rgba(163,58,102,0.85);
}
.cursor-ring.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   3b. BACK-TO-TOP BUTTON
============================================================ */
.back-to-top {
  position: fixed;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 150;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--petrol);
  border: 1px solid var(--petrol-mid);
  border-radius: 50%;
  color: var(--off-white);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--t), visibility var(--t),
              transform var(--t), background var(--t),
              border-color var(--t), box-shadow var(--t);
  box-shadow: 0 10px 30px rgba(42,61,94,0.20);
}
.back-to-top.is-visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--himbeer);
  border-color: var(--himbeer);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(163,58,102,0.35);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 18px; height: 18px;
  transition: transform var(--t);
}
.back-to-top:hover svg { transform: translateY(-3px); }
@media (max-width: 768px) {
  .back-to-top { width: 46px; height: 46px; }
  .back-to-top svg { width: 16px; height: 16px; }
}

/* ============================================================
   4.  PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.5px;
  text-align: center;
  overflow: hidden;
}
.preloader-mark em {
  font-style: italic;
  color: var(--himbeer-light);
  display: block;
}
.preloader-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: rgba(250,249,246,0.14);
  position: relative; overflow: hidden;
}
.preloader-bar::after {
  content: '';
  position: absolute; inset: 0;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--himbeer-light) 50%, transparent);
  animation: preload-sweep 1.4s var(--ease) infinite;
}
.preloader-counter {
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 3px;
  color: rgba(250,249,246,0.6);
  text-transform: uppercase;
}
@keyframes preload-sweep {
  0%   { width: 0%;   left: 0;   }
  50%  { width: 60%;  left: 20%; }
  100% { width: 0%;   left: 100%;}
}

/* ============================================================
   5.  NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(26,42,38,0.62) 0%, transparent 100%);
  transition: padding var(--t), background var(--t), backdrop-filter var(--t),
              border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px var(--pad-x);
  background: rgba(250,249,246,0.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-icon {
  height: 56px; width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform var(--t), filter var(--t), height var(--t);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.04); }
.nav-logo-name {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
  transition: font-size var(--t), color var(--t);
}
.nav-logo-name em {
  font-style: italic;
  color: rgba(250,249,246,0.75);
  font-weight: 500;
  transition: color var(--t);
}
.nav.scrolled .nav-logo-icon { height: 44px; filter: var(--logo-petrol-filter); }
.nav.scrolled .nav-logo-name { font-size: 22px; color: var(--petrol); }
.nav.scrolled .nav-logo-name em { color: var(--himbeer); }

.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--off-white);
  transition: color var(--t);
  position: relative; padding: 6px 0;
}
.nav.scrolled .nav-links a { color: var(--petrol); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--himbeer);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--himbeer); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  background: var(--himbeer);
  border: 1px solid var(--himbeer);
  font-family: var(--ff-accent);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white) !important;
  transition: all var(--t);
  border-radius: 4px;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  background: var(--himbeer-dark);
  border-color: var(--himbeer-dark);
  box-shadow: 0 8px 24px rgba(163,58,102,0.30);
}

/* ── Angebote-Dropdown ──────────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--petrol);
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  z-index: 200;
}
/* bridge gap so mouse can travel from trigger to menu */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 12px 22px;
  color: rgba(250,249,246,0.80);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.nav-dropdown a:hover {
  color: var(--off-white);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown a::after,
.nav-dropdown a:hover::after { display: none !important; }

/* Burger */
.nav-burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--off-white);
  transition: transform var(--t), opacity var(--t), background var(--t);
}
.nav.scrolled .nav-burger span { background: var(--petrol); }
.nav-burger.open span,
.nav.scrolled .nav-burger.open span { background: var(--off-white); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(42,61,94,0.97);
  backdrop-filter: blur(22px);
  z-index: 199;
  opacity: 0; visibility: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--t), visibility var(--t);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-links {
  list-style: none;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.mobile-menu-links a {
  font-family: var(--ff-serif);
  font-size: 28px; color: var(--off-white);
  letter-spacing: 0.5px;
}
.mobile-menu-btn {
  margin-top: 14px;
  background: var(--himbeer);
  border: 1px solid var(--himbeer);
  padding: 14px 32px;
  font-family: var(--ff-accent);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white) !important;
  border-radius: 4px;
}

/* ============================================================
   6.  LAYOUT HELPERS
============================================================ */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(72px, 10vw, 120px) var(--pad-x); position: relative; }
.section-light  { background: var(--off-white); }
.section-light-2 { background: var(--off-white-2); }
.section-petrol-pale { background: var(--petrol-pale); }
.section-himbeer-pale { background: var(--himbeer-pale); }
.section-petrol {
  background: var(--petrol);
  color: var(--off-white);
}

/* Legacy-Klassen aus altem HTML (mappen auf neue Welt) */
.section-cream { background: var(--off-white); }
.section-mid   { background: var(--off-white-2); }
.section-dark  {
  background: var(--petrol);
  color: var(--off-white);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--himbeer-light); }

.h2 {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--petrol);
}
.h2 em { font-style: italic; color: var(--himbeer); font-weight: 400; }
.h2-light { color: var(--off-white); }
.h2-light em { color: var(--himbeer-light); }

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text);
  line-height: 1.8;
  max-width: 60ch;
}
.lead-light { color: rgba(250,249,246,0.88); }

.gold-divider {
  width: 56px; height: 1.5px;
  background: linear-gradient(90deg, var(--himbeer), transparent);
  margin: 24px 0 32px;
}

/* Dezente Background-Circles (Hintergrund-Deko, sparsam) */
.bg-circle { position: absolute; border-radius: 50%; z-index: 0; pointer-events: none; }

/* ============================================================
   7.  BUTTONS
============================================================ */
.btn-primary, .btn-ghost-light, .btn-ghost-dark {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 32px;
  transition: transform var(--t), background var(--t),
              color var(--t), border-color var(--t),
              box-shadow var(--t);
  overflow: hidden;
  border-radius: 4px;
}
.btn-primary {
  background: var(--himbeer);
  color: var(--white);
  border: 1px solid var(--himbeer);
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.30), transparent);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::before { left: 120%; }
.btn-primary:hover {
  background: var(--himbeer-dark); border-color: var(--himbeer-dark);
  box-shadow: 0 14px 32px rgba(163,58,102,0.32);
}
.btn-ghost-light {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(250,249,246,0.4);
}
.btn-ghost-light:hover { border-color: var(--off-white); color: var(--white); background: rgba(250,249,246,0.08); }
.btn-ghost-dark {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn-ghost-dark:hover { background: var(--petrol); color: var(--off-white); border-color: var(--petrol); }

.btn-icon { transition: transform var(--t); }
.btn-primary:hover .btn-icon,
.btn-ghost-light:hover .btn-icon,
.btn-ghost-dark:hover .btn-icon { transform: translateX(5px); }

/* ============================================================
   8.  HERO (hell)
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: var(--off-white);
}
.hero::before {
  content: '';
  position: absolute;
  left: -160px; top: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 35%; bottom: -200px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px clamp(32px, 6vw, 88px) 100px;
}
.hero-left::after {
  content: '';
  position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-strong), transparent);
}
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-portrait {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% top;
  filter: brightness(1.02) contrast(1.03);
  transform: scale(1.06);
  will-change: transform;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, rgba(250,249,246,0.30) 28%, transparent 60%);
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--himbeer); }

.hero-name {
  font-family: var(--ff-serif);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 400; line-height: 0.95;
  color: var(--petrol); letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.hero-name em { font-style: italic; color: var(--himbeer); display: block; font-weight: 400; }

.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400; font-style: italic;
  color: var(--text-muted);
  margin-top: 12px; margin-bottom: 32px;
}
.hero-claim {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 400; line-height: 1.32;
  color: var(--petrol);
  max-width: 520px; margin-bottom: 48px;
}
.hero-claim em { font-style: italic; color: var(--himbeer); }

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-actions .btn-ghost-light {
  /* In hellem Hero brauchen wir keine Light-Ghost, sondern Dark-Ghost */
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.hero-actions .btn-ghost-light:hover {
  background: var(--petrol);
  color: var(--off-white);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px; left: clamp(32px, 6vw, 88px);
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll-bar {
  width: 44px; height: 1px;
  background: var(--line-strong);
  position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--himbeer);
  animation: hero-sweep 2.4s var(--ease) infinite;
}
@keyframes hero-sweep {
  0% { left: -100%; } 100% { left: 100%; }
}
.hero-scroll-label {
  font-family: var(--ff-accent);
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero text-reveal */
.reveal-line { display: block; overflow: hidden; }
.reveal-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.05s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-word.in { transform: translateY(0); }

/* ============================================================
   9.  TRUST STRIP (hell)
============================================================ */
.trust {
  background: var(--off-white-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--pad-x);
}
.trust-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--petrol);
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  background: var(--himbeer); border-radius: 50%;
  flex-shrink: 0;
}
.trust-sep {
  width: 1px; height: 18px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .trust-inner { flex-wrap: wrap; }
}

/* ============================================================
   10. ABOUT (Petrol-Pale Hintergrund, Petrol als Akzent)
============================================================ */
.section-cream.about-section,
section[id="ueber-mich"] {
  background: var(--petrol-pale);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.about-portrait-wrap {
  position: relative;
}
.about-portrait-frame {
  position: relative;
}
.about-portrait-frame::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1.5px solid var(--petrol);
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.about-portrait {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border: 6px solid var(--petrol);
  background: var(--off-white);
}
.about-quote-badge {
  position: absolute;
  right: -24px; top: -18px;
  z-index: 2;
  background: var(--himbeer);
  padding: 24px 30px;
  max-width: 280px;
  box-shadow: 0 12px 38px rgba(42,61,94,0.22);
  border-radius: 4px;
}
.about-quote-badge-text {
  font-family: var(--ff-serif);
  font-size: 17px; font-style: italic; font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}
.about-vintage {
  position: absolute;
  bottom: -36px; right: -32px;
  width: 170px;
  background: var(--white);
  padding: 7px 7px 26px;
  box-shadow: 0 12px 32px rgba(42,61,94,0.20);
  transform: rotate(3deg);
  z-index: 10;
  transition: transform 0.6s var(--ease);
  border-radius: 2px;
}
.about-vintage-cap {
  font-size: 8px;
}
.about-vintage:hover { transform: rotate(0); }
.about-vintage img {
  width: 100%; display: block;
}
.about-vintage-cap {
  font-family: var(--ff-accent);
  font-size: 7px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted); text-align: center;
  margin-top: 6px;
}

.about-lead {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400; line-height: 1.42;
  color: var(--petrol);
  margin-bottom: 24px;
}
.about-lead em { font-style: italic; color: var(--himbeer); }
.about-body {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400; line-height: 1.42;
  color: var(--petrol);
  margin-bottom: 24px;
}
.about-body em { font-style: italic; color: var(--himbeer); }

/* ============================================================
   11. SERVICES (hell, 2 + 1 Methoden-Strip)
============================================================ */
.services {
  background: var(--off-white-2);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -180px; right: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.45;
  pointer-events: none;
}

.services-roof {
  display: flex; align-items: center; gap: 28px;
  padding: 28px 36px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--himbeer);
  background: var(--white);
  margin-bottom: 56px;
  border-radius: 4px;
  position: relative; z-index: 1;
}
.services-roof-mark {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border: 1.5px solid var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 26px; color: var(--petrol);
  border-radius: 50%;
}
.services-roof-label {
  font-family: var(--ff-accent);
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 6px;
}
.services-roof-title {
  font-family: var(--ff-serif);
  font-size: 24px; color: var(--petrol);
  font-weight: 500;
  margin-bottom: 6px;
}
.services-roof-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  max-width: 720px;
}

.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin: 56px 0 56px;
  position: relative; z-index: 1;
}
.services-header .eyebrow-light { color: var(--himbeer); }
.services-header .h2-light { color: var(--petrol); }
.services-header .h2-light em { color: var(--himbeer); }
.services-header .lead-light { color: var(--text); }

.services-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
  position: relative; z-index: 1;
}
.services-grid > .service-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 560px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px;
  position: relative;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: default;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.service-footer {
  margin-top: auto;
  padding-top: 24px;
}
.service-footer .service-tag {
  display: inline-block;
  margin-bottom: 14px;
  margin-right: 0;
}
.service-footer .service-link {
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(42,61,94,0.10);
}
.service-card.is-featured {
  background: var(--himbeer);
  color: var(--white);
  border: none;
}
.service-card.is-featured:hover {
  background: var(--himbeer-dark);
}

.service-num {
  font-family: var(--ff-serif);
  font-size: 56px; font-weight: 400;
  color: var(--text-muted);
  opacity: 0.5;
  line-height: 1; margin-bottom: 20px;
}
.service-card.is-featured .service-num {
  color: rgba(255,255,255,0.5);
}
.service-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--himbeer);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 22px; color: var(--himbeer);
  margin-bottom: 22px;
}
.service-card.is-featured .service-icon {
  border-color: var(--white);
  color: var(--white);
}
.service-title {
  font-family: var(--ff-serif);
  font-size: 26px; font-weight: 500;
  color: var(--petrol); margin-bottom: 12px;
  line-height: 1.2;
}
.service-card.is-featured .service-title {
  color: var(--white);
}
.service-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-card.is-featured .service-desc {
  color: rgba(255,255,255,0.92);
}
.service-tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--himbeer);
  font-family: var(--ff-accent);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 20px;
  border-radius: 2px;
}
.service-card.is-featured .service-tag {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.service-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-accent);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--himbeer);
  transition: color var(--t);
}
.service-card.is-featured .service-link {
  color: var(--white);
}
.service-link svg { transition: transform var(--t); }
.service-card:hover .service-link svg { transform: translateX(5px); }

/* Methoden-Strip: Einleitung VOR den 2 Karten */
.methoden-strip {
  margin-top: 0;
  margin-bottom: 36px;
  padding: 30px 40px;
  background: var(--petrol-pale);
  border: none;
  display: flex; align-items: center; gap: 28px;
  border-radius: 4px;
  position: relative; z-index: 1;
}
.methoden-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--white);
  border: 1.5px solid var(--petrol);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--petrol);
}
.methoden-label {
  font-family: var(--ff-accent);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 6px;
}
.methoden-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.methoden-text strong { color: var(--petrol); font-weight: 600; }
@media (max-width: 768px) {
  .methoden-strip { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ============================================================
   12. EMPATHY (hell)
============================================================ */
.empathy { background: var(--off-white); }
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}
.empathy-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.empathy-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  will-change: transform;
}
.empathy-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,61,94,0.25) 0%, transparent 50%);
}
.empathy-intro {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5; color: var(--petrol);
  margin-bottom: 36px;
}
.empathy-intro em { font-style: italic; color: var(--himbeer); }
.empathy-list { list-style: none; }
.empathy-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 64px);
  margin-top: 56px;
}
.empathy-list-grid .empathy-item:last-child { grid-column: 1 / -1; }
.empathy-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.empathy-list .empathy-item:first-child { border-top: 1px solid var(--line); }
.empathy-list-grid .empathy-item:nth-child(1),
.empathy-list-grid .empathy-item:nth-child(2) {
  border-top: 1px solid var(--line);
}
@media (max-width: 1100px) {
  .empathy-list-grid { grid-template-columns: 1fr; }
  .empathy-list-grid .empathy-item:last-child { grid-column: auto; }
  .empathy-list-grid .empathy-item:nth-child(2) { border-top: none; }
}
.empathy-glyph {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--himbeer);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--himbeer);
  font-family: var(--ff-serif); font-size: 16px;
  margin-top: 2px;
}
.empathy-item-strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 19px; font-weight: 500;
  color: var(--petrol); margin-bottom: 2px;
}
.empathy-item-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* ============================================================
   12b. ATEM · Signature-Statement "Alles wird gut."
============================================================ */
.breath {
  background: var(--off-white);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.breath::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.breath::after {
  content: '';
  position: absolute;
  right: 12%; top: 24%;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.breath-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.breath-quote {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  color: var(--himbeer);
  letter-spacing: -0.5px;
}
.breath-text {
  margin-top: 36px;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.breath-text em {
  font-style: italic;
  color: var(--himbeer);
  font-weight: 500;
}
.breath-attribution {
  margin-top: 28px;
  font-family: var(--ff-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--petrol);
}

/* Audio-Greeting in About-Sektion */
.audio-greeting {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--off-white-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--himbeer);
  border-radius: 6px;
  max-width: 480px;
}
.audio-greeting-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.audio-greeting-content {
  flex: 1;
  min-width: 0;
}
.audio-greeting-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--petrol);
  margin-bottom: 10px;
  line-height: 1.4;
}
.audio-greeting-player {
  width: 100%;
  max-width: 360px;
  height: 36px;
}

/* Footer-Signatur unter dem Logo */
.footer-signature {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: #EE89B5;
  margin: 14px 0 8px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* ============================================================
   13. FREEBIE (Petrol, Option B)
============================================================ */
.freebie {
  background: var(--petrol);
  color: var(--off-white);
  padding: clamp(64px, 9vw, 100px) var(--pad-x);
  position: relative; overflow: hidden;
}
.freebie::before, .freebie::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.freebie::before {
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: var(--himbeer);
  opacity: 0.32;
}
.freebie::after {
  bottom: -90px; left: -90px;
  width: 280px; height: 280px;
  background: var(--petrol-soft);
  opacity: 0.38;
}
.freebie-grid {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.freebie-img-wrap { text-align: center; }
.freebie-mockup {
  display: inline-block;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(250,249,246,0.15);
  backdrop-filter: blur(6px);
}
.freebie-mockup img { max-width: 320px; width: 100%; }
.freebie-eyebrow {
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--himbeer-light); margin-bottom: 14px;
}
.freebie-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--off-white);
  line-height: 1.2; margin-bottom: 20px;
  font-weight: 500;
}
.freebie-h2 em { font-style: italic; color: var(--himbeer-light); font-weight: 400; }
.freebie-text {
  font-size: 16px;
  color: rgba(250,249,246,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
}
.freebie-text strong { color: var(--off-white); }
.freebie-form-note {
  font-size: 11px;
  color: rgba(250,249,246,0.7);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   14. PROCESS (hell)
============================================================ */
.process { background: var(--off-white); }
.process-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  border-radius: 6px;
}
.process-step::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--himbeer);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 50px rgba(42,61,94,0.10);
}
.process-step:hover::before { transform: scaleX(1); }
.process-num {
  font-family: var(--ff-serif);
  font-size: 76px; font-weight: 400;
  color: var(--petrol-pale);
  line-height: 1; margin-bottom: 18px;
}
.process-title {
  font-family: var(--ff-serif);
  font-size: 24px; font-weight: 500;
  color: var(--petrol); line-height: 1.22;
  margin-bottom: 12px;
}
.process-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}
.process-detail {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--himbeer);
}

/* ============================================================
   15. TESTIMONIALS (hell, Option B)
============================================================ */
.testimonials {
  background: var(--off-white-2);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  left: -180px; bottom: -180px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.45;
  pointer-events: none;
}
.testi-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
  position: relative; z-index: 1;
}
.testi-header .eyebrow-light { color: var(--himbeer); }
.testi-header .h2-light { color: var(--petrol); }
.testi-header .h2-light em { color: var(--himbeer); }
.testi-mark-big {
  font-family: var(--ff-serif);
  font-size: 76px; font-weight: 400;
  color: var(--himbeer);
  opacity: 0.25;
  line-height: 1;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  border-radius: 6px;
}
.testi-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(42,61,94,0.10);
}
.testi-mark {
  font-family: var(--ff-serif);
  font-size: 76px; line-height: 0.8;
  color: var(--himbeer);
  opacity: 0.4;
  display: block; margin-bottom: 14px;
}
.testi-text {
  font-family: var(--ff-serif);
  font-size: 21px; font-style: italic;
  font-weight: 400;
  line-height: 1.62;
  color: var(--petrol);
  margin-bottom: 32px;
}
.testi-footer {
  display: flex; align-items: center; gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--himbeer);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--ff-serif);
  font-size: 17px; font-weight: 500;
  color: var(--petrol);
}
.testi-role {
  font-family: var(--ff-accent);
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.testi-stars {
  color: var(--himbeer);
  font-size: 12px; letter-spacing: 2px;
  margin-top: 4px;
}

/* ============================================================
   16. FAQ (hell)
============================================================ */
.faq { background: var(--off-white); }
.faq-layout {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}
.faq-sticky { position: sticky; top: 120px; }
.faq-aside-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin: 20px 0 32px;
  max-width: 38ch;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0;
  font-family: var(--ff-serif);
  font-size: 20px; font-weight: 500;
  color: var(--petrol);
  text-align: left; cursor: pointer;
  transition: color var(--t);
}
.faq-q:hover { color: var(--himbeer); }
.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
  border-radius: 50%;
}
.faq-toggle svg {
  width: 13px; height: 13px;
  stroke: var(--petrol);
  transition: transform var(--t), stroke var(--t);
}
.faq-item.open .faq-toggle {
  background: var(--himbeer);
  border-color: var(--himbeer);
}
.faq-item.open .faq-toggle svg { transform: rotate(45deg); stroke: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  max-width: 60ch;
}

/* ============================================================
   17. CTA FINALE (Himbeer-Pale)
============================================================ */
.cta-block {
  background: var(--himbeer-pale);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-block::before {
  content: '';
  position: absolute;
  left: -150px; top: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.8;
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  right: -180px; bottom: -180px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--himbeer);
  opacity: 0.10;
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.cta-block .eyebrow-light { color: var(--himbeer); }
.cta-heading {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--himbeer-dark);
  margin-bottom: 22px;
}
.cta-heading em { font-style: italic; color: var(--petrol); font-weight: 400; }
.cta-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 56ch; margin-left: auto; margin-right: auto;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.cta-block .btn-ghost-light {
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
  background: transparent;
}
.cta-block .btn-ghost-light:hover {
  background: var(--petrol); color: var(--off-white);
}
.cta-note {
  margin-top: 26px;
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Cat-Kantenhocker */
.cat-kantenhocker {
  position: relative; height: 0;
  overflow: visible;
  z-index: 20;
  text-align: center;
  pointer-events: none;
}
.cat-peeker {
  position: absolute; left: 50%;
  transform: translate(-50%, -87%);
  width: 320px; max-width: 70vw;
}

/* ============================================================
   18. MALBUCH
============================================================ */
.malbuch {
  background: var(--off-white-2);
  padding: 64px var(--pad-x);
  border-top: 1px solid var(--line);
}
.malbuch-grid {
  max-width: 920px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.malbuch-img { text-align: center; }
.malbuch-img img {
  max-width: 320px; width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  filter: drop-shadow(0 18px 36px rgba(42,61,94,0.18));
}
.malbuch-eyebrow {
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 14px;
}
.malbuch-h3 {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--petrol);
  line-height: 1.32; margin-bottom: 16px;
  font-weight: 500;
}
.malbuch-h3 em { font-style: italic; color: var(--himbeer); }
.malbuch-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 52ch;
}

/* ============================================================
   19. FOOTER (Petrol)
============================================================ */
footer.site-footer {
  background: var(--petrol);
  padding: 72px var(--pad-x) 36px;
  position: relative; overflow: hidden;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  right: -120px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--himbeer);
  opacity: 0.12;
  pointer-events: none;
}
.footer-inner {
  max-width: var(--wrap); margin: 0 auto;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,249,246,0.10);
  margin-bottom: 38px;
}
.footer-brand-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 144px; width: auto;
  display: block;
  flex-shrink: 0;
  /* weißes Logo bleibt im Footer weiß — kein Filter */
}
.f-brand-bio {
  font-size: 13px;
  color: rgba(250,249,246,0.78);
  line-height: 1.75;
  margin: 18px 0 24px;
  max-width: 38ch;
}
.f-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  background: var(--himbeer);
  border: 1px solid var(--himbeer);
  font-family: var(--ff-accent);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  transition: all var(--t);
  border-radius: 4px;
}
.f-cta:hover { background: var(--himbeer-dark); border-color: var(--himbeer-dark); }
.f-col-title {
  font-family: var(--ff-accent);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #EE89B5;
  margin-bottom: 22px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a {
  font-size: 13px;
  color: rgba(250,249,246,0.82);
  transition: color var(--t);
}
.f-links a:hover { color: var(--himbeer-light); }
.footer-preview-notice {
  text-align: center;
  padding: 12px 20px;
  margin-bottom: 22px;
  font-family: var(--ff-accent);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,249,246,0.75);
  border: 1px dashed rgba(250,249,246,0.28);
  border-radius: 4px;
}
.footer-credits {
  text-align: center;
  padding: 0 0 18px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(250,249,246,0.55);
  letter-spacing: 0.3px;
}
.footer-credits a {
  color: rgba(250,249,246,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,249,246,0.28);
  transition: color var(--t), border-color var(--t);
}
.footer-credits a:hover {
  color: rgba(250,249,246,1);
  border-bottom-color: rgba(250,249,246,0.6);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.f-copy, .f-legal a {
  font-family: var(--ff-accent);
  font-size: 11px; letter-spacing: 1.2px;
  color: rgba(250,249,246,0.92);
}
.f-legal { display: flex; gap: 24px; }
.f-legal a { transition: color var(--t); }
.f-legal a:hover { color: var(--himbeer-light); }

/* ── Legal-Seiten (Impressum, Datenschutz, AGB) ─────────── */
.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.legal-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--petrol);
  margin: 0 0 16px;
  line-height: 1.3;
}
.legal-h3 {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--petrol);
  margin: 28px 0 8px;
  letter-spacing: 0;
}
.legal-p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 14px;
}
.legal-p:last-child { margin-bottom: 0; }
.legal-p a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.legal-p a:hover { color: var(--himbeer); }
.legal-list {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  padding-left: 22px;
  margin: 0 0 14px;
}
.legal-list li { margin-bottom: 6px; }

/* ============================================================
   20. SCROLL REVEAL
============================================================ */
.r,
.rl,
.rr {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: transform, opacity;
}
.r  { transform: translateY(40px); }
.rl { transform: translateX(-40px); }
.rr { transform: translateX(40px); }
.r.in, .rl.in, .rr.in { opacity: 1; transform: translate(0,0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ============================================================
   21. PAGE HERO (Coaching/Subpage)
============================================================ */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  overflow: hidden;
  padding-top: 100px;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: -160px; top: 60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.6;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 30%; bottom: -200px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.7;
  z-index: 0;
}
.page-hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero-glow { display: none; }
.page-hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px clamp(32px, 6vw, 80px);
}
.page-hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 500;
  color: var(--petrol);
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero-h1 em { font-style: italic; color: var(--himbeer); display: block; font-weight: 400; }
.page-hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400; font-style: italic;
  color: var(--himbeer);
  margin-bottom: 28px;
}
.page-hero-rule {
  width: 56px; height: 1.5px;
  background: linear-gradient(90deg, var(--himbeer), transparent);
  margin-bottom: 26px;
}
.page-hero-intro {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 38px;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.page-hero-right { position: relative; overflow: hidden; z-index: 1; }
.page-hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.04);
  will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, rgba(250,249,246,0.30) 28%, transparent 60%);
}

/* ============================================================
   22. SUBPAGE: BENEFITS / QUESTIONS / STEPS / NOTES / PRICE
============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  border-radius: 6px;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--himbeer);
  transition: height 0.55s var(--ease);
}
.benefit-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(42,61,94,0.10);
}
.benefit-card:hover::before { height: 100%; }
.benefit-glyph {
  font-family: var(--ff-serif);
  font-size: 30px; color: var(--himbeer);
  margin-bottom: 16px;
}
.benefit-title {
  font-family: var(--ff-serif);
  font-size: 22px; font-weight: 500;
  color: var(--petrol); line-height: 1.3;
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.benefit-card-quote {
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
  padding: 24px;
  border-radius: 6px;
}
.benefit-card-quote p {
  font-family: var(--ff-serif);
  font-size: 20px; font-style: italic;
  color: var(--off-white);
  text-align: center;
  line-height: 1.5;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.question-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: background var(--t), border-color var(--t), transform var(--t);
  border-radius: 4px;
}
.question-item:hover {
  border-color: var(--himbeer);
  transform: translateY(-2px);
}
.question-mark {
  font-family: var(--ff-serif);
  font-size: 24px; color: var(--himbeer);
  flex-shrink: 0; line-height: 1.3;
}
.question-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.steps-list {
  display: flex; flex-direction: column;
  gap: 14px; margin-top: 56px;
}
.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
  border-radius: 4px;
}
.step-item:hover { border-color: var(--himbeer); transform: translateX(4px); }
.step-num-col {
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 16px;
  font-family: var(--ff-serif);
  font-size: 36px; font-weight: 400;
  color: var(--himbeer-light);
}
.step-content { padding: 28px 32px; }
.step-title {
  font-family: var(--ff-serif);
  font-size: 22px; font-weight: 500;
  color: var(--petrol);
  margin-bottom: 8px;
}
.step-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.72;
  max-width: 60ch;
}

.hinweise-list {
  display: flex; flex-direction: column;
  gap: 14px; margin-top: 36px;
}
.hinweis-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 26px;
  border: 1px solid var(--himbeer);
  background: var(--himbeer-pale);
  border-radius: 4px;
}
.hinweis-icon {
  font-family: var(--ff-serif);
  font-size: 18px; color: var(--himbeer-dark);
  flex-shrink: 0; padding-top: 2px;
}
.hinweis-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.hinweis-text strong { color: var(--himbeer-dark); }

.price-card {
  background: var(--petrol);
  color: var(--off-white);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--himbeer);
  opacity: 0.15;
  pointer-events: none;
}
.price-amount {
  font-family: var(--ff-serif);
  font-size: clamp(54px, 8vw, 84px);
  font-weight: 400;
  color: var(--himbeer-light);
  line-height: 1;
}
.price-currency {
  font-family: var(--ff-accent);
  font-size: 22px; font-weight: 400;
  vertical-align: super;
}
.price-details {
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,249,246,0.85);
  margin-top: 12px;
}
.price-includes {
  list-style: none;
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-includes li {
  font-size: 14px;
  color: rgba(250,249,246,0.85);
  display: flex; gap: 14px; align-items: center;
}
.price-includes li::before {
  content: '✦'; color: var(--himbeer-light);
  font-size: 10px; flex-shrink: 0;
}
.price-right-title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 16px; line-height: 1.3;
}
.price-right-text {
  font-size: 15px;
  color: rgba(250,249,246,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
}
.price-card .btn-ghost-light {
  color: var(--off-white);
  border: 1.5px solid rgba(250,249,246,0.4);
}
.price-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

.quote-block {
  border-left: 3px solid var(--himbeer);
  padding: 24px 36px;
  margin: 48px 0 0;
  background: var(--white);
  border-radius: 0 4px 4px 0;
}
.quote-block p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: var(--petrol); line-height: 1.5;
}

/* ============================================================
   22b. HIMMELS-GESPRÄCHE (TK-Unterseite)
============================================================ */
.heaven {
  background: var(--off-white-2);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.heaven::before {
  content: '';
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.heaven .wrap { position: relative; z-index: 1; }
.heaven-mark {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 48px;
  color: var(--himbeer);
  margin-bottom: 18px;
}
.heaven .eyebrow {
  display: flex;
  justify-content: center;
}

/* ============================================================
   22c. PRICING-GRID (TK-Unterseite, 2 Pakete nebeneinander)
============================================================ */
.pricing-grid {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}
.pricing-grid > .pricing-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 520px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.pricing-grid > .pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(42,61,94,0.10);
}
.pricing-grid > .pricing-card-regular {
  background: var(--petrol);
  color: var(--off-white);
  border: none;
}
.pricing-grid > .pricing-card-regular:hover {
  background: var(--petrol-mid);
}

/* ── Channel-Split: Text + Channeling-Foto (TK-Seite) ─── */
.channel-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}
.channel-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
@media (max-width: 960px) {
  .channel-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .channel-photo { max-width: 420px; }
}

/* Heaven portrait — Mickey-Foto in Himmels-Gespräche-Sektion */
.heaven-portrait {
  margin: 0 auto;
  text-align: center;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.heaven-portrait img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgba(42,61,94,0.20);
  display: block;
}
.heaven-portrait-caption {
  margin-top: 16px;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--petrol);
  letter-spacing: 0.3px;
}
.heaven-portrait-meta {
  margin-top: 4px;
  font-family: var(--ff-accent);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border: 1px solid var(--himbeer);
  font-family: var(--ff-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 24px;
  border-radius: 2px;
  font-weight: 600;
}
.pricing-card-regular .pricing-tag {
  border-color: var(--himbeer-light);
  color: var(--himbeer-light);
}
.pricing-title {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 16px;
  line-height: 1.2;
}
.pricing-card-regular .pricing-title {
  color: var(--off-white);
}
.pricing-amount {
  font-family: var(--ff-serif);
  font-size: clamp(54px, 6.8vw, 72px);
  font-weight: 400;
  color: var(--himbeer);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card-regular .pricing-amount {
  color: var(--himbeer-light);
}
.pricing-amount .price-currency {
  font-family: var(--ff-accent);
  font-size: 22px;
  font-weight: 400;
  vertical-align: super;
}
.pricing-details {
  font-family: var(--ff-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card-regular .pricing-details {
  color: rgba(250,249,246,0.72);
}
.pricing-includes {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.pricing-card-regular .pricing-includes li {
  color: rgba(250,249,246,0.88);
}
.pricing-includes li::before {
  content: '✦';
  color: var(--himbeer);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.pricing-card-regular .pricing-includes li::before {
  color: var(--himbeer-light);
}
.pricing-cta {
  margin-top: auto;
  align-self: flex-start;
}
.pricing-card-regular .pricing-cta {
  background: var(--himbeer);
  border-color: var(--himbeer);
}
.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-note a {
  color: var(--himbeer);
  font-weight: 500;
  border-bottom: 1px solid var(--himbeer);
}
@media (max-width: 900px) {
  .pricing-grid { flex-direction: column; }
  .pricing-grid > .pricing-card { min-height: 0; }
}

/* ============================================================
   22d. PARADIESVOGEL (Über-mich-Seite)
============================================================ */
.paradies {
  background: var(--off-white-2);
  position: relative;
  overflow: hidden;
}
.paradies::before {
  content: '';
  position: absolute;
  right: -200px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.paradies::after {
  content: '';
  position: absolute;
  left: -180px; bottom: -150px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.paradies > .wrap { position: relative; z-index: 1; }
.paradies-head {
  text-align: center;
  margin-bottom: 56px;
}
.paradies-head .eyebrow {
  justify-content: center;
}
.paradies-head .lead {
  margin: 0 auto;
  text-align: center;
}
.paradies-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}
.paradies-chip {
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  color: var(--petrol);
  transition: transform var(--t), box-shadow var(--t);
  cursor: default;
}
.paradies-chip:nth-child(3n) {
  background: var(--himbeer-pale);
  border-color: transparent;
}
.paradies-chip:nth-child(5n) {
  background: var(--petrol-pale);
  border-color: transparent;
}
.paradies-chip:nth-child(7n) {
  background: var(--himbeer);
  border-color: transparent;
  color: var(--white);
}
.paradies-chip:nth-child(11n) {
  background: var(--petrol);
  border-color: transparent;
  color: var(--off-white);
}
.paradies-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42,61,94,0.12);
}

/* ============================================================
   22e. VALUES (Über-mich-Seite)
============================================================ */
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.values-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--himbeer);
  border-radius: 4px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.values-item:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 32px rgba(42,61,94,0.08);
}
.values-mark {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--himbeer);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}
.values-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.values-text strong {
  color: var(--petrol);
  font-weight: 600;
}

/* ============================================================
   22f. VISION (Über-mich-Seite)
============================================================ */
.vision-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 8px;
}
.vision-grid > .vision-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 6px;
  position: relative;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.vision-grid > .vision-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(42,61,94,0.10);
}
.vision-num {
  font-family: var(--ff-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--himbeer);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.vision-title {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 16px;
}
.vision-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  flex: 1 1 auto;
}
@media (max-width: 900px) {
  .vision-grid { flex-direction: column; }
}

/* ============================================================
   22g. QUALIFIKATIONEN (Über-mich-Seite)
============================================================ */
.quali-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quali-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.quali-item:hover {
  border-color: var(--himbeer);
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(42,61,94,0.08);
}
.quali-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1.5px solid var(--petrol);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 18px;
  color: var(--petrol);
}
.quali-content {
  flex: 1 1 auto;
}
.quali-title {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 6px;
  line-height: 1.3;
}
.quali-meta {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.quali-meta a {
  color: var(--himbeer);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.quali-meta a:hover {
  border-bottom-color: var(--himbeer);
}
.quali-membership-badge {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.quali-membership-badge a {
  display: inline-block;
  transition: transform var(--t), box-shadow var(--t);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42,61,94,0.15);
}
.quali-membership-badge a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(42,61,94,0.20);
}
.quali-membership-badge img {
  display: block;
  width: 150px;
  height: auto;
  border-radius: 8px;
}

/* ============================================================
   22h. MEIN-WEG STORY-SEITE
============================================================ */
.story-section {
  position: relative;
}
.story-chapter {
  font-family: var(--ff-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--himbeer);
  margin-bottom: 18px;
}

/* Grid für Story-Sektionen mit Text + Foto */
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.story-grid--reverse {
  grid-template-columns: 1fr 1.3fr;
}
.story-grid--reverse .story-photos {
  order: -1;
}
@media (max-width: 900px) {
  .story-grid,
  .story-grid--reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .story-grid--reverse .story-photos {
    order: 2;
  }
}

/* Polaroid-Foto Look */
.story-photos {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  padding: 24px 0;
}
.story-polaroid {
  background: var(--white);
  padding: 14px 14px 22px;
  box-shadow: 0 16px 40px rgba(42,61,94,0.22);
  border-radius: 3px;
  transform: rotate(-2.5deg);
  transition: transform 0.6s var(--ease);
  max-width: 280px;
  width: 100%;
}
.story-polaroid:hover {
  transform: rotate(0) scale(1.03);
}
.story-polaroid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
  border-radius: 1px;
}
.story-polaroid-caption {
  font-family: var(--ff-accent);
  font-size: 10.5px;
  text-align: center;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.story-polaroid--right {
  transform: rotate(2.5deg);
}
.story-polaroid--right:hover {
  transform: rotate(0) scale(1.03);
}

/* Ulrich-Schaffer-Quote */
.story-quote {
  background: var(--white);
  border-left: 4px solid var(--himbeer);
  padding: 36px 40px;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 12px 32px rgba(42,61,94,0.10);
  margin: 12px 0;
}
.story-quote-text {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--petrol);
  margin-bottom: 18px;
}
.story-quote-author {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--himbeer);
  font-weight: 600;
}

/* Finale — "einfach: das Leben ist schön" */
.story-finale {
  background: var(--off-white-2);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-finale::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--himbeer-pale);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.story-finale::after {
  content: '';
  position: absolute;
  right: 18%; top: 22%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--petrol-pale);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.story-finale-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.story-finale-quote {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: var(--himbeer);
  letter-spacing: -0.4px;
}
.story-finale-text {
  margin-top: 32px;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.story-finale-signature {
  margin-top: 32px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--petrol);
}

/* ============================================================
   22i. VIDEO-TESTIMONIAL (Coaching-Seite)
============================================================ */
.testimonial-head {
  text-align: center;
  margin-bottom: 56px;
}
.testimonial-head .eyebrow {
  justify-content: center;
}
.video-testimonial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.video-testimonial-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42,61,94,0.22);
  background: var(--petrol);
}
.video-testimonial-video video {
  width: 100%;
  height: auto;
  display: block;
}
.video-testimonial-content {
  position: relative;
}
.video-testimonial-mark {
  font-family: var(--ff-serif);
  font-size: 96px;
  line-height: 0.7;
  color: var(--himbeer);
  opacity: 0.35;
  display: block;
  margin-bottom: 6px;
}
.video-testimonial-quote {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--petrol);
  margin-bottom: 18px;
}
.video-testimonial-quote:last-of-type {
  margin-bottom: 28px;
}
.video-testimonial-footer {
  padding-top: 22px;
  border-top: 1px solid rgba(42,61,94,0.18);
}
.video-testimonial-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--petrol);
}
.video-testimonial-role {
  font-family: var(--ff-accent);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--himbeer-dark);
  margin-top: 4px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .video-testimonial {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   23. SEO TEXT
============================================================ */
.seo-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px; margin: 0 auto;
  text-align: center;
  padding: 0 32px 48px;
}

/* ============================================================
   24. RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 56px 32px 80px;
    order: 2;
  }
  .hero-right {
    position: relative;
    inset: auto;
    height: 56vh;
    min-height: 380px;
    width: 100%;
    order: 1;
    opacity: 1;
    margin-top: 80px;
  }
  .hero-portrait {
    object-position: center 25%;
  }
  .hero-right-overlay {
    background: linear-gradient(to bottom,
      rgba(250,249,246,0.05) 0%,
      rgba(250,249,246,0.30) 70%,
      var(--off-white) 100%);
  }
  .hero-left::after { display: none; }
  .hero-scroll-cue { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-quote-badge { right: 0; }
  .about-vintage { display: none; }

  .services-grid { flex-direction: column; }
  .services-grid > .service-card { flex: 1 1 auto; min-height: 0; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }

  .empathy-grid { grid-template-columns: 1fr; gap: 56px; }

  .freebie-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .freebie-img-wrap { order: -1; }

  .process-intro { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }

  .testi-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sticky { position: static; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Subpage */
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
  }
  .page-hero-left {
    padding: 56px 32px 80px;
    order: 2;
  }
  .page-hero-right {
    position: relative;
    inset: auto;
    height: 50vh;
    min-height: 360px;
    width: 100%;
    order: 1;
    opacity: 1;
    margin-top: 80px;
  }
  .page-hero-right img {
    object-position: center 25%;
  }
  .page-hero-overlay {
    background: linear-gradient(to bottom,
      rgba(250,249,246,0.05) 0%,
      rgba(250,249,246,0.30) 70%,
      var(--off-white) 100%);
  }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .questions-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; gap: 36px; padding: 44px 32px; }
  .malbuch-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* Nav-Burger ab 1024px — verhindert Kollision bei mittleren Viewports */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* Etwas engerer Gap auf mittelgroßen Desktops (1024–1280px) */
@media (min-width: 1024px) and (max-width: 1280px) {
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-logo-icon { height: 44px; }
  .nav-logo-name { font-size: 20px; }
  .nav-logo { gap: 10px; }

  .hero-name { font-size: clamp(48px, 14vw, 72px); }
  .hero-claim { font-size: clamp(20px, 4.5vw, 26px); }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .benefits-grid { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 56px 1fr; }
  .step-content { padding: 22px; }

  .testi-card, .service-card, .process-step { padding: 36px 28px; }
}
