/*
Theme Name: Nadine Hebbel
Theme URI: https://nadinehebbel.de
Author: Nadine Hebbel
Description: Personal Brand Theme - Neuro:Essenz Coaching
Version: 1.0
Text Domain: nadine-hebbel
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --teal:       #056e7f;
  --deep-teal:  #044f5c;
  --dusty-teal: #7ca8b0;
  --ocean:      #8db8c2;
  --charcoal:   #2c2825;
  --pearl:      #faf7f3;
  --cream:      #f4ede0;
  --sand:       #c9b99a;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Jost', Helvetica, sans-serif;

  /* Schriftgrößen: Minimum 1.25rem für Fließtext */
  --fs-hero:  clamp(2.75rem, 6vw, 5rem);
  --fs-h1:    clamp(2.5rem, 5vw, 4rem);
  --fs-h2:    clamp(1.875rem, 3vw, 2.5rem);
  --fs-h3:    clamp(1.375rem, 2vw, 1.75rem);
  --fs-lead:  clamp(1.25rem, 1.6vw, 1.375rem);
  --fs-body:  1.15rem;
  --fs-label: 1.25rem;
  --fs-btn:   1.0rem;
  --fs-nav:   1.0rem;

  --lh-hero: 1.05;
  --lh-h:    1.2;
  --lh-lead: 1.65;
  --lh-body: 1.8;

  --xs:  8px;
  --sm:  16px;
  --md:  24px;
  --lg:  40px;
  --xl:  64px;
  --xxl: 96px;

  --ls:   0.15em;
  --max:  1200px;
  --radius-image: 50px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); font-weight: 300; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--charcoal); background-color: var(--pearl); overflow-x: hidden; }
img, video { max-width: 100%; display: block; height: auto; }
img { border-radius: var(--radius-image); }
.home-hero__photo,
.site-logo img { border-radius: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1 { font-family: var(--display); font-weight: 300; font-size: var(--fs-h1); line-height: var(--lh-h); color: var(--charcoal); font-style: normal; }
h2 { font-family: var(--display); font-weight: 300; font-size: var(--fs-h2); line-height: var(--lh-h); color: var(--charcoal); font-style: normal; }
h3 { font-family: var(--display); font-weight: 400; font-size: var(--fs-h3); line-height: var(--lh-h); color: var(--charcoal); font-style: normal; }
p  { font-family: var(--body); font-weight: 300; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--charcoal); }

.is-inner-page h1 {
  line-height: var(--lh-h);
}

.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--charcoal);
  font-style: normal;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sm);
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.5;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--teal);
  flex-shrink: 0;
}
.caption {
  font-family: var(--body);
  font-weight: 400;
  font-size: var(--fs-label);
  line-height: 1.6;
  color: var(--charcoal);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container        { max-width: var(--max); margin: 0 auto; padding: 0 var(--lg); }
.container--narrow{ max-width: 800px;      margin: 0 auto; padding: 0 var(--lg); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--pearl);
  border-bottom: 1px solid var(--sand);
  padding: 18px 0;
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(44,40,37,0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--lg);
}
.site-logo img { height: 56px; width: auto; display: block; }

/* Desktop Nav */
.site-nav { display: flex; align-items: center; gap: var(--lg); }
.site-nav a {
  font-family: var(--body);
  font-weight: 400;
  font-size: var(--fs-nav);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--ease);
}
.site-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background-color: var(--teal); transition: width var(--ease); }
.site-nav a:hover { color: var(--teal); }
.site-nav a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--fs-btn);
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: var(--pearl);
  background-color: var(--teal);
  padding: 11px 22px;
  transition: background-color var(--ease);
  text-decoration: none;
}
.nav-cta:hover { background-color: var(--deep-teal); color: var(--pearl); }
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.mobile-nav .nav-cta,
.mobile-nav .nav-cta:hover {
  color: var(--pearl);
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 4px; z-index: 201; }
.nav-toggle span { display: block; width: 26px; height: 1px; background-color: var(--charcoal); transition: transform var(--ease), opacity var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: flex;
  position: fixed;
  top: var(--mobile-nav-top, 0px);
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(100dvh - var(--mobile-nav-top, 0px));
  background-color: rgba(250, 247, 243, 0.98);
  z-index: 199;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--lg);
  padding: var(--xl) var(--lg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity var(--ease), transform var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav a { font-family: var(--display); font-weight: 300; font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--charcoal); transition: color var(--ease); }
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .nav-cta { font-family: var(--body); font-size: var(--fs-btn); margin-top: var(--md); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--fs-btn);
  letter-spacing: var(--ls);
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid transparent;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}
.btn--primary { color: var(--pearl); background-color: var(--teal); border-color: var(--teal); }
.btn--primary:hover { background-color: var(--deep-teal); border-color: var(--deep-teal); color: var(--pearl); }
.btn--outline { color: var(--teal); background-color: transparent; border-color: var(--teal); }
.btn--outline:hover { color: var(--pearl); background-color: var(--teal); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 400;
  font-size: var(--fs-btn);
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 3px;
  transition: color var(--ease), border-color var(--ease);
}
.btn-text:hover { color: var(--deep-teal); border-color: var(--deep-teal); }

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background-color: var(--pearl);
}

.home-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--xxl) var(--xl) var(--xxl) var(--lg);
  position: relative;
}
.home-hero__left::after {
  content: '';
  position: absolute;
  right: 0; top: var(--xxl); bottom: var(--xxl);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sand), transparent);
}

.home-hero__right {
  position: relative;
  overflow: visible;
}
.home-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0 0 0 150px;
}
.home-hero__photo-accent {
  position: absolute;
  bottom: var(--xl);
  left: -16px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--teal);
  pointer-events: none;
}

.home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sm);
  margin-bottom: var(--lg);
}
.home-hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background-color: var(--teal); flex-shrink: 0; }
.home-hero__eyebrow span { font-family: var(--body); font-weight: 500; font-size: var(--fs-nav); letter-spacing: var(--ls); text-transform: uppercase; color: var(--teal); }

.home-hero__headline { font-family: var(--display); font-weight: 300; font-size: var(--fs-hero); line-height: var(--lh-hero); color: var(--charcoal); margin-bottom: var(--lg); }
.home-hero__subline  { font-family: var(--display); font-size: var(--fs-lead); font-weight: 300; line-height: var(--lh-lead); color: var(--charcoal); opacity: 0.75; margin-bottom: var(--xl); max-width: 480px; }
.home-hero__actions  { display: flex; align-items: center; gap: var(--md); flex-wrap: wrap; }

/* ============================================================
   PROBLEME - Dark Split, zweizeiliger Aufbau
   ============================================================ */
.problem-section {
  padding: var(--xxl) 0;
  background-color: var(--deep-teal);
  position: relative;
  overflow: hidden;
}
.problem-section::after {
  content: '';
  position: absolute;
  top: -220px;
  right: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 184, 194, 0.18) 0%, rgba(141, 184, 194, 0) 68%);
  pointer-events: none;
}
.problem-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--xl);
}
.problem-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--xxl);
  align-items: start;
}
.problem-section__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sm);
}
.problem-section__left .eyebrow {
  color: var(--ocean);
  margin-bottom: 0;
}
.problem-section__left .eyebrow::before { background-color: var(--ocean); }
.problem-section__left h2 { color: var(--pearl); }
.problem-section__right {
  display: flex;
  align-items: flex-start;
}
.problem-section__right p {
  color: rgba(250, 247, 243, 0.86);
  line-height: 1.8;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background-color: rgba(141, 184, 194, 0.24);
  border: 1px solid rgba(141, 184, 194, 0.24);
}
.problem-item {
  background-color: rgba(250, 247, 243, 0.06);
  padding: var(--lg) var(--md);
  transition: background-color var(--ease);
}
.problem-item:hover { background-color: rgba(250, 247, 243, 0.11); }
.problem-item__num {
  font-family: var(--body);
  font-size: var(--fs-btn);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(141, 184, 194, 0.62);
  line-height: 1;
  margin-bottom: var(--md);
}
.problem-item__title {
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: 0;
  text-transform: none;
  color: var(--pearl);
  margin-bottom: var(--sm);
}
.problem-item p {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: rgba(250, 247, 243, 0.74);
}
/* ============================================================
   UEBER MICH — Pearl, Foto links mit Akzent-Kasten
   ============================================================ */
.about-section { padding: var(--xxl) 0; background-color: var(--pearl); }
.about-section__inner { display: grid; grid-template-columns: 5fr 6fr; gap: var(--xl); align-items: start; }

.about-section__image-wrap {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}
.about-section__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }

/* Akzent-Kasten — teal, rechts unten am Foto */
.about-section__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border: 2px solid var(--teal);
  pointer-events: none;
}

.about-section__content .eyebrow { margin-bottom: var(--md); }
.about-section__content h2 { margin-bottom: var(--md); }
.about-section__content p + p { margin-top: var(--md); }
.about-section__pull { border-top: 1px solid var(--teal); padding-top: var(--md); margin: var(--lg) 0; }
.about-section__pull p { font-family: var(--display); font-style: italic; font-size: var(--fs-lead); }
.about-section__content .btn-text { margin-top: var(--lg); display: inline-flex; }

.trust-seals {
  display: flex;
  align-items: center;
  gap: var(--md);
  flex-wrap: wrap;
  margin-top: var(--lg);
}
.trust-seals--single {
  justify-content: flex-end;
  margin-top: 0;
}
.trust-seals--about {
  flex-wrap: nowrap;
}
.trust-seals--about .trust-seal {
  width: clamp(88px, 8vw, 116px);
}
.trust-seal {
  width: clamp(112px, 11vw, 150px);
  height: auto;
  border-radius: 0;
  background-color: var(--pearl);
}

/* ============================================================
   PROGRAMM — Cream, 4 Phasen in 4 Spalten
   ============================================================ */
.program-section { padding: var(--xxl) 0; background-color: var(--cream); }
.program-section__header { margin-bottom: var(--xl); }
.program-section__header .eyebrow { margin-bottom: var(--md); }
.program-section__header .lead { margin-top: var(--md); max-width: 600px; }

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--sand);
  border: 1px solid var(--sand);
}
.phase-item { background-color: var(--pearl); padding: var(--lg) var(--md); border: 1px solid transparent; transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease); }
.phase-item:hover { background-color: var(--cream); border-color: rgba(5, 110, 127, 0.25); box-shadow: 0 8px 28px rgba(5, 110, 127, 0.08); }
.phase-item__num { font-family: var(--display); font-size: 2.4rem; font-weight: 300; color: var(--sand); line-height: 1; margin-bottom: var(--sm); }
.phase-item .eyebrow { margin-bottom: 10px; }
.phase-item h3 { margin-bottom: 10px; }
.phase-item p { font-size: var(--fs-body); line-height: 1.62; color: rgba(44, 40, 37, 0.88); }

.breakthrough-list { margin-top: var(--sm); display: flex; flex-direction: column; gap: 10px; }
.breakthrough-list li { font-family: var(--body); font-style: normal; font-size: var(--fs-body); font-weight: 500; line-height: 1.45; color: var(--teal); padding-left: 18px; position: relative; }
.breakthrough-list li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 8px; height: 1px; background-color: var(--dusty-teal); }

.program-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--lg);
  margin-top: var(--xl);
  padding-top: var(--xl);
  border-top: 1px solid var(--sand);
}
.program-facts > div:not(.fact-divider) { min-width: 0; }
.program-fact__num { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--teal); line-height: 1; }
.program-fact__label { font-family: var(--body); font-weight: 500; font-size: var(--fs-label); letter-spacing: var(--ls); text-transform: uppercase; color: var(--charcoal); margin-top: 4px; }
.fact-divider { display: none; }

/* ============================================================
   FUER WEN — Pearl, Foto + Liste
   ============================================================ */
.fuerwen-section { padding: var(--xxl) 0; background-color: var(--pearl); }
.fuerwen-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: start; }
.fuerwen-section__img { width: 100%; height: auto; display: block; }
.fuerwen-section__content .eyebrow { margin-bottom: var(--md); }
.fuerwen-section__content h2 { margin-bottom: var(--md); }
.fuerwen-section__content .lead { margin-bottom: var(--lg); }
.fuerwen-list { display: flex; flex-direction: column; gap: var(--md); margin-bottom: var(--xl); }
.fuerwen-item { display: flex; gap: var(--md); align-items: flex-start; }
.fuerwen-item__dot { width: 8px; height: 8px; background-color: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 10px; }
.fuerwen-item p { font-size: var(--fs-body); }

/* ============================================================
   ZIELE - Leistungsbereiche-Optik mit 01-06
   ============================================================ */
.ziele-section { padding: var(--xxl) 0; background-color: var(--cream); }
.ziele-section__header { margin-bottom: var(--xl); }
.ziele-section__header .eyebrow { margin-bottom: var(--md); }
.ziele-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background-color: var(--sand);
}
.ziel-card {
  background-color: var(--pearl);
  padding: var(--lg) var(--md);
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: background-color var(--ease);
}
.ziel-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.ziel-card::after {
  content: attr(data-num);
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(44, 40, 37, 0.08);
  line-height: 1;
  pointer-events: none;
}
.ziel-card:hover { background-color: var(--pearl); }
.ziel-card:hover::before { transform: scaleX(1); }
.ziel-card h3 { margin-bottom: var(--sm); }
.ziel-card p {
  color: rgba(44, 40, 37, 0.78);
  line-height: 1.75;
}
/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section { padding: var(--xxl) 0; background-color: var(--teal); }
.testimonial-section__inner { max-width: 820px; margin: 0 auto; padding: 0 var(--lg); text-align: center; }
.testimonial__text { font-family: var(--display); font-weight: 300; font-size: clamp(var(--fs-lead), 2.5vw, 2rem); line-height: 1.55; color: var(--pearl); font-style: italic; margin-bottom: var(--lg); }
.testimonial__source { font-family: var(--body); font-weight: 500; font-size: var(--fs-label); letter-spacing: var(--ls); text-transform: uppercase; color: var(--ocean); }

/* ============================================================
   ABLAUF
   ============================================================ */
.ablauf-section { padding: var(--xxl) 0; background-color: var(--pearl); }
.ablauf-section__header { margin-bottom: var(--xl); }
.ablauf-section__header--with-seal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: var(--xl);
  align-items: center;
}
.ablauf-section__header .eyebrow { margin-bottom: var(--md); }

.ablauf-steps { display: grid; grid-template-columns: 1fr; gap: 1px; background-color: var(--sand); border: 1px solid var(--sand); }
.ablauf-step { display: grid; grid-template-columns: 80px 1fr; background-color: var(--pearl); transition: background-color var(--ease); }
.ablauf-step:hover { background-color: var(--cream); }
.ablauf-step__num { display: flex; align-items: flex-start; justify-content: center; padding: var(--lg) var(--md); font-family: var(--display); font-size: 2.5rem; font-weight: 300; color: var(--sand); border-right: 1px solid var(--sand); line-height: 1; }
.ablauf-step__content { padding: var(--lg); }
.ablauf-step__content .eyebrow { margin-bottom: var(--sm); }
.ablauf-step__content h3 { margin-bottom: var(--sm); }

/* ============================================================
   KONTAKT
   ============================================================ */
.cta-section { padding: var(--xxl) 0; background-color: var(--cream); }
.cta-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--xl); align-items: start; }
.cta-section__text .eyebrow { margin-bottom: var(--md); }
.cta-section__text h2 { margin-bottom: var(--md); }
.cta-section__text .lead { margin-bottom: var(--md); }
.cta-section__text p { margin-bottom: var(--xl); opacity: 0.7; }
.cta-section__text .btn { margin-right: var(--sm); }

.cta-form { background-color: var(--pearl); padding: var(--xl) var(--lg); border: 1px solid var(--sand); }
.cta-form h3 { margin-bottom: var(--sm); }
.cta-form .lead { font-size: var(--fs-body); margin-bottom: var(--lg); }

.form-group { display: flex; flex-direction: column; gap: var(--xs); margin-bottom: var(--md); }
.form-label { font-family: var(--body); font-weight: 500; font-size: var(--fs-label); letter-spacing: var(--ls); text-transform: uppercase; color: var(--teal); }
.form-input, .form-textarea { font-family: var(--body); font-weight: 300; font-size: var(--fs-body); color: var(--charcoal); background-color: transparent; border: none; border-bottom: 1px solid var(--sand); padding: var(--xs) 0; width: 100%; outline: none; transition: border-color var(--ease); }
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--teal); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--sand); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-submit { display: block; width: 100%; font-family: var(--body); font-weight: 500; font-size: var(--fs-btn); letter-spacing: var(--ls); text-transform: uppercase; color: var(--pearl); background-color: var(--teal); border: none; padding: 18px; cursor: pointer; transition: background-color var(--ease); margin-top: var(--md); }
.form-submit:hover { background-color: var(--deep-teal); }
.form-privacy { font-size: var(--fs-label); color: var(--sand); margin-top: var(--sm); line-height: 1.6; }
.form-privacy a { color: var(--teal); }
.form-privacy a:hover { border-bottom: 1px solid var(--teal); }

/* ============================================================
   TRENNLINIEN & AKZENTE
   ============================================================ */
hr { border: none; border-top: 1px solid var(--sand); margin: var(--lg) 0; }
.accent-line { display: block; width: 32px; height: 2px; background-color: var(--teal); margin-bottom: var(--lg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background-color: var(--cream); border-top: 1px solid var(--sand); padding: var(--xl) 0 var(--lg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--xl); margin-bottom: var(--xl); }
.footer__brand .site-logo { margin-bottom: var(--md); display: inline-block; }
.footer__brand p { opacity: 0.6; font-size: var(--fs-body); line-height: 1.7; max-width: 300px; }
.footer__col h4 { font-family: var(--body); font-weight: 500; font-size: var(--fs-label); letter-spacing: var(--ls); text-transform: uppercase; color: var(--teal); margin-bottom: var(--md); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { opacity: 0.65; font-size: var(--fs-body); font-weight: 300; transition: opacity var(--ease), color var(--ease); }
.footer__col ul li a:hover { opacity: 1; color: var(--teal); }
.footer__bottom { border-top: 1px solid var(--sand); padding-top: var(--lg); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--md); }
.footer__bottom p, .footer__bottom a { opacity: 0.4; font-size: var(--fs-label); transition: opacity var(--ease); }
.footer__bottom a:hover { opacity: 0.8; }
.footer__legal { display: flex; gap: var(--lg); }

/* ============================================================
   PAGE HERO UND GETEILTE SEITENKOMPONENTEN
   ============================================================ */
.page-hero { padding: 0 0 var(--lg); background-color: var(--cream); border-bottom: 1px solid var(--sand); }
.page-hero > .container { max-width: none; width: 100%; padding: 0; }
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(520px, 68vh, 760px);
}
.page-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--md);
  padding: var(--xxl) clamp(var(--lg), 6vw, 112px);
}
.page-hero__left > * { max-width: 780px; }
.page-hero__left .eyebrow { margin-bottom: 0; }
.page-hero__left h1 { margin: 0; }
.page-hero__left .lead { margin: 0; max-width: 720px; }
.page-hero__actions { display: flex; align-items: center; gap: var(--md); flex-wrap: wrap; margin-top: var(--sm); }
.page-hero__right { display: block; }
.page-hero__image {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 68vh, 760px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0 0 0 120px;
}

.page-hero__image--neuro-essenz {
  object-position: center center;
}

.page-hero__facts {
  width: min(var(--max), calc(100% - (var(--lg) * 2)));
  margin: var(--lg) auto 0;
  background-color: var(--sand);
  border: 1px solid var(--sand);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
}
.fact-item {
  background-color: var(--cream);
  padding: var(--md) var(--sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.fact-item__num { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; color: var(--teal); }
.fact-item__label { font-family: var(--body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); }

.phase-section { padding: var(--xxl) 0; background-color: var(--pearl); }
.phase-section__head { margin-bottom: var(--xl); }
.phase-section__head .eyebrow { margin-bottom: var(--md); }
.phase-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background-color: rgba(201, 185, 154, 0.9);
}
.phase-card {
  position: relative;
  background-color: var(--pearl);
  border: none;
  padding: var(--xl) var(--md) var(--lg);
  min-height: 250px;
  overflow: visible;
  transition: background-color var(--ease), box-shadow var(--ease);
}
.phase-card:hover { background-color: var(--pearl); box-shadow: 0 8px 24px rgba(5, 110, 127, 0.08); }
.phase-card::after {
  content: attr(data-num);
  position: absolute;
  right: 12px;
  bottom: -2px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 5.2rem);
  line-height: 1;
  color: rgba(44, 40, 37, 0.08);
  z-index: 4;
  pointer-events: none;
}
.phase-card h3 { margin-bottom: var(--sm); position: relative; z-index: 1; }
.phase-card p { position: relative; z-index: 1; line-height: 1.68; color: rgba(44, 40, 37, 0.86); }

.feature-section {
  padding: var(--xxl) 0;
  background-color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.feature-section::after {
  display: none;
}
.feature-section__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--xxl);
  align-items: start;
  margin-bottom: var(--xl);
}
.feature-section__left { display: flex; flex-direction: column; gap: var(--sm); }
.feature-section__left .eyebrow { margin-bottom: 0; color: var(--teal); }
.feature-section__left .eyebrow::before { background-color: var(--teal); }
.feature-section__left h2 { color: var(--charcoal); }
.feature-section__right { display: flex; align-items: flex-start; }
.feature-section__right p { line-height: 1.8; color: rgba(44, 40, 37, 0.86); }
.feature-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background-color: rgba(141, 184, 194, 0.42);
  border: 1px solid rgba(141, 184, 194, 0.42);
}
.feature-card {
  background-color: var(--deep-teal);
  border: none;
  padding: var(--lg) var(--md);
  transition: background-color var(--ease);
}
.feature-card:hover {
  background-color: var(--teal);
}
.feature-card h3 {
  margin-bottom: var(--sm);
  color: var(--pearl);
}
.feature-card p {
  line-height: 1.72;
  color: rgba(250, 247, 243, 0.86);
}

#programm-cta { padding-bottom: calc(var(--xxl) + var(--lg)); }
#programm-cta .about-section__content p:last-of-type { margin-bottom: var(--xl); }
#programm-cta .about-section__content .btn { margin-top: 0; }

/* ============================================================
   GETEILTE INHALTSSEKTIONEN
   ============================================================ */
.approach-section { padding: var(--xxl) 0; background-color: var(--pearl); border-bottom: 1px solid var(--sand); }
.approach-section__inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--xl); align-items: start; }
.approach-section__copy { display: grid; gap: var(--md); }
.approach-section__copy p { color: rgba(44, 40, 37, 0.82); }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--lg); }
.offer-card { min-height: 100%; padding: var(--lg); background-color: var(--pearl); border: 1px solid var(--sand); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.offer-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 18px 36px rgba(44, 40, 37, 0.08); }
.offer-card .eyebrow { margin-bottom: var(--md); font-size: 1rem; }
.offer-card h3 { margin-bottom: var(--md); }
.offer-card p { margin-bottom: var(--lg); color: rgba(44, 40, 37, 0.82); }

.credential-section,
.detail-section,
.faq-section,
.booking-section { padding: var(--xxl) 0; background-color: var(--pearl); }
.credential-section { border-top: 1px solid var(--sand); }
.credential-section__head,
.detail-section__head,
.faq-section__head,
.booking-section__intro { margin-bottom: var(--xl); }

.credential-grid,
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--lg); }
.credential-item,
.method-item { padding: var(--lg); background-color: var(--cream); border: 1px solid rgba(201, 185, 154, 0.7); }
.credential-item h3,
.method-item h3 { margin-bottom: var(--sm); }
.credential-item p,
.method-item p { color: rgba(44, 40, 37, 0.82); }

.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--lg); align-items: stretch; }
.detail-grid--single { grid-template-columns: minmax(0, 0.78fr); }
.detail-card { padding: var(--xl); background-color: var(--cream); border: 1px solid var(--sand); }
.detail-card--accent { background-color: var(--teal); border-color: var(--teal); }
.detail-card--accent,
.detail-card--accent h3,
.detail-card--accent p,
.detail-card--accent li,
.detail-card--accent .eyebrow { color: var(--pearl); }
.detail-card--accent .eyebrow::before { background-color: var(--pearl); }
.detail-card h3 { margin-bottom: var(--md); }
.detail-card > p { margin-bottom: var(--lg); }

.detail-list,
.cta-list { display: grid; gap: var(--sm); }
.detail-list li,
.cta-list li { position: relative; padding-left: 24px; font-family: var(--body); font-size: var(--fs-body); line-height: 1.65; }
.detail-list li::before,
.cta-list li::before { content: ''; position: absolute; top: 0.78em; left: 0; width: 8px; height: 8px; background-color: var(--teal); border-radius: 50%; }
.detail-card--accent .detail-list li::before { background-color: var(--pearl); }

.faq-list { display: grid; gap: var(--sm); }
.faq-item { background-color: var(--cream); border: 1px solid var(--sand); padding: var(--md) var(--lg); }
.faq-item summary { cursor: pointer; font-family: var(--display); font-size: var(--fs-h3); line-height: 1.25; color: var(--charcoal); }
.faq-item p { margin-top: var(--md); color: rgba(44, 40, 37, 0.82); }

.timeline-list { display: grid; gap: var(--md); }
.timeline-item { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: var(--lg); padding: var(--lg) 0; border-top: 1px solid rgba(201, 185, 154, 0.7); }
.timeline-item span { font-family: var(--body); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.timeline-item h3 { margin-bottom: var(--xs); }
.timeline-item p { color: rgba(44, 40, 37, 0.82); }

.booking-section { background-color: var(--cream); }
.booking-section__intro { max-width: 780px; }
.booking-section__tool { margin-top: var(--lg); }
.booking-section__tool:empty { display: none; }
.booking-hero .page-hero__left { justify-content: center; }
#about-cta .about-section__content .btn { margin-top: var(--lg); }
#wingwave-cta .about-section__content .btn { margin-top: var(--lg); }

.booking-admin-template {
  margin: 0;
  background-color: #eef0f4;
}

.booking-admin-template__main {
  width: 100%;
  min-height: 100vh;
}

.legal-section {
  padding: var(--xxl) 0;
  background-color: var(--pearl);
}

.legal-content {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  padding: var(--xl);
}

.legal-content h2 {
  margin-top: var(--xl);
  margin-bottom: var(--md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: var(--lg);
  margin-bottom: var(--sm);
}

.legal-content p,
.legal-content li {
  color: rgba(44, 40, 37, 0.82);
}

.legal-content p + p,
.legal-content ul + p,
.legal-content ol + p {
  margin-top: var(--md);
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: var(--xs);
  margin: var(--md) 0;
  padding-left: var(--lg);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--teal);
  border-bottom: 1px solid rgba(5, 110, 127, 0.35);
}

/* ============================================================
   GENERISCHE SEITEN
   ============================================================ */
.page-header { padding: var(--xxl) 0; background-color: var(--cream); border-bottom: 1px solid var(--sand); }
.page-header .eyebrow { margin-bottom: var(--md); }
.page-body { padding: var(--xxl) 0; }
.entry-content p + p { margin-top: var(--md); }
.entry-content h2 { margin-top: var(--xl); margin-bottom: var(--md); }
.entry-content h3 { margin-top: var(--lg); margin-bottom: var(--sm); }

/* ============================================================
   SCROLL ANIMATIONEN
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.in-view { opacity: 1; transform: none; }
.fade-in--d1 { transition-delay: 0.1s; }
.fade-in--d2 { transition-delay: 0.2s; }
.fade-in--d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero__right { min-height: 55vh; order: -1; }
  .home-hero__left { padding: var(--xl) var(--lg); }
  .home-hero__left::after { display: none; }
  .home-hero__photo-accent { display: none; }
  .problem-section__head { grid-template-columns: 1fr; gap: var(--lg); }
  .problem-section__right { padding-top: 0; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .about-section__inner { grid-template-columns: 1fr; gap: var(--lg); }
  .about-section__accent { display: none; }
  .phases-grid { grid-template-columns: 1fr 1fr; }
  .program-facts { grid-template-columns: 1fr 1fr; }
  .fuerwen-section__inner { grid-template-columns: 1fr; }
  .ziele-grid { grid-template-columns: 1fr 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .page-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__right { order: -1; }
  .page-hero__left { max-width: none; padding: var(--xl) var(--lg); }
  .page-hero__image {
    height: 55vh;
    min-height: 420px;
    border-radius: 0 0 0 90px;
  }
  .page-hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase-section__grid { grid-template-columns: 1fr 1fr; }
  .feature-section__head { grid-template-columns: 1fr; gap: var(--lg); }
  .feature-section__grid { grid-template-columns: 1fr 1fr; }
  .approach-section__inner { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .credential-grid,
  .method-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid,
  .detail-grid--single { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--lg); }
}

@media (max-width: 768px) {
  :root { --xl: 48px; --xxl: 64px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .problem-section::after { width: 360px; height: 360px; top: -140px; right: -140px; }
  .ablauf-section__header--with-seal { grid-template-columns: 1fr; gap: var(--lg); }
  .trust-seals--single { justify-content: flex-start; }
  .problem-grid { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .ziele-grid { grid-template-columns: 1fr; }
  .trust-seals--about { flex-wrap: wrap; }
  .page-hero__left { padding: var(--xl) var(--sm); }
  .page-hero__image {
    height: 48vh;
    min-height: 360px;
    border-radius: 0 0 0 70px;
  }
  .page-hero__facts { width: calc(100% - (var(--sm) * 2)); grid-template-columns: 1fr; }
  .phase-section__grid { grid-template-columns: 1fr; }
  .feature-section__grid { grid-template-columns: 1fr; }
  .phase-card { min-height: auto; padding: var(--lg) var(--md); }
  .credential-grid,
  .method-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: var(--sm); }
  .detail-card,
  .credential-item,
  .method-item,
  .offer-card,
  .legal-content { padding: var(--lg) var(--md); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-wrap: wrap; gap: var(--md); }
  .container, .container--narrow { padding: 0 var(--sm); }
  .header__inner { padding: 0 var(--sm); }
  .ablauf-step { grid-template-columns: 56px 1fr; }
  .ablauf-step__num { font-size: 1.75rem; }
  .program-facts { grid-template-columns: 1fr; gap: var(--lg); }
  .fact-divider { display: none; }
}

