/* ============================================================================
   Samuel Fischer — Bewusstseinsbegleitung
   Farbwelt: Gelbgrün als Grundklang, Blauviolett (Komplementär) für Aktionen.
   Das Grau lebt nur noch im Türmotiv — die Seite selbst ist farbig.
   ============================================================================ */

/* ---- Fonts (lokal) -------------------------------------------------------- */
@font-face {
  font-family: 'Faustina';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/faustina-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Faustina';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/faustina-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Faustina';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/faustina-italic-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Faustina';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/faustina-italic-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}

/* ---- Design Tokens ---------------------------------------------------------- */
:root {
  /* Tinte: dunkles Grün statt Schwarz */
  --ink:       #222E16;
  --ink-soft:  #3B4A28;
  --ink-muted: #5F7042;
  --ink-faint: #93A078;
  --ink-deep:  #1B2410;

  /* Gelbgrüne Flächen — hell bis satt */
  --leaf-bright: #FBFDEF;   /* Karten */
  --stage-1:     #F1F5DA;   /* Seitenstart */
  --stage-2:     #EAF1C8;
  --stage-3:     #E0EBB0;
  --stage-4:     #D5E39A;
  --stage-5:     #C9DC84;

  /* Blauviolett — Komplementärfarbe für alles Klickbare */
  --viola:      #5B3FA8;
  --viola-deep: #48318A;
  --viola-soft: #8B75C9;

  --grad-color: linear-gradient(90deg, #A9C356 0%, #7BA05B 45%, var(--viola) 100%);

  --font-display: 'Faustina', 'Times New Roman', Georgia, serif;
  --font-body:    'Manrope', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --ease-quiet: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 900ms;

  --gutter: clamp(36px, 8vw, 100px);
  --content-max: 1080px;
  --measure: 34rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--stage-1);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  animation: page-in 600ms var(--ease-quiet) both;
}

@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

::selection { background: var(--viola-soft); color: #fff; }

:focus-visible {
  outline: 2px solid var(--viola);
  outline-offset: 3px;
  border-radius: 2px;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

p {
  color: var(--ink-soft);
  max-width: var(--measure);
  text-wrap: pretty;
}

a { color: var(--ink); }

/* ---- Scroll-Fortschritt: Gelbgrün → Violett ------------------------------------ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-color);
  z-index: 100;
  pointer-events: none;
}

/* ---- Header ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(241, 245, 218, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--dur-base) var(--ease-quiet);
}
.site-header.is-scrolled {
  box-shadow: 0 12px 32px -20px rgba(34, 46, 22, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-quiet);
}
.brand:hover { transform: translateY(-1px); }
.brand .logo {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}
.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color var(--dur-fast) var(--ease-quiet);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur-base) var(--ease-quiet);
}
.site-nav a:hover { color: var(--viola); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--viola); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Selektor bewusst mit „a", damit er die .site-nav-a-Regeln sicher übersteuert */
.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--viola) 0%, var(--viola-deep) 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 24px -12px rgba(72, 49, 138, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: box-shadow var(--dur-base) var(--ease-quiet), transform var(--dur-base) var(--ease-quiet), filter var(--dur-base) var(--ease-quiet);
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 16px 32px -14px rgba(72, 49, 138, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: none;
  border: 1px solid rgba(34, 46, 22, 0.25);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-base) var(--ease-quiet), opacity var(--dur-fast);
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .brand .logo { height: 44px; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(241, 245, 218, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(34, 46, 22, 0.08);
    box-shadow: 0 24px 40px -24px rgba(34, 46, 22, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease-quiet);
  }
  .site-nav.is-open { max-height: 420px; }
  .site-nav a {
    padding: 16px var(--gutter);
    border-bottom: 1px solid rgba(34, 46, 22, 0.06);
  }
  .site-nav a::after { display: none; }
  .site-nav a.nav-cta {
    margin: 14px var(--gutter) 20px;
    padding: 14px 26px;
    justify-content: center;
    border-bottom: none;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ---- Typo-Bausteine ------------------------------------------------------------------ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--viola);
}
.eyebrow.center { justify-content: center; }

/* Einheitliche Abschnitts-Überschrift (ersetzt wiederholte Inline-Styles) */
.section-title {
  font-style: italic;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.22;
  margin-bottom: 26px;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
  padding-left: 32px;
  border-left: 2px solid var(--viola);
  max-width: 30ch;
}

/* Farbiger Headline-Teil: bunter Verlauf wie im Logo (Türkis → Grün → Orange → Pink) */
.tint {
  display: inline-block;
  background: linear-gradient(100deg, #2E9BB8 0%, #5FAE3E 34%, #E8930C 66%, #E5447E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: var(--viola);
  color: #fff;
  box-shadow: 0 18px 40px -22px rgba(72, 49, 138, 0.7);
  transition: background var(--dur-base) var(--ease-quiet),
              transform var(--dur-base) var(--ease-quiet),
              box-shadow var(--dur-base) var(--ease-quiet);
}
.btn:hover {
  background: var(--viola-deep);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -22px rgba(72, 49, 138, 0.8);
}

/* ---- Layout -------------------------------------------------------------------------------- */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(80px, 12vh, 140px) 0; }

/* Gelbgrüne Sektionstöne — von hell zu satt */
.stage-gray-1 { background: var(--stage-1); }
.stage-gray-2 { background: var(--stage-2); }
.stage-green  { background: var(--stage-3); }
.stage-warm   { background: var(--stage-4); }

/* ---- Hero (Home) ------------------------------------------------------------------------------ */
.hero {
  padding: 0;
  min-height: min(88vh, 860px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: linear-gradient(180deg, var(--stage-1) 0%, var(--stage-2) 100%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 10vh, 120px) clamp(36px, 6vw, 72px) clamp(64px, 10vh, 120px) var(--gutter);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.12;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 26px;
  max-width: 15ch;
}
.hero .sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 40px;
}
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 2400ms var(--ease-quiet) both;
}
/* weicher Übergang vom Bild in die farbige Fläche */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--stage-1) 0%, transparent 12%);
  pointer-events: none;
}
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* gestaffelter Einstieg der Hero-Texte */
.hero-copy > * {
  animation: rise-in 900ms var(--ease-quiet) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 100ms; }
.hero-copy > *:nth-child(2) { animation-delay: 220ms; }
.hero-copy > *:nth-child(3) { animation-delay: 360ms; }
.hero-copy > *:nth-child(4) { animation-delay: 500ms; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-media {
    order: -1;
    width: 100%;
    height: min(62vh, 560px);
    min-height: 320px;
  }
  .hero-media::after {
    background: linear-gradient(180deg, transparent 72%, var(--stage-2) 100%);
  }
  .hero-copy { padding: 48px var(--gutter) 72px; }
}

/* Unterseiten-Hero (schlank) */
.page-hero {
  padding: clamp(72px, 11vh, 130px) 0 clamp(56px, 8vh, 96px);
  background: linear-gradient(180deg, var(--stage-1) 0%, var(--stage-2) 100%);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-style: italic;
  margin-bottom: 24px;
}
.page-hero .lede { max-width: 36rem; }
.page-hero > .wrap > * { animation: rise-in 900ms var(--ease-quiet) both; }
.page-hero > .wrap > *:nth-child(2) { animation-delay: 140ms; }
.page-hero > .wrap > *:nth-child(3) { animation-delay: 280ms; }

/* ---- Scroll-Reveal ------------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-quiet), transform var(--dur-slow) var(--ease-quiet);
}
.reveal.is-visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-quiet), transform var(--dur-slow) var(--ease-quiet);
}
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 130ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 260ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 390ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 520ms; }

/* Bilder tauchen entsättigt auf und gewinnen Farbe */
.colorize {
  filter: grayscale(85%);
  transition: filter 1400ms var(--ease-quiet);
}
.colorize.is-visible, .colorize:hover { filter: grayscale(0%); }

/* ---- Kacheln (Home) --------------------------------------------------------------------------------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 34px 30px 28px;
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.14);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-quiet),
              box-shadow var(--dur-base) var(--ease-quiet),
              border-color var(--dur-base) var(--ease-quiet);
}
.tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur-base) var(--ease-quiet);
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -26px rgba(34, 46, 22, 0.4);
  border-color: var(--viola-soft);
}
.tile:hover::before { transform: scaleX(1); }

.tile .num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--viola);
  margin-bottom: 22px;
}
.tile h3 {
  font-style: italic;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 12px;
}
.tile p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: auto;
}
.tile .go {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 46, 22, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--viola);
}

@media (max-width: 800px) {
  .tiles { grid-template-columns: 1fr; }
}

/* ---- Zweispalter --------------------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split.flip { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 860px) {
  .split, .split.flip { grid-template-columns: 1fr; }
}

/* ---- Bildflächen ------------------------------------------------------------------------------------------ */
.figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(34, 46, 22, 0.16);
  background: linear-gradient(165deg, #9DB45E 0%, #6E8F3C 52%, #3B4A28 100%);
}
.figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 32% 26%, rgba(214, 191, 160, 0.4), transparent 58%);
}
.figure img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-quiet);
}
.figure:hover img { transform: scale(1.035); }
.figure .ph-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(251, 253, 239, 0.9);
  font-weight: 600;
  text-transform: uppercase;
}
.figure.landscape { aspect-ratio: 3 / 2; }

/* Volle Breite: das Slogan-Türbild als Statement */
.statement {
  padding: 0;
  line-height: 0;
}
.statement img {
  width: 100%;
  height: auto;
}

/* ---- Angebot: Karten ----------------------------------------------------------------------------------------- */
.offer-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) {
  .offer-hero { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.16);
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-color);
}
.price-card .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 6px;
}
.price-card .price .amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1;
}
.price-card .price .currency {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink-soft);
}
.price-card .meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 26px;
}
.price-card .btn { display: flex; justify-content: center; }

.paths { display: grid; gap: 20px; }
.path {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.14);
  padding: clamp(28px, 4vw, 44px);
  transition: transform var(--dur-base) var(--ease-quiet),
              box-shadow var(--dur-base) var(--ease-quiet),
              border-color var(--dur-base) var(--ease-quiet);
}
.path:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -28px rgba(34, 46, 22, 0.35);
  border-color: var(--viola-soft);
}
.path .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--viola);
  line-height: 1;
  padding-top: 4px;
}
.path h3 {
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin-bottom: 12px;
}
.path p { margin: 0; max-width: 40rem; }
.path .note {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viola);
}
@media (max-width: 640px) {
  .path { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- Abschluss-CTA: sattes Gelbgrün, violetter Button ------------------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 16vh, 180px) 0;
  background: linear-gradient(158deg, #A9C356 0%, #7BA05B 44%, #8FB04A 72%, #B7CC61 122%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 76% 18%, rgba(248, 246, 200, 0.55), transparent 58%);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 36, 16, 0.18);
}
.cta-band .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}
.cta-band .line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.32;
  color: #FBFDEF;
  margin: 0 auto 44px;
  max-width: 24ch;
  text-shadow: 0 1px 12px rgba(27, 36, 16, 0.25);
}

/* ---- FAQ-Akkordeon (natives details/summary, keine JS-Bibliothek) --------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 780px;
}
.faq-item {
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.14);
  transition: border-color var(--dur-base) var(--ease-quiet),
              box-shadow var(--dur-base) var(--ease-quiet);
}
.faq-item[open] {
  border-color: var(--viola-soft);
  box-shadow: 0 20px 44px -30px rgba(34, 46, 22, 0.45);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 30px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Chevron rein per CSS – zeigt nach unten, klappt beim Öffnen nach oben */
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-right: 2px solid var(--viola);
  border-bottom: 2px solid var(--viola);
  transform: rotate(45deg);
  transition: transform var(--dur-base) var(--ease-quiet);
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--viola);
  outline-offset: 3px;
}
.faq-answer {
  padding: 0 clamp(20px, 3vw, 30px) 24px;
}
.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  max-width: none;
}
.faq-answer a {
  color: var(--viola);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-more {
  display: inline-block;
  margin-top: 22px;
  font-weight: 600;
  color: var(--viola);
  text-decoration: none;
}
.faq-more:hover { text-decoration: underline; }

/* Kompakte FAQ-Vorschau auf Home/Über mich/Angebot (statisch, kein Akkordeon) */
.faq-teaser {
  display: grid;
  gap: 16px;
  max-width: 780px;
}
.faq-teaser article {
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.14);
  padding: clamp(22px, 3vw, 30px);
}
.faq-teaser h3 {
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.faq-teaser p {
  margin: 0;
  color: var(--ink-soft);
  max-width: none;
}

/* ---- Kontakt --------------------------------------------------------------------------------------------------------- */
.calendly-box {
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.16);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calendly-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-color);
}
.calendly-box .slot {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px dashed rgba(34, 46, 22, 0.3);
  background: rgba(255, 255, 255, 0.45);
}
.calendly-box .slot .hint {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

.contact-alt { text-align: center; }

/* ---- Kontaktformular „Lass' uns reden" ---- */
.talk-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--leaf-bright);
  border: 1px solid rgba(34, 46, 22, 0.16);
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}
.talk-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-color);
}
.talk-form h2 {
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 10px;
}
.talk-form .form-intro {
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(34, 46, 22, 0.25);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--ease-quiet), box-shadow var(--dur-fast) var(--ease-quiet);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--viola);
  box-shadow: 0 0 0 3px rgba(91, 63, 168, 0.18);
}
.talk-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
  border: none;
  cursor: pointer;
}

/* ---- Rechtsseiten (Impressum, Datenschutz, Disclaimer) ---- */
.prose { max-width: 44rem; }
.prose h2 {
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 14px; max-width: none; }
.prose ul {
  margin: 0 0 14px 22px;
  color: var(--ink-soft);
}
.prose li { margin-bottom: 6px; }
.prose a { color: var(--viola); }

/* ---- Meditationen: Audio-Player & Übersicht ---- */
.meditation-visual {
  max-width: 44rem;
  margin: 0 0 34px;
  border-radius: 4px;
  overflow: hidden;
}
.meditation-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.audio-block {
  max-width: 44rem;
  margin-top: 34px;
}
.audio-block audio {
  display: block;
  width: 100%;
}
.audio-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}
.audio-note a { color: var(--viola); }

/* Kachelraster, das mit einem Eintrag anfängt und mitwächst */
.tiles.tiles-flow { grid-template-columns: repeat(auto-fill, minmax(280px, 360px)); }
@media (max-width: 800px) {
  .tiles.tiles-flow { grid-template-columns: 1fr; }
}

/* ---- Footer: dunkles Waldgrün ------------------------------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-deep);
  color: #DCE5BE;
  padding: 64px 0 30px;
}
.site-footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(220, 229, 190, 0.16);
}
/* Logo im Footer: heller Untergrund, damit der graue Schriftzug lesbar bleibt */
.site-footer .brand {
  background: var(--leaf-bright);
  border-radius: 6px;
  padding: 10px 18px;
}
.site-footer .brand .logo { height: 46px; }
.site-footer .brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-footer .yy {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.5);
}
.site-footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer nav a {
  font-size: 13px;
  color: #DCE5BE;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-quiet);
}
.site-footer nav a:hover { color: #fff; }
.site-footer .bottom {
  padding-top: 22px;
  font-size: 12px;
  color: rgba(220, 229, 190, 0.55);
}
.site-footer .bottom em {
  font-family: var(--font-display);
}

/* ---- Reduced Motion -------------------------------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, .hero-copy > *, .page-hero > .wrap > *, .hero-media img { animation: none !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .colorize { filter: none !important; }
  .progress { display: none; }
}
