/* =====================================================
   JOANA WÖHL – Gemeinsames Design-System
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--color-cream);
  color: var(--color-dark);
  cursor: none;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* === CSS VARS === */
:root {
  /* === BRAND FARBEN === */
  --color-sage:  #b5baaa;   /* Salbeigrün – Heroes, Akzentflächen */
  --color-rose:  #c8b4ad;   /* Altrosa/Taupe – Buttons, Hover, Tags */
  --color-cream: #f2f0e8;   /* Cremeweiß – Haupthintergrund */
  --color-dark:  #3a3530;   /* Warmes Dunkelbraun – Text */

  /* Abgeleitete Töne */
  --cream-mid:   #e9e6dc;
  --sage-muted:  #9ea39a;   /* Etwas dunkleres Salbei für Akzentflächen */
  --rose-light:  #d9c8c2;   /* Helles Rosa für Hover */
  --white:       #FAFAF8;

  /* Legacy-Aliase */
  --cream:       var(--color-cream);
  --sage:        var(--color-sage);
  --sage-deep:   var(--color-sage);
  --sage-darker: var(--sage-muted);
  --rose:        var(--color-rose);
  --gold:        var(--color-rose);
  --gold-light:  var(--rose-light);
  --dark:        var(--color-dark);
  --dark-mid:    #504a44;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === CURSOR === */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--color-rose); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--color-rose); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.55;
}
.cursor-dot.active { width: 14px; height: 14px; }
.cursor-ring.active { width: 60px; height: 60px; opacity: 0.2; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(242, 240, 232, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 64px;
  box-shadow: 0 1px 0 rgba(58,53,48,0.07);
}
nav.inner {
  background: rgba(242, 240, 232, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 64px;
  box-shadow: 0 1px 0 rgba(58,53,48,0.07);
}
.nav-logo {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-dark); text-decoration: none;
  transition: color 0.4s; flex-shrink: 0;
}
nav.scrolled .nav-logo,
nav.inner .nav-logo { color: var(--color-dark); }

.nav-links {
  display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center;
}
.nav-link {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; color: rgba(58,53,48,0.55);
  text-decoration: none; transition: color 0.3s;
  position: relative; padding-bottom: 3px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--color-rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--color-dark); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--color-sage); }
.nav-link.active::after { transform: scaleX(1); }
nav.scrolled .nav-link,
nav.inner .nav-link { color: rgba(58,53,48,0.5); }
nav.scrolled .nav-link:hover,
nav.inner .nav-link:hover { color: var(--color-dark); }
nav.scrolled .nav-link.active,
nav.inner .nav-link.active { color: var(--sage-muted); }
nav.scrolled .nav-link.active::after,
nav.inner .nav-link.active::after { background: var(--color-rose); }

.nav-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-dark); background: var(--color-rose);
  padding: 13px 28px; border-radius: 40px; text-decoration: none;
  transition: background 0.3s, transform 0.25s var(--ease), box-shadow 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--rose-light); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,180,173,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
  z-index: 201; position: relative;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--color-dark); transition: all 0.35s var(--ease);
  transform-origin: center;
}
nav.scrolled .nav-hamburger span,
nav.inner .nav-hamburger span { background: var(--color-dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Overlay Menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--color-cream);
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 0 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav-link {
  font-family: var(--serif); font-size: clamp(38px, 7vw, 56px); font-weight: 300;
  color: var(--color-dark); text-decoration: none;
  letter-spacing: 0.03em; line-height: 1.2;
  border-bottom: 1px solid rgba(58,53,48,0.07);
  width: 100%; text-align: center; padding: 16px 0;
  transition: color 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--sage-muted); }
.mobile-nav-cta {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-dark); background: var(--color-rose);
  padding: 18px 44px; border-radius: 40px; text-decoration: none;
  margin-top: 28px;
}

/* === HERO (Startseite) === */
.hero {
  min-height: 100vh;
  background: var(--color-sage);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(200,180,173,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(242,240,232,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 60px 80px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-dark);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--color-dark); }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 88px);
  font-weight: 300; line-height: 1.1; color: var(--color-dark);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.95s 0.5s var(--ease) forwards;
  will-change: transform, opacity;
}
.hero-headline em { font-style: italic; color: var(--color-cream); }
.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.88;
  color: rgba(58,53,48,0.68); max-width: 500px; margin-bottom: 60px;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
.btn-primary {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-dark);
  background: linear-gradient(to right, var(--rose-light) 50%, var(--color-rose) 50%);
  background-size: 200% 100%; background-position: right center;
  padding: 18px 44px; border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: none;
  transition: background-position 0.5s var(--ease-spring), transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-primary:hover {
  background-position: left center;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(200,180,173,0.45);
}
.btn-primary svg { transition: transform 0.35s var(--ease); }
.btn-primary:hover svg { transform: translateX(6px); }
.btn-secondary {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; color: var(--color-dark);
  padding: 18px 40px; border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(58,53,48,0.25); cursor: none;
  transition: border-color 0.35s, transform 0.3s var(--ease), background 0.35s;
}
.btn-secondary:hover {
  border-color: var(--color-dark); background: rgba(58,53,48,0.06);
  transform: translateY(-3px);
}
.btn-secondary--light {
  color: var(--color-dark); border-color: rgba(58,53,48,0.2);
}
.btn-secondary--light:hover {
  border-color: rgba(58,53,48,0.45); background: rgba(58,53,48,0.05);
}
.hero-note { font-size: 13px; color: rgba(58,53,48,0.42); font-weight: 300; }
.hero-right { position: relative; overflow: hidden; }
.hero-image-wrap {
  position: absolute; inset: 0;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  transform: scale(1.06);
  animation: heroZoom 9s ease-out forwards;
}
.hero-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--color-sage) 0%, rgba(181,186,170,0.15) 16%, transparent 35%),
    linear-gradient(to bottom, transparent 65%, rgba(58,53,48,0.12) 100%);
}
.hero-badge {
  position: absolute; bottom: 56px; right: 44px; z-index: 10;
  background: var(--color-rose); color: var(--color-dark); border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 20px 48px rgba(200,180,173,0.45);
  animation: float 4.5s ease-in-out infinite, fadeUp 1s 1.3s var(--ease) both;
}
.hero-badge .badge-main { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1; }
.hero-badge .badge-sub { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; opacity: 0.75; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 80px;
  display: flex; align-items: center; gap: 14px; z-index: 10;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(58,53,48,0.42); }
.scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--color-rose), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--color-rose);
  animation: scanline 2.2s ease-in-out infinite;
}

/* === PAGE HERO (Innere Seiten) === */
.page-hero {
  padding: 160px 0 100px;
  background: var(--color-sage);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(200,180,173,0.14) 0%, transparent 60%);
  pointer-events: none;
}
/* Helle Variante (Rezepte-Seite) */
.page-hero--cream {
  background: var(--color-cream);
}
.page-hero--cream::before {
  background: radial-gradient(ellipse at 70% 20%, rgba(181,186,170,0.18) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.page-hero-inner.centered {
  grid-template-columns: 1fr; text-align: center; max-width: 780px;
}
.page-hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-dark);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.page-hero-inner.centered .page-hero-eyebrow { justify-content: center; }
.page-hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--color-dark); }
.page-hero-inner.centered .page-hero-eyebrow::before { display: none; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.12; color: var(--color-dark);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.95s 0.4s var(--ease) forwards;
  will-change: transform, opacity;
}
.page-hero-title em { font-style: italic; color: var(--color-cream); }
.page-hero--cream .page-hero-title em { color: var(--color-rose); }
.page-hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.88;
  color: rgba(58,53,48,0.65); max-width: 540px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.page-hero-inner.centered .page-hero-sub { margin: 0 auto; }
.page-hero-image {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
  opacity: 0; transform: translateY(20px) scale(1.02);
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* === MARQUEE === */
.marquee-wrap { background: var(--color-dark); padding: 18px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 24s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  font-style: italic; letter-spacing: 0.08em; color: var(--color-sage);
  padding: 0 36px; flex-shrink: 0;
}
.marquee-item.gold { color: var(--color-rose); font-style: normal; font-weight: 500; letter-spacing: 0.2em; }

/* === SECTION UTILITIES === */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--color-rose);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--color-rose); }
.section-headline {
  font-family: var(--serif); font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 300; line-height: 1.22; color: var(--color-dark);
}
.section-sub {
  font-size: 17px; font-weight: 300; line-height: 1.82;
  color: rgba(58,53,48,0.5); margin-top: 18px;
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.95s var(--ease-spring), transform 0.95s var(--ease-spring);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }
.reveal-delay-6 { transition-delay: 0.60s; }

/* Hero line stagger (applied via premium.js) */
.hero-headline.stagger-ready,
.page-hero-title.stagger-ready {
  opacity: 1; transform: none; animation: none;
}
.hero-line {
  display: inline;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s calc(0.4s + var(--line-i, 0) * 0.14s) var(--ease) forwards;
}

/* === PAIN SECTION === */
.pain-section { padding: 160px 0; background: var(--color-cream); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pain-headline {
  font-family: var(--serif); font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 300; line-height: 1.22; color: var(--color-dark);
}
.pain-headline em { font-style: italic; color: var(--color-sage); }
.pain-lead {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(58,53,48,0.58); margin-top: 24px; max-width: 430px;
}
.pain-list { list-style: none; display: flex; flex-direction: column; }
.pain-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(58,53,48,0.06);
}
.pain-item:first-child { border-top: 1px solid rgba(58,53,48,0.06); }
.pain-number {
  font-family: var(--serif); font-size: 13px; font-weight: 400;
  color: var(--color-rose); min-width: 22px; margin-top: 2px; letter-spacing: 0.04em;
}
.pain-text { font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--color-dark); }

/* === MANIFESTO === */
.manifesto-section { padding: 160px 0; background: var(--sage-muted); overflow: hidden; }
.manifesto-inner { max-width: 880px; margin: 0 auto; padding: 0 64px; text-align: center; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 300; font-style: italic; line-height: 1.3; color: var(--color-dark);
  position: relative;
}
.manifesto-quote strong { font-style: normal; font-weight: 500; color: var(--color-cream); }
.manifesto-rule { width: 56px; height: 1px; background: var(--color-rose); margin: 44px auto; }
.manifesto-sub {
  font-size: 17px; font-weight: 300; line-height: 1.82;
  color: rgba(58,53,48,0.65); max-width: 600px; margin: 0 auto;
}
.manifesto-attribution {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(58,53,48,0.38); margin-top: 40px;
}

/* === COURSE SECTION === */
.course-section { padding: 160px 0; background: var(--color-cream); }
.course-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.course-headline {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.22; color: var(--color-dark);
}
.course-headline span { display: block; font-style: italic; color: var(--sage-muted); }
.course-intro {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(58,53,48,0.6);
}
.layers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.layer-card {
  background: var(--cream-mid); padding: 56px 40px;
  position: relative; overflow: hidden;
  transition: background 0.45s var(--ease);
}
.layer-card:first-child { border-radius: 20px 0 0 20px; }
.layer-card:last-child { border-radius: 0 20px 20px 0; }
.layer-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--color-rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.layer-card:hover { background: var(--color-sage); }
.layer-card:hover .layer-num { color: rgba(58,53,48,0.05); }
.layer-card:hover .layer-title { color: var(--color-dark); }
.layer-card:hover .layer-text { color: rgba(58,53,48,0.65); }
.layer-card:hover::after { transform: scaleX(1); }
.layer-num {
  font-family: var(--serif); font-size: 88px; font-weight: 300;
  color: rgba(58,53,48,0.05); line-height: 1; margin-bottom: -20px;
  transition: color 0.4s;
}
.layer-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--color-dark); margin-bottom: 16px; transition: color 0.4s;
}
.layer-text {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(58,53,48,0.58); transition: color 0.4s;
}

/* === INSIDE SECTION === */
.inside-section { padding: 160px 0; background: var(--cream-mid); }
.inside-header { text-align: center; margin-bottom: 72px; }
.inside-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.inside-card {
  background: var(--color-cream); border-radius: 18px; padding: 40px 32px;
  border: 1px solid rgba(58,53,48,0.05);
  position: relative; overflow: hidden;
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.inside-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--color-rose), var(--color-sage));
  opacity: 0; transition: opacity 0.3s;
}
.inside-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(58,53,48,0.08); }
.inside-card:hover::before { opacity: 1; }
.inside-icon {
  font-size: 28px; margin-bottom: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(200,180,173,0.25), rgba(181,186,170,0.25));
}
.inside-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--color-dark); margin-bottom: 12px;
}
.inside-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(58,53,48,0.58); }
.inside-card.featured { background: var(--color-sage); border-color: transparent; }
.inside-card.featured .inside-title { color: var(--color-dark); }
.inside-card.featured .inside-desc { color: rgba(58,53,48,0.68); }
.inside-card.featured::before { opacity: 1; }

/* === TRANSFORMATION === */
.transform-section { padding: 160px 0; background: var(--color-cream); }
.transform-grid {
  display: grid; grid-template-columns: 1fr 64px 1fr;
  gap: 0; align-items: start; margin-top: 60px;
}
.transform-col-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 28px;
}
.transform-col-label.before { color: var(--color-rose); }
.transform-col-label.after { color: var(--sage-muted); text-align: right; }
.transform-items { display: flex; flex-direction: column; gap: 12px; }
.transform-item {
  font-size: 15px; font-weight: 300; line-height: 1.6;
  color: rgba(58,53,48,0.65); padding: 15px 18px;
  background: rgba(200,180,173,0.14); border-radius: 8px;
  border-left: 3px solid var(--color-rose);
}
.transform-item.after-item {
  background: rgba(181,186,170,0.14); border-left: none;
  border-right: 3px solid var(--color-sage); text-align: right;
  color: var(--color-dark); font-weight: 400;
}
.transform-divider {
  display: flex; flex-direction: column;
  align-items: center; padding-top: 44px; gap: 10px;
}
.transform-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-rose); color: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
}

/* === STATS === */
.stats-section { padding: 80px 0; background: var(--color-sage); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: 800px; margin: 0 auto; }
.stat-item { text-align: center; padding: 52px 32px; }
.stat-number {
  font-family: var(--serif); font-size: clamp(52px, 6vw, 72px);
  font-weight: 300; color: var(--color-dark); line-height: 1; display: block;
}
.stat-label {
  font-size: 13px; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(58,53,48,0.6); margin-top: 14px; display: block; line-height: 1.5;
}

/* === TESTIMONIALS === */
.testimonials-section { padding: 160px 0; background: var(--color-cream); overflow: hidden; }
.testimonials-scroll {
  display: flex; gap: 24px;
  margin-top: 60px; padding: 0 64px 16px;
  overflow-x: auto; scrollbar-width: none; cursor: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 380px; background: var(--white);
  border-radius: 22px; padding: 40px 36px;
  border: 1px solid rgba(58,53,48,0.05);
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(58,53,48,0.07); }
.testimonial-quote-mark {
  font-family: var(--serif); font-size: 72px; color: var(--color-rose);
  line-height: 0.55; opacity: 0.5; margin-bottom: 18px; display: block;
}
.testimonial-text {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  font-style: italic; line-height: 1.65; color: var(--color-dark); margin-bottom: 28px;
}
.testimonial-stars { color: var(--color-rose); font-size: 14px; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial-name {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(58,53,48,0.38);
}

/* === ABOUT SECTION === */
.about-section { padding: 160px 0; background: var(--cream-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--color-rose); color: var(--color-dark); border-radius: 50%;
  width: 104px; height: 104px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-family: var(--serif);
  box-shadow: 0 14px 36px rgba(200,180,173,0.4);
}
.about-badge .ab-num { font-size: 26px; font-weight: 600; line-height: 1; }
.about-badge .ab-label { font-size: 10px; line-height: 1.3; font-style: italic; opacity: 0.85; }
.about-headline {
  font-family: var(--serif); font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 300; line-height: 1.28; color: var(--color-dark); margin-bottom: 24px;
}
.about-headline em { font-style: italic; color: var(--sage-muted); }
.about-text { font-size: 16px; font-weight: 300; line-height: 1.88; color: rgba(58,53,48,0.63); }
.about-text p + p { margin-top: 18px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.value-tag {
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--color-dark); background: rgba(181,186,170,0.2);
  padding: 8px 18px; border-radius: 30px; border: 1px solid rgba(181,186,170,0.4);
}

/* === WAITLIST / FORMULAR === */
.waitlist-section {
  padding: 160px 0; background: var(--sage-muted);
  position: relative; overflow: hidden;
}
.waitlist-section::before {
  content: ''; position: absolute; top: -280px; left: 50%;
  transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,180,173,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.waitlist-inner { max-width: 620px; margin: 0 auto; padding: 0 64px; text-align: center; }
.waitlist-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-dark); margin-bottom: 24px;
}
.waitlist-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.2; color: var(--color-dark); margin-bottom: 20px;
}
.waitlist-headline em { font-style: italic; color: var(--color-cream); }
.waitlist-sub {
  font-size: 17px; font-weight: 300; line-height: 1.78;
  color: rgba(58,53,48,0.65); margin-bottom: 56px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { position: relative; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(58,53,48,0.06); border: 1px solid rgba(58,53,48,0.18);
  border-radius: 12px; padding: 20px 24px;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--color-dark); outline: none; cursor: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(58,53,48,0.38); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--color-rose); background: rgba(200,180,173,0.08); }
/* Heller Formular-Stil (für Coaching) */
.form-light .form-field input,
.form-light .form-field textarea,
.form-light .form-field select {
  background: rgba(58,53,48,0.04); border-color: rgba(58,53,48,0.15);
  color: var(--color-dark);
}
.form-light .form-field input::placeholder,
.form-light .form-field textarea::placeholder { color: rgba(58,53,48,0.35); }
.form-light .form-field input:focus,
.form-light .form-field textarea:focus { border-color: var(--color-rose); background: rgba(200,180,173,0.06); }
.form-submit {
  width: 100%; color: var(--color-dark);
  background: linear-gradient(to right, var(--rose-light) 50%, var(--color-rose) 50%);
  background-size: 200% 100%; background-position: right center;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: 12px; padding: 22px 40px; cursor: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background-position 0.5s var(--ease-spring), transform 0.3s var(--ease), box-shadow 0.3s;
}
.form-submit:hover {
  background-position: left center;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(200,180,173,0.3);
}
.form-privacy {
  font-size: 12px; font-weight: 300; color: rgba(58,53,48,0.4);
  margin-top: 10px; line-height: 1.7;
}
.form-privacy--dark { color: rgba(58,53,48,0.35); }
.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--color-rose);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 28px;
  animation: popIn 0.5s var(--ease) forwards;
}
.success-title {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--color-dark); margin-bottom: 16px;
}
.success-title--dark { color: var(--color-dark); }
.success-text {
  font-size: 17px; font-weight: 300; line-height: 1.78;
  color: rgba(58,53,48,0.6);
}
.success-text--dark { color: rgba(58,53,48,0.55); }

/* === EXPLORE / TEASER GRID (Startseite) === */
.explore-section { padding: 160px 0; background: var(--cream-mid); }
.explore-section .section-header { margin-bottom: 60px; }
.explore-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.explore-card {
  border-radius: 20px; overflow: hidden; text-decoration: none;
  background: var(--color-cream); border: 1px solid rgba(58,53,48,0.05);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(58,53,48,0.10); }
.explore-card-img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--cream-mid);
  position: relative;
}
.explore-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-spring);
}
.explore-card:hover .explore-card-img img { transform: scale(1.03); }
.explore-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-mid), var(--color-sage));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: rgba(58,53,48,0.18);
}
.explore-card-body { padding: 36px 36px 40px; flex: 1; }
.explore-card-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-rose); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.explore-card-label::before { content: ''; width: 22px; height: 1px; background: var(--color-rose); }
.explore-card-title {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 300; line-height: 1.3; color: var(--color-dark); margin-bottom: 14px;
}
.explore-card-text {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(58,53,48,0.55); margin-bottom: 24px;
}
.explore-card-link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--sage-muted); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s var(--ease);
}
.explore-card:hover .explore-card-link { gap: 14px; }

/* === ÜBER MICH SEITE === */
.bio-section { padding: 160px 0; background: var(--color-cream); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.bio-image-stack { position: relative; }
.bio-image-main { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; }
.bio-image-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-image-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 48%; border-radius: 16px; overflow: hidden; aspect-ratio: 1;
  border: 6px solid var(--color-cream);
  box-shadow: 0 20px 48px rgba(58,53,48,0.10);
}
.bio-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.bio-content { padding-top: 12px; }
.bio-intro-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300; font-style: italic; line-height: 1.38;
  color: var(--color-dark); margin-bottom: 40px;
}
.bio-intro-quote em { color: var(--sage-muted); font-style: normal; font-weight: 400; }
.bio-text { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(58,53,48,0.65); }
.bio-text p + p { margin-top: 22px; }
.bio-facts { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.bio-fact {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(58,53,48,0.07);
}
.bio-fact:first-child { border-top: 1px solid rgba(58,53,48,0.07); }
.bio-fact-icon {
  font-size: 20px; width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(181,186,170,0.2);
  display: flex; align-items: center; justify-content: center;
}
.bio-fact-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-rose); margin-bottom: 4px;
}
.bio-fact-text { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--color-dark); }

.philosophy-section { padding: 160px 0; background: var(--cream-mid); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.philosophy-card {
  padding: 44px 36px; border-radius: 20px; background: var(--color-cream);
  border: 1px solid rgba(58,53,48,0.05);
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.philosophy-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(58,53,48,0.07); }
.philosophy-card-num {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: rgba(58,53,48,0.06); line-height: 1; margin-bottom: -12px;
}
.philosophy-card-title {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--color-dark); margin-bottom: 14px;
}
.philosophy-card-text {
  font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(58,53,48,0.58);
}

/* === KURS SEITE === */
.kurs-teaser-section { padding: 160px 0; background: var(--color-cream); }
.kurs-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.kurs-teaser-image { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.kurs-teaser-image img { width: 100%; height: 100%; object-fit: cover; }
.kurs-label {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-dark); background: var(--color-rose);
  padding: 8px 18px; border-radius: 30px; margin-bottom: 28px;
}
.kurs-teaser-title {
  font-family: var(--serif); font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300; line-height: 1.25; color: var(--color-dark); margin-bottom: 24px;
}
.kurs-teaser-title em { font-style: italic; color: var(--sage-muted); }
.kurs-teaser-text {
  font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(58,53,48,0.62);
}
.kurs-teaser-text p + p { margin-top: 18px; }
.kurs-teaser-cta { margin-top: 44px; display: flex; align-items: center; gap: 20px; }
.kurs-details-section { padding: 160px 0; background: var(--cream-mid); }
.kurs-coming-section { padding: 160px 0; background: var(--sage-muted); text-align: center; }
.kurs-coming-inner { max-width: 680px; margin: 0 auto; padding: 0 64px; }
.kurs-coming-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.22; color: var(--color-dark); margin-bottom: 20px;
}
.kurs-coming-title em { font-style: italic; color: var(--color-cream); }
.kurs-coming-text {
  font-size: 17px; font-weight: 300; line-height: 1.78;
  color: rgba(58,53,48,0.65); margin-bottom: 52px;
}

/* === REZEPTE SEITE === */
.rezepte-intro-section { padding: 140px 0; background: var(--color-cream); }
.rezepte-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rezepte-intro-image { border-radius: 24px; overflow: hidden; aspect-ratio: 5/4; }
.rezepte-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.rezepte-intro-title {
  font-family: var(--serif); font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300; line-height: 1.28; color: var(--color-dark); margin-bottom: 24px;
}
.rezepte-intro-title em { font-style: italic; color: var(--sage-muted); }
.rezepte-intro-text {
  font-size: 17px; font-weight: 300; line-height: 1.85; color: rgba(58,53,48,0.62);
}
.rezepte-intro-text p + p { margin-top: 18px; }
.rezepte-categories-section { padding: 80px 0 0; background: var(--cream-mid); }
.rezepte-category-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-rose); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.rezepte-category-label::before { content: ''; width: 24px; height: 1px; background: var(--color-rose); }
.rezepte-category-title {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  font-weight: 300; color: var(--color-dark); margin-bottom: 40px;
}
.rezepte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
.rezept-card {
  border-radius: 18px; overflow: hidden; background: var(--color-cream);
  border: 1px solid rgba(58,53,48,0.05); text-decoration: none; color: inherit;
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.rezept-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(58,53,48,0.09); }
.rezept-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--cream-mid);
  position: relative;
}
.rezept-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-spring); }
.rezept-card:hover .rezept-card-img img { transform: scale(1.03); }
.rezept-card-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-dark); background: var(--color-rose);
  padding: 5px 12px; border-radius: 20px;
}
.rezept-card-body { padding: 24px 26px 28px; }
.rezept-card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--color-dark); margin-bottom: 8px; line-height: 1.3;
}
.rezept-card-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(58,53,48,0.55); }
.rezept-card-meta {
  display: flex; gap: 16px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(58,53,48,0.06);
}
.rezept-meta-item {
  font-size: 12px; font-weight: 300; color: rgba(58,53,48,0.4);
  display: flex; align-items: center; gap: 5px;
}
.rezept-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-mid), var(--color-sage));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
/* Bild-Platzhalter mit Dateiname */
.rezept-img-placeholder {
  position: absolute; inset: 0;
  background: var(--color-sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: var(--sans); letter-spacing: 0.08em;
  color: rgba(58,53,48,0.48); padding: 8px; text-align: center;
  z-index: 0;
}
.rezept-card-img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}

/* === COACHING SEITE === */
.coaching-intro-section { padding: 160px 0; background: var(--color-cream); }
.coaching-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coaching-intro-image { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.coaching-intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.coaching-intro-title {
  font-family: var(--serif); font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300; line-height: 1.28; color: var(--color-dark); margin-bottom: 24px;
}
.coaching-intro-title em { font-style: italic; color: var(--sage-muted); }
.coaching-intro-text {
  font-size: 16px; font-weight: 300; line-height: 1.88; color: rgba(58,53,48,0.62);
}
.coaching-intro-text p + p { margin-top: 18px; }
.coaching-features-section { padding: 100px 0 160px; background: var(--cream-mid); }
.coaching-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.coaching-feature-card {
  background: var(--color-cream); border-radius: 18px; padding: 40px 32px;
  border: 1px solid rgba(58,53,48,0.05);
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.coaching-feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(58,53,48,0.07); }
.coaching-feature-icon {
  font-size: 26px; width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(181,186,170,0.25), rgba(200,180,173,0.2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.coaching-feature-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--color-dark); margin-bottom: 12px;
}
.coaching-feature-text { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(58,53,48,0.58); }
.coaching-form-section { padding: 140px 0 160px; background: var(--color-cream); }
.coaching-form-wrap { max-width: 780px; margin: 0 auto; }
.coaching-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.coaching-form-full { grid-column: 1 / -1; }

/* === FOOTER === */
footer {
  background: var(--color-sage); padding: 100px 0 48px;
  position: relative; overflow: hidden;
}
footer::before {
  content: 'JW';
  position: absolute; bottom: -60px; right: -20px;
  font-family: var(--serif); font-size: clamp(220px, 22vw, 320px);
  font-weight: 300; color: rgba(58,53,48,0.05);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: start;
  padding-bottom: 56px; border-bottom: 1px solid rgba(58,53,48,0.10);
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-dark);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px; font-weight: 300; font-style: italic;
  font-family: var(--serif); color: rgba(58,53,48,0.5); line-height: 1.6;
  max-width: 220px;
}
.footer-nav {
  position: static;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  padding: 0; background: none; box-shadow: none;
}
.footer-nav a {
  font-size: 13px; font-weight: 300; color: rgba(58,53,48,0.55);
  text-decoration: none; letter-spacing: 0.08em; transition: color 0.25s, letter-spacing 0.25s;
  text-align: center;
}
.footer-nav a:hover { color: var(--color-dark); letter-spacing: 0.12em; }
.footer-social {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.footer-social > a {
  font-size: 13px; font-weight: 400; color: var(--color-dark);
  text-decoration: none; letter-spacing: 0.1em;
  padding: 10px 22px; border-radius: 30px;
  border: 1.5px solid rgba(58,53,48,0.2);
  transition: background 0.3s, border-color 0.3s;
}
.footer-social > a:hover { background: rgba(58,53,48,0.07); border-color: rgba(58,53,48,0.4); }
.footer-legal {
  display: flex; gap: 24px; margin-top: 20px;
}
.footer-legal a {
  font-size: 12px; font-weight: 300; color: rgba(58,53,48,0.38);
  text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(58,53,48,0.65); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(58,53,48,0.28); letter-spacing: 0.04em; }
.footer-instagram a {
  font-size: 12px; color: rgba(58,53,48,0.45); text-decoration: none;
  letter-spacing: 0.12em; transition: color 0.2s;
}
.footer-instagram a:hover { color: var(--color-dark); }

/* === KEYFRAMES === */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-11px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scanline { 0% { left: -100%; } 50%, 100% { left: 110%; } }
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =====================================================
   VERKAUFSPSYCHOLOGIE-UPGRADES
   ===================================================== */

/* Hero – Founding Story Hook */
.hero-origin {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(58,53,48,0.52); letter-spacing: 0.03em;
  margin-top: -12px; margin-bottom: 32px;
}

/* Testimonials – Namen & Kontext */
.testimonial-name {
  font-size: 13px; font-weight: 400; color: rgba(58,53,48,0.55);
  letter-spacing: 0.03em;
}
.testimonial-context {
  display: block; font-size: 12px; font-weight: 300;
  color: rgba(58,53,48,0.38); margin-top: 3px;
  font-style: italic;
}

/* Vorher–Nachher – Zeitangabe */
.transform-col-label .time-hint {
  display: block; font-size: 11px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.55; margin-top: 4px; font-style: normal;
  font-family: var(--sans);
}

/* Preis-Badge auf Kurs-Seite */
.kurs-price-bar {
  background: var(--cream-mid);
  border-radius: 16px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 80px;
}
.kurs-price-main {
  display: flex; align-items: baseline; gap: 10px;
}
.kurs-price-amount {
  font-family: var(--serif); font-size: clamp(48px, 5vw, 64px);
  font-weight: 300; color: var(--color-dark); line-height: 1;
}
.kurs-price-currency {
  font-size: 22px; font-weight: 300; color: rgba(58,53,48,0.55);
}
.kurs-price-hint {
  font-size: 13px; font-weight: 300; color: rgba(58,53,48,0.55);
  max-width: 280px; line-height: 1.6;
}
.kurs-price-tags {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px;
}
.kurs-price-tag {
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px;
  border: 1px solid rgba(58,53,48,0.18); border-radius: 30px;
  color: rgba(58,53,48,0.6);
}

/* FAQ-Sektion */
.faq-section { padding: 120px 0; background: var(--color-cream); }
.faq-list { margin-top: 56px; }
.faq-item {
  border-top: 1px solid rgba(58,53,48,0.1);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(58,53,48,0.1); }
.faq-q {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 22px);
  font-weight: 400; color: var(--color-dark); margin-bottom: 12px;
  cursor: default;
}
.faq-a {
  font-size: 16px; font-weight: 300; line-height: 1.78;
  color: rgba(58,53,48,0.68); max-width: 680px;
}
.faq-a a { color: var(--color-rose); text-decoration: underline; text-underline-offset: 3px; }

/* Risk Reversal – Coaching Form */
.form-reassurance {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(58,53,48,0.5); margin-top: 16px;
  line-height: 1.65; text-align: center;
}

/* Reziprozitäts-Brücke */
.rezipro-bridge {
  margin-top: 28px; padding: 24px 28px;
  background: var(--cream-mid); border-radius: 10px;
  border-left: 3px solid var(--color-rose);
  font-size: 15px; font-weight: 300; line-height: 1.72;
  color: rgba(58,53,48,0.72);
}
.rezipro-bridge a {
  color: var(--color-dark); font-weight: 400;
  text-decoration: underline; text-underline-offset: 3px;
}

/* =====================================================
   KÜCHEN-ALLTAG GALERIE (index.html)
   ===================================================== */
.kitchen-section {
  padding: 160px 0;
  background: var(--color-cream);
}
.kitchen-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.kitchen-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 300; line-height: 1.12;
  color: var(--color-dark); margin-bottom: 24px;
}
.kitchen-headline em { font-style: italic; color: var(--sage-muted); }
.kitchen-lead {
  font-size: 17px; font-weight: 300; line-height: 1.82;
  color: rgba(58,53,48,0.68); margin-bottom: 36px; max-width: 400px;
}

/* Mosaik-Grid: 3 Bilder, asymmetrisch */
.kitchen-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 264px 204px;
  gap: 10px;
}
.mosaic-item {
  position: relative; overflow: hidden;
  border-radius: 8px; background: var(--cream-mid);
}
.mosaic-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease-spring);
}
.mosaic-item:hover img { transform: scale(1.04); }

/* Positionen der drei Bilder */
.mosaic-large { grid-column: 1; grid-row: 1; }
.mosaic-tall  { grid-column: 2; grid-row: 1 / span 2; }
.mosaic-small { grid-column: 1; grid-row: 2; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: 1fr; }
  .kurs-teaser-grid { grid-template-columns: 1fr; }
  .rezepte-intro-grid { grid-template-columns: 1fr; }
  .coaching-intro-grid { grid-template-columns: 1fr; }
  .coaching-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  nav { padding: 20px 24px; }
  nav.scrolled, nav.inner { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-left { padding: 130px 24px 60px; }
  .hero-right { display: none; }
  .section-inner { padding: 0 24px; }
  .page-hero-inner { padding: 0 24px; grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 120px 0 80px; }
  .page-hero-image { display: none; }
  .pain-grid { grid-template-columns: 1fr; gap: 44px; }
  .course-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .layers-grid { grid-template-columns: 1fr; }
  .layer-card:first-child { border-radius: 18px 18px 0 0; }
  .layer-card:last-child { border-radius: 0 0 18px 18px; }
  .inside-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-divider { padding: 10px 0; flex-direction: row; justify-content: center; }
  .transform-col-label.after { text-align: left; }
  .transform-item.after-item { text-align: left; border-right: none; border-left: 3px solid var(--color-sage); }
  .stats-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .kitchen-layout { grid-template-columns: 1fr; gap: 48px; }
  .kitchen-mosaic { grid-template-rows: 220px 170px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-scroll { padding: 0 24px 16px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-social { align-items: center; }
  .footer-legal { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .manifesto-inner { padding: 0 24px; }
  .waitlist-inner { padding: 0 24px; }
  .kurs-coming-inner { padding: 0 24px; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-image-accent { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .rezepte-grid { grid-template-columns: 1fr 1fr; }
  .coaching-features-grid { grid-template-columns: 1fr; }
  .coaching-form-grid { grid-template-columns: 1fr; }
  .coaching-form-full { grid-column: 1; }
  .explore-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .rezepte-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 300px; }
  .inside-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(44px, 11vw, 64px); }
  .page-hero-title { font-size: clamp(40px, 10vw, 60px); }
  .kitchen-mosaic { grid-template-rows: 170px 130px; }
}

/* =====================================================
   PREMIUM ENHANCEMENTS
   ===================================================== */

/* Horizontal decorative divider */
.section-rule {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(58,53,48,0.1), transparent);
  border: none; margin: 0;
}

/* Nav CTA – fill sweep */
.nav-cta {
  background: linear-gradient(to right, var(--rose-light) 50%, var(--color-rose) 50%);
  background-size: 200% 100%; background-position: right center;
  transition: background-position 0.45s var(--ease-spring), transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.nav-cta:hover {
  background-position: left center !important;
  background: linear-gradient(to right, var(--rose-light) 50%, var(--color-rose) 50%) !important;
  background-size: 200% 100% !important;
  background-position: left center !important;
}

/* About image hover */
.about-image-frame img {
  transition: transform 0.65s var(--ease-spring);
}
.about-image-wrap:hover .about-image-frame img { transform: scale(1.03); }

/* Bio image hover */
.bio-image-main img {
  transition: transform 0.65s var(--ease-spring);
}
.bio-image-stack:hover .bio-image-main img { transform: scale(1.03); }

/* Kurs teaser image hover */
.kurs-teaser-image img {
  transition: transform 0.65s var(--ease-spring);
  width: 100%; height: 100%; object-fit: cover;
}
.kurs-teaser-section .kurs-teaser-image:hover img { transform: scale(1.03); }

/* Page hero image hover */
.page-hero-image {
  transition: transform 0.65s var(--ease-spring), opacity 1s var(--ease), transform 1s var(--ease);
}
.page-hero-image img {
  transition: transform 0.65s var(--ease-spring);
}
.page-hero-image:hover img { transform: scale(1.03); }

/* Coaching intro image hover */
.coaching-intro-image img {
  transition: transform 0.65s var(--ease-spring);
}
.coaching-intro-image:hover img { transform: scale(1.03); }

/* Testimonial card — bigger quote mark */
.testimonial-quote-mark {
  font-size: 96px !important;
}
.testimonial-text {
  font-size: 21px !important;
  line-height: 1.7 !important;
}

/* Layer card — bigger num */
.layer-num { font-size: 104px !important; }

/* Bigger about headline */
.about-headline {
  font-size: clamp(34px, 3.8vw, 50px) !important;
  line-height: 1.22 !important;
}

/* Waitlist headline */
.waitlist-headline {
  font-size: clamp(40px, 4.8vw, 66px) !important;
  line-height: 1.18 !important;
}

/* Pain item spacing */
.pain-item { padding: 26px 0; }
.pain-text { font-size: 16px; line-height: 1.75; }

/* Section headline extra margin */
.section-headline { margin-bottom: 0; }
.section-headline + .section-sub { margin-top: 20px; }

/* Larger manifesto rule */
.manifesto-rule { width: 72px !important; margin: 52px auto !important; }

/* Card hover transitions — uniform 0.4s */
.explore-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }
.inside-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }
.testimonial-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }
.philosophy-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }
.coaching-feature-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }
.rezept-card { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s !important; }

/* =====================================================
   PREFERS REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-actions,
  .page-hero-eyebrow,
  .page-hero-title,
  .page-hero-sub,
  .page-hero-image {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-line {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .marquee-track { animation: none !important; }
  .hero-image-wrap img { animation: none !important; transform: scale(1) !important; }
  .hero-badge { animation: none !important; }
  .scroll-line::after { animation: none !important; }
}
