/* =============================================================
   TRINITY RETREAT CENTER — Design System
   Palette: Creme / Sand / Olive / Soft Gold / Deep Brown
   Fonts: Cormorant Garamond (Serif) + Inter (Sans)
   ============================================================= */

:root {
  /* Colors — Healing palette: warm, soft, calming */
  --c-creme:      #FAF7F1;
  --c-offwhite:   #FEFCF8;
  --c-sand:       #ECE3D5;
  --c-sand-soft:  #F4EEE3;
  --c-olive:      #6E7A63;   /* ruhiges Salbeigrün */
  --c-olive-deep: #58614F;
  --c-gold:       #C6A96B;
  --c-gold-deep:  #AE8E53;

  /* Akzentfarben — gedämpft & heilsam (Grün / Gelb / Rot / Blau) */
  --a-green:      #6E8268;   /* Numerologie & Energie — Salbei */
  --a-green-soft: #eef2ea;
  --a-yellow:     #CDAA63;   /* Energie / Sonne / Highlight — Honiggold */
  --a-yellow-soft:#f7efdd;
  --a-red:        #BC8A78;   /* Manifestation / Herz — warmer Ton (Clay) */
  --a-red-soft:   #f5e9e2;
  --a-blue:       #7E9BA8;   /* Hypnotherapie & Unterbewusstsein — Nebelblau */
  --a-blue-soft:  #e9eff1;

  --c-brown:      #423A30;
  --c-charcoal:   #322C25;
  --c-text:       #4A4339;
  --c-muted:      #8B8275;
  --c-line:       rgba(66, 58, 48, 0.10);

  /* Typography */
  --f-serif: "Cormorant Garamond", Georgia, serif;
  --f-sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing & layout — generous, breathing */
  --maxw: 1140px;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 40px 90px -50px rgba(66, 58, 48, 0.30);
  --shadow-soft: 0 24px 60px -36px rgba(66, 58, 48, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background:
    radial-gradient(1200px 800px at 50% -200px, #ffffff, transparent 70%),
    radial-gradient(900px 700px at 100% 12%, rgba(198,169,107,0.06), transparent 60%),
    radial-gradient(900px 700px at 0% 88%, rgba(110,122,99,0.07), transparent 60%),
    var(--c-creme);
  background-attachment: fixed;
  line-height: 1.78;
  font-size: 17.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 500; color: var(--c-brown); line-height: 1.18; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 500; line-height: 1.08; }
h2 { font-size: clamp(2.05rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 1.4rem;
  display: inline-block;
}
.lead { font-size: 1.22rem; line-height: 1.7; color: var(--c-muted); font-weight: 400; }
.serif-quote {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  color: var(--c-brown);
  font-weight: 500;
  letter-spacing: 0.005em;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(80px, 11vw, 168px) 0; }
.section--sand { background: var(--c-sand-soft); }
.section--brown { background: var(--c-brown); color: #e9e1d5; }
.section--brown h2, .section--brown h3 { color: var(--c-creme); }
.section--olive { background: var(--c-olive); color: #f1efe4; }
.section--olive h2, .section--olive h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--f-sans); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1.15em 2.3em;
  border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.5s var(--ease), background 0.45s, color 0.45s, box-shadow 0.5s, border-color 0.45s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--c-olive); color: #fff; box-shadow: 0 18px 40px -22px rgba(110,122,99,0.85); }
.btn--gold:hover { background: var(--c-olive-deep); box-shadow: 0 22px 50px -24px rgba(110,122,99,0.95); }
.btn--brown { background: var(--c-brown); color: var(--c-creme); }
.btn--brown:hover { background: var(--c-charcoal); }
.btn--ghost { background: rgba(255,255,255,0.5); border-color: var(--c-line); color: var(--c-brown); }
.btn--ghost:hover { border-color: var(--c-olive); background: rgba(110,122,99,0.06); }
.btn--light { background: rgba(255,255,255,0.95); color: var(--c-brown); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-row.center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.4s, background 0.4s;
}
.site-header.scrolled { box-shadow: 0 10px 40px -28px rgba(66,58,48,0.5); background: rgba(250,247,241,0.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; font-family: var(--f-serif); font-size: 1.4rem; font-weight: 600; color: var(--c-brown); letter-spacing: 0.04em; }
.brand__logo { width: 46px; height: 46px; flex: none; transition: transform 0.6s var(--ease); }
.brand:hover .brand__logo { transform: rotate(8deg); }
.brand__word { line-height: 1; text-transform: uppercase; font-size: 1.3rem; }
.brand small { display:block; font-family: var(--f-sans); font-size: 0.55rem; letter-spacing: 0.3em; color: var(--c-olive); text-transform: uppercase; font-weight:600; margin-top: 4px;}
.brand__logo--footer { filter: drop-shadow(0 0 0 transparent); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--c-text); transition: color 0.2s; position: relative; }
.nav__links a:hover { color: var(--c-brown); }
.nav__links a.active { color: var(--c-olive); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--c-brown); border-radius: 2px; transition: 0.3s; }

@media (max-width: 980px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--c-offwhite); padding: 28px; border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-soft);
  }
  .nav__links.open .btn { display: inline-flex; }
}

/* ---------- Hero (zentriert, ruhig, heilsam) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 170px) 0 clamp(80px, 11vw, 150px);
  text-align: center;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(198,169,107,0.14), transparent 62%),
    radial-gradient(1000px 640px at 50% 120%, rgba(110,122,99,0.12), transparent 60%),
    var(--c-creme);
}
.hero__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.7rem; }
.hero .lead { font-size: 1.3rem; margin: 0 auto 2.6rem; max-width: 600px; }
.hero .btn-row { justify-content: center; }
.hero__trust { margin: 3rem auto 0; font-size: 0.8rem; color: var(--c-muted); letter-spacing: 0.06em; display:flex; flex-wrap:wrap; justify-content:center; gap:10px 26px; }
.hero__trust span { position: relative; padding-left: 18px; }
.hero__trust span::before { content:""; position:absolute; left:0; top:50%; width:6px; height:6px; border-radius:50%; transform:translateY(-50%); background: var(--c-olive); }

/* hero logo lockup — emblem floats gently above the headline */
.hero__lockup { display:flex; flex-direction: column; align-items:center; gap:18px; margin-bottom: 34px; }
.hero__lockup img { width: 96px; height: 96px; animation: breathe 7s ease-in-out infinite; filter: drop-shadow(0 16px 40px rgba(110,122,99,0.18)); }
.hero__lockup .ll-line { display:none; }
.hero__lockup span { font-size: 0.7rem; font-weight:600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--c-olive); }

/* soft halo behind the emblem */
.hero__emblem {
  position: absolute; left: 50%; top: clamp(60px, 12vw, 150px); transform: translateX(-50%);
  width: min(560px, 90vw); height: min(560px, 90vw); z-index: 0;
  background: radial-gradient(circle at center, rgba(198,169,107,0.18), rgba(110,122,99,0.08) 45%, transparent 70%);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb { display:none; }
@keyframes breathe { 0%,100%{ transform: translateX(-50%) scale(1); opacity:1; } 50%{ transform: translateX(-50%) scale(1.05); opacity:0.92; } }
.hero__lockup img { animation-name: breathe-mark; }
@keyframes breathe-mark { 0%,100%{ transform: translateY(0) scale(1); } 50%{ transform: translateY(-6px) scale(1.03); } }
@media (max-width: 600px){ .hero__lockup img{ width:78px;height:78px;} }

/* ---------- Pillars ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px){ .grid-3{ grid-template-columns: 1fr; } .grid-2{ grid-template-columns:1fr; } }

.card {
  background: var(--c-offwhite); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 46px 40px;
  box-shadow: 0 30px 60px -50px rgba(66,58,48,0.4);
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.6s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(110,122,99,0.32); }
.card__num {
  font-family: var(--f-serif); font-size: 1.55rem; font-weight: 500;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 26px;
  background: var(--c-sand-soft); color: var(--c-olive); border: 1px solid var(--c-line);
}
.card h3 { margin-bottom: 8px; }
.card .card__sub { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold-deep); font-weight: 600; margin-bottom: 16px; }
.card p { color: var(--c-muted); font-size: 1rem; line-height: 1.75; }
.card--brown { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.card--brown p { color: #cdc4b6; }
.card--brown .card__num { background: rgba(255,255,255,0.08); color: var(--c-gold); border-color: rgba(255,255,255,0.14); }

/* ---------- Split / Person ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; gap: 36px;} .split--rev .split__media{ order:0; } }
.split__media {
  border-radius: var(--radius); min-height: 420px;
  background: linear-gradient(160deg, var(--c-sand), var(--c-olive));
  position: relative; overflow: hidden; box-shadow: var(--shadow-soft);
  display: grid; place-items: center;
}
.split__media .initials { font-family: var(--f-serif); font-size: 5rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.media-tag { position: absolute; bottom: 22px; left: 22px; background: rgba(255,255,255,0.92); color: var(--c-brown); padding: 8px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;}

/* ---------- Checklist ---------- */
.check { display: grid; gap: 14px; }
.check li { position: relative; padding-left: 36px; color: var(--c-text); }
.check li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-olive);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}
.check--gold li::before { background: var(--c-gold); }
.check--light li { color: #e3dacd; }
.section--brown .check li, .section--olive .check li { color: #e9e1d5; }
.section--brown .check li::before, .section--olive .check li::before { background: var(--c-gold); }

/* ---------- Method flow ---------- */
.flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: step; }
@media (max-width:860px){ .flow{ grid-template-columns:1fr; } }
.flow__item { padding: 30px; border-radius: var(--radius); background: var(--c-offwhite); border:1px solid var(--c-line); }
.flow__item h4 { font-family: var(--f-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold-deep); margin-bottom: 10px; }
.flow__item .big { font-family: var(--f-serif); font-size: 1.5rem; color: var(--c-brown); margin-bottom: 10px; display:block; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
@media (max-width: 960px){ .price-grid{ grid-template-columns:1fr; max-width:520px; margin:0 auto;} }
.plan {
  background: var(--c-offwhite); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 40px 34px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { background: var(--c-brown); color: #ddd3c4; border-color: var(--c-brown); position: relative; }
.plan--featured h3 { color: #fff; }
.plan--featured .plan__desc, .plan--featured .plan__for { color: #c3b9aa; }
.plan--featured .check li { color: #e6ddce; }
.plan--featured .check li::before { background: var(--c-gold); }
.plan__badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: var(--c-gold); color: var(--c-brown); font-size:0.7rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; padding:6px 16px; border-radius:100px; }
.plan__name { font-family: var(--f-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold-deep); font-weight: 600; margin-bottom: 8px;}
.plan--featured .plan__name { color: var(--c-gold); }
.plan h3 { margin-bottom: 14px; }
.plan__desc { font-size: 0.96rem; color: var(--c-muted); margin-bottom: 22px; }
.plan__price { font-family: var(--f-serif); font-size: 2.1rem; color: var(--c-brown); margin-bottom: 4px; }
.plan--featured .plan__price { color: #fff; }
.plan__price span { font-family: var(--f-sans); font-size: 0.85rem; color: var(--c-muted); letter-spacing: 0.02em; }
.plan__divider { height:1px; background: var(--c-line); margin: 24px 0; }
.plan--featured .plan__divider { background: rgba(255,255,255,0.15); }
.plan .check { margin-bottom: 28px; }
.plan .check li { font-size: 0.95rem; }
.plan__for { font-size: 0.88rem; color: var(--c-muted); margin: 4px 0 24px; font-style: italic; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--c-line); }
table.compare { width: 100%; border-collapse: collapse; background: var(--c-offwhite); min-width: 560px; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--c-line); font-size: 0.92rem; }
.compare th { background: var(--c-sand-soft); font-family: var(--f-serif); font-size: 1.05rem; color: var(--c-brown); font-weight:600; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--c-text); font-weight: 500; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--c-olive); font-weight: 700; }
.compare .no { color: var(--c-muted); opacity: 0.5; }
.compare .price-row td { font-family: var(--f-serif); font-size: 1.1rem; color: var(--c-brown); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; font-family: var(--f-serif); font-size: 1.25rem; color: var(--c-brown); font-weight: 600;
}
.faq__q .icon { flex: none; width: 26px; height: 26px; position: relative; transition: transform 0.3s; }
.faq__q .icon::before, .faq__q .icon::after { content:""; position:absolute; background: var(--c-olive); border-radius: 2px; }
.faq__q .icon::before { left:0; right:0; top:12px; height:2px; }
.faq__q .icon::after { top:0; bottom:0; left:12px; width:2px; transition: transform 0.3s; }
.faq__item.open .faq__q .icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--c-muted); max-width: 700px; }

/* ---------- E-book / Form ---------- */
.optin {
  display: flex; gap: 12px; flex-wrap: wrap; max-width: 520px; margin-top: 28px;
}
.optin input {
  flex: 1; min-width: 240px; padding: 1.05em 1.3em; border-radius: 100px;
  border: 1px solid var(--c-line); background: var(--c-offwhite); font-family: var(--f-sans); font-size: 0.95rem; color: var(--c-text);
}
.optin input:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(201,169,106,0.2); }
.form-note { font-size: 0.8rem; color: var(--c-muted); margin-top: 16px; }
.ebook-cover {
  aspect-ratio: 3/4; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(155deg, var(--c-brown), var(--c-olive-deep));
  display: flex; flex-direction: column; justify-content: space-between; padding: 40px; color: var(--c-creme);
  position: relative; overflow: hidden; max-width: 360px;
}
.ebook-cover::after { content:""; position:absolute; inset:0; background: radial-gradient(300px 200px at 80% 10%, rgba(201,169,106,0.4), transparent 60%); }
.ebook-cover .ec-eyebrow { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-gold); position:relative; z-index:1;}
.ebook-cover .ec-title { font-family: var(--f-serif); font-size: 2.6rem; line-height: 1.05; position:relative; z-index:1; }
.ebook-cover .ec-sub { font-size: 0.9rem; color: #d8cfc0; position:relative; z-index:1;}

/* ---------- Stat / quote band ---------- */
.quote-band { text-align: center; max-width: 880px; margin: 0 auto; }
.quote-band .serif-quote { color: var(--c-creme); }
.quote-band cite { display:block; margin-top: 22px; font-style: normal; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); }

/* ---------- Topic chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 10px 20px; border-radius: 100px; background: var(--c-offwhite); border: 1px solid var(--c-line); font-size: 0.9rem; color: var(--c-text); transition: 0.3s; }
.chip:hover { border-color: var(--c-gold); color: var(--c-brown); }
.section--brown .chip, .section--olive .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #e9e1d5; }

/* ---------- Academy topic list ---------- */
.topic-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 40px; }
@media (max-width:720px){ .topic-list{ grid-template-columns:1fr; } }
.topic-list li { display:flex; gap:16px; align-items:flex-start; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.topic-list .ti { font-family: var(--f-serif); color: var(--c-gold-deep); font-size: 1rem; flex:none; width: 28px; }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--c-sand-soft); border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 28px 32px; font-size: 0.9rem; color: var(--c-muted); }
.disclaimer strong { color: var(--c-brown); }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: #d8cfc0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-charcoal); color: #b8ae9f; padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px;} }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--c-creme); margin-bottom: 18px; }
.footer-about { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--f-sans); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.footer-col a { display:block; font-size: 0.92rem; padding: 6px 0; color: #b8ae9f; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-creme); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: #8c8273; }
.footer-disclaimer { font-size: 0.8rem; color: #8c8273; max-width: 720px; margin-top: 14px; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } *, *::before, *::after { animation: none !important; } }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding: clamp(60px, 8vw, 110px) 0 clamp(40px,6vw,70px); background:
  radial-gradient(800px 400px at 85% -20%, rgba(201,169,106,0.16), transparent 60%), var(--c-creme); }
.page-hero h1 { margin-bottom: 1.2rem; max-width: 16ch; }
.page-hero .lead { max-width: 620px; }

/* breadcrumb-ish small */
.kicker-list { display:flex; flex-wrap:wrap; gap: 8px 18px; font-size: 0.82rem; color: var(--c-muted); margin-top: 1.6rem; }

hr.soft { border: none; border-top: 1px solid var(--c-line); margin: 0; }

/* =============================================================
   RETREAT LAYER — texture, organic shapes, botanical accents
   ============================================================= */

/* subtle paper grain over the whole site */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* organic section divider (soft curve) */
.wave-top, .wave-bottom { position: relative; }
.wave-top::before, .wave-bottom::after {
  content: ""; position: absolute; left: 0; right: 0; height: 60px; z-index: 1;
  background-repeat: no-repeat; background-size: cover;
}
.wave-bottom::after {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 C 240 60 480 0 720 24 C 960 48 1200 12 1440 34 L1440 60 L0 60 Z' fill='%23EEE6D8'/%3E%3C/svg%3E");
}

/* tag / pill label used above headings */
.tag-leaf { display:inline-flex; align-items:center; gap:9px; }
.tag-leaf::before {
  content:""; width: 22px; height: 22px; flex:none;
  background: url("../assets/logo.svg") center/contain no-repeat;
}

/* emblem watermark behind a section */
.has-emblem { position: relative; overflow: hidden; }
.has-emblem > .wrap { position: relative; z-index: 2; }
.emblem-mark {
  position: absolute; pointer-events: none; z-index: 0;
  width: 460px; height: 460px; opacity: 0.06;
  background: url("../assets/logo.svg") center/contain no-repeat;
}
.emblem-mark--tr { right: -120px; top: -120px; }
.emblem-mark--bl { left: -140px; bottom: -140px; }
.section--brown .emblem-mark, .section--olive .emblem-mark { opacity: 0.10; filter: brightness(3) saturate(0.4); }

/* organic blob media (replaces flat gradient feel) */
.split__media {
  border-radius: 38% 62% 58% 42% / 42% 40% 60% 58%;
  background:
    radial-gradient(120px 120px at 70% 25%, rgba(251,249,244,0.35), transparent 60%),
    linear-gradient(160deg, var(--c-sand), var(--c-olive));
  animation: blob 18s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 38% 62% 58% 42% / 42% 40% 60% 58%; }
  50%     { border-radius: 58% 42% 40% 60% / 58% 56% 44% 42%; }
}
.split__media .initials { font-family: var(--f-serif); font-size: 5.5rem; color: rgba(255,255,255,0.9); text-shadow: 0 6px 30px rgba(58,46,37,0.25); }
.media-tag { backdrop-filter: blur(4px); }

/* botanical sprig accent */
.sprig { display:block; width: 70px; height: 24px; margin: 0 auto 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 24' fill='none' stroke='%23C9A96A' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M35 22 V6'/%3E%3Cpath d='M35 14 C 28 12 24 7 24 2 C 30 3 34 8 35 14Z' fill='%23C9A96A' fill-opacity='0.18'/%3E%3Cpath d='M35 14 C 42 12 46 7 46 2 C 40 3 36 8 35 14Z' fill='%23C9A96A' fill-opacity='0.18'/%3E%3Cpath d='M2 22 H68'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Retreat atmosphere section ---------- */
.atmos-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 880px){ .atmos-grid{ grid-template-columns:1fr; } }
.atmos {
  position: relative; min-height: 320px; border-radius: var(--radius); overflow: hidden;
  display:flex; align-items:flex-end; padding: 30px; color: #fff;
  box-shadow: var(--shadow-soft); isolation: isolate;
}
.atmos::before { content:""; position:absolute; inset:0; z-index:-2; transition: transform 0.8s var(--ease); }
.atmos::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, transparent 30%, rgba(42,36,31,0.78)); }
.atmos:hover::before { transform: scale(1.06); }
.atmos h3 { color:#fff; margin-bottom: 6px; }
.atmos p { font-size: 0.92rem; color: #ece5d8; }
.atmos--1::before { background: linear-gradient(150deg, #8a9072, #565639); }
.atmos--2::before { background: linear-gradient(150deg, #c9a96a, #6b6b45); }
.atmos--3::before { background: linear-gradient(150deg, #a98e6a, #3a2e25); }

/* refined card hover with gold top accent */
.card { position: relative; }
.card::after { content:""; position:absolute; left:34px; top:0; width: 0; height: 3px; background: var(--c-gold); border-radius: 0 0 3px 3px; transition: width 0.4s var(--ease); }
.card:hover::after { width: 46px; }

/* lockup divider line under section heads */
.headline-flourish { display:flex; align-items:center; justify-content:center; gap:16px; margin-top: 18px; }
.headline-flourish::before, .headline-flourish::after { content:""; height:1px; width:48px; background: linear-gradient(90deg, transparent, var(--c-gold)); }
.headline-flourish::after { background: linear-gradient(90deg, var(--c-gold), transparent); }
.headline-flourish .dot { width: 6px; height:6px; border-radius:50%; background: var(--c-gold); }

/* footer logo sizing */
.site-footer .brand__logo { width: 44px; height: 44px; }
.site-footer .brand__logo--footer { filter: brightness(1.15); }

/* =============================================================
   ACCENT SYSTEM — Grün / Gelb / Rot / Blau (edle Akzente)
   ============================================================= */
.accent-green  { --acc: var(--a-green);  --acc-soft: var(--a-green-soft); }
.accent-yellow { --acc: var(--a-yellow); --acc-soft: var(--a-yellow-soft); }
.accent-red    { --acc: var(--a-red);    --acc-soft: var(--a-red-soft); }
.accent-blue   { --acc: var(--a-blue);   --acc-soft: var(--a-blue-soft); }

/* colored card number badge + sub-label + hover accents */
.card[class*="accent-"] .card__num { background: var(--acc-soft); color: var(--acc); border-color: color-mix(in srgb, var(--acc) 30%, transparent); }
.card[class*="accent-"] .card__sub { color: var(--acc); }
.card[class*="accent-"]:hover { border-color: color-mix(in srgb, var(--acc) 55%, transparent); }
.card[class*="accent-"]::after { background: var(--acc); }
.card[class*="accent-"] { border-top: 3px solid color-mix(in srgb, var(--acc) 22%, transparent); }

/* accent eyebrow + thin top rule helper */
.eyebrow.acc-green  { color: var(--a-green); }
.eyebrow.acc-yellow { color: var(--a-yellow); }
.eyebrow.acc-red    { color: var(--a-red); }
.eyebrow.acc-blue   { color: var(--a-blue); }

/* small color dot for pillar labels */
.cdot { display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:8px; vertical-align:middle; }
.cdot--green{background:var(--a-green)} .cdot--yellow{background:var(--a-yellow)}
.cdot--red{background:var(--a-red)} .cdot--blue{background:var(--a-blue)}

/* color-coded blob media (per pillar) — gedämpft/heilsam */
.split__media.media-green  { background: radial-gradient(140px 140px at 70% 25%, rgba(254,252,248,0.35), transparent 60%), linear-gradient(160deg, #93a589, var(--a-green)); }
.split__media.media-blue   { background: radial-gradient(140px 140px at 70% 25%, rgba(254,252,248,0.35), transparent 60%), linear-gradient(160deg, #a3bac4, var(--a-blue)); }
.split__media.media-red    { background: radial-gradient(140px 140px at 70% 25%, rgba(254,252,248,0.35), transparent 60%), linear-gradient(160deg, #d6ab9c, var(--a-red)); }
.split__media.media-yellow { background: radial-gradient(140px 140px at 70% 25%, rgba(254,252,248,0.35), transparent 60%), linear-gradient(160deg, #e0c587, var(--a-yellow)); }

/* atmosphere tiles recolored to the four accents — soft */
.atmos--1::before { background: linear-gradient(150deg, #8a9a82, var(--a-green)); }
.atmos--2::before { background: linear-gradient(150deg, #9fb6bf, var(--a-blue)); }
.atmos--3::before { background: linear-gradient(150deg, #cfa897, var(--a-red)); }

/* colored top hairline on accent sections */
.rule-multi { height: 3px; border-radius: 4px; background: linear-gradient(90deg, var(--a-green) 0 25%, var(--a-yellow) 25% 50%, var(--a-red) 50% 75%, var(--a-blue) 75% 100%); opacity: 0.85; }

/* pricing accent ticks */
.plan .check li::before { background: var(--c-olive); }

/* =============================================================
   HEALING LAYER — Ankommen-Sektion, sanfte Trenner, Ruhe
   ============================================================= */
.breath-band {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(198,169,107,0.10), transparent 70%),
    var(--c-sand-soft);
  position: relative;
}
.breath-band .serif-quote { color: var(--c-olive-deep); }
.breath-dot {
  display:block; width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 34px;
  background: var(--c-gold);
  box-shadow: 0 0 0 0 rgba(198,169,107,0.5);
  animation: pulse 3.6s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(198,169,107,0.45); transform: scale(1); }
  70%  { box-shadow: 0 0 0 22px rgba(198,169,107,0); transform: scale(1.08); }
  100% { box-shadow: 0 0 0 0 rgba(198,169,107,0); transform: scale(1); }
}

/* softer dark sections — warmer, less harsh for a healing feel */
.section--brown { background: linear-gradient(165deg, #4a4238, var(--c-brown)); }
.section--brown .lead { color: #d8cfc1; }

/* focus-visible for accessibility / trust */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-olive); outline-offset: 3px; border-radius: 6px;
}

/* =================================================================
   ███  PREMIUM v2 — Editorial Luxury Retreat Layer  ███
   Espresso · Champagne Gold · Ivory · Editorial Serif
   ================================================================= */
:root {
  --espresso:   #251D17;
  --espresso-2: #2F251D;
  --taupe:      #4A3E34;
  --ivory:      #F6F1E8;
  --cream:      #FBF6EE;
  --stone:      #E8DECE;
  --champagne:  #D9BD86;
  --champ-deep: #B8965A;
  --bronze:     #A9824C;
  --ink:        #2A2118;
  --p-line:     rgba(217,189,134,0.22);
}

/* ---- global editorial refinements ---- */
body { background: var(--cream); color: #4A4339; }
h1,h2,h3 { letter-spacing: -0.015em; }
::selection { background: rgba(217,189,134,0.35); color: var(--espresso); }

/* gold scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--champ-deep), var(--champagne));
  box-shadow: 0 0 12px rgba(217,189,134,0.6);
  transition: width 0.1s linear;
}

/* ---- header: thinner, editorial ---- */
.site-header { background: rgba(251,246,238,0.72); border-bottom: 1px solid rgba(42,33,24,0.08); }
.site-header.scrolled { background: rgba(251,246,238,0.94); }
.nav__links a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.brand__word { letter-spacing: 0.14em; }

/* ---- premium buttons with gold shimmer ---- */
.btn { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 1.25em 2.5em; }
.btn--gold {
  background: linear-gradient(120deg, var(--champagne), var(--champ-deep));
  color: var(--espresso); position: relative; overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(184,150,90,0.9);
}
.btn--gold::after {
  content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); transition: left 0.9s var(--ease);
}
.btn--gold:hover::after { left: 140%; }
.btn--ghost { background: transparent; border-color: rgba(42,33,24,0.18); color: var(--ink); }
.btn--ghost:hover { border-color: var(--champ-deep); color: var(--espresso); background: transparent; }
/* gold outline button for dark sections */
.btn--gold-line { background: transparent; border: 1px solid var(--champagne); color: var(--champagne); }
.btn--gold-line:hover { background: var(--champagne); color: var(--espresso); }

/* ---- premium dark sections ---- */
.section--dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(217,189,134,0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(169,130,76,0.10), transparent 60%),
    linear-gradient(165deg, var(--espresso-2), var(--espresso));
  color: #C9BCAC;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark .eyebrow { color: var(--champagne); }
.section--dark .lead { color: #B6A892; }
.section--dark .serif-quote { color: var(--ivory); }

/* grain overlay for dark sections */
.section--dark::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section--dark > .wrap { position: relative; z-index: 2; }

/* =================================================================
   PREMIUM HERO
   ================================================================= */
.phero {
  position: relative; overflow: hidden; min-height: 92vh;
  display: flex; align-items: center; text-align: center;
  padding: 160px 0 120px;
  background:
    radial-gradient(720px 720px at 50% 38%, rgba(217,189,134,0.16), transparent 62%),
    radial-gradient(1000px 600px at 50% 120%, rgba(169,130,76,0.12), transparent 60%),
    linear-gradient(165deg, #2C221A, var(--espresso) 60%, #1F1812);
  color: var(--ivory);
}
.phero::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:0.55; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.phero__inner { position: relative; z-index: 3; max-width: 880px; margin: 0 auto; }
.phero__symbol {
  width: clamp(180px, 26vw, 280px); margin: 0 auto 44px; opacity: 0.96;
  animation: spin 80s linear infinite, glow 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(217,189,134,0.25));
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glow { 0%,100%{ filter: drop-shadow(0 0 30px rgba(217,189,134,0.18)); } 50%{ filter: drop-shadow(0 0 55px rgba(217,189,134,0.4)); } }
.phero .eyebrow { color: var(--champagne); }
.phero h1 {
  color: var(--ivory); font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem); line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.phero h1 em { font-style: italic; color: var(--champagne); }
.phero .lead { color: #C3B6A2; max-width: 600px; margin: 0 auto 2.8rem; font-size: 1.18rem; }
.phero .btn-row { justify-content: center; }
.phero__scroll { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(217,189,134,0.7); }
.phero__scroll::after { content:""; display:block; width:1px; height:42px; margin: 12px auto 0; background: linear-gradient(var(--champagne), transparent); animation: scrolldrop 2.2s ease-in-out infinite; }
@keyframes scrolldrop { 0%,100%{ opacity:0.3; transform: scaleY(0.6); transform-origin: top; } 50%{ opacity:1; transform: scaleY(1);} }

/* floating embers / light particles in hero */
.phero__halo { position:absolute; inset:0; z-index:1; pointer-events:none; }
.phero__halo span { position:absolute; width:4px; height:4px; border-radius:50%; background: rgba(217,189,134,0.6); filter: blur(1px); animation: rise 14s linear infinite; }
@keyframes rise { 0%{ transform: translateY(40px); opacity:0; } 10%{opacity:0.8;} 90%{opacity:0.6;} 100%{ transform: translateY(-260px); opacity:0; } }

/* =================================================================
   EDITORIAL TYPE / SECTION HELPERS
   ================================================================= */
.kicker { display:inline-flex; align-items:center; gap:12px; font-size:0.7rem; letter-spacing:0.3em; text-transform:uppercase; color: var(--champ-deep); font-weight:600; margin-bottom: 24px; }
.kicker::before { content:""; width: 30px; height:1px; background: var(--champ-deep); }
.display { font-family: var(--f-serif); font-weight: 500; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height:1.06; letter-spacing:-0.02em; color: var(--ink); }
.editorial-num { font-family: var(--f-serif); font-size: clamp(3rem,7vw,5rem); color: var(--p-line); line-height:1; }

/* section divider with trinity glyph */
.tdivider { display:flex; align-items:center; justify-content:center; gap: 22px; padding: 8px 0; }
.tdivider .ln { height:1px; width: clamp(60px, 16vw, 220px); background: linear-gradient(90deg, transparent, var(--p-line)); }
.tdivider .ln:last-child { background: linear-gradient(90deg, var(--p-line), transparent); }
.tdivider img { width: 30px; opacity: 0.8; }

/* =================================================================
   METHOD — premium pillar cards
   ================================================================= */
.pillars { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 920px){ .pillars{ grid-template-columns:1fr; max-width:520px; margin:0 auto; } }
.pillar {
  position: relative; padding: 48px 38px 44px; border-radius: 22px; overflow:hidden;
  background: linear-gradient(180deg, var(--cream), #fff);
  border: 1px solid rgba(42,33,24,0.08);
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.6s;
}
.pillar::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--pc, var(--champagne)); transform: scaleX(0); transform-origin:left; transition: transform 0.6s var(--ease); }
.pillar:hover { transform: translateY(-8px); box-shadow: 0 50px 90px -50px rgba(42,33,24,0.45); border-color: var(--p-line); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__idx { font-family: var(--f-serif); font-size: 0.9rem; letter-spacing:0.2em; color: var(--pc, var(--champ-deep)); margin-bottom: 26px; }
.pillar__icon { width: 56px; height: 56px; margin-bottom: 26px; color: var(--pc); }
.pillar h3 { font-size: 1.7rem; margin-bottom: 6px; }
.pillar__sub { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champ-deep); font-weight:600; margin-bottom: 18px; display:block; }
.pillar p { color: var(--c-muted); font-size: 0.98rem; }
.pc-green  { --pc: #7C8A6E; }
.pc-blue   { --pc: #8AA1AD; }
.pc-red    { --pc: #C09076; }

/* =================================================================
   PROBLEM SECTION — quiet, deep
   ================================================================= */
.problem-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(217,189,134,0.16); border:1px solid rgba(217,189,134,0.16); border-radius: 20px; overflow:hidden; }
@media (max-width: 820px){ .problem-grid{ grid-template-columns:1fr; } }
.problem-cell { background: var(--espresso); padding: 40px 34px; transition: background 0.6s; }
.problem-cell:hover { background: var(--espresso-2); }
.problem-cell .pnum { font-family: var(--f-serif); color: var(--champagne); opacity:0.6; font-size:1.1rem; margin-bottom:14px; }
.problem-cell p { color: #C9BCAC; font-size: 1.05rem; line-height:1.6; }
.problem-cell p strong { color: var(--ivory); font-weight: 500; }

/* =================================================================
   E-BOOK product mockup
   ================================================================= */
.ebook-stage { perspective: 1600px; display:flex; justify-content:center; }
.ebook-3d {
  width: min(340px, 78vw); aspect-ratio: 3/4.1; border-radius: 6px 14px 14px 6px;
  background: linear-gradient(150deg, #322519, var(--espresso));
  box-shadow: -18px 30px 70px -30px rgba(0,0,0,0.6), inset 6px 0 14px rgba(0,0,0,0.4);
  transform: rotateY(-22deg) rotateX(4deg); transform-style: preserve-3d;
  transition: transform 0.9s var(--ease); position: relative; overflow:hidden;
  padding: 42px 36px; display:flex; flex-direction:column; justify-content:space-between; color: var(--ivory);
}
.ebook-stage:hover .ebook-3d { transform: rotateY(-10deg) rotateX(2deg); }
.ebook-3d::before { content:""; position:absolute; left:14px; top:0; bottom:0; width:1px; background: rgba(217,189,134,0.25); }
.ebook-3d::after { content:""; position:absolute; inset:0; background: radial-gradient(220px 160px at 78% 12%, rgba(217,189,134,0.28), transparent 60%); }
.ebook-3d .e-sym { width: 64px; opacity:0.9; position:relative; z-index:1; }
.ebook-3d .e-kick { font-size:0.62rem; letter-spacing:0.28em; text-transform:uppercase; color: var(--champagne); position:relative; z-index:1; }
.ebook-3d .e-title { font-family: var(--f-serif); font-size: 2.3rem; line-height:1.05; position:relative; z-index:1; }
.ebook-3d .e-sub { font-size:0.82rem; color:#B6A892; position:relative; z-index:1; }

/* =================================================================
   ACADEMY modules
   ================================================================= */
.modules { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 920px){ .modules{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .modules{ grid-template-columns: 1fr;} }
.module {
  position: relative; padding: 30px 28px; border-radius: 16px; min-height: 180px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(217,189,134,0.16);
  display:flex; flex-direction:column; justify-content:space-between;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s;
  overflow: hidden;
}
.module:hover { transform: translateY(-6px); border-color: rgba(217,189,134,0.5); background: rgba(255,255,255,0.05); }
.module .m-no { font-family: var(--f-serif); font-size: 0.78rem; letter-spacing:0.22em; color: var(--champagne); opacity:0.75; }
.module h4 { font-family: var(--f-serif); color: var(--ivory); font-size: 1.3rem; font-weight:500; }
.module .m-play { width: 34px; height:34px; border-radius:50%; border:1px solid rgba(217,189,134,0.4); display:grid; place-items:center; color: var(--champagne); transition: 0.4s; }
.module:hover .m-play { background: var(--champagne); color: var(--espresso); }

/* =================================================================
   PREMIUM PRICING
   ================================================================= */
.tiers { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
@media (max-width: 980px){ .tiers{ grid-template-columns:1fr; max-width: 480px; margin:0 auto; } }
.tier {
  position: relative; display:flex; flex-direction:column; padding: 48px 40px;
  border-radius: 22px; background: linear-gradient(180deg, var(--cream), #fff);
  border: 1px solid rgba(42,33,24,0.10);
  transition: transform 0.6s var(--ease), box-shadow 0.6s;
}
.tier:hover { transform: translateY(-8px); box-shadow: 0 50px 100px -55px rgba(42,33,24,0.5); }
.tier__name { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champ-deep); font-weight: 700; margin-bottom: 16px; }
.tier h3 { font-size: 1.7rem; margin-bottom: 12px; }
.tier__desc { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 26px; min-height: 48px; }
.tier__price { font-family: var(--f-serif); font-size: 2.4rem; color: var(--ink); }
.tier__price small { font-family: var(--f-sans); font-size: 0.8rem; letter-spacing:0.04em; color: var(--c-muted); text-transform: none; }
.tier__line { height:1px; background: rgba(42,33,24,0.1); margin: 26px 0; }
.tier ul { display:grid; gap: 13px; margin-bottom: 32px; }
.tier li { position: relative; padding-left: 28px; font-size: 0.94rem; color: var(--c-text); }
.tier li::before { content:""; position:absolute; left:0; top:7px; width:14px; height:14px; border-radius:50%;
  background: var(--champ-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
          mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat; }
.tier .btn { margin-top: auto; justify-content:center; }
/* featured Meister */
.tier--featured {
  background: linear-gradient(180deg, var(--espresso-2), var(--espresso));
  border: 1px solid var(--champagne); color: #C9BCAC;
  box-shadow: 0 60px 120px -50px rgba(37,29,23,0.7);
}
@media (min-width: 981px){ .tier--featured { transform: translateY(-16px) scale(1.02); } .tier--featured:hover{ transform: translateY(-24px) scale(1.02); } }
.tier--featured h3 { color: var(--ivory); }
.tier--featured .tier__name { color: var(--champagne); }
.tier--featured .tier__desc { color: #B6A892; }
.tier--featured .tier__price { color: var(--ivory); }
.tier--featured .tier__line { background: rgba(217,189,134,0.2); }
.tier--featured li { color: #D8CDBD; }
.tier--featured li::before { background: var(--champagne); }
.tier__badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: linear-gradient(120deg, var(--champagne), var(--champ-deep)); color: var(--espresso);
  font-size:0.62rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  padding: 8px 20px; border-radius:100px; white-space:nowrap; box-shadow: 0 14px 30px -14px rgba(184,150,90,0.8);
}

/* =================================================================
   MENTORS (Natalia & Alexey)
   ================================================================= */
.mentors { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 820px){ .mentors{ grid-template-columns:1fr; } }
.mentor { position: relative; border-radius: 24px; overflow: hidden; min-height: 520px; display:flex; align-items:flex-end; box-shadow: var(--shadow-soft); }
.mentor__bg { position:absolute; inset:0; z-index:0; transition: transform 1s var(--ease); }
.mentor:hover .mentor__bg { transform: scale(1.05); }
.mentor__bg--n { background: linear-gradient(150deg, #6E7A63, #2F251D); }
.mentor__bg--a { background: linear-gradient(150deg, #8AA1AD, #251D17); }
.mentor::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, transparent 35%, rgba(31,24,18,0.88)); }
.mentor__body { position: relative; z-index:2; padding: 44px 40px; color: var(--ivory); }
.mentor__body .role { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color: var(--champagne); }
.mentor__body h3 { color: var(--ivory); font-size: 2.2rem; margin: 8px 0 14px; }
.mentor__body p { color: #D2C7B6; font-size: 0.96rem; max-width: 42ch; }
.mentor__tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.mentor__tags span { font-size:0.72rem; padding:6px 12px; border:1px solid rgba(217,189,134,0.35); border-radius:100px; color:#E6DAC6; }
.mentor__initial { position:absolute; top:30px; right:38px; z-index:2; font-family:var(--f-serif); font-size:5rem; color: rgba(246,241,232,0.16); }

/* =================================================================
   LIVESTREAM timeline
   ================================================================= */
.ls-wrap { display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items:center; }
@media (max-width: 820px){ .ls-wrap{ grid-template-columns:1fr; gap:36px; } }
.ls-badge { font-family: var(--f-serif); font-size: clamp(3rem,8vw,5.4rem); color: var(--ivory); line-height:1; }
.ls-badge small { display:block; font-family:var(--f-sans); font-size:0.72rem; letter-spacing:0.26em; text-transform:uppercase; color: var(--champagne); margin-top:14px; }
.ls-list { display:grid; gap:2px; }
.ls-item { display:flex; align-items:center; gap:18px; padding: 18px 4px; border-bottom:1px solid rgba(217,189,134,0.14); }
.ls-item .t { font-family:var(--f-serif); color: var(--champagne); font-size:0.85rem; opacity:0.7; min-width: 54px; }
.ls-item .topic { color: #D2C7B6; font-size: 1.05rem; }

/* =================================================================
   FINAL BOOKING CTA
   ================================================================= */
.finale { text-align:center; }
.finale__sym { width: 90px; margin: 0 auto 34px; opacity:0.92; animation: spin 90s linear infinite, glow 6s ease-in-out infinite; }
.finale h2 { font-size: clamp(2.4rem,6vw,4.4rem); color: var(--ivory); margin-bottom: 1.2rem; }
.finale p { color:#B6A892; max-width: 540px; margin: 0 auto 2.4rem; }

/* =================================================================
   premium FAQ
   ================================================================= */
.faq__q { font-size: 1.3rem; }
.faq__q .icon::before, .faq__q .icon::after { background: var(--champ-deep); }

/* footer premium */
.site-footer { background: var(--espresso); }
.footer-col h4 { color: var(--champagne); }
.site-footer .brand__logo { filter: none; }

/* page-hero (subpages) → warm editorial */
.page-hero { background:
  radial-gradient(700px 360px at 80% -20%, rgba(217,189,134,0.14), transparent 60%), var(--cream); }
.page-hero h1 { font-weight: 500; }

/* reveal: add gentle blur-in for premium feel */
.reveal { filter: blur(6px); }
.reveal.visible { filter: blur(0); }

/* =================================================================
   ███  v3 — Animation · Responsive · Consistency Endlevel  ███
   ================================================================= */

/* ---- consistent spacing scale & rhythm ---- */
:root {
  --space-section: clamp(80px, 11vw, 168px);
  --gap: clamp(18px, 2.4vw, 28px);
}
.grid, .pillars, .tiers, .modules, .mentors, .atmos-grid { gap: var(--gap); }

/* ---- staggered reveal (delay set inline by JS, fallback here) ---- */
.reveal { transition-property: opacity, transform, filter; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
.reveal[data-d="5"]{ transition-delay:.40s } .reveal[data-d="6"]{ transition-delay:.48s }
.reveal[data-d="7"]{ transition-delay:.56s } .reveal[data-d="8"]{ transition-delay:.64s }

/* ---- parallax wrappers (translateY set by JS) ---- */
[data-parallax] { will-change: transform; }

/* ---- premium link microinteraction (nav + footer + inline) ---- */
.nav__links a { position: relative; }
.nav__links a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-6px; height:1px;
  background: var(--champ-deep); transition: right 0.4s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.footer-col a { transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { padding-left: 4px; }

/* ---- button micro-lift consistency ---- */
.btn { will-change: transform; }
.btn:active { transform: translateY(0) scale(0.99); }

/* ---- card / pillar / tier / module: unify hover glow ---- */
.pillar, .tier, .card, .module, .mentor, .atmos { will-change: transform; }
.module, .pillar, .tier, .card { backface-visibility: hidden; }

/* gentle glow pulse utility (used on symbols & dots) */
@keyframes softglow { 0%,100%{ opacity:0.85 } 50%{ opacity:1 } }

/* divider symbol slow breathe */
.tdivider img { animation: spin 120s linear infinite; }

/* ---- UNIFY legacy pricing (.plan) with premium tiers ---- */
.plan {
  border-radius: 22px; padding: 48px 40px;
  background: linear-gradient(180deg, var(--cream), #fff);
  border: 1px solid rgba(42,33,24,0.10);
  box-shadow: 0 30px 70px -55px rgba(42,33,24,0.4);
}
.plan:hover { box-shadow: 0 50px 100px -55px rgba(42,33,24,0.5); }
.plan__name { color: var(--champ-deep); letter-spacing: 0.22em; }
.plan__price { color: var(--ink); }
.plan .btn { width: 100%; }
.plan .check li::before { background: var(--champ-deep); }
.plan--featured {
  background: linear-gradient(180deg, var(--espresso-2), var(--espresso));
  border: 1px solid var(--champagne);
  box-shadow: 0 60px 120px -50px rgba(37,29,23,0.7);
}
.plan--featured .plan__name { color: var(--champagne); }
.plan--featured h3, .plan--featured .plan__price { color: var(--ivory); }
.plan--featured .plan__desc, .plan--featured .plan__for { color: #B6A892; }
.plan--featured .check li { color: #D8CDBD; }
.plan--featured .check li::before { background: var(--champagne); }
.plan__badge { background: linear-gradient(120deg, var(--champagne), var(--champ-deep)); color: var(--espresso); }

/* legacy split media → consistent rounded premium */
.split__media { border-radius: 24px; }

/* legacy compare table → premium tone */
.compare th { background: var(--stone); color: var(--ink); }
.compare .yes { color: var(--champ-deep); }

/* =================================================================
   RESPONSIVE SYSTEM — Mobile · Tablet · Desktop · Large
   ================================================================= */

/* Large screens (>1600px): scale container + base type up a touch */
@media (min-width: 1600px) {
  :root { --maxw: 1280px; }
  body { font-size: 18.5px; }
}
@media (min-width: 2000px) {
  :root { --maxw: 1400px; }
}

/* Desktop default is the base styles above (>=1101px) */

/* Tablet (=<1100px) */
@media (max-width: 1100px) {
  .ls-wrap { gap: 40px; }
  .mentor { min-height: 460px; }
  .phero h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
}

/* Tablet narrow / large phone (=<860px) */
@media (max-width: 860px) {
  .pillars, .modules, .tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .modules { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
  .mentors { grid-template-columns: 1fr; }
  .mentor { min-height: 420px; }
  /* featured tier no longer lifted out of flow on stacked layout */
  .tier--featured { transform: none !important; }
  .ebook-3d { transform: rotateY(-14deg) rotateX(3deg); }
}

/* Phones (=<600px) */
@media (max-width: 600px) {
  :root { --space-section: clamp(56px, 16vw, 88px); }
  .section { padding: var(--space-section) 0; }
  .wrap { padding: 0 22px; }
  body { font-size: 16.5px; }
  h1 { font-size: clamp(2.3rem, 9vw, 3rem); }
  .display { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .modules { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row.center { align-items: stretch; }
  .phero__symbol { width: 150px; margin-bottom: 32px; }
  /* On mobile show the most valuable tier first */
  .tiers { display: flex; flex-direction: column; }
  .tier--featured { order: -1; }
  .ebook-3d { transform: none; border-radius: 12px; }
  .ebook-stage { perspective: none; }
  .mentor__initial { font-size: 3.4rem; top: 22px; right: 26px; }
  .pillar, .tier, .plan, .card { padding: 36px 28px; }
  .problem-cell { padding: 30px 26px; }
}

/* very small phones */
@media (max-width: 380px) {
  .wrap { padding: 0 18px; }
  .phero h1 { font-size: clamp(2rem, 9vw, 2.4rem); }
}

/* keep tap targets comfortable on touch */
@media (hover: none) {
  .pillar:hover, .tier:hover, .card:hover, .module:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* =================================================================
   ████  v4 — LIGHT HEALING LUXURY  (überschreibt die dunkle Welt) ████
   Ivory · Cream · zartes Gold · Nebelblau · Taupe · Blush · Lavendel
   ================================================================= */
:root {
  --iv:        #FCFAF6;   /* base ivory */
  --cr:        #F6F1E9;   /* cream */
  --sand:      #EFE8DC;   /* very light sand */
  --mist:      #E9EFF1;   /* soft blue-grey tint */
  --mist-ink:  #8AA1AC;
  --blush:     #F4E6E1;   /* nude/blush tint */
  --blush-ink: #CB9A8C;
  --lav:       #ECEAF3;   /* lavender-grey tint */
  --lav-ink:   #ADA6C4;
  --gold2:     #C6A45F;   /* zartes Gold — nur Akzent */
  --gold2-dp:  #AE8B45;
  --ink:       #2A2A30;   /* cool deep — Headlines/Text */
  --ink-soft:  #4C4B55;
  --muted2:    #84828E;
  --line2:     rgba(42,42,48,0.10);
}

/* base */
body {
  background:
    radial-gradient(1100px 700px at 50% -250px, #ffffff, transparent 70%),
    radial-gradient(800px 700px at 100% 10%, rgba(198,164,95,0.05), transparent 60%),
    radial-gradient(900px 700px at 0% 85%, rgba(138,161,172,0.06), transparent 60%),
    var(--iv);
  color: var(--ink-soft);
}
h1,h2,h3,h4 { color: var(--ink); }
.lead, p { color: var(--ink-soft); }
.eyebrow, .kicker { color: var(--gold2-dp); }
.kicker::before { background: var(--gold2-dp); }
.display { color: var(--ink); }
::selection { background: rgba(198,164,95,0.22); color: var(--ink); }
.c-muted, .lead.muted { color: var(--muted2); }

/* header light + glassy */
.site-header { background: rgba(252,250,246,0.72); border-bottom: 1px solid var(--line2); }
.site-header.scrolled { background: rgba(252,250,246,0.92); box-shadow: 0 10px 40px -30px rgba(42,42,48,0.4); }
.brand__word, .nav__links a { color: var(--ink); }

/* buttons — one calm system: primary ink, gold accent, ghost */
.btn--gold {
  background: var(--ink); color: var(--iv);
  box-shadow: 0 18px 44px -22px rgba(42,42,48,0.5);
}
.btn--gold:hover { background: #1f1f24; }
.btn--gold::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,0.18), transparent); }
.btn--gold-line { background: transparent; border-color: var(--gold2); color: var(--gold2-dp); }
.btn--gold-line:hover { background: var(--gold2); color: #fff; }
.btn--ghost { background: rgba(255,255,255,0.6); border-color: var(--line2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--outline-light { border-color: rgba(42,42,48,0.2); color: var(--ink); }
.btn--outline-light:hover { background: rgba(42,42,48,0.05); }

/* scroll progress in gold */
.scroll-progress { background: linear-gradient(90deg, var(--gold2-dp), var(--gold2)); box-shadow: 0 0 10px rgba(198,164,95,0.5); }

/* fix: nav had a duplicate Session button on desktop — only show the CTA one */
.nav__links > .btn { display: none; }
@media (max-width: 980px) { .nav__links.open > .btn { display: inline-flex; } }

/* ---- HERO → light & airy ---- */
.phero {
  min-height: auto; color: var(--ink);
  padding: clamp(44px, 6vw, 84px) 0 clamp(70px, 9vw, 120px);
  background:
    radial-gradient(680px 680px at 50% 30%, rgba(198,164,95,0.10), transparent 62%),
    radial-gradient(900px 600px at 12% 8%, rgba(173,166,196,0.12), transparent 58%),
    radial-gradient(900px 600px at 88% 92%, rgba(138,161,172,0.12), transparent 58%),
    linear-gradient(180deg, #FFFFFF, var(--iv));
}
.phero::after { opacity: 0.04; mix-blend-mode: normal; }
.phero h1 { color: var(--ink); }
.phero h1 em { color: var(--gold2-dp); }
.phero .eyebrow { color: var(--gold2-dp); }
.phero .lead { color: var(--muted2); }
.phero__symbol { filter: drop-shadow(0 18px 36px rgba(198,164,95,0.28)); }
.phero__scroll { color: rgba(176,140,68,0.7); }
.phero__scroll::after { background: linear-gradient(var(--gold2), transparent); }
.phero__halo span { background: rgba(198,164,95,0.45); }

/* ---- "dark" feature sections → soft light tints ---- */
.section--dark {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(198,164,95,0.06), transparent 60%),
    linear-gradient(180deg, var(--cr), var(--mist));
  color: var(--ink-soft);
}
.section--dark::after { display: none; }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--ink); }
.section--dark .eyebrow { color: var(--gold2-dp); }
.section--dark .lead { color: var(--ink-soft); }
.section--dark .serif-quote { color: var(--ink); }
.section--brown { background: var(--cr); color: var(--ink-soft); }
.section--brown .lead { color: var(--ink-soft); }
.section--sand { background: var(--sand); }

/* problem grid → light cards, gold hairlines */
.problem-grid { background: var(--line2); border-color: var(--line2); }
.problem-cell { background: #fff; }
.problem-cell:hover { background: var(--cr); }
.problem-cell .pnum { color: var(--gold2-dp); opacity: 0.8; }
.problem-cell p { color: var(--ink-soft); }
.problem-cell p strong { color: var(--ink); }

/* academy modules → light cards */
.module {
  background: #fff; border: 1px solid var(--line2);
  box-shadow: 0 24px 50px -44px rgba(42,42,48,0.4);
}
.module:hover { border-color: var(--gold2); background: #fff; }
.module .m-no { color: var(--gold2-dp); opacity: 0.9; }
.module h4 { color: var(--ink); }
.module .m-play { border-color: var(--gold2); color: var(--gold2-dp); }
.module:hover .m-play { background: var(--gold2); color: #fff; }

/* livestream → light */
.ls-badge { color: var(--ink); }
.ls-badge small { color: var(--gold2-dp); }
.ls-item { border-bottom-color: var(--line2); }
.ls-item .t { color: var(--gold2-dp); opacity: 0.85; }
.ls-item .topic { color: var(--ink-soft); }

/* finale CTA → light, elegant */
.finale h2 { color: var(--ink); }
.finale p { color: var(--muted2); }
.finale__sym { filter: drop-shadow(0 16px 30px rgba(198,164,95,0.25)); }

/* ---- pillars: healing accent colors (override sage/blue/clay) ---- */
.pc-green { --pc: #C2A05C; }   /* zartes Gold */
.pc-blue  { --pc: #8AA1AC; }   /* Nebelblau */
.pc-red   { --pc: #CB9A8C; }   /* Blush */
.pillar { background: #fff; border-color: var(--line2); box-shadow: 0 28px 60px -50px rgba(42,42,48,0.35); }
.pillar p { color: var(--muted2); }

/* ---- pricing tiers → light, Meister via gold not darkness ---- */
.tier { background: #fff; border-color: var(--line2); }
.tier__name { color: var(--gold2-dp); }
.tier h3, .tier__price { color: var(--ink); }
.tier__desc { color: var(--muted2); }
.tier__line { background: var(--line2); }
.tier li { color: var(--ink-soft); }
.tier li::before { background: var(--gold2-dp); }
.tier--featured {
  background: linear-gradient(180deg, #fff, var(--cr));
  border: 1.5px solid var(--gold2);
  box-shadow: 0 60px 110px -55px rgba(198,164,95,0.55);
}
.tier--featured h3, .tier--featured .tier__price { color: var(--ink); }
.tier--featured .tier__name { color: var(--gold2-dp); }
.tier--featured .tier__desc { color: var(--muted2); }
.tier--featured li { color: var(--ink-soft); }
.tier--featured li::before { background: var(--gold2-dp); }
.tier__badge { background: linear-gradient(120deg, var(--gold2), var(--gold2-dp)); color: #fff; box-shadow: 0 14px 30px -14px rgba(198,164,95,0.7); }

/* legacy plan unify with new tier look */
.plan { background: #fff; border-color: var(--line2); }
.plan__name { color: var(--gold2-dp); }
.plan__price, .plan h3 { color: var(--ink); }
.plan .check li::before { background: var(--gold2-dp); }
.plan--featured { background: linear-gradient(180deg,#fff,var(--cr)); border: 1.5px solid var(--gold2); box-shadow: 0 60px 110px -55px rgba(198,164,95,0.5); }
.plan--featured h3, .plan--featured .plan__price { color: var(--ink); }
.plan--featured .plan__desc, .plan--featured .plan__for { color: var(--muted2); }
.plan--featured .check li { color: var(--ink-soft); }
.plan--featured .check li::before { background: var(--gold2-dp); }

/* tdivider + symbol on light */
.tdivider .ln { background: linear-gradient(90deg, transparent, rgba(198,164,95,0.4)); }
.tdivider .ln:last-child { background: linear-gradient(90deg, rgba(198,164,95,0.4), transparent); }

/* compare table light */
.compare th { background: var(--cr); color: var(--ink); }
.compare .yes { color: var(--gold2-dp); }

/* ---- footer → soft light, grounding but airy ---- */
.site-footer { background: var(--cr); color: var(--muted2); border-top: 1px solid var(--line2); }
.site-footer .brand, .site-footer .brand__word { color: var(--ink); }
.footer-col h4 { color: var(--gold2-dp); }
.footer-col a, .footer-about, .footer-bottom, .footer-disclaimer { color: var(--muted2); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top-color: var(--line2); }

/* page-hero subpages → airy */
.page-hero { background: radial-gradient(700px 360px at 80% -20%, rgba(198,164,95,0.10), transparent 60%), linear-gradient(180deg,#fff,var(--iv)); }

/* faq icons gold */
.faq__q .icon::before, .faq__q .icon::after { background: var(--gold2-dp); }
.faq__q { color: var(--ink); }

/* ===== IMAGE SLOT system (real photos drop-in) ===== */
.imgslot {
  position: relative; overflow: hidden; border-radius: 24px; background: var(--cr);
  box-shadow: 0 40px 90px -55px rgba(42,42,48,0.4);
}
.imgslot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.imgslot:hover img { transform: scale(1.04); }
/* graceful placeholder when no <img> present */
.imgslot--ph { display: grid; place-items: center; text-align: center; min-height: 320px; color: var(--muted2);
  background:
    radial-gradient(220px 160px at 70% 25%, rgba(198,164,95,0.16), transparent 60%),
    linear-gradient(150deg, var(--blush), var(--mist)); }
.imgslot--ph .ph-note { max-width: 70%; font-size: 0.82rem; line-height: 1.5; letter-spacing: 0.02em; }
.imgslot--ph .ph-sym { width: 56px; opacity: 0.7; margin: 0 auto 14px; }

/* mentors → light editorial image cards */
.mentor { min-height: auto; display: block; border-radius: 24px; background: #fff; border: 1px solid var(--line2); box-shadow: 0 40px 90px -55px rgba(42,42,48,0.4); }
.mentor::after { display: none; }
.mentor__photo { position: relative; aspect-ratio: 4/3.4; overflow: hidden; border-radius: 24px 24px 0 0; }
.mentor__photo .imgslot--ph { border-radius: 0; min-height: 100%; }
.mentor__bg { position: absolute; inset: 0; }
.mentor__bg--n { background: linear-gradient(150deg, var(--blush), var(--mist)); }
.mentor__bg--a { background: linear-gradient(150deg, var(--mist), var(--lav)); }
.mentor__initial { position: absolute; top: 20px; right: 26px; color: rgba(42,42,48,0.10); }
.mentor__body { padding: 32px 34px 38px; color: var(--ink-soft); }
.mentor__body .role { color: var(--gold2-dp); }
.mentor__body h3 { color: var(--ink); }
.mentor__body p { color: var(--muted2); }
.mentor__tags span { border-color: var(--line2); color: var(--ink-soft); }

/* ebook 3d cover → light premium */
.ebook-3d { background: linear-gradient(155deg, #fff, var(--cr)); color: var(--ink); box-shadow: -18px 30px 70px -34px rgba(42,42,48,0.45), inset 6px 0 14px rgba(42,42,48,0.05); }
.ebook-3d::before { background: rgba(198,164,95,0.4); }
.ebook-3d::after { background: radial-gradient(220px 160px at 78% 12%, rgba(198,164,95,0.18), transparent 60%); }
.ebook-3d .e-kick { color: var(--gold2-dp); }
.ebook-3d .e-title { color: var(--ink); }
.ebook-3d .e-sub { color: var(--muted2); }

/* ===== Premium 1:1 Coaching band ===== */
.highticket {
  position: relative; overflow: hidden; border-radius: 30px;
  background: linear-gradient(140deg, var(--lav), var(--mist) 55%, var(--blush));
  padding: clamp(40px, 6vw, 72px);
}
.highticket::before { content:""; position:absolute; inset:0; background: radial-gradient(360px 240px at 85% 15%, rgba(198,164,95,0.20), transparent 60%); pointer-events:none; }
.ht-grid { position: relative; z-index: 1; display:grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px){ .ht-grid{ grid-template-columns: 1fr; gap: 32px; } }
.ht-badge { display:inline-block; font-size:0.66rem; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; color: var(--gold2-dp); border:1px solid var(--gold2); padding:7px 16px; border-radius:100px; margin-bottom:22px; background: rgba(255,255,255,0.5); }
.ht-price { font-family: var(--f-serif); font-size: clamp(2.2rem,5vw,3.2rem); color: var(--ink); margin: 6px 0 4px; }
.ht-price small { font-family: var(--f-sans); font-size: 0.9rem; color: var(--muted2); }
.ht-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,0.8); border-radius: 22px; padding: 32px 30px; }
.ht-card ul { display:grid; gap:12px; }
.ht-card li { position:relative; padding-left:26px; font-size:0.95rem; color: var(--ink-soft); }
.ht-card li::before { content:""; position:absolute; left:0; top:7px; width:13px; height:13px; border-radius:50%; background: var(--gold2-dp);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/10px no-repeat;
          mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/10px no-repeat; }

/* price line on tiers */
.tier__price .pp { font-size: 0.82rem; color: var(--muted2); font-family: var(--f-sans); }

/* keep dark grain off everything light */
.section--dark > .wrap { z-index: 1; }

/* =================================================================
   ████  CARD VISIBILITY + IMAGE VISUALS  ████
   ================================================================= */
/* problem cells → clear, separated cards */
.problem-grid { background: transparent; border: 0; gap: 16px; }
.problem-cell {
  background: #fff; border: 1px solid rgba(42,42,48,0.14); border-radius: 18px;
  box-shadow: 0 28px 56px -46px rgba(42,42,48,0.55);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}
.problem-cell:hover { transform: translateY(-5px); box-shadow: 0 46px 84px -48px rgba(42,42,48,0.6); border-color: var(--gold2); }

/* general cards: a touch more definition */
.card, .pillar, .tier, .module { border-color: rgba(42,42,48,0.14); }
.card { box-shadow: 0 26px 54px -44px rgba(42,42,48,0.5); }
.compare, .table-wrap { border-color: rgba(42,42,48,0.14); }

/* ---- full-width cinematic visual bands ---- */
.visual-band { position: relative; height: clamp(260px, 38vw, 470px); overflow: hidden; }
.visual-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visual-band::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 100% at 50% 50%, transparent 38%, rgba(252,250,246,0.55)); }
.visual-band .vb-cap { position: relative; z-index: 1; height: 100%; display: grid; place-items: center; text-align: center; padding: 0 26px; }
.visual-band .vb-cap .serif-quote { max-width: 760px; color: var(--ink); }

/* ---- generic image slot with real picture ---- */
.imgslot { background: var(--cr); }
.imgslot--photo { aspect-ratio: 4/3; }
.imgslot--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* mentor fallback uses an aura visual instead of empty gradient */
.mentor__img { background: var(--cr); }

/* subpage hero: soft aura backdrop so tops aren't empty */
.page-hero {
  background-image:
    linear-gradient(90deg, rgba(252,250,246,0.95), rgba(252,250,246,0.55)),
    url("../assets/aura-gold.jpg");
  background-size: cover; background-position: center;
}

/* =================================================================
   ████  PREMIUM BRAND LAYER — figures, trust, testimonials  ████
   ================================================================= */

/* universal photo slot: real image with elegant aura+glyph fallback */
.figimg {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 56px 110px -64px rgba(42,42,48,0.55);
  background: url("../assets/aura-gold.jpg") center/cover, var(--cr);
}
.figimg--blush { background-image: url("../assets/aura-blush.jpg"); }
.figimg--mist  { background-image: url("../assets/aura-mist.jpg"); }
.figimg--lav   { background-image: url("../assets/aura-lavender.jpg"); }
.figimg::before { content: ""; display: block; padding-top: var(--ratio, 75%); }
.figimg > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.3s var(--ease); }
.figimg:hover > img { transform: scale(1.04); }
.figimg__ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 26px; }
.figimg__ph .fg-mark { width: 52px; height: 52px; opacity: 0.5; margin: 0 auto 14px; }
.figimg__ph .fg-cap { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted2); line-height: 1.5; }
.figimg__ph .fg-cap b { display: block; font-family: var(--f-serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; letter-spacing: 0; }
.figimg__badge { position: absolute; left: 20px; bottom: 20px; z-index: 2; background: rgba(252,250,246,0.85);
  backdrop-filter: blur(6px); border: 1px solid var(--line2); border-radius: 100px; padding: 8px 16px;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink); font-weight: 500; }
.ratio-portrait { --ratio: 125%; }
.ratio-wide { --ratio: 56%; }
.ratio-square { --ratio: 100%; }

/* editorial split (image + text), reusable */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.editorial--rev .editorial__media { order: 2; }
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; gap: 40px; } .editorial--rev .editorial__media { order: 0; } }

/* trust / stats bar */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); padding: 40px 0; }
@media (max-width: 760px) { .statbar { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--f-serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted2); }

/* testimonials */
.tcard { background: #fff; border: 1px solid var(--line2); border-radius: 22px; padding: 40px 36px;
  box-shadow: 0 34px 66px -52px rgba(42,42,48,0.5); height: 100%; display: flex; flex-direction: column; }
.tcard .tstars { color: var(--gold2-dp); letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 16px; }
.tcard p { font-family: var(--f-serif); font-size: 1.28rem; line-height: 1.5; color: var(--ink); margin-bottom: 24px; }
.tcard .tmeta { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tcard .tav { width: 46px; height: 46px; border-radius: 50%; flex: none; background: linear-gradient(150deg, var(--blush), var(--mist)); }
.tcard .tname { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.tcard .trole { font-size: 0.8rem; color: var(--muted2); }

/* slim announcement bar above header */
.topbar-note { background: var(--ink); color: var(--iv); text-align: center; font-size: 0.74rem;
  letter-spacing: 0.08em; padding: 9px 16px; }
.topbar-note a { color: var(--gold2); text-decoration: underline; text-underline-offset: 3px; }

/* =================================================================
   ████  GRAPHIC TYPOGRAPHY — editorial healing treatment  ████
   ================================================================= */

/* gold gradient accent text (use sparingly on key words) */
.txt-grad {
  background: linear-gradient(100deg, #B8965A, #E6CC8C 52%, #B8965A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* hero accent word: italic + gradient gold */
.phero h1 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, #C79A52, #E6CC8C 50%, #C79A52);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* graphic kicker: gold glyph + tracked label */
.kicker { align-items: center; }
.kicker::before { width: 26px; }
.kicker::after {
  content: ""; display: inline-block; width: 5px; height: 5px; margin-left: -4px;
  border-radius: 50%; background: var(--gold2); transform: rotate(45deg);
}

/* eyebrow gets a leading gold tick */
.eyebrow { position: relative; }

/* drop-cap for intro paragraphs */
.dropcap::first-letter {
  float: left; font-family: var(--f-serif); font-weight: 600;
  font-size: 3.5em; line-height: 0.72; padding: 8px 14px 0 0;
  background: linear-gradient(160deg, #C79A52, #B8965A);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* growing gold underline under section display headings */
.section__head .display { position: relative; padding-bottom: 22px; }
.section__head .display::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 54px; height: 2px;
  background: linear-gradient(90deg, var(--gold2-dp), var(--gold2));
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease) 0.35s;
}
.section__head.center .display::after { left: 50%; transform: translateX(-50%) scaleX(0); transform-origin: center; }
.reveal.visible .section__head .display::after,
.section__head.reveal.visible .display::after { transform: scaleX(1); }
.section__head.center.reveal.visible .display::after { transform: translateX(-50%) scaleX(1); }

/* decorative oversized serif quote mark on pull-quotes */
.serif-quote { position: relative; }
.serif-quote.has-mark::before {
  content: "\201C"; position: absolute; left: 50%; top: -0.55em; transform: translateX(-50%);
  font-family: var(--f-serif); font-size: 3.4em; line-height: 1; color: rgba(198,164,95,0.20);
  pointer-events: none;
}

/* ---- word-by-word headline reveal (set up by JS, safe fallback) ---- */
.split-ready .w { display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: 0.14em; margin-bottom: -0.14em; }
.split-ready .w-i { display: inline-block; transform: translateY(112%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.split-ready.is-in .w-i { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .split-ready .w-i { transform: none !important; transition: none; }
}

/* =================================================================
   ████  v5 — TEXTSICHTBARKEIT auf allen hellen Sektionen  ████
   Reste der dunklen Welt (helle Schrift) auf hellem Grund lesbar machen
   ================================================================= */
.section--brown, .section--olive { color: var(--ink-soft); }
.section--brown h1,.section--brown h2,.section--brown h3,.section--brown h4,
.section--olive h1,.section--olive h2,.section--olive h3,.section--olive h4 { color: var(--ink); }
.section--brown .lead, .section--brown p,
.section--olive .lead, .section--olive p { color: var(--ink-soft); }
.section--brown .eyebrow, .section--olive .eyebrow { color: var(--gold2-dp); }

/* serif quotes were near-white for dark bg → ink */
.serif-quote { color: var(--ink); }
.quote-band .serif-quote,
.section--brown .serif-quote, .section--dark .serif-quote, .section--olive .serif-quote { color: var(--ink); }
.quote-band cite { color: var(--gold2-dp); }

/* CTA bands */
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted2); }

/* section--olive is now a light lavender tint, not deep green */
.section--olive { background: var(--lav); }

/* card--brown / flow items (Methode "Zusammenspiel") → light cards */
.card--brown, .flow__item { background: #fff; border-color: var(--line2); }
.card--brown p, .flow__item p { color: var(--muted2); }
.card--brown h3, .card--brown h4, .flow__item .big { color: var(--ink); }
.flow__item h4 { color: var(--gold2-dp); }
.card--brown .card__num { background: var(--cr); color: var(--gold2-dp); border-color: var(--line2); }

/* chips inside former dark sections (Livestreams) */
.section--brown .chip, .section--olive .chip,
.section--dark .chip { background: #fff; border-color: var(--line2); color: var(--ink-soft); }

/* check lists inside former dark sections */
.section--brown .check li, .section--olive .check li { color: var(--ink-soft); }
.section--brown .check li::before, .section--olive .check li::before { background: var(--gold2-dp); }

/* form-note stays readable */
.form-note { color: var(--muted2); }

/* ===== animated hero logo ===== */
.phero__logo { width: clamp(190px, 27vw, 300px); margin: 0 auto 42px; }
.phero__logo--img, .phero__logo--svg { position: relative; width: clamp(210px, 30vw, 340px); display: grid; place-items: center; }

/* =========================================================
   Hero logo — ORIGINAL image, clean premium reveal.
   Single centred image → technically stable, nothing can
   shift, jump or become asymmetric. Soft-focus fade-in +
   gentle scale-up around centre + soft glow. No rotation.
   ========================================================= */
:root { --logo-ease: cubic-bezier(0.22, 1, 0.36, 1); }

.hero-logo {
  width: 100%; height: auto; display: block; position: relative; z-index: 1;
  transform-origin: 50% 50%;
  animation: heroLogoReveal 1.9s var(--logo-ease) both;
}
@keyframes heroLogoReveal {
  0%   { opacity: 0; transform: scale(0.92); filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1);   filter: blur(0); }
}

/* soft glow behind the mark: rises with the logo, then breathes very gently */
.logoglow { animation: heroGlowIn 2.2s var(--logo-ease) both, glowPulse 7s ease-in-out 2.2s infinite; }
@keyframes heroGlowIn { 0% { opacity: 0; } 100% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: heroLogoReveal 1.2s ease both; }
  .logoglow { animation: heroGlowIn 1.2s ease both; }
}
.hero-logo-img {
  width: 100%; height: auto; display: block; position: relative; z-index: 1;
  animation: logoReveal 1.7s var(--ease) both, logoFloat 7.5s ease-in-out 1.6s infinite;
}
@keyframes logoReveal { from { opacity: 0; filter: blur(12px); transform: scale(0.9); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.logoglow {
  position: absolute; inset: -10%; z-index: 0; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(198,164,95,0.34), rgba(198,164,95,0.10) 45%, transparent 68%);
  animation: glowPulse 5.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.55; transform: scale(0.94); } 50% { opacity: 1; transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) {
  .hero-logo-img { animation: none; opacity: 1; filter: none; }
  .logoglow { animation: none; }
}
/* glow drop-shadow on the static mark */
.tlogo { filter: drop-shadow(0 16px 34px rgba(198,164,95,0.22)); }

/* mentor photo slot fill */
.mentor__photo { position: relative; }
.mentor__photo .imgslot--ph { position: absolute; inset: 0; border-radius: 24px 24px 0 0; min-height: 0; }
.mentor__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 24px 24px 0 0; transition: transform 1.2s var(--ease); }
.mentor:hover .mentor__img { transform: scale(1.04); }
.ph-sym { display:block; }
