/* =============================================
   LEBENSGEFÜHL – Premium Stylesheet
   ============================================= */

/* Google Fonts entfernt – DSGVO-konform lokal eingebunden via fonts.css */

/* ── Variables ── */
:root {
  --deep:        #3d2838;
  --sage:        #94778b;
  --sage-light:  #82d4bb;
  --sage-pale:   #f0eaee;
  --cream:       #fdf6fb;
  --warm-white:  #fdfbfc;
  --gold:        #ffcf56;
  --gold-light:  #ffe99a;
  --text:        #2d1f2b;
  --text-mid:    #6b5462;
  --text-light:  #9e8a98;
  --border:      rgba(148,119,139,0.2);
  --shadow:      rgba(45,31,43,0.08);
  --nav-h:       80px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.12em;
  opacity: 0;
}
.preloader-bar {
  width: 120px; height: 1px;
  background: rgba(245,240,232,0.2);
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preload-line 1.8s var(--ease-out) forwards;
}
@keyframes preload-line {
  to { left: 0; }
}
#preloader-curtain-top,
#preloader-curtain-bottom {
  position: fixed;
  left: 0; right: 0;
  height: 50%;
  background: var(--deep);
  z-index: 9989;
}
#preloader-curtain-top { top: 0; }
#preloader-curtain-bottom { bottom: 0; }

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 10000; /* deutlich über mobile-menu (9000) – iOS pointer-event-Bug fix */
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  transition: color 0.4s;
}
#nav.scrolled .nav-logo-text {
  color: var(--deep);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 48px;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(250,250,247,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--warm-white); }
#nav.scrolled .nav-links a { color: var(--text-mid); }
#nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: var(--warm-white) !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--deep) !important; color: var(--cream) !important; }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(250,250,247,0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
  position: relative;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-toggle::after { width: calc(100% - 15px); }
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--warm-white); }
#nav.scrolled .nav-dropdown-toggle { color: var(--text-mid); }
#nav.scrolled .nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-toggle svg { transition: transform 0.25s var(--ease-out); flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(28,43,28,0.12);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 200;
  padding: 18px 0 6px;
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid) !important;
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu li a::after { display: none !important; }
.nav-dropdown-menu li a:hover {
  color: var(--deep) !important;
  background: var(--sage-pale);
}

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--warm-white); transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s; }
#nav.scrolled .nav-burger span { background: var(--text); }

/* Burger → X wenn Menü offen */
.mobile-menu.open ~ #nav .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu.open ~ #nav .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu.open ~ #nav .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Kontakt Section ── */
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.kontakt-ways {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontakt-way {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.3s;
}
.kontakt-way:hover { color: var(--deep); }
.kontakt-way svg { color: var(--sage); flex-shrink: 0; }
.kontakt-form {
  background: var(--warm-white);
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,155,122,0.12);
}
.form-group textarea { min-height: 120px; }

/* Footer Akademie badge */
.footer-akademie {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.footer-akademie-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}
.footer-akademie span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.45);
  line-height: 1.4;
}

/* ── Hero ── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, #6b4a5e 50%, #3d2838 100%);
}
.hero-bg-image {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.22;
  background-image: url('./assets/images/daniela-portrait-2.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,43,28,0.8) 0%, rgba(28,43,28,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px clamp(24px, 8vw, 120px) 0;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero-headline em { font-style: italic; color: var(--sage-light); }
.hero-line { display: block; overflow: hidden; }
.hero-line-inner { display: block; transform: translateY(110%); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(245,240,232,0.72);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scroll-fade 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: #a8823d;
  box-shadow: 0 4px 20px rgba(196,151,90,0.35);
}
.btn-primary span, .btn-primary svg { white-space: nowrap; }
.btn-outline {
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-dark {
  background: var(--deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--sage); }
.btn-arrow { width: 16px; height: 16px; }

/* ── Section Shared ── */
section { position: relative; }
.section-pad { padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px); }
.section-pad-sm { padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 80px); }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1440px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--sage); }

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h2.section-title em { font-style: italic; color: var(--sage); }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 20px;
}

/* reveal animations */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-fade { opacity: 0; }

/* ── Problem Section ── */
#problem {
  background: var(--cream);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.problem-text {}
.problem-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--warm-white);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
}
.problem-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.problem-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.problem-item strong { color: var(--text); display: block; margin-bottom: 2px; }
.problem-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.problem-image img { border-radius: 4px; }
.problem-image-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--deep);
  color: var(--cream);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.problem-image-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; display: block; line-height: 1; }
.problem-image-badge span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }

/* ── Angebote ── */
#angebote { background: var(--warm-white); }
.angebote-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}
.angebote-grid .angebot-card {
  grid-column: span 2;
}
.angebote-grid .angebot-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.angebote-grid .angebot-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.angebot-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.angebot-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.angebot-card:hover { box-shadow: 0 20px 60px var(--shadow); }
.angebot-card:hover::before { transform: scaleX(1); }
.angebot-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.angebot-card:hover .angebot-number { color: rgba(107,155,122,0.25); }
.angebot-icon {
  width: 48px; height: 48px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.angebot-card:hover .angebot-icon { background: var(--sage-light); }
.angebot-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.angebot-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.angebot-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}
.angebot-card:hover .angebot-link { gap: 14px; color: var(--gold); }
.angebot-link svg { width: 14px; height: 14px; }

/* ── Angebot Badge (Empfohlen) ── */
.angebot-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1;
}
.angebot-card--featured {
  border: 2px solid var(--gold);
  position: relative;
}
.angebot-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,207,86,0.06) 0%, transparent 60%);
  pointer-events: none;
}


/* ── Angebote Unsicher ── */
.angebote-unsicher {
  margin-top: 48px;
  padding: 36px 48px;
  background: var(--deep);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.angebote-unsicher p {
  font-size: 1.05rem;
  color: rgba(253,251,252,0.85);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
}
.angebote-unsicher-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, gap 0.3s;
}
.angebote-unsicher-link:hover { background: var(--gold-light); gap: 16px; }
.angebote-unsicher-link svg { width: 14px; height: 14px; }
@media (max-width: 700px) {
  .angebote-unsicher { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}

/* ── Formular Datenschutz ── */
.form-datenschutz {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}
.form-datenschutz a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ── Trust Signals (Beratung-Seite) ── */
.trust-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.trust-review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}
.trust-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.trust-review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.trust-review-name {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.trust-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.trust-about-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.trust-about-text h2 { margin-bottom: 1.25rem; }
.trust-about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.trust-about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; }
.trust-stat strong { font-size: 0.88rem; color: var(--deep); font-weight: 600; }
.trust-stat span { font-size: 0.78rem; color: var(--text-light); }
@media (max-width: 768px) {
  .trust-reviews-grid { grid-template-columns: 1fr !important; }
  .trust-about-inner { grid-template-columns: 1fr; }
  .trust-about-image { aspect-ratio: 4/3; }
}


/* ── Newsletter ── */
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.newsletter-desc {
  font-size: 0.92rem;
  color: rgba(253,251,252,0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.newsletter-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.newsletter-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,251,252,0.6);
  margin-bottom: 0.75rem;
}
.newsletter-row {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(253,251,252,0.3); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { white-space: nowrap; }
.newsletter-hinweis {
  font-size: 0.72rem;
  color: rgba(253,251,252,0.4);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-row { flex-direction: column; }
  .newsletter-btn { width: 100%; justify-content: center; }
}

/* ── About ── */
#about { background: var(--deep); overflow: hidden; }
.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}
.about-image-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 180px; height: 180px;
  border: 1px solid rgba(196,151,90,0.3);
  border-radius: 4px;
  z-index: 0;
}
.about-image-accent2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px; height: 80px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 2px;
}
.about-content {}
.about-content .section-label { color: var(--sage-light); }
.about-content .section-label::before { background: var(--sage-light); }
.about-content h2 { color: var(--cream); }
.about-content h2 em { color: var(--gold-light); }
.about-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.85;
  margin-top: 24px;
}
.about-body p + p { margin-top: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.about-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.about-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* About certification badge */
.about-certification {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 4px;
}
.akademie-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}
.about-cert-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.about-cert-text span {
  display: block;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  margin-top: 3px;
}

.about-cta { margin-top: 40px; }

/* ── WhatsApp floating button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ── Testimonials ── */
#testimonials { background: var(--cream); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--warm-white);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--border);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--sage-light);
  line-height: 0.5;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-initials {
  width: 36px; height: 36px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
}
.testimonial-name { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.testimonial-detail { font-size: 0.75rem; color: var(--text-light); }

/* ── CTA Banner ── */
#cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--deep) 100%);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#cta-banner .container { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.72);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}

/* ── Footer ── */
footer {
  background: var(--deep);
  padding: clamp(60px, 7vw, 80px) clamp(24px, 5vw, 80px) 40px;
  color: rgba(245,240,232,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--cream); }
/* Akademie certification strip */
.footer-cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(245,240,232,0.1);
  margin-bottom: 0;
}
.footer-cert span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.45);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245,240,232,0.1);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(245,240,232,0.5); transition: color 0.3s; }
.footer-legal a:hover { color: var(--cream); }

/* ── Subpage Hero ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) clamp(24px, 4vw, 60px) 80px;
  background: linear-gradient(135deg, var(--deep) 0%, #6b4a5e 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero .container-wide { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before { background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--sage-light); }
.page-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,240,232,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── Content Sections (Subpages) ── */
.content-section { padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px); }
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.content-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.content-text {}
.content-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}
.content-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.content-text p:last-of-type { margin-bottom: 28px; }

/* Include list */
.include-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.include-check {
  width: 20px; height: 20px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--sage);
  font-size: 0.7rem;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.process-step {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* For-who grid */
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.forwho-box {
  padding: 40px 36px;
  border-radius: 16px;
  border: none;
  position: relative;
  overflow: hidden;
}
.forwho-box.yes,
.forwho-box.forwho-yes {
  background: #5c3d52;
}
.forwho-box.forwho-yes::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(130,212,187,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.forwho-box.no,
.forwho-box.forwho-no {
  background: var(--sage-pale);
  border: 1px solid rgba(148,119,139,0.25);
}
.forwho-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.forwho-yes .forwho-badge {
  background: rgba(130,212,187,0.15);
  color: var(--sage-light);
}
.forwho-no .forwho-badge {
  background: rgba(148,119,139,0.12);
  color: var(--sage-light);
}
.forwho-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 22px;
  color: var(--cream);
}
.forwho-box.no h3,
.forwho-box.forwho-no h3 { color: var(--deep); }
.forwho-box ul { display: flex; flex-direction: column; gap: 14px; }
.forwho-box ul li {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.92);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.forwho-box.no ul li,
.forwho-box.forwho-no ul li { color: var(--text-mid); }
.forwho-box ul li::before {
  content: '✓';
  color: var(--sage-light);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.forwho-box.no ul li::before,
.forwho-box.forwho-no ul li::before { content: '–'; color: var(--sage-light); font-weight: 400; }

/* ── Datenschutz / Impressum ── */
.legal-content {
  max-width: 780px;
  padding: calc(var(--nav-h) + 60px) clamp(24px, 5vw, 80px) 80px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep);
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-content a { color: var(--sage); text-decoration: underline; }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 16px;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ── Mobile Navigation ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 9000; /* unter #nav (10000) */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  overflow-y: scroll;            /* 'scroll' statt 'auto' – zuverlässiger auf iOS */
  -webkit-overflow-scrolling: touch; /* iOS Momentum-Scroll */
  overscroll-behavior-y: contain;    /* verhindert Body-Scroll hinter dem Menü */
  overflow-x: hidden;
  padding: 90px 24px 60px;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 6vw, 1.75rem); /* etwas kleiner für kleine Screens */
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  padding: 9px 0;
  width: 100%;
  text-align: center;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--gold-light); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--cream);
  font-size: 1.5rem;
  opacity: 0.7;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
  z-index: 9001;
}

/* ── Erstgespräch Ablauf ── */
.erstgespraech-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.eg-step {
  text-align: center;
  padding: 36px 32px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  width: 100%;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.eg-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--shadow);
}
.eg-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sage);
  transition: background 0.3s;
}
.eg-step:hover .eg-icon { background: var(--sage-light); }
.eg-icon svg { width: 24px; height: 24px; }
.eg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 10px;
}
.eg-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 340px;
  margin: 0 auto;
}
.eg-arrow {
  color: var(--sage-light);
  padding: 8px 0;
  display: flex;
  justify-content: center;
}
.eg-arrow svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .erstgespraech-flow {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    gap: 0;
  }
  .eg-step {
    flex: 1;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eg-text {
    flex: 1;
  }
  .eg-arrow {
    padding: 0 8px;
    align-self: center;
    flex-shrink: 0;
    transform: rotate(-90deg);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-form { padding: 32px 28px; }
  .angebote-grid { grid-template-columns: repeat(2, 1fr); }
  .angebote-grid .angebot-card,
  .angebote-grid .angebot-card:nth-child(4),
  .angebote-grid .angebot-card:nth-child(5) { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 24px; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-image { aspect-ratio: 4/3; max-height: 400px; }
  .problem-image-badge { left: 16px; bottom: 16px; }
  .angebote-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; max-height: 400px; }
  .about-image-accent { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .content-two-col { grid-template-columns: 1fr; }
  .forwho-grid { grid-template-columns: 1fr; }
  .angebote-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .nav-logo-text { color: var(--deep) !important; }
  #nav { background: rgba(250,250,247,0.95); backdrop-filter: blur(12px); }
  .nav-burger span { background: var(--text) !important; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }

  /* ── Hero + Page-Hero auf Mobile ── */
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .page-hero-sub { font-size: 0.9rem; line-height: 1.7; }
  .hero-eyebrow { flex-wrap: wrap; }        /* Eyebrow-Text umbrechbar */
  .hero-sub { max-width: 100%; }            /* Subtitle nicht breiter als Viewport */
  .section-label { flex-wrap: wrap; }       /* Section-Label umbrechbar */

  /* ── Alle primären CTA-Buttons auf Mobile: mittig, kein Overflow ── */
  .btn-primary {
    display: flex;
    white-space: normal;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    letter-spacing: 0.1em;
    box-sizing: border-box;
  }

  /* ── Testimonials: immer untereinander ab 768px ── */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── Sections nie breiter als Viewport ── */
  #hero, .hero, .page-hero, section {
    overflow-x: hidden;
    max-width: 100vw;
  }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { display: flex; align-items: baseline; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Subpage Content Layout ── */
.content-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.content-section-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.content-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-section-text {}
.content-section-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}
.content-section-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.content-section-text p:last-of-type { margin-bottom: 28px; }

/* Check list (subpages) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process number & header (subpages) */
.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.process-header {
  text-align: center;
  margin-bottom: 8px;
}
.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.2;
  margin-top: 8px;
}


/* CTA Banner (subpages) */
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
#cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin: 16px 0 20px;
}
#cta-banner h2 em { font-style: italic; color: var(--gold-light); }
#cta-banner .section-label {
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 16px;
}
#cta-banner .section-label::before { background: var(--gold); }
#cta-banner .cta-sub { color: rgba(245,240,232,0.72); }

/* Page hero sub text */
.page-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,240,232,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}
.page-hero-privat,
.page-hero .page-hero-privat {
  display: flex;
  align-items: center;
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.38);
  letter-spacing: 0.02em;
  max-width: 460px;
  line-height: 1.5;
}
.page-hero-privat strong,
.page-hero .page-hero-privat strong {
  color: rgba(245,240,232,0.48);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  margin-right: 0.3em;
}

/* Responsive subpage content */
@media (max-width: 768px) {
  .content-section-inner { grid-template-columns: 1fr; }
  /* Hochformat beibehalten → Kopf wird nicht abgeschnitten */
  .content-section-image {
    aspect-ratio: 3/4;
    max-height: 420px;
  }
  .content-section-image img { object-position: top center; }
}

/* ── FAQ Section ── */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}
.faq-item[open] {
  background: var(--warm-white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ── Google Reviews Section ── */
.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.google-score-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.google-score-block > svg {
  flex-shrink: 0;
}
.google-score-block > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.google-score-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.google-stars {
  display: flex;
  gap: 3px;
}
.google-score-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.google-review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.gr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gr-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.gr-meta {
  flex: 1;
  min-width: 0;
}
.gr-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}
.gr-google-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: auto;
}
.gr-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.gr-date {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 14px;
  display: block;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .google-reviews-header { flex-direction: column; align-items: flex-start; }
  .google-score-block { align-self: flex-start; }
}
@media (max-width: 580px) {
  .google-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */

/* Blog Übersicht */
.blog-section { background: var(--warm-white); }

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.blog-filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  background: transparent;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-filter-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.blog-filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 16px 48px var(--shadow);
  transform: translateY(-4px);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--deep) 100%);
}
/* Blog image color variants */
.blog-img-wechseljahre { background: linear-gradient(135deg, #94778b 0%, #6b4a5e 100%); }
.blog-img-darm  { background: linear-gradient(135deg, #82d4bb 0%, #3d8a6d 100%); }
.blog-img-darm2 { background: linear-gradient(135deg, #5bb89a 0%, #2d6b52 100%); }
.blog-img-vital { background: linear-gradient(135deg, #ffcf56 0%, #e0a020 100%); }
.blog-img-ernaehrung { background: linear-gradient(135deg, #c4a882 0%, #8a6240 100%); }
.blog-img-schlaf { background: linear-gradient(135deg, #7b6ea0 0%, #3d2838 100%); }

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 12px;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin: 0 0 20px;
}
.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}
.blog-card:hover .blog-card-more {
  gap: 10px;
  color: var(--gold);
}

/* Blog Newsletter Teaser */
.blog-newsletter-teaser {
  margin-top: 64px;
  background: var(--deep);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 48px);
}
.blog-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-newsletter-teaser h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 8px;
}
.blog-newsletter-teaser p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  margin: 0;
}

/* ── Artikel ── */
.article-hero { padding-bottom: 60px; }

/* Tag-Badge in Artikel-Hero: position:absolute aus blog-card-tag überschreiben */
.article-hero .blog-card-tag {
  position: static;
  display: inline-block;
  margin-bottom: 20px;
}

/* Em-Farbe in Artikel-Überschriften: kein Farbwechsel */
.article-hero h1 em {
  color: var(--cream);
}

/* Artikel Cover-Bild */
.article-cover-image {
  background: var(--warm-white);
  padding: 48px clamp(24px, 4vw, 60px) 0;
}
.article-cover-inner {
  max-width: 900px;
  margin: 0 auto;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,31,43,0.12);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 20px;
}
.article-breadcrumb a {
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--gold-light); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  margin-top: 20px;
}

.article-body {
  background: var(--warm-white);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 60px);
}
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.article-content {
  min-width: 0;
}
.article-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  border-left: 3px solid var(--sage);
  padding-left: 20px;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin: 32px 0 10px;
  letter-spacing: 0.02em;
}
.article-content p {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0 0 20px;
}
.article-content ul {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}
.article-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.article-quote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: 0 12px 12px 0;
}
.article-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--deep);
  line-height: 1.6;
  margin: 0;
}

/* Autorin Box */
.article-author-box {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.article-author-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.article-author-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--deep) 100%);
}
.article-author-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 6px;
}
.article-author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  margin: 0 0 10px;
}
.article-author-bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .article-container { grid-template-columns: 1fr; }
  .article-author-box { position: static; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid--3 { grid-template-columns: 1fr; }
  .blog-newsletter-inner { flex-direction: column; }
  .blog-newsletter-inner .btn { width: 100%; justify-content: center; }
}
@media (max-width: 900px) and (min-width: 601px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
