:root {
  --creme: #FAF4E6;
  --creme-tief: #F2E9D3;
  --weiss: #FFFDF8;
  --blatt: #3F6B4F;
  --blatt-hell: #7FA379;
  --moos: #2C5530;
  --navy: #1E3A5F;
  --beere: #4A6D8C;
  --rose: #E9CFC9;
  --terra: #B5472A;
  --terra-hell: #C95F3F;
  --text: #33413A;
  --text-leise: #5F6E5A;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --schatten: 0 18px 50px rgba(44, 85, 48, 0.12);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--creme);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- Himmel: wandernde Lichtflecken + Blütenblätter ---- */
.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.light-1 { width: 46vw; height: 46vw; background: #E3F0DC; top: -18vw; left: -10vw; animation: wander 26s ease-in-out infinite; }
.light-2 { width: 36vw; height: 36vw; background: #F6E3D3; top: 10vh; right: -14vw; animation: wander 32s ease-in-out infinite reverse; }
.light-3 { width: 30vw; height: 30vw; background: #E5E9F2; bottom: -10vh; left: 30vw; animation: wander 40s ease-in-out infinite; animation-delay: -12s; }
@keyframes wander {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 4vh) scale(1.12); }
}

.petal { position: absolute; width: 26px; height: 26px; opacity: 0; }
.petal path { fill: var(--rose); }
.petal-2 path { fill: var(--blatt-hell); }
.petal-1 { left: 12vw; animation: fallen 19s linear infinite; animation-delay: 2s; }
.petal-2 { left: 55vw; width: 20px; animation: fallen 25s linear infinite; animation-delay: 9s; }
.petal-3 { left: 82vw; width: 16px; animation: fallen 22s linear infinite; animation-delay: 14s; }
@keyframes fallen {
  0% { transform: translateY(-6vh) rotate(0deg); opacity: 0; }
  8% { opacity: 0.85; }
  85% { opacity: 0.6; }
  100% { transform: translateY(106vh) rotate(300deg); opacity: 0; }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 5vw, 56px);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(44, 85, 48, 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand img { transition: transform 0.8s cubic-bezier(0.34, 1.4, 0.5, 1); }
.brand:hover img { transform: rotate(360deg); }
.brand strong { font-family: var(--serif); font-size: 1.1rem; display: block; line-height: 1.15; }
.brand small { color: var(--text-leise); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav { display: flex; gap: clamp(14px, 2.5vw, 30px); }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--terra);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header-cta {
  background: var(--terra);
  color: var(--weiss);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.header-cta:hover { background: var(--terra-hell); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(181, 71, 42, 0.32); }

main { position: relative; z-index: 1; }

/* ---- Grundlayout ---- */
.section-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 56px);
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blatt);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 500; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.18; margin-bottom: 20px; }
h1 em { font-style: normal; color: var(--terra); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.25; margin-bottom: 14px; }
h3 { font-size: 1.12rem; margin-bottom: 8px; }

/* ---- Reveal-Animationen ---- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.8, 0.3, 1); }
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }
.d5 { transition-delay: 0.6s; }

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(92vh - 80px);
  padding-top: clamp(30px, 6vh, 70px);
}
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin-bottom: 16px; }
.quiet { color: var(--text-leise); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.button.primary {
  background: var(--terra);
  color: var(--weiss);
  box-shadow: 0 12px 28px rgba(181, 71, 42, 0.28);
}
.button.primary:hover { background: var(--terra-hell); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(181, 71, 42, 0.36); }
.button.ghost {
  color: var(--moos);
  border: 1.5px solid var(--blatt-hell);
  background: rgba(255, 253, 248, 0.6);
}
.button.ghost:hover { background: var(--weiss); transform: translateY(-3px); border-color: var(--blatt); }

.hero-photo { position: relative; }
.photo-arch {
  border-radius: 46% 46% var(--radius) var(--radius) / 38% 38% var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  border: 6px solid rgba(255, 253, 248, 0.85);
  will-change: transform;
}
.photo-arch img { display: block; width: 100%; height: auto; }
.pilot-chip {
  position: absolute;
  left: clamp(-30px, -3vw, -14px);
  bottom: -34px;
  max-width: 250px;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 14px 34px rgba(44, 85, 48, 0.14);
  animation: schweben 7s ease-in-out infinite;
}
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.card-kicker { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); }
.pilot-chip strong { display: block; color: var(--navy); font-family: var(--serif); margin: 6px 0 6px; }
.pilot-chip p { font-size: 0.88rem; color: var(--text-leise); }

/* ---- Signal-Strip ---- */
.signal-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.signal-strip div {
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 20px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.signal-strip div:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.signal-strip strong { display: block; font-family: var(--serif); color: var(--navy); font-size: 1.15rem; margin-bottom: 4px; }
.signal-strip span { font-size: 0.88rem; color: var(--text-leise); }

/* ---- Passung ---- */
.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(22px, 4vw, 44px); align-items: start; }
.story-card {
  background: linear-gradient(165deg, var(--weiss) 0%, var(--creme-tief) 115%);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--schatten);
  position: relative;
  overflow: hidden;
}
.story-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 170px;
  height: 170px;
  opacity: 0.07;
  transform: rotate(-18deg);
  pointer-events: none;
  background: no-repeat center / contain url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15 3 C23 9 25 18 15 27 C5 18 7 9 15 3 Z" fill="%232C5530"/></svg>');
}
.story-card p:first-child {
  font-family: var(--serif);
  font-size: 1.16em;
  line-height: 1.6;
  color: var(--moos);
}
.story-card p + p { margin-top: 14px; }
.fit-list h3 { margin-top: 18px; }
.fit-list h3:first-child { margin-top: 0; }
.fit-list ul { list-style: none; margin-bottom: 10px; }
.fit-list li {
  padding: 8px 0 8px 30px;
  position: relative;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  background: no-repeat center / contain url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15 3 C23 9 25 18 15 27 C5 18 7 9 15 3 Z" fill="%233F6B4F"/></svg>');
}
.muted-list li { color: var(--text-leise); }
.muted-list li::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15 3 C23 9 25 18 15 27 C5 18 7 9 15 3 Z" fill="%23B8AF9C"/></svg>');
}

/* ---- Sechs Bereiche ---- */
.section-heading { max-width: 720px; margin-bottom: clamp(28px, 4vh, 46px); }
.section-heading.compact { margin-bottom: 30px; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar-grid article {
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 26px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.pillar-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--schatten);
  background: var(--weiss);
}
.pillar-grid span {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--terra);
  display: inline-block;
  margin-bottom: 10px;
}
.pillar-grid p { font-size: 0.92rem; color: var(--text-leise); }

/* ---- Programm / Pfad ---- */
.trail { position: relative; }
.trail-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 130px;
  height: 100%;
}
.trail-bg, .trail-fg {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}
.trail-bg { stroke: rgba(127, 163, 121, 0.35); stroke-dasharray: 2 10; }
.trail-fg { stroke: var(--moos); }
.timeline { display: grid; gap: clamp(24px, 4vh, 40px); position: relative; }
.timeline article {
  width: calc(50% - 90px);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 12px 30px rgba(44, 85, 48, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.timeline article:hover { transform: translateY(-5px) scale(1.015); box-shadow: var(--schatten); }
.timeline article:nth-child(even) { margin-left: auto; }
.timeline span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}
.timeline h3 { margin-top: 6px; }
.timeline p { font-size: 0.94rem; color: var(--text-leise); }
.timeline .final { background: var(--navy); border-color: var(--navy); }
.timeline .final span { color: var(--rose); }
.timeline .final h3 { color: var(--creme); }
.timeline .final p { color: rgba(250, 244, 230, 0.8); }

/* ---- Natur-Band ---- */
.nature-band {
  position: relative;
  margin: clamp(40px, 8vh, 90px) 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #E7F0E0 0%, var(--creme-tief) 100%);
  padding: clamp(40px, 7vh, 80px) clamp(20px, 5vw, 56px);
}
.nature-photo {
  position: absolute;
  right: clamp(16px, 6vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 22vw, 310px);
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  border: 6px solid rgba(255, 253, 248, 0.9);
  box-shadow: var(--schatten);
  will-change: transform;
}
.nature-photo img { display: block; width: 100%; height: auto; }
.nature-quote { max-width: 520px; margin-right: auto; }
.nature-quote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--moos);
}

/* ---- Maik ---- */
.maik {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.maik-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50% 50% 42% 42% / 46% 46% 40% 40%;
  border: 6px solid rgba(255, 253, 248, 0.9);
  box-shadow: var(--schatten);
}
.maik-copy p + p { margin-top: 12px; }
.maik-note {
  margin-top: 22px;
  background: var(--rose);
  border-radius: 16px;
  padding: 16px 20px;
}
.maik-note strong { color: #7C3B2E; }
.maik-note p { color: #6B4A41; font-size: 0.92rem; margin-top: 4px; }

/* ---- Leistungen / Preis ---- */
.includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.include-card, .price-card {
  border-radius: var(--radius);
  padding: 28px 26px;
}
.include-card ul { list-style: none; }
.include-card li { padding: 7px 0 7px 26px; position: relative; font-size: 0.95rem; }
.include-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 14px;
  background: no-repeat center / contain url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15 3 C23 9 25 18 15 27 C5 18 7 9 15 3 Z" fill="%233F6B4F"/></svg>');
}
.include-card.positive { background: var(--weiss); box-shadow: var(--schatten); }
.quiet-card { background: rgba(255, 253, 248, 0.6); border: 1px solid rgba(184, 175, 156, 0.4); }
.quiet-card li { color: var(--text-leise); }
.quiet-card li::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15 3 C23 9 25 18 15 27 C5 18 7 9 15 3 Z" fill="%23B8AF9C"/></svg>');
}
.price-card {
  background: var(--navy);
  color: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-card .eyebrow { color: var(--rose); }
.price-card strong { font-family: var(--serif); font-size: 3rem; margin: 6px 0 10px; }
.price-card p { font-size: 0.92rem; color: rgba(250, 244, 230, 0.85); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; }
.faq-list details {
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease;
}
.faq-list details[open] { box-shadow: 0 12px 30px rgba(44, 85, 48, 0.1); }
.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  color: var(--terra);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin-top: 10px; color: var(--text-leise); font-size: 0.96rem; }

/* ---- Finale CTA ---- */
.final-cta {
  max-width: 1120px;
  margin: 0 auto clamp(50px, 8vh, 90px);
  padding: clamp(40px, 6vh, 70px) clamp(24px, 5vw, 60px);
  background: linear-gradient(140deg, var(--moos) 0%, var(--blatt) 100%);
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.final-cta .eyebrow { color: var(--rose); }
.final-cta h2 { color: var(--creme); }
.final-cta p { color: rgba(250, 244, 230, 0.85); max-width: 560px; }
.final-cta .button.primary { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25); }

/* ---- Footer ---- */
.site-footer {
  text-align: center;
  padding: 30px 20px 44px;
  color: var(--text-leise);
  font-size: 0.85rem;
}
.site-footer strong { color: var(--navy); }
.site-footer p + p { margin-top: 8px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { max-width: 440px; margin: 0 auto; }
  .pilot-chip { left: 10px; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .maik { grid-template-columns: 1fr; }
  .maik-photo { max-width: 340px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .includes { grid-template-columns: 1fr; }
  .trail-line { left: 18px; transform: none; width: 60px; }
  .timeline article { width: auto; margin-left: 64px !important; }
  .nature-band { flex-direction: column; gap: 26px; }
  .nature-photo { position: static; transform: none; margin: 0 auto; }
  .nature-quote { margin: 0; text-align: center; }
}
@media (max-width: 560px) {
  .nav { display: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .signal-strip { grid-template-columns: 1fr; }
}

/* ---- Reduzierte Bewegung ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .light, .petal, .pilot-chip, .brand img { animation: none !important; }
  .petal { display: none; }
  .parallax { transform: none !important; }
  .trail-fg { stroke-dashoffset: 0 !important; }
  * { transition-duration: 0.01ms !important; }
}

/* ---- Feinschliff ---- */
::selection { background: var(--blatt-hell); color: var(--weiss); }
.cta-gift { margin-top: 16px; font-size: 0.93rem; }
.cta-gift a { color: var(--creme); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s ease; }
.cta-gift a:hover { color: var(--weiss); }
.cta-gift + .cta-gift { margin-top: 6px; }
