/* ============================================================
   KALUNA FEE — Anke Schaubrenner
   Stylesheet
   ============================================================ */

/* --- Variablen --- */
:root {
  --cream:      #FAF7F2;
  --brown:      #4A3B28;
  --gold:       #D4AF37;
  --beige:      #E8D5C4;
  --sand:       #EED7B8;  /* Stammfarbe — Footer, Akzente */
  --warm:       #EDE7DC;  /* Karten, Kontaktformular */
  --black:      #1A1A1A;
  --pure-black: #000000;
  --dark:       #16142D;
  --white:      #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { scroll-behavior: smooth; overflow-x: hidden; }
html { scroll-padding-top: 80px; }

body {
  position: relative;
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.05em; }

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--black);
}

p {
  font-size: 0.95rem;
  color: var(--black);
}

em { font-style: italic; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 6px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-dark {
  background: var(--brown);
  color: var(--cream);
}
.btn-dark:hover { background: var(--black); }

.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover { background: var(--brown); color: var(--gold); }

/* --- Navigation --- */
nav {
  position: absolute;
  top: calc(1.5rem + 3px);
  left: 12.5%;
  width: 75%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 2.5rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid rgba(26, 26, 26, 0.55);
  box-shadow: 0 2px 16px rgba(74, 59, 40, 0.08);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brown);
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: calc(1rem + 6px);
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brown);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-social a {
  font-size: 1.2rem;
  color: var(--brown);
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--gold); }

/* --- Coming Soon Toast --- */
.coming-soon-toast {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--brown);
  color: var(--cream);
  padding: 0.65rem 1.8rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}
.coming-soon-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- SECTION 1: Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: calc(100% + 100px);
  margin-top: -100px;
  object-fit: cover;
  object-position: 33% 35%;
  filter: contrast(1.08) brightness(1.04) saturate(1.05);
  transform: translateX(-150px) scale(1.38);
  transform-origin: 33% 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: absolute;
  top: calc(62% + 2cm + 10px);
  transform: translateY(-50%);
  left: 10%;
  max-width: 42%;
  text-align: center;
}

.hero-content blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  display: block;
  background: linear-gradient(to right, rgba(74,59,40,0.85) 0%, rgba(74,59,40,0.4) 60%, transparent 100%);
  padding: 0.6rem 1.5rem 0.6rem 0;
}

.hero-content .btn {
  margin-top: calc(0.5cm + 20px);
}

.hero-content .btn-outline {
  background: rgba(250, 247, 242, 0.88);
  color: var(--brown);
  border-color: var(--brown);
}
.hero-content .btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}

/* =============================================
   HERO KREIS — Earth Child Community
   ============================================= */

.hcnl {
  position: absolute;
  top: calc(1.5rem + 3px + 62px + 4rem); /* weiter runter */
  left: 12.5%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
}

/* --- KREIS (Stufe 1) --- */
.hcnl-circle {
  position: relative;
  width: 110px;
  height: 110px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.hcnl-circle:hover { transform: scale(1.05); }
.hcnl--open .hcnl-circle,
.hcnl--success .hcnl-circle { cursor: default; }

/* Äußerer schwarzer Streifen */
.hcnl-ring-black {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  opacity: 0.35;
}

/* Brauner Außenring */
.hcnl-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid var(--brown);
}

/* Pulsierende Ringe — braun */
.hcnl-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brown);
  opacity: 0;
  animation: hcnl-pulse-out 2.2s 0.8s ease-out infinite;
}
.hcnl-ring-pulse-2 {
  border: 1.5px solid rgba(74,59,40,0.55);
  animation-delay: 1.5s;
}

@keyframes hcnl-pulse-out {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.9); }
}

/* Creme-Innenkreis mit schwarzem Rand */
.hcnl-ring-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--black);
  box-shadow: 0 8px 32px rgba(74,59,40,0.18);
}

/* Herz-Icon im Kern — gold */
.hcnl-checkmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcnl-checkmark svg {
  width: 28px; height: 28px;
  fill: var(--gold);
  filter: drop-shadow(0 1px 4px rgba(212,175,55,0.5));
  animation: hcnl-heartbeat 2.6s ease-in-out infinite;
}
@keyframes hcnl-heartbeat {
  0%, 100% { transform: scale(1); }
  14%  { transform: scale(1.2); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.1); }
  56%  { transform: scale(1); }
}

/* Orbit-Punkte */
.hcnl-orbit {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
}
.hcnl-orbit-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid var(--brown);
  top: 50%; left: 50%;
  margin: -3px 0 0 -3px;
  transform-origin: -52px 0;
}
.hcnl-orbit-dot:nth-child(1) { animation: hcnl-spin 4s linear infinite; }
.hcnl-orbit-dot:nth-child(2) { animation: hcnl-spin 4s 1.33s linear infinite; transform: rotate(120deg) translateX(-52px); }
.hcnl-orbit-dot:nth-child(3) { animation: hcnl-spin 4s 2.66s linear infinite; transform: rotate(240deg) translateX(-52px); }
@keyframes hcnl-spin {
  from { transform: rotate(0deg) translateX(-52px); }
  to   { transform: rotate(360deg) translateX(-52px); }
}

/* Herz-Badge oben rechts */
.hcnl-heart-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  border: 1.5px solid var(--brown);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(74,59,40,0.18);
}
.hcnl-heart-badge svg {
  width: 13px; height: 13px;
  fill: var(--cream);
  animation: hcnl-heartbeat 1.4s ease-in-out infinite;
}

/* Hint-Text */
.hcnl-hint {
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 5px rgba(0,0,0,0.65);
  white-space: nowrap;
  animation: hcnl-hint-pulse 2.2s 0.8s ease-in-out infinite;
}

@keyframes hcnl-hint-pulse {
  0%   { opacity: 0.45; letter-spacing: 0.14em; }
  30%  { opacity: 1;    letter-spacing: 0.18em; }
  100% { opacity: 0.45; letter-spacing: 0.14em; }
}

/* --- KARTE (Stufe 2) --- */
.hcnl-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74,59,40,0.15);
  border-radius: 14px;
  padding: 1rem 1.15rem 0.9rem;
  box-shadow: 0 8px 32px rgba(74,59,40,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.hcnl--open .hcnl-card {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.hcnl-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: rgba(74,59,40,0.4);
  cursor: pointer;
  line-height: 1;
  padding: 0.1rem 0.3rem;
  transition: color 0.2s;
}
.hcnl-close:hover { color: var(--brown); }

.hcnl-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
  padding-right: 1.2rem;
}

.hcnl-card-sub {
  font-size: 0.78rem;
  color: var(--brown);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  opacity: 0.82;
}

.hcnl-form { display: flex; flex-direction: column; gap: 0.45rem; }

.hcnl-form input[type="email"] {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(74,59,40,0.22);
  border-radius: 7px;
  background: rgba(255,255,255,0.8);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s;
}
.hcnl-form input[type="email"]::placeholder { color: rgba(74,59,40,0.33); }
.hcnl-form input[type="email"]:focus { border-color: var(--gold); }
.hcnl-form input[type="email"].cf-invalid { border-color: #e05c5c; }

.hcnl-submit {
  padding: 0.5rem 1rem;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.hcnl-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.hcnl-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.hcnl-card-note {
  font-size: 0.67rem;
  color: rgba(74,59,40,0.42);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* --- BELOHNUNG (Stufe 3) --- */
.hcnl-reward {
  display: none; /* wird nur via JS genutzt */
}

/* Stufe 3: Karte ausblenden, Kreis pulsiert golden */
.hcnl--success .hcnl-card   { opacity: 0; pointer-events: none; }
.hcnl--success .hcnl-circle { animation: hcnl-success-glow 1s ease forwards; }
.hcnl--success .hcnl-orbit  { opacity: 0; transition: opacity 0.3s; }

@keyframes hcnl-success-glow {
  0%   { transform: scale(1); filter: none; }
  40%  { transform: scale(1.15); filter: drop-shadow(0 0 18px rgba(212,175,55,0.9)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(212,175,55,0.5)); }
}

/* Willkommen-Text (fixed, per JS positioniert) */
.hcnl-welcome {
  position: absolute;
  pointer-events: none;
  z-index: 99998;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  animation: hcnl-welcome-in 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.hcnl-welcome strong {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 0 30px rgba(212,175,55,0.6);
  white-space: nowrap;
}
.hcnl-welcome span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
  margin-top: 0.4rem;
  font-weight: 600;
}

@keyframes hcnl-welcome-in {
  0%   { opacity: 0; transform: translateX(-50%) translateY(16px) scale(0.85); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1); }
}

.hero-partners {
  overflow: hidden;
  width: 100%;
  height: 70px;
  margin-top: calc(2rem + 25px);
  background: transparent;
}

.hero-partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-partners img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
}

.partner-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--brown);
  font-weight: 600;
}

/* --- SECTION 2: Großes Zitat --- */
.section-quote {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--cream);
}

.section-quote blockquote {
  font-size: 44px;
  font-style: normal;
  color: var(--brown);
  margin-bottom: 2.5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.section-quote blockquote span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.section-quote p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 0;
  color: var(--black);
}

.signature-img {
  height: 290px;
  width: auto;
  margin-top: -60px;
}

.quote-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 3.2rem;
  color: var(--brown);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  transform: rotate(-2deg);
  display: inline-block;
}

/* --- Chevron-Trenner zwischen Sektionen --- */
.section-chevron {
  text-align: center;
  padding: 1.5rem 0;
  background: inherit;
}
.section-chevron svg {
  opacity: 1;
  color: var(--black);
}

/* --- SECTION 3: Naturgewalt --- */
.section-naturgewalt {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 120px 4% 80px;
}

.section-naturgewalt > h2 {
  font-size: 48px;
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 120px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-naturgewalt > h2 em {
  font-style: italic;
}

.naturgewalt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.naturgewalt-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
  border-radius: 6px;
}

.naturgewalt-text {
  padding: 0 2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.naturgewalt-text blockquote {
  font-size: 36px;
  font-style: normal;
  margin-bottom: 2rem;
  color: var(--black);
}

.naturgewalt-intro {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}

/* ===== TOOLS-ICONS ===== */
.naturgewalt-tools {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
  flex: 0 0 auto;
}

.tool-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tool-icon.visible {
  opacity: 1;
  transform: translateX(0);
}

.tool-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-icon-circle svg {
  width: 36px;
  height: 36px;
}

/* Pulsierender Außenring — ähnlich dem Community-Kreis */
.tool-pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid;
  opacity: 0;
  animation: tool-ring-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.tool-pulse-ring-2 {
  inset: -14px;
  border-width: 0.7px;
  animation-delay: 1s;
}

@keyframes tool-ring-pulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.38); }
}

/* Gestaffelte Verzögerungen pro Icon */
.tool-icon:nth-child(1) .tool-pulse-ring   { animation-delay: 0s;   }
.tool-icon:nth-child(1) .tool-pulse-ring-2 { animation-delay: 1s;   }
.tool-icon:nth-child(2) .tool-pulse-ring   { animation-delay: 0.45s; }
.tool-icon:nth-child(2) .tool-pulse-ring-2 { animation-delay: 1.45s; }
.tool-icon:nth-child(3) .tool-pulse-ring   { animation-delay: 0.9s;  }
.tool-icon:nth-child(3) .tool-pulse-ring-2 { animation-delay: 1.9s;  }
.tool-icon:nth-child(4) .tool-pulse-ring   { animation-delay: 1.35s; }
.tool-icon:nth-child(4) .tool-pulse-ring-2 { animation-delay: 2.35s; }
.tool-icon:nth-child(5) .tool-pulse-ring   { animation-delay: 1.8s;  }
.tool-icon:nth-child(5) .tool-pulse-ring-2 { animation-delay: 2.8s;  }
.tool-icon:nth-child(6) .tool-pulse-ring   { animation-delay: 2.25s; }
.tool-icon:nth-child(6) .tool-pulse-ring-2 { animation-delay: 3.25s; }

.tool-icon:hover .tool-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 5px 18px rgba(0,0,0,0.14);
}

.tool-icon span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
}

.naturgewalt-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

/* --- SECTION 4: Methode --- */
.methode-particles {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.methode-particle {
  position: absolute;
  border-radius: 50%;
}
@keyframes flash {
  0%    { opacity: 0;   transform: scale(0.2); }
  5%    { opacity: 1;   transform: scale(1.4); }
  14%   { opacity: 0.8; transform: scale(1); }
  28%   { opacity: 0;   transform: scale(0.9); }
  100%  { opacity: 0;   transform: scale(0.9); }
}

.section-methode {
  position: relative;
  padding: 4rem 4% 7rem calc(4% + max(0px, (100% - 8% - 1200px) / 2));
  background: var(--cream);
}

.methode-body {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
}

.methode-content {
  flex: 0 0 680px;
  max-width: 680px;
}

.methode-tools {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  align-items: center;
  padding-top: 10rem;
}

.section-methode h2,
.section-methode p,
.section-methode h3 {
  position: relative;
  z-index: 1;
}

.section-methode h2 {
  font-size: 38px;
  margin-bottom: 2rem;
}

.section-methode h2 .highlight {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

@keyframes materialise {
  0%, 100% {
    opacity: 0.6;
    filter: blur(1px);
    transform: translateY(2px);
  }
  50% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(-2px);
  }
}

.augenblick-anim {
  display: inline;
}

.augenblick-anim span {
  display: inline-block;
  animation: materialise 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.section-methode p {
  font-size: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.section-methode h3 {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

/* --- SECTION 5: Drei Wege --- */
.section-dreiwege {
  padding: calc(5rem + 20px) 2rem 7rem;
  text-align: center;
  background: var(--white);
}

.section-dreiwege h2 {
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  font-size: 48px;
}

.dreiwege-chevron {
  margin-top: 60px;
  margin-bottom: calc(3rem + 40px);
}

.dreiwege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1254px;
  margin: 0 auto;
}

.dreiwege-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--black);
  border-radius: 14px;
  padding: 0 1.5rem calc(2rem + 20px);
  background: transparent;
}

/* Macht die gesamte Kachel klickbar (zusätzlich zum Button) */
.dreiwege-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 14px;
}

.dreiwege-card-img-wrap {
  position: relative;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  aspect-ratio: 5/6;
  overflow: hidden;
  margin-bottom: 1.8rem;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid var(--black);
}

.dreiwege-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dreiwege-card-img-wrap h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
  text-shadow: none;
  margin: 0;
}

.amp {
  font-family: var(--font-body);
  font-style: normal;
}

.dreiwege-card h4 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: calc(1.8rem + 10px);
  color: var(--brown);
  text-align: center;
}

.dreiwege-card p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: calc(1.4rem + 20px);
  max-width: 100%;
  opacity: 0.7;
  line-height: 1.7;
  text-align: center;
  flex-grow: 1;
}

.dreiwege-card .btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: rgba(74, 59, 40, 0.72);
  border-color: rgba(74, 59, 40, 0.72);
}

/* --- SECTION 6: Erfahrung --- */
.section-erfahrung {
  padding: 7rem 4%;
  background: var(--cream);
  color: var(--black);
}

.section-erfahrung-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-erfahrung blockquote {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 48px;
  font-style: normal;
}

.section-erfahrung .subtitle {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 18px;
  color: var(--black);
  opacity: 0.7;
}

.erfahrung-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.erfahrung-item {
  display: grid;
  grid-template-columns: 1fr 60px 2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.15);
}

.erfahrung-item:first-child {
  border-top: 1px solid rgba(26,26,26,0.15);
}

.erfahrung-item h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  margin: 0;
  align-self: center;
}

.erfahrung-item p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
  opacity: 0.75;
}

.erfahrung-icon {
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto;
}

.erfahrung-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  fill: none;
}

/* --- SECTION 7: Zahlen --- */
@keyframes laola {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-14px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
.laola-letter {
  display: inline-block;
}
.laola-letter.animate {
  animation: laola 0.55s ease-in-out both;
}
.section-zahlen {
  padding: 7rem 4%;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

.section-zahlen-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}



.section-zahlen-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-zahlen h2 {
  margin-bottom: 1.5rem;
}

.section-zahlen .intro-text {
  margin-bottom: 2.5rem;
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.75;
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.zahlen-card {
  border: 1px solid var(--black);
  position: relative;
  z-index: 2;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.zahlen-card:nth-child(1) { background: #EDE7DC; }
.zahlen-card:nth-child(2) { background: #EDE7DC; }
.zahlen-card:nth-child(3) { background: var(--sand); }
.zahlen-card:nth-child(4) { background: #EDE7DC; }

.zahlen-card .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--brown);
  display: block;
  margin-bottom: 0.4rem;
}

.zahlen-card .label {
  font-size: 0.9rem;
  color: var(--brown);
  opacity: 0.7;
  line-height: 1.4;
  display: block;
}

/* --- SECTION 8: Partner --- */
.section-partner {
  padding: 8rem 2rem 6rem;
  background: var(--cream);
  text-align: center;
}

.section-partner h2 {
  font-size: 48px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-partner p {
  max-width: 640px;
  margin: 0 auto 4rem;
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.7;
  color: var(--black);
}

.partner-track-wrap {
  overflow: hidden;
  position: relative;
  width: 80%;
  height: 60px;
  margin: 0 auto;
  /* weiche Blenden links und rechts */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: partner-scroll 45s linear infinite;
}

.partner-track img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.partner-track img:hover {
  opacity: 1;
}

@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brown);
  text-transform: uppercase;
}

/* --- SECTION 9: Kontakt --- */
.section-contact {
  padding: 8rem 2rem;
  background: var(--white);
  text-align: center;
}

.section-contact-inner {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 16px;
  padding: 4rem 3.5rem;
  border: 1px solid rgba(26,26,26,0.15);
  position: relative;
  overflow: hidden;
}

.contact-palm {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 580px;
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.section-contact-inner > *:not(.contact-palm) {
  position: relative;
  z-index: 1;
}

.section-contact blockquote {
  font-size: 38px;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-contact .subtitle {
  margin-bottom: 2.5rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
}

/* --- Kontaktformular (custom, DSGVO) --- */
#contact-form {
  text-align: left;
}

.cf-field {
  margin-bottom: 1.2rem;
}

.cf-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.45rem;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  border: 1.5px solid rgba(74,59,40,0.18);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(74,59,40,0.35);
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(74,59,40,0.07);
}

.cf-field input.cf-invalid,
.cf-field textarea.cf-invalid,
.cf-field select.cf-invalid {
  border-color: #c0392b;
}

.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A3B28' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.cf-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* DSGVO Consent Block */
.cf-consent {
  background: rgba(74,59,40,0.04);
  border: 1px solid rgba(74,59,40,0.12);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.4rem;
}

.cf-consent-intro,
.cf-consent-process {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1rem;
}

.cf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.cf-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid var(--brown);
  border-radius: 3px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.cf-checkmark::after {
  content: '';
  display: none;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.cf-checkbox-label input:checked ~ .cf-checkmark {
  background: var(--brown);
  border-color: var(--brown);
}

.cf-checkbox-label input:checked ~ .cf-checkmark::after {
  display: block;
}

.cf-checkbox-label.cf-invalid .cf-checkmark {
  border-color: #c0392b;
}

.cf-checkbox-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--black);
  font-weight: 500;
}

.cf-consent-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--black);
}

.cf-consent-note a {
  color: var(--brown);
  text-decoration: underline;
}

/* Consent Toggle */
.cf-consent-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.3rem 0;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.cf-consent-toggle:hover { color: var(--black); }

.cf-toggle-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.cf-consent-toggle[aria-expanded="true"] .cf-toggle-arrow {
  transform: rotate(180deg);
}

.cf-consent-details {
  display: none;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(74,59,40,0.1);
}
.cf-consent-details.open { display: block; }

/* Error message */
.cf-error {
  display: none;
  background: #fdf2f2;
  border: 1px solid #e8c4c4;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #c0392b;
  margin-bottom: 1rem;
}

.cf-error.visible {
  display: block;
}

/* Submit Button */
.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  position: relative;
}

.cf-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
}

.cf-submit.loading .cf-submit-spinner { display: inline-block; }
.cf-submit.loading .cf-submit-text { opacity: 0.7; }
.cf-submit:disabled { opacity: 0.7; cursor: not-allowed; }

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

/* --- altes contact-form (veraltet, bleibt für Kompatibilität) --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  border: 1px solid rgba(74, 59, 40, 0.2);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(74, 59, 40, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brown);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.contact-form button:hover { background: var(--black); }

/* --- NEWSLETTER --- */
.section-newsletter {
  background: var(--brown);
  color: var(--cream);
  padding: 5rem 4%;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.78);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.newsletter-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.newsletter-row input[type="email"] {
  flex: 1 1 240px;
  max-width: 340px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(250,247,242,0.35);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}

.newsletter-row input[type="email"]::placeholder { color: rgba(250,247,242,0.4); }
.newsletter-row input[type="email"]:focus { border-color: var(--gold); }
.newsletter-row input[type="email"].cf-invalid { border-color: #e05c5c; }

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.45);
  letter-spacing: 0.04em;
}

.newsletter-success {
  display: none;
  font-size: 1rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-style: italic;
  margin-top: 0.5rem;
}

/* --- FOOTER NEWSLETTER --- */
.footer-newsletter { }

.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(74,59,40,0.7);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-nl-row {
  display: flex;
  gap: 0.4rem;
}

.footer-nl-row input[type="email"] {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(74,59,40,0.3);
  border-radius: 6px;
  background: rgba(255,255,255,0.55);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-nl-row input[type="email"]::placeholder { color: rgba(74,59,40,0.35); }
.footer-nl-row input[type="email"]:focus { border-color: var(--brown); }
.footer-nl-row input[type="email"].cf-invalid { border-color: #e05c5c; }

.footer-nl-row button {
  padding: 0.55rem 0.9rem;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-nl-row button:hover { opacity: 0.8; }
.footer-nl-row button:disabled { opacity: 0.4; cursor: not-allowed; }

.footer-nl-success {
  display: none;
  font-size: 0.85rem;
  color: var(--brown);
  font-style: italic;
  margin-top: 0.4rem;
}

/* --- FOOTER --- */
footer {
  background: var(--sand);
  color: var(--brown);
  padding: 5rem 4% 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}

.footer-brand h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--brown);
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.75;
  max-width: 280px;
  line-height: 1.7;
}

footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--brown);
  text-transform: uppercase;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  font-size: 0.82rem;
  color: var(--brown);
  opacity: 0.8;
  transition: opacity 0.2s;
}

footer ul li a:hover { opacity: 1; }

.footer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(74,59,40,0.25);
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.footer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.footer-contact-name {
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 0.2rem;
  margin: 0;
  opacity: 1;
}

.footer-contact-role {
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.65;
  margin: 0 0 6px;
}

.footer-contact-email {
  font-size: 0.78rem;
  color: var(--brown);
  opacity: 0.75;
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

.footer-contact a.email-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(74, 59, 40, 0.4);
  font-size: 0.78rem;
  color: var(--brown);
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.footer-contact a.email-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(74,59,40,0.2);
  text-align: center;
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .dreiwege-grid { grid-template-columns: 1fr; max-width: 400px; }
  .section-naturgewalt { grid-template-columns: 1fr; }
  .naturgewalt-left h2 { padding: 2.5rem 2rem 1.5rem; font-size: 36px; }
  .naturgewalt-text { padding: 3rem 2rem; }
  .erfahrung-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE NAVIGATION — Hamburger
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  nav {
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    padding: 0.75rem 1.2rem;
    border-radius: 4px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(74,59,40,0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-social {
    gap: 0.8rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  /* ============================================================
     ⚠️ GESPERRT (10.06.2026) — Mobile Hero final abgenommen.
     NICHT ohne Rückfrage ändern! (siehe auch .hero/.hero-image
     weiter unten unter "HERO-BILD — Anke auf Mobile sichtbar machen")
     - .hero-content: bottom 4%
     - blockquote: font-size 13.5px (480px: 18px), margin-bottom 0.34rem
     - .btn: font-size 0.47rem (480px: 0.737rem), margin-top 1.275rem
     - .hero-partners: margin-top 1.547rem, translateY(0.068rem)
     - .hero-partners img (480px): 37px
     ============================================================ */
  /* Hero (index.html) */
  .hero-content {
    top: auto;
    bottom: 4%;
    left: 5%;
    right: 5%;
    max-width: 100%;
    transform: none;
    text-align: center;
  }

  .hero-partners {
    margin-top: 1.547rem;
    transform: translateY(0.068rem);
  }

  .hero-content blockquote {
    font-size: 13.5px;
    margin-bottom: 0.34rem;
    padding: 0.48rem 1.2rem 0.48rem 0;
  }

  .hero-content .btn {
    font-size: 0.47rem;
    padding: 0.48rem 1.1rem;
    margin-top: 1.275rem;
  }

  /* Sections allgemein */
  section {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  /* Zahlen-Karten (index.html) */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Dreiwege-Cards (index.html) */
  .ways-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Workshop-Cards (soul.html) */
  .workshop-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Zahlen-Grid (index.html) */
  .zahlen-grid { grid-template-columns: 1fr 1fr; }

  /* Quote & Footer */
  .section-quote { padding: 5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Hero Circle — kleiner + tiefer auf Mobile */
  .hcnl {
    top: calc(1.5rem + 3px + 52px + 1.4rem);
    left: 5%;
    width: 200px;
  }
  .hcnl-circle { width: 80px; height: 80px; }
  .hcnl-ring-inner { inset: 8px; }
  .hcnl-checkmark svg { width: 20px; height: 20px; }
  .hcnl-heart-badge { width: 22px; height: 22px; top: -1px; right: -1px; }
  .hcnl-heart-badge svg { width: 10px; height: 10px; }
  .hcnl-orbit-dot { width: 5px; height: 5px; transform-origin: -38px 0; }
  .hcnl-orbit-dot:nth-child(2) { transform: rotate(120deg) translateX(-38px); }
  .hcnl-orbit-dot:nth-child(3) { transform: rotate(240deg) translateX(-38px); }
  .hcnl-orbit { inset: -10px; }
  .hcnl-hint { font-size: 0.58rem; }
  .hcnl-card { width: 200px; padding: 0.85rem 1rem 0.75rem; }
  .hcnl-card-label { font-size: 0.58rem; }
  .hcnl-card-sub { font-size: 0.72rem; }

  /* Naturgewalt */
  .section-naturgewalt { padding: 4rem 1.5rem; }
  .naturgewalt-image { max-height: 340px; object-fit: cover; }

  /* Zahlen */
  .zahlen-content h2 { font-size: 1.6rem; }
  .zahlen-content p  { font-size: 0.88rem; }
  .stat-card         { padding: 1.2rem 0.8rem; }
  .stat-number       { font-size: 2rem; }

  /* Newsletter Sektion */
  .newsletter-title  { font-size: 1.5rem; }
  .newsletter-row    { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .newsletter-row input[type="email"] { flex: 0 1 250px; max-width: 250px; font-size: 16px; }
  .newsletter-row .btn-gold { flex-shrink: 0; }

  /* Footer */
  .footer-brand h3   { font-size: 1rem; }
  .footer-bottom p   { font-size: 0.68rem; text-align: center; }

  /* ⚠️ GESPERRT (10.06.2026) — final abgenommen, nicht ohne Rückfrage ändern
     (height 80vh, scale 1.20, transform-origin/object-position 75% 40%) */
  /* ---- HERO-BILD — Anke auf Mobile sichtbar machen ---- */
  .hero {
    height: 80vh;
    min-height: 440px;
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .hero-image {
    transform: scale(1.20);
    transform-origin: 75% 40%;
    object-position: 75% 40%;
    height: 100%;
    margin-top: 0;
  }

  /* ---- METHODE — wichtigster Fix: max-width Reset ---- */
  .section-methode {
    max-width: 100%;
    padding: 3.5rem 1.5rem 5rem;
  }
  .section-methode h2 { font-size: 1.8rem; }
  .section-methode p  { font-size: 1rem; margin-bottom: 1.2rem; }
  .section-methode h3 { font-size: 1rem; }

  /* ---- NATURGEWALT ---- */
  .section-naturgewalt > h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    text-align: center;
  }
  .naturgewalt-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .naturgewalt-image {
    min-height: auto;
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    order: 1;
  }
  .naturgewalt-text {
    padding: 2rem 0 0;
    order: 2;
  }
  .naturgewalt-text blockquote { font-size: 1.45rem; }
  .naturgewalt-text p          { font-size: 1rem; }
  .naturgewalt-text-cols       { grid-template-columns: 1fr; gap: 1.2rem; }

  /* ---- ERFAHRUNG ---- */
  .section-erfahrung blockquote {
    font-size: 1.7rem;
    line-height: 1.35;
  }
  .section-erfahrung .subtitle { font-size: 1rem; }
  .erfahrung-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }
  .erfahrung-item h3 { font-size: 1.4rem; text-align: center; }
  .erfahrung-icon    { margin: 0 auto; }
  .erfahrung-item p  { font-size: 1rem; }

  /* ---- DREIWEGE ---- */
  .section-dreiwege h2        { font-size: 1.8rem; }
  .dreiwege-card-img-wrap h3  { font-size: 2.8rem; }
  .dreiwege-card h4           { font-size: 1.6rem; margin-bottom: 1rem; }
  .dreiwege-card p            { font-size: 1rem; }

  /* ---- ZAHLEN (Section 7) ---- */
  .section-zahlen-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section-zahlen-left {
    align-items: center;
    text-align: center;
  }
  .section-zahlen h2        { text-align: center; font-size: 1.8rem; }
  .section-zahlen .intro-text { text-align: center; font-size: 1rem; }
  .zahlen-card              { padding: 1.2rem 1rem; }

  /* ---- PARTNER (Section 8) ---- */
  .section-partner h2 { font-size: 1.8rem; }
  .section-partner p  { font-size: 1rem; }
  .partner-track-wrap { width: 95%; }

  /* ---- ZITAT (Section 2) ---- */
  .section-quote blockquote { font-size: 1.6rem; }
  .section-quote p          { font-size: 1rem; }
  .signature-img            { height: 160px; margin-top: -30px; }

  /* ---- KONTAKT ---- */
  .section-contact blockquote { font-size: 1.5rem; }
}

/* ============================================================
   QUICK ACCESS & STICKY BOTTOM BAR — nur Mobile (index.html)
   ============================================================ */
.quick-access,
.mobile-stickybar {
  display: none;
}

@media (max-width: 768px) {

  body {
    padding-bottom: 64px; /* Platz für Sticky-Bar */
  }

  /* Quick-Access direkt unter dem Hero */
  .quick-access {
    display: block;
    background: var(--cream);
    text-align: center;
    padding: 1.4rem 1.2rem 1.6rem;
  }
  .quick-access-label {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--brown);
    font-size: 1.05rem;
    margin: 0 0 0.8rem;
    letter-spacing: 0.03em;
  }
  .quick-access-links {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
  }
  .quick-access-links a {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 130px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    padding: 0.75rem 0.4rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.15s ease;
    animation: quick-access-heartbeat 3.5s ease-in-out infinite;
  }

  @keyframes quick-access-heartbeat {
    0%   { background: var(--black); box-shadow: 0 4px 12px rgba(0,0,0,0.25); color: var(--cream); }
    35%  { background: #EED7B8;      box-shadow: 0 6px 22px rgba(238,215,184,0.6); color: #1A1A1A; }
    65%  { background: var(--black); box-shadow: 0 4px 12px rgba(0,0,0,0.25); color: var(--cream); }
    100% { background: var(--black); box-shadow: 0 4px 12px rgba(0,0,0,0.25); color: var(--cream); }
  }

  .quick-access-links a:active {
    transform: scale(0.96);
  }

  /* Sticky Bottom Bar */
  .mobile-stickybar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--brown);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  }
  .mobile-stickybar a {
    flex: 1;
    text-align: center;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 0;
    border-right: 1px solid rgba(250,247,242,0.15);
  }
  .mobile-stickybar a:last-child {
    border-right: none;
  }
}

/* ============================================================
   MOBILE KLEIN — max-width: 480px (Smartphones)
   ============================================================ */
@media (max-width: 480px) {

  /* Hero */
  .hero-content blockquote { font-size: 18px; line-height: 1.4; }
  .hero-content .btn { font-size: 0.737rem; padding: 0.65rem 1.2rem; }
  .hero-partners { height: 50px; }
  .hero-partners img { height: 37px; }

  /* Hero Circle verstecken wenn sehr klein — zu wenig Platz */
  .hcnl { display: none; }

  /* Großes Zitat */
  .section-quote blockquote { font-size: 1.3rem; }
  .section-quote p { font-size: 0.88rem; }

  /* Naturgewalt */
  .naturgewalt-left h2 { font-size: 28px !important; }
  .naturgewalt-text blockquote { font-size: 1.1rem; }

  /* Methode */
  .section-methode h2 { font-size: 1.6rem; }
  .section-methode p  { font-size: 0.9rem; }

  /* Dreiwege-Cards */
  .way-card { min-height: 260px; }

  /* Erfahrung */
  .erfahrung-item { padding: 1rem 0; }

  /* Zahlen */
  .zahlen-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .stat-number { font-size: 1.8rem; }

  /* Partner Sektion */
  .section-partner { padding: 3.5rem 1.2rem; }
  .section-partner h2 { font-size: 1.5rem; }

  /* Kontakt */
  .section-contact-inner { padding: 3rem 1.2rem; }
  .section-contact blockquote { font-size: 1.3rem; }

  /* Newsletter */
  .section-newsletter { padding: 3.5rem 1.2rem; }
  .newsletter-title { font-size: 1.3rem; }

  /* Footer — kompakt */
  footer { padding: 1.8rem 1.2rem 1rem; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand  contact"
      "nav    contact"
      "legal  contact";
    gap: 0.8rem 1.5rem;
    padding-bottom: 1rem;
    align-items: start;
  }
  .footer-brand   { grid-area: brand; }
  .footer-nav     { grid-area: nav; }
  .footer-legal   { grid-area: legal; }
  .footer-contact { grid-area: contact; }
  .footer-brand p { display: none; }
  .footer-brand h3 { font-size: 0.82rem; margin-bottom: 0; }
  .footer-avatar { width: 38px; height: 38px; margin-bottom: 0.35rem; }
  .footer-contact-name { font-size: 0.78rem; }
  .footer-contact-role { font-size: 0.68rem; margin-bottom: 4px; }
  .footer-contact-email { font-size: 0.68rem; margin-bottom: 6px; }
  .footer-contact a.email-btn { margin-top: 0.4rem; padding: 0.4rem 0.9rem; font-size: 0.7rem; }
  footer h4 { font-size: 0.7rem; margin-bottom: 0.4rem; }
  footer ul li { margin-bottom: 0.3rem; }
  footer ul li a { font-size: 0.72rem; }
  .footer-bottom { margin-top: 0.8rem; padding-top: 0.7rem; }
  .footer-bottom p { font-size: 0.62rem; }

  /* ---- METHODE ---- */
  .section-methode { padding: 3rem 1.2rem 4rem; }
  .section-methode h2 { font-size: 1.5rem; }

  /* ---- NATURGEWALT ---- */
  .section-naturgewalt > h2 { font-size: 1.5rem; margin-bottom: 1.8rem; }
  .naturgewalt-image        { max-height: 240px; }
  .naturgewalt-text blockquote { font-size: 1.2rem; }

  /* ---- ERFAHRUNG ---- */
  .section-erfahrung blockquote { font-size: 1.4rem; }
  .erfahrung-item h3            { font-size: 1.2rem; }

  /* ---- DREIWEGE ---- */
  .section-dreiwege h2       { font-size: 1.5rem; }
  .dreiwege-card-img-wrap h3 { font-size: 3.2rem; }
  .dreiwege-card h4          { font-size: 1.3rem; }

  /* ---- ZAHLEN ---- */
  .section-zahlen h2 { font-size: 1.5rem; }

  /* ---- PARTNER ---- */
  .section-partner h2 { font-size: 1.5rem; }
  .partner-track img  { height: 28px; }

  /* ---- SIGNATUR ---- */
  .signature-img { height: 120px; margin-top: -20px; }
}

/* ============================================================
   PLAY-SEITE MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* Hero Infobox */
  .play-hero-infobox {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 92%;
    margin: 0 auto;
    border-radius: 10px;
  }

  /* Tickets */
  .tickets-grid { grid-template-columns: 1fr !important; max-width: 420px; margin: 0 auto; }

  /* Musik-Karten */
  .music-grid { grid-template-columns: 1fr !important; max-width: 420px; margin: 0 auto; }

  /* Shop Intro */
  .play-shop-intro { padding: 2rem 1.5rem 1.8rem; }
  .play-shop-intro h2 { font-size: 1.6rem; }

  /* Legal */
  .play-legal-grid { grid-template-columns: 1fr !important; }
  .play-legal { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  /* Play Hero */
  .play-hero { min-height: 75vh; }
  .play-hero-infobox h2 { font-size: 0.95rem; }
  .play-hero-infobox p  { font-size: 0.82rem; }

  /* Musik */
  .music-card-title  { font-size: 1rem; }
  .music-card-desc   { font-size: 0.8rem; }
}

/* ============================================================
   KONTAKTFORMULAR MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .cf-grid {
    grid-template-columns: 1fr !important;
  }
  .section-contact-inner {
    padding: 3rem 1.2rem !important;
  }
  .cf-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  #cf-submit-btn {
    width: 100%;
  }
}

/* ============================================================
   ALLGEMEIN MOBILE — letzte Korrekturen
   ============================================================ */
@media (max-width: 480px) {
  /* Buttons allgemein nicht abschneiden */
  .btn {
    white-space: normal;
    text-align: center;
  }

  /* Erfahrung Icons zentriert */
  .erfahrung-icon {
    width: 48px !important;
    height: 48px !important;
  }

  /* Zahlen-Karten kleiner */
  .stat-card {
    padding: 1rem 0.7rem;
  }

  /* Partner-Track Logos */
  .partner-track img {
    height: 24px;
    max-width: 80px;
    object-fit: contain;
  }

  /* Chevron-Trenner */
  .chevron-divider svg {
    width: 28px !important;
  }

  /* Footer Links nicht abschneiden */
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    font-size: 0.8rem;
  }

  /* Kontakt blockquote */
  .section-contact blockquote {
    font-size: 1.2rem !important;
    line-height: 1.5;
  }
}

/* ============================================================
   MOBILE REDESIGN — Neue Sektionen & Overflow-Fix (v=50)
   ============================================================ */

/* Standardmäßig NUR auf Desktop versteckt */
.mobile-anke-intro,
.mobile-song-teaser,
.mobile-contact-simple,
.mobile-zahlen-title { display: none; }

/* Methode-Body Overflow-Fix (auch ohne display:none nötig) */
@media (max-width: 768px) {
  .methode-body       { flex-direction: column; }
  .methode-content    { flex: none; width: 100%; max-width: 100%; }
  .methode-tools      { flex-direction: row; flex-wrap: wrap; justify-content: center;
                        gap: 1.2rem; padding-top: 2rem; }

  /* Sektionen auf Mobile ausblenden */
  .section-quote      { display: none; }
  .section-naturgewalt{ display: none; }
  .section-methode    { display: none; }
  .section-erfahrung  { display: none; }
  .section-partner    { display: none; }
  .section-chevron    { display: none; }
  .dreiwege-chevron   { display: none; }

  /* Kontaktformular verstecken → einfache Alternative wird gezeigt */
  #contact-form       { display: none; }
  .section-contact .subtitle { display: none; }
  .section-contact    { padding: 4rem 1.2rem 3.5rem; }
  .section-contact blockquote { margin-bottom: 1.8rem !important; }

  /* Dreiwege-Sektion kompakter */
  .section-dreiwege   { padding: 3.5rem 1.2rem 4rem; }

  /* Zahlen: Text-Block ausblenden, nur Karten zeigen */
  .section-zahlen-left { display: none; }
  .section-zahlen      { padding: 4rem 1.2rem; }
  .zahlen-grid         { gap: 0.8rem; }
  .zahlen-card .number { font-size: 2.1rem; }
  .mobile-zahlen-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--brown);
    text-align: center;
    margin-bottom: 1.4rem;
  }

  /* ——— MOBILE ANKE INTRO ——— */
  .mobile-anke-intro {
    display: block;
    background: var(--cream);
    text-align: center;
    padding: 3rem 1.4rem 2.5rem;
    border-bottom: 1px solid rgba(74,59,40,0.1);
  }
  .mobile-anke-photo-wrap {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.4rem;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
  }
  .mobile-anke-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
  }
  .mobile-anke-intro blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--brown);
    margin-bottom: 1rem;
  }
  .mobile-anke-intro p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.78;
    margin-bottom: 1.8rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-anke-intro .btn {
    font-size: 0.78rem;
    padding: 0.75rem 2rem;
  }

  /* ——— MOBILE SONG TEASER ——— */
  .mobile-song-teaser {
    display: block;
    background: var(--black);
    padding: 2.5rem 1.4rem 2.2rem;
    text-align: center;
  }
  .mobile-song-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 1.1rem;
  }
  .mobile-song-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .mobile-song-thumb {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .mobile-song-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mobile-song-meta { flex: 1; min-width: 0; }
  .mobile-song-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-song-by {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gold);
    margin-top: 0.18rem;
    opacity: 0.8;
  }
  .mobile-song-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: var(--brown);
    transition: transform 0.15s ease, background 0.2s;
  }
  .mobile-song-play:active { transform: scale(0.92); }
  .mobile-song-play.playing { background: var(--cream); }
  .mobile-song-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(250,247,242,0.6);
    display: inline-block;
    border-bottom: 1px solid rgba(212,175,55,0.35);
    padding-bottom: 1px;
    transition: color 0.2s;
  }

  /* ——— MOBILE KONTAKT SIMPEL ——— */
  .mobile-contact-simple {
    display: block;
    margin-top: 0.5rem;
  }
  .mobile-contact-simple .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .mobile-contact-email {
    font-size: 0.8rem;
    color: var(--brown);
    opacity: 0.6;
    text-align: center;
  }
}
