/* ==========================================================================
   Ulli Trüby – Farben. Energie. Sein.
   Zentrale Stylesheet-Datei für die ganze Website.
   Aufbau: 1) Variablen & Basis, 2) gemeinsame Bausteine (Header, Footer,
   Buttons), 3) seitenspezifische Abschnitte (mit body-Klasse gescoped,
   wo Klassennamen sich zwischen Seiten unterscheiden würden).
   ========================================================================== */

:root {
  --cream: #FAF7F5;
  --offwhite: #FAF9F6;
  --beige: #F7F3E9;
  --teal: #729EA1;
  --teal-dark: #5f898c;
  --gold: #F2C94C;
  --gold-line: rgba(242,201,76,0.5);
  --green: #4A6C59;
  --green-soft: rgba(74,108,89,0.94);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(74,108,89,0.10);
  --bordeaux: #7D4646;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--green);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}
.eyebrow.on-dark { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  touch-action: manipulation;
}
.btn:hover { background: var(--green); border-color: var(--green); color: var(--cream); }
.btn-cream { border-color: rgba(250,247,245,0.75); color: var(--cream); }
.btn-cream:hover { background: var(--cream); border-color: var(--cream); color: var(--teal); }
.textlink {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.textlink:hover { color: var(--teal); border-color: var(--teal); }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--teal);
  box-shadow: 0 1px 0 rgba(250,247,245,0.18);
}
header .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo { height: 62px; width: auto; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: none; border: none; cursor: pointer;
  touch-action: manipulation;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav { display: none; }
nav.open {
  display: block;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--teal);
  padding: 8px 24px 24px;
  box-shadow: 0 12px 24px rgba(74,108,89,0.18);
}
nav.open a {
  display: block; width: 100%; padding: 12px 0; font-size: 0.95rem; font-weight: 700;
  color: var(--cream); border-bottom: 1px solid rgba(250,247,245,0.15);
}
nav.open a.active { color: var(--gold); }
nav.open .nav-dropdown { display: flex; align-items: center; border-bottom: 1px solid rgba(250,247,245,0.15); }
nav.open .nav-dropdown > a { flex: 1; width: auto; border-bottom: none; }
nav.open .nav-dropdown-toggle {
  flex: none; width: 44px; height: 44px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
nav.open .nav-dropdown-toggle .caret {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(250,247,245,0.16);
  font-size: 0.95rem;
}
.nav-dropdown-toggle {
  text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; line-height: inherit; touch-action: manipulation;
}
.nav-dropdown-menu { display: none; padding-left: 16px; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.caret { display: inline-block; font-size: 0.7em; transition: transform 0.25s ease; }

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  nav {
    display: flex !important; align-items: center;
    position: static; background: none; box-shadow: none; padding: 0;
  }
  nav a, .nav-dropdown-toggle {
    display: inline-flex; width: auto; padding: 0; margin-left: 28px; border-bottom: none;
    font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em; color: var(--cream);
    transition: color 0.25s ease;
  }
  nav a:hover, .nav-dropdown-toggle:hover { color: var(--gold); }
  nav a.active { color: var(--gold); }
  .nav-dropdown { position: relative; margin-left: 28px; display: flex; align-items: center; }
  .nav-dropdown > a, .nav-dropdown .nav-dropdown-toggle { margin-left: 0; }
  .nav-dropdown-menu {
    display: block; visibility: hidden; opacity: 0;
    position: absolute; top: 100%; left: 0; margin-top: 14px; min-width: 190px;
    background: var(--cream); border-radius: 10px; box-shadow: var(--shadow);
    padding: 10px 0; transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible; opacity: 1;
  }
  .nav-dropdown-menu a {
    display: block; margin: 0; padding: 9px 20px; color: var(--green);
    font-size: 0.88rem; font-weight: 500;
  }
  .nav-dropdown-menu a:hover { color: var(--teal-dark); background: var(--beige); }
  .nav-dropdown-menu a.active { color: var(--teal-dark); font-weight: 700; }
  .caret { margin-left: 4px; }
}

/* ---------- Kontakt: schlicht, ohne Karte (Basis, gemeinsam) ---------- */
.contact { padding: 100px 0; text-align: center; background: var(--beige); }

/* ---------- Kennzeichnung KI-generierter Bilder ---------- */
.ai-label {
  position: absolute; z-index: 4; bottom: 10px; right: 14px;
  font-size: 0.68rem; letter-spacing: 0.03em; color: rgba(250,247,245,0.9);
  background: rgba(74,108,89,0.45); padding: 3px 10px; border-radius: 999px;
  pointer-events: none;
}

/* ---------- Footer ---------- */
footer { background: var(--teal); }
.footer-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 28px; padding: 26px 24px;
}
.footer-copy { font-size: 0.92rem; color: var(--cream); }
.footer-copy a { color: var(--cream); border-bottom: 1px solid rgba(250,247,245,0.4); padding-bottom: 1px; }
.footer-copy a:hover { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 14px; margin: -8px -10px; }
.footer-links a { font-size: 0.86rem; color: var(--cream); padding: 8px 10px; display: inline-block; }
.footer-links a:hover { color: var(--gold); }


/* ==========================================================================
   Seite: Startseite (body.page-home)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-home .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../bilder/hero-startseite.webp') center 55%/cover no-repeat;
}
body.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,108,89,0.14) 0%, rgba(74,108,89,0.05) 40%, rgba(250,247,245,0.97) 97%);
}
body.page-home .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 90px 0 160px;
}
@media (min-width: 880px) {
  body.page-home .hero-inner { margin-left: clamp(20px, 8vw, 110px); }
}
body.page-home .hero h1 { font-size: 2.5rem; margin-bottom: 24px; }
body.page-home .hero h1 em { font-style: italic; font-weight: 500; color: var(--teal); }
body.page-home .hero p { font-size: 1.15rem; font-weight: 500; max-width: 480px; margin-bottom: 36px; }
body.page-home .hero p:first-of-type { margin-bottom: 12px; }
@media (min-width: 880px) {
  body.page-home .hero h1 { font-size: 3.4rem; }
  body.page-home .hero-inner { padding: 90px 0 200px; }
}
body.page-home .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
@media (min-width: 880px) {
  body.page-home .hero-actions { width: max-content; flex-wrap: nowrap; margin-left: clamp(0px, 18vw, 300px); }
}

/* ---------- Willkommen: Portrait direkt nach dem Hero, fuer Naehe ---------- */
.welcome { background: var(--cream); padding: 50px 0 56px; }
.welcome-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
@media (min-width: 640px) { .welcome-inner { flex-direction: row; text-align: left; gap: 28px; } }
.welcome-portrait { width: 260px; height: 330px; border-radius: 50%; overflow: hidden; flex: none; box-shadow: var(--shadow); }
.welcome-portrait img { width: 100%; height: 100%; object-fit: cover; }
.welcome-portrait video { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.video-portrait-wrap { position: relative; flex: none; }
.mute-toggle {
  position: absolute; bottom: 6px; right: -6px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--cream); cursor: pointer;
  background: var(--teal); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background 0.25s ease, transform 0.2s ease;
}
.mute-toggle:hover { background: var(--teal-dark); transform: scale(1.06); }
.welcome-text .welcome-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.9rem; color: var(--teal-dark); margin-bottom: 8px; }
.story .welcome-name { margin-bottom: 8px; }
.story .welcome-inner { text-align: center; }
@media (min-width: 640px) { .story .welcome-inner { text-align: left; gap: 80px; } }
.welcome-text p:not(.welcome-name) { font-size: 1.15rem; font-weight: 500; color: var(--green); max-width: 480px; margin: 0 auto 14px; }
.welcome-text p:last-child { margin-bottom: 0; }
@media (min-width: 640px) { .welcome-text p:not(.welcome-name) { margin-left: 0; margin-right: 0; } }

/* ---------- Spiegel: Zielgruppen-Zitat ---------- */
.mirror { background: var(--beige); padding: 96px 0; text-align: center; }
.mirror-inner { max-width: 720px; margin: 0 auto; }
.mirror blockquote {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  font-size: 1.5rem; line-height: 1.5; color: var(--green); margin: 8px 0 40px;
}
@media (min-width: 700px) { .mirror blockquote { font-size: 1.8rem; } }
.mirror blockquote::before {
  content: "\201E"; display: block; font-size: 3.4rem; line-height: 0.6; color: var(--gold); margin-bottom: 18px;
}
.mirror p { font-size: 1.15rem; font-weight: 500; max-width: 560px; margin: 0 auto 18px; }
.mirror p:last-child { margin-bottom: 0; }

/* ---------- Weg: drei Schritte, breite Bogenbilder ---------- */
.path { padding: 100px 0 90px; background: var(--offwhite); }
.path-head { max-width: 620px; margin: 0 auto 24px; text-align: center; }
.path-head h2 { font-size: 2.1rem; margin-bottom: 16px; }
.path-head p { font-size: 1.15rem; font-weight: 500; }

.step {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 56px 0;
}
@media (min-width: 860px) {
  .step { grid-template-columns: 1fr 1fr; gap: 60px; }
  .step:nth-child(even) .step-media { order: 2; }
}
.step + .step { border-top: 1px solid rgba(114,158,161,0.25); }

.step-media { position: relative; max-width: 620px; margin: 0 auto; width: 100%; }
.step-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 220px 220px 18px 18px;
}
@media (max-width: 640px) { .step-media img { height: 280px; } }
.step-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.step h3 { font-size: 1.7rem; margin-bottom: 16px; }
.step p { font-size: 1.1rem; font-weight: 500; margin-bottom: 24px; max-width: 480px; }
.step-foot { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.step-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem; color: var(--teal); }

/* ---------- Über mich: schlicht, wie im Original ---------- */
.about { background: var(--cream); padding: 100px 0; text-align: center; }
.about-inner { max-width: 640px; margin: 0 auto; }
.about-frame { width: 260px; height: 330px; margin: 32px auto; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-inner h2 { font-size: 2.1rem; margin-bottom: 22px; }
.about-inner p { font-size: 1.15rem; font-weight: 500; margin: 0 auto 20px; max-width: 540px; }
.about-inner .btn { margin-top: 8px; }
.about-youtube { font-size: 0.92rem; color: var(--green-soft); margin: 32px auto 0; max-width: 540px; }
.about-youtube a { color: var(--teal-dark); border-bottom: 1px solid var(--gold-line); padding-bottom: 1px; }
.about-youtube a:hover { color: var(--teal); }

/* ---------- Zielgefühl: still, ohne Farbblock ---------- */
.feel { padding: 110px 0; background: var(--beige); text-align: center; }
.feel h2 { font-size: clamp(1.8rem, 3.8vw, 2.3rem); margin-bottom: 56px; }
.feel-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.feel-item { padding: 0; border: none; display: block; }
.feel-dot { display: none; }
.feel-item p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem); line-height: 1.55; color: var(--green); margin: 0;
}
.feel-personal {
  max-width: 360px; margin: 48px 0 0 auto; text-align: right;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--bordeaux); line-height: 1.6;
}
@media (max-width: 640px) { .feel-personal { text-align: center; margin: 40px auto 0; } }

/* ---------- Kontakt (Startseite) ---------- */
body.page-home .contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
body.page-home .contact-card h2 { font-size: clamp(1.8rem, 3.8vw, 2.4rem); margin-bottom: 18px; }
body.page-home .contact-card p { color: var(--green-soft); max-width: 480px; margin: 0 auto 32px; font-size: 1.15rem; font-weight: 500; }
body.page-home .contact-card p:first-of-type { margin-bottom: 10px; }
.contact-alt { margin-top: 20px; font-size: 1.05rem; font-weight: 500; color: var(--green-soft); }
.contact-alt a { display: inline-block; border-bottom: 1px solid var(--gold-line); padding: 8px 2px; }
.contact-alt a:hover { border-color: var(--teal); color: var(--teal); }
.contact-alt .dot { color: var(--gold); margin: 0 10px; }


/* ==========================================================================
   Seite: Begegnung (body.page-begegnung)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-begegnung .hero {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-begegnung .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../bilder/hero-begegnung.webp') center bottom/cover no-repeat;
  filter: brightness(1.16) saturate(0.94);
}
@media (max-width: 760px) {
  body.page-begegnung .hero::before { background-position: 58% bottom; }
  body.page-begegnung .hero-inner .btn { background: rgba(250,247,245,0.88); }
  body.page-begegnung .hero-inner .btn:hover { background: var(--green); }
}
body.page-begegnung .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250,247,245,0.12);
}
/* Textspalte bewusst schmal gehalten, damit sie bei jeder Fenstergroesse auf der freien Wand bleibt, nie im Fenster/Aussicht */
body.page-begegnung .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 400px;
  padding: clamp(70px, 6vw + 30px, 108px) 0 clamp(110px, 9vw + 40px, 160px);
}
body.page-begegnung .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }
.hero-lead { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 1.25rem; line-height: 1.55; color: var(--green); margin-bottom: 32px; }
.hero-lead span { display: block; }
@media (min-width: 480px) { body.page-begegnung .hero-inner .btn { white-space: nowrap; } }
@media (min-width: 360px) and (max-width: 479px) {
  body.page-begegnung .hero-inner .btn {
    white-space: nowrap; padding: 12px 14px; font-size: 0.8rem; letter-spacing: 0.03em;
  }
}

/* ---------- Story: linksbündig, volle Breite wie auf der echten Website ---------- */
.story { padding: 90px 0; }
.story-inner { max-width: 100%; margin: 0; text-align: left; }
.story h2 { font-size: 1.85rem; margin-bottom: 30px; text-align: left; }
.story p { font-size: 1.15rem; font-weight: 500; margin-bottom: 20px; }
.story p:last-child { margin-bottom: 0; }
.story .pull {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  font-size: 1.55rem; color: var(--teal-dark); text-align: left; margin: 42px 0; line-height: 1.5;
  padding-left: 26px; border-left: 2px solid var(--gold);
}
.story-personal {
  margin: 32px 0 0 auto; max-width: 390px; text-align: right;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--bordeaux); line-height: 1.6;
}
@media (max-width: 640px) { .story-personal { text-align: left; margin: 24px 0 0; max-width: none; } }

.bg-beige { background: var(--beige); }
.bg-offwhite { background: var(--offwhite); }
.bg-cream { background: var(--cream); }

/* ---------- Übergangsmarke zwischen Textabschnitten ---------- */
.section-mark { text-align: center; padding: 6px 0; position: relative; z-index: 2; }
.section-mark span {
  display: inline-block; width: 9px; height: 9px; background: var(--gold);
  transform: rotate(45deg); opacity: 0.85;
}

/* ---------- Bild-Akzent innerhalb eines Textabschnitts ---------- */
.story-with-image { display: grid; gap: 40px; }
@media (min-width: 900px) { .story-with-image { grid-template-columns: 540px 1fr; align-items: center; } }
.story-accent-img {
  position: relative;
  max-width: 380px; margin: 0 0 0 auto;
  border-top-left-radius: 240px; border-top-right-radius: 240px; overflow: hidden;
  box-shadow: var(--shadow);
}
.story-accent-img img { width: 100%; height: 460px; object-fit: cover; object-position: 80% center; }
@media (max-width: 899px) { .story-accent-img { margin: 0 auto; max-width: 320px; } .story-accent-img img { height: 380px; } }
@media (max-width: 640px) { .story-accent-img { max-width: 280px; } .story-accent-img img { height: 260px; } }

/* ---------- Ablauf & Angebot ---------- */
.offer-block { padding-top: 20px; padding-bottom: 40px; }
.offer-block h3 { font-size: 1.3rem; margin: 46px 0 26px; text-align: left; }

.feature-list { display: grid; gap: 26px; max-width: 620px; margin: 0 0 44px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { flex: none; font-size: 1.3rem; line-height: 1.5; }
.feature-item strong { display: block; font-size: 1.2rem; color: var(--green); margin-bottom: 5px; }
.feature-item span { font-size: 1.05rem; color: var(--green-soft); }

.offer-cta { text-align: left; margin-bottom: 60px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

.price-block { text-align: left; max-width: 560px; margin: 0; }
.price-block .amount {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.6rem; color: var(--teal);
  margin-bottom: 18px;
}
.price-block p { font-size: 1.08rem; font-weight: 500; color: var(--green-soft); margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--offwhite); }
.faq-inner { max-width: 700px; margin: 0; }
.faq h2 { font-size: 1.85rem; margin-bottom: 44px; text-align: left; }
.faq-item { border-top: 1px solid rgba(114,158,161,0.22); }
.faq-item:last-child { border-bottom: 1px solid rgba(114,158,161,0.22); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: var(--green);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--gold); transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 1.08rem; font-weight: 500; color: var(--green-soft); padding: 0 4px 24px; }

/* ---------- Kontakt (Begegnung) ---------- */
body.page-begegnung .contact-card { max-width: 620px; margin: 0 auto; }
body.page-begegnung .contact-card h2 { font-size: clamp(1.8rem, 3.8vw, 2.4rem); margin-bottom: 18px; }
body.page-begegnung .contact-card p { color: var(--green-soft); max-width: 520px; margin: 0 auto 20px; font-size: 1.15rem; font-weight: 500; }
body.page-begegnung .contact-card .btn { margin-top: 8px; }


/* ==========================================================================
   Seite: Workshop (body.page-workshop)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-workshop .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../bilder/hero-workshop.webp') 5% 20%/cover no-repeat;
}
body.page-workshop .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 82%, rgba(250,247,245,0.97) 100%),
    linear-gradient(90deg, rgba(250,247,245,0.85) 0%, rgba(250,247,245,0.5) 28%, rgba(250,247,245,0.1) 48%, rgba(250,247,245,0) 60%);
}
body.page-workshop .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 60px 0 200px;
}
body.page-workshop .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 24px; }
body.page-workshop .hero p { font-size: 1.15rem; font-weight: 500; max-width: 480px; margin-bottom: 28px; }
body.page-workshop .hero-meta { font-size: 0.95rem; color: var(--teal-dark); margin-bottom: 32px; }
body.page-workshop .hero-meta strong { color: var(--green); }
@media (min-width: 880px) {
  body.page-workshop .hero-inner { padding: 60px 0 240px; }
}
@media (max-width: 760px) {
  body.page-workshop .hero { background-position: 34% 25%; align-items: flex-start; }
  body.page-workshop .hero-inner { padding: 30px 0 60px; }
  body.page-workshop .hero .eyebrow { margin-bottom: 10px; }
  body.page-workshop .hero h1 { font-size: 2rem; margin-bottom: 10px; }
  body.page-workshop .hero p { font-size: 1.05rem; margin-bottom: 10px; }
  body.page-workshop .hero-meta { margin-top: 50px; }
  body.page-workshop .hero-inner .btn { background: rgba(250,247,245,0.88); }
  body.page-workshop .hero-inner .btn:hover { background: var(--green); }
}

/* ---------- Zielgruppen-Check: passt / passt nicht ---------- */
.fit-check { display: grid; gap: 32px; max-width: 1080px; margin-top: 8px; }
@media (min-width: 700px) { .fit-check { grid-template-columns: 1fr 1fr; gap: 60px; } }
.fit-check h3 { font-size: 1.15rem; margin-bottom: 16px; }
.fit-check ul { list-style: none; display: grid; gap: 12px; }
.fit-check li { font-size: 1.08rem; color: var(--green-soft); padding-left: 22px; position: relative; }
.fit-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.fit-no li::before { content: "×"; position: absolute; left: 0; color: var(--teal-dark); opacity: 0.6; font-weight: 700; }
.fit-check a { color: var(--teal-dark); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.fit-check a:hover { color: var(--teal); }

/* ---------- Preisstufen ---------- */
.price-tiers { display: grid; gap: 26px; max-width: 620px; margin: 8px 0 32px; }
.price-tier { padding: 22px 0; border-top: 1px solid rgba(114,158,161,0.22); }
.price-tier:first-child { border-top: none; padding-top: 0; }
.price-tier-label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.price-tier-amount { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.9rem; color: var(--teal); margin-bottom: 8px; }
.price-tier-note { display: block; font-size: 1.05rem; font-weight: 500; color: var(--green-soft); max-width: 520px; }
.price-tiers-foot { font-size: 1.05rem; font-weight: 500; color: var(--green-soft); margin-bottom: 24px; }

/* ---------- Kontakt (Workshop) ---------- */
body.page-workshop .story-accent-img img { object-position: 100% center; }
body.page-workshop .story .welcome-portrait { width: 260px; height: 330px; }
.story-accent-img--small { max-width: 260px; position: relative; }
.story-accent-img--small img { height: 320px; }
.story-accent-img--small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250,247,245,0.4);
}
@media (max-width: 899px) { .story-accent-img--small { max-width: 240px; } .story-accent-img--small img { height: 280px; } }
@media (max-width: 640px) { .story-accent-img--small { max-width: 210px; } .story-accent-img--small img { height: 200px; } }
body.page-workshop .contact-card { max-width: 560px; margin: 0 auto; }
body.page-workshop .contact-card h2 { font-size: clamp(1.8rem, 3.8vw, 2.4rem); margin-bottom: 18px; }
body.page-workshop .contact-card p { color: var(--green-soft); max-width: 480px; margin: 0 auto 20px; font-size: 1.15rem; font-weight: 500; }
body.page-workshop .contact-card .btn { margin-top: 8px; }


/* ---------- Einfache Haken-Liste (mehrfach verwendet) ---------- */
.simple-list { list-style: none; display: grid; gap: 12px; max-width: 560px; margin: 20px 0; }
.simple-list li { font-size: 1.08rem; font-weight: 500; color: var(--green); padding-left: 26px; position: relative; }
.simple-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ---------- Zwischentitel innerhalb eines Story-Abschnitts ---------- */
.story h3 { font-size: 1.32rem; margin: 38px 0 14px; text-align: left; }
.story h3:first-of-type { margin-top: 0; }
@media (max-width: 640px) {
  .story h3 { margin: 26px 0 12px; }
  .story p { margin-bottom: 14px; }
  .simple-list { gap: 9px; margin: 14px 0; }
}


/* ==========================================================================
   Seite: Begleitung (body.page-begleitung)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-begleitung .hero {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-begleitung .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../bilder/hero-begleitung.webp') 70% center/cover no-repeat;
}
body.page-begleitung .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250,247,245,0.1);
}
body.page-begleitung .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 420px;
  padding: clamp(20px, 2vw + 5px, 35px) 0 clamp(110px, 9vw + 40px, 160px);
}
body.page-begleitung .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }
@media (max-width: 760px) {
  body.page-begleitung .hero { align-items: flex-start; }
  body.page-begleitung .hero-inner { padding-top: 80px; }
  body.page-begleitung .hero-inner .btn { background: rgba(250,247,245,0.88); }
  body.page-begleitung .hero-inner .btn:hover { background: var(--green); }
}
@media (min-width: 360px) and (max-width: 479px) {
  body.page-begleitung .hero-inner .btn {
    white-space: nowrap; padding: 12px 16px; font-size: 0.78rem; letter-spacing: 0.02em;
  }
}

/* ---------- Bogenbild ---------- */
body.page-begleitung .story-accent-img--small img { object-position: 78% center; }

/* ---------- Portrait: ovaler Ausschnitt, groesser ---------- */
body.page-begleitung .welcome-portrait { width: 220px; height: 280px; }

/* ---------- Kontakt (Begleitung) ---------- */
body.page-begleitung .contact-card { max-width: 560px; margin: 0 auto; }
body.page-begleitung .contact { padding-top: 10px; }
body.page-begleitung .contact-card h2 { font-size: 1.85rem; margin-bottom: 18px; }
body.page-begleitung .contact-card p { color: var(--green-soft); max-width: 480px; margin: 0 auto 20px; font-size: 1.15rem; font-weight: 500; }
body.page-begleitung .contact-card .btn { margin-top: 8px; }


/* ==========================================================================
   Seite: Aura-Soma (body.page-aura-soma)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-aura-soma .hero {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-aura-soma .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../bilder/hero-aura-soma-hauptseite.webp') center center/cover no-repeat;
  filter: brightness(1.16) saturate(0.94);
}
@media (max-width: 760px) {
  body.page-aura-soma .hero::before { background-position: 60% center; }
}
body.page-aura-soma .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250,247,245,0.12);
}
body.page-aura-soma .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 400px;
  padding: clamp(70px, 6vw + 30px, 108px) 0 clamp(110px, 9vw + 40px, 160px);
}
body.page-aura-soma .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }
@media (max-width: 760px) {
  body.page-aura-soma .hero { align-items: flex-start; }
  body.page-aura-soma .hero-inner { padding-top: 30px; }
  body.page-aura-soma .hero-lead { margin-bottom: 20px; }
}


/* ==========================================================================
   Seite: Über mich (body.page-ueber-mich)
   ========================================================================== */

/* ---------- Hero: kompakt, Wolkenbild, Portrait daneben ---------- */
body.page-ueber-mich .hero {
  position: relative;
  min-height: clamp(420px, 56vh, 620px);
  display: flex;
  align-items: center;
  background: url('../bilder/hero-ueber-mich.webp') center center/cover no-repeat;
}
body.page-ueber-mich .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,108,89,0.14) 0%, rgba(74,108,89,0.05) 40%, rgba(250,247,245,0.97) 97%);
}
body.page-ueber-mich .hero .wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
}
body.page-ueber-mich .hero-inner { max-width: 480px; }
body.page-ueber-mich .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }
body.page-ueber-mich .hero-portrait { flex: none; margin: 0 auto; }
@media (max-width: 760px) {
  body.page-ueber-mich .hero .wrap { flex-direction: column; justify-content: center; }
  body.page-ueber-mich .hero-portrait { width: 200px; height: 254px; }
}

/* ---------- Kontakt: Abstand zum letzten Abschnitt verkleinern ---------- */
body.page-ueber-mich .contact { padding-top: 10px; }
body.page-ueber-mich .contact-card p { color: var(--green-soft); max-width: 480px; margin: 0 auto 20px; font-size: 1.15rem; font-weight: 500; }


/* ==========================================================================
   Seite: Kundenstimmen (body.page-kundenstimmen)
   ========================================================================== */

/* ---------- Einstieg: kein Hero, schlichter Titel ---------- */
.page-intro { background: var(--cream); padding: 140px 0 50px; }
.page-intro h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 18px; }
.page-intro p { font-size: 1.15rem; font-weight: 500; color: var(--green-soft); max-width: 640px; }
@media (max-width: 640px) { .page-intro { padding: 110px 0 40px; } }

/* ---------- Testimonial-Karten ---------- */
.testimonials { background: var(--offwhite); padding: 20px 0 80px; }
.testimonials-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card {
  background: var(--cream); border-radius: 16px; padding: 36px 32px;
  box-shadow: var(--shadow);
}
.testimonial-avatar {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  margin-bottom: 20px;
}
.testimonial-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.testimonial-card p { font-size: 1.08rem; color: var(--green-soft); margin-bottom: 16px; }
.testimonial-card p.testimonial-name { font-weight: 700; color: var(--green); margin-bottom: 2px; }
.testimonial-card p.testimonial-role { font-size: 0.9rem; margin-bottom: 0; }
.testimonial-role a { color: var(--teal-dark); border-bottom: 1px solid var(--gold-line); }


/* ==========================================================================
   Seite: Kontakt (body.page-kontakt)
   ========================================================================== */

/* ---------- Hero: kompakt, Wolkenbild ---------- */
body.page-kontakt .hero {
  position: relative;
  min-height: clamp(320px, 46vh, 460px);
  display: flex;
  align-items: center;
  background: url('../bilder/hero-kontakt.webp') center center/cover no-repeat;
}
body.page-kontakt .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,108,89,0.14) 0%, rgba(74,108,89,0.05) 40%, rgba(250,247,245,0.97) 97%);
}
body.page-kontakt .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 60px 0;
}
body.page-kontakt .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }

/* ---------- Kontaktformular ---------- */
.contact-form { max-width: 560px; text-align: left; margin-top: 24px; }
.contact-form label {
  display: block; font-size: 0.92rem; font-weight: 600; color: var(--green); margin-bottom: 18px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid rgba(74,108,89,0.25); border-radius: 10px;
  background: var(--cream); font-family: 'Raleway', sans-serif; font-size: 0.95rem; color: var(--green);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form fieldset { border: none; padding: 0; margin: 0 0 18px; }
.contact-form legend { font-size: 0.92rem; font-weight: 600; color: var(--green); margin-bottom: 10px; padding: 0; }
.contact-form fieldset label {
  display: flex; align-items: center; gap: 10px; font-weight: 500; margin-bottom: 10px;
}
.contact-form fieldset input[type="radio"] { accent-color: var(--teal); width: 18px; height: 18px; flex: none; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 0.9rem; }
.form-checkbox input[type="checkbox"] { accent-color: var(--teal); width: 18px; height: 18px; margin-top: 2px; flex: none; }
.form-checkbox a { color: var(--teal-dark); border-bottom: 1px solid var(--gold-line); }
.contact-form .btn { margin-top: 8px; border: none; cursor: pointer; font-family: 'Raleway', sans-serif; }


/* ==========================================================================
   Seite: Blog (body.page-blog)
   ========================================================================== */

/* ---------- Hero: randlos, Vollbild ---------- */
body.page-blog .hero {
  position: relative;
  min-height: clamp(420px, 56.3vw, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.page-blog .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../bilder/hero-blog.webp') center/cover no-repeat;
}
body.page-blog .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250,247,245,0.55);
}
body.page-blog .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 480px;
  padding: clamp(40px, 4vw + 10px, 70px) 0 clamp(40px, 4vw + 10px, 70px);
}
body.page-blog .hero h1 { font-size: clamp(1.85rem, 1.6vw + 1.4rem, 2.5rem); margin-bottom: 20px; }
body.page-blog .hero-lead { font-size: 1.35rem; }
body.page-blog .hero p:not(.hero-lead) { font-size: 1.15rem; font-weight: 500; margin-bottom: 16px; }
@media (max-width: 760px) {
  body.page-blog .hero { align-items: flex-start; }
  body.page-blog .hero-inner { padding-top: 30px; }
}

.blog-quote-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .blog-quote-grid { grid-template-columns: 1.2fr 1fr; } }
.blog-quote-img { width: 100%; max-width: 480px; height: auto; margin: 0 auto; display: block; }
@media (min-width: 900px) { .blog-quote-img { max-width: none; margin: 0; } }

.blog-list { background: var(--offwhite); padding: 20px 0 90px; scroll-margin-top: 100px; }
.blog-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card { background: var(--cream); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.blog-card-media { position: relative; }
.blog-card-media img { display: block; width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 26px 28px 30px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--green); }
.blog-card h3 a:hover { color: var(--teal-dark); }
.blog-date {
  font-size: 0.82rem; color: var(--teal); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 14px;
}
.blog-card-body p:not(.blog-date) { font-size: 1.05rem; color: var(--green-soft); margin-bottom: 16px; }
.blog-card .textlink { font-size: 0.85rem; }


/* ==========================================================================
   Seite: Blog-Beiträge (body.page-blog-post)
   ========================================================================== */

.post-header { background: var(--cream); padding: 140px 0 20px; }
@media (max-width: 640px) { .post-header { padding: 110px 0 20px; } }
.post-back { display: inline-block; font-size: 0.85rem; margin-bottom: 18px; }
.post-back-bottom { display: inline-block; font-size: 0.85rem; margin-top: 44px; }
.post-header .eyebrow { display: block; margin-bottom: 14px; }
.post-header h1 { font-size: clamp(1.7rem, 1.6vw + 1.2rem, 2.3rem); margin-bottom: 16px; line-height: 1.25; }
.post-meta { font-size: 0.9rem; color: var(--green-soft); }
.post-header-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 860px) { .post-header-grid { grid-template-columns: 1.1fr 1fr; } }
.post-header-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.post-header-media img { display: block; width: 100%; height: 260px; object-fit: cover; }
@media (min-width: 860px) { .post-header-media img { height: 320px; } }
.post-signoff { font-style: italic; margin-top: 8px; }

/* ---------- Fliesstext: schmalere Lesespalte, mittig ---------- */
body.page-blog-post .story-inner { max-width: 760px; margin: 0 auto; }

/* ---------- Links im Fliesstext: sichtbar markiert ---------- */
.story-inner p a { color: var(--teal-dark); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.story-inner p a:hover { color: var(--teal); }


/* ==========================================================================
   Mobile: kompaktere Abschnittsabstände (ganz am Dateiende, damit diese
   Regeln in der Kaskade sicher gewinnen, unabhängig davon wo die jeweilige
   Basis-Regel weiter oben steht)
   ========================================================================== */
@media (max-width: 640px) {
  .contact { padding: 60px 0; }
  .welcome { padding: 40px 0 44px; }
  .mirror { padding: 56px 0; }
  .path { padding: 60px 0 50px; }
  .about { padding: 60px 0 36px; }
  .feel { padding: 40px 0; }
  .story { padding: 56px 0; }
  .faq { padding: 56px 0; }
}
