/* ═══════════════════════════════════════════════════════
   claudia-braun.de — shared styles
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --teal:        #1a5c4a;
  --teal-dark:   #1a5c4a;
  --teal-light:  #2d7a63;
  --terra:       #c9a882;
  --terra-light: #dcc4a4;
  --cream:       #f1eada;
  --paper:       #f7f2e8;
  --sand:        #e5dac6;
  --sage:        #afc3bb;
  --ink:         #2a3a3d;
  --body:        #4a4a4a;
  --muted:       #7a7a7a;
  --gray:        #dbd7d2;
  --nav-h:       74px;
  --ease-soft:   cubic-bezier(.22,1,.36,1);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body {
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--body); background:var(--paper);
  line-height:1.7; font-weight:300; overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { color:var(--teal); text-decoration:none; transition:color .3s; }
a:hover { color:var(--terra); }

/* ── SCROLL REVEAL ──────────────────────────────────────
   Distance/curve refined (26px, not 36px) + a hint of scale
   on card-like elements. Stagger is computed by main.js per
   intersection batch via --stagger (see .js .reveal rules
   below); the .d1–.d3 classes remain as a static, no-JS-safe
   fallback so nothing depends on script execution order. ── */
.reveal, .reveal-left, .reveal-right {
  opacity:0; filter:blur(5px);
  transition:opacity .85s var(--ease-soft), transform .85s var(--ease-soft), filter .85s var(--ease-soft);
  transition-delay:var(--stagger, 0s);
}
.reveal       { transform:translateY(26px); }
.reveal-left  { transform:translateX(-26px); }
.reveal-right { transform:translateX(26px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; filter:none; }

/* subtle scale-in on discrete card/panel units, layered on top of
   the translate above — reads as a gentle "settle", not a pop */
.reveal.approach-card, .reveal.resource-card, .reveal.testimonial-card,
.reveal.panel, .reveal.gm-card, .reveal.audio-item {
  transform:translateY(26px) scale(.985);
}
.reveal.approach-card.visible, .reveal.resource-card.visible, .reveal.testimonial-card.visible,
.reveal.panel.visible, .reveal.gm-card.visible, .reveal.audio-item.visible { transform:none; }

/* static fallback delays — used when JS stagger isn't available
   (kept for markup already carrying .d1–.d3) */
.d1 { transition-delay:.12s; }
.d2 { transition-delay:.24s; }
.d3 { transition-delay:.36s; }
/* once JS assigns --stagger, let the custom property win */
.js .d1, .js .d2, .js .d3 { transition-delay:var(--stagger, 0s); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0;
  height:var(--nav-h);
  background:rgba(247,242,232,.96);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  z-index:1000;
  border-bottom:1px solid transparent;
  transition:border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color:var(--sand); box-shadow:0 1px 24px rgba(42,58,61,.07); }
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 2rem;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; gap:.6rem; }
.nav-logo img { height:24px; width:auto; display:block; }
.nav-logo img.nav-mark { height:30px; opacity:.92; transition:transform .5s var(--ease-soft); }
.nav-logo:hover img.nav-mark { transform:rotate(-4deg) scale(1.06); }

/* thin reading-progress line under the nav */
.scroll-progress {
  position:fixed; top:0; left:0; width:100%; height:2px; z-index:1002;
  transform-origin:0 50%; transform:scaleX(0);
  background:linear-gradient(90deg, var(--teal), var(--terra));
  pointer-events:none;
}

.nav-links { display:flex; align-items:center; gap:1.8rem; list-style:none; }
.nav-links > li > a {
  font-size:.82rem; font-weight:400; letter-spacing:.03em;
  color:var(--body); position:relative; padding-bottom:2px; transition:color .3s;
}
.nav-links > li > a::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1px; background:var(--teal); transition:width .3s;
}
.nav-links > li > a:hover { color:var(--teal); }
.nav-links > li > a:hover::after { width:100%; }
.nav-links > li > a[aria-current="page"] { color:var(--teal); }
.nav-links > li > a[aria-current="page"]::after { width:100%; }

.dropdown { position:relative; }
.dropdown-menu {
  position:absolute; top:calc(100% + 14px); left:-1rem;
  background:#fff; border:1px solid var(--gray); border-radius:8px;
  padding:.75rem 0; min-width:260px;
  opacity:0; pointer-events:none; transform:translateY(-8px);
  transition:all .25s; box-shadow:0 8px 32px rgba(0,0,0,.07);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity:1; pointer-events:all; transform:none; }
.dropdown-menu a { display:block; padding:.5rem 1.25rem; font-size:.8rem; color:var(--body); }
.dropdown-menu a:hover { color:var(--teal); background:var(--paper); }

.nav-cta {
  font-size:.76rem; font-weight:500; letter-spacing:.05em;
  background:var(--teal); color:#fff !important;
  padding:.5rem 1.1rem; border-radius:4px; transition:background .3s, transform .3s;
  display:inline-flex; align-items:center; line-height:1;
}
.nav-cta:hover { background:var(--teal-dark); transform:translateY(-1px); }
.nav-cta::after { display:none !important; }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.hamburger span { display:block; width:24px; height:2px; background:var(--ink); transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display:none; position:fixed;
  top:var(--nav-h); left:0; right:0; bottom:0;
  background:rgba(247,242,232,.98); backdrop-filter:blur(20px);
  z-index:999; padding:2rem; flex-direction:column; overflow-y:auto;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:1.02rem; font-weight:400; color:var(--ink);
  padding:.8rem 0; border-bottom:1px solid var(--sand);
}
.mobile-nav a.sub { font-size:.88rem; color:var(--body); padding-left:1.25rem; }
.mobile-nav .mob-group { font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--terra); margin-top:1.4rem; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display:inline-block; padding:.82rem 2rem;
  font-size:.8rem; font-weight:500; letter-spacing:.06em;
  border-radius:3px; transition:all .3s; cursor:pointer;
  border:none; font-family:'Inter', sans-serif;
}
.btn-primary { background:var(--teal); color:#fff; }
.btn-primary:hover { background:var(--teal-dark); color:#fff; transform:translateY(-2px); box-shadow:0 4px 16px rgba(26,92,74,.28); }
.btn-outline { background:transparent; color:var(--teal); border:1px solid var(--teal); }
.btn-outline:hover { background:var(--teal); color:#fff; transform:translateY(-2px); }
.btn-white { background:#fff; color:var(--teal); }
.btn-white:hover { background:var(--paper); transform:translateY(-2px); box-shadow:0 4px 16px rgba(0,0,0,.12); }
.btn-outline-white { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:#fff; color:#fff; transform:translateY(-2px); }

/* ── SHARED SECTION ─────────────────────────────────── */
.section { padding:7rem 2rem; }
.section-inner { max-width:1100px; margin:0 auto; }
.section-label {
  font-size:.68rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--terra); margin-bottom:1rem;
}
.section-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:300; color:var(--teal); line-height:1.2; margin-bottom:1.5rem;
}
.section-text { font-size:.93rem; line-height:1.8; max-width:680px; color:var(--body); }
.divider { width:60px; height:1px; background:var(--terra); margin:1.5rem 0; }
/* divider draws itself in when its section reveals */
.reveal .divider, .reveal-left .divider, .reveal-right .divider {
  transform:scaleX(0); transform-origin:left;
  transition:transform 1.2s var(--ease-soft) .4s;
}
.visible .divider { transform:scaleX(1); }
/* small brand mark above centered section headers — reveals a beat
   before the label/title beneath it: fade + slight descent + a
   whisper of rotation, calmer and quieter than the text motion */
.section-mark {
  height:42px; width:auto; display:block; margin:0 auto 1.15rem;
  opacity:0; transform:translateY(-10px) rotate(-1.4deg);
  transition:opacity .8s var(--ease-soft), transform .8s var(--ease-soft), filter .8s var(--ease-soft);
  filter:blur(3px);
}
/* Für linksbündige Spalten (z. B. Home „Über mich“-Teaser): Mark + Label
   in einer schmalen, sich am Inhalt orientierenden Spalte zusammen zentrieren,
   statt die Mark über die ganze (viel breitere) Textspalte zu zentrieren. */
.section-mark-row { display:inline-flex; flex-direction:column; align-items:center; }
.reveal.visible .section-mark,
.reveal-left.visible .section-mark,
.reveal-right.visible .section-mark,
.section-mark.visible { opacity:.5; transform:none; filter:none; }

/* ── AMBIENT BACKGROUND (blobs + grain) ─────────────── */
.blob { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.blob-1 { width:640px; height:640px; background:var(--sage);  opacity:.16; top:-180px; right:-220px; animation:blobDrift 24s ease-in-out infinite; }
.blob-2 { width:420px; height:420px; background:var(--terra); opacity:.09; bottom:-100px; left:-140px; animation:blobDrift 20s ease-in-out infinite reverse; animation-delay:-9s; }
.blob-3 { width:300px; height:300px; background:var(--teal);  opacity:.07; top:38%; left:22%; animation:blobDrift 28s ease-in-out infinite; animation-delay:-16s; }
@keyframes blobDrift {
  0%,100% { transform:translate(0,0) scale(1); }
  25% { transform:translate(22px,-28px) scale(1.04); }
  50% { transform:translate(-14px,18px) scale(.97); }
  75% { transform:translate(10px,-8px) scale(1.02); }
}
.hero-grain {
  position:absolute; inset:-5%; width:110%; height:110%;
  pointer-events:none; opacity:.038; z-index:2;
  mix-blend-mode:overlay;
  animation:grainShift .75s steps(1) infinite;
}
@keyframes grainShift {
  0% { transform:translate(0,0); } 14% { transform:translate(-1.5%,1%); }
  28% { transform:translate(2%,-1%); } 42% { transform:translate(-1%,1.5%); }
  57% { transform:translate(1.5%,-1.5%); } 71% { transform:translate(-2%,1%); }
  85% { transform:translate(1%,1.5%); } 100% { transform:translate(-1.5%,-1%); }
}
@keyframes markBreathe {
  0%,100% { transform:scale(1); }
  50% { transform:scale(1.026); }
}

/* ── HOME: SERVICES HERO ────────────────────────────── */
.services-hero {
  min-height:100vh; padding-top:var(--nav-h);
  background:var(--cream);
  position:relative; overflow:hidden;
  display:flex; align-items:center;
}
.services-hero-inner {
  max-width:1100px; margin:0 auto; padding:2.5rem 2rem 5rem;
  position:relative; z-index:1; width:100%;
}
.hero-brandmark {
  height:clamp(150px, 20vh, 200px); width:auto; display:block;
  margin:0 0 1.4rem -6px;
  opacity:0; animation:fadeUp 1.2s .12s forwards;
}
.services-tag {
  font-size:.68rem; font-weight:500; letter-spacing:.24em;
  text-transform:uppercase; color:var(--terra);
  display:flex; align-items:center; gap:.85rem;
  margin-bottom:1.6rem;
  opacity:0; animation:fadeUp 1s .3s forwards;
}
.services-tag::before { content:''; width:28px; height:1px; background:var(--terra); flex-shrink:0; }
.services-headline {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.5rem,2.9vw,2.2rem);
  font-weight:300; color:var(--teal); line-height:1.3;
  max-width:580px; margin-bottom:1.4rem;
  opacity:0; animation:fadeUp 1s .55s forwards;
}
.services-lede {
  font-size:.95rem; line-height:1.85; max-width:540px; color:var(--body);
  margin-bottom:1.9rem; opacity:0; animation:fadeUp 1s .7s forwards;
}
.services-two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.services-list { border-top:1px solid rgba(201,168,130,.18); }
.service-item {
  display:flex; align-items:center; gap:1.5rem;
  padding:.92rem 0;
  border-bottom:1px solid rgba(201,168,130,.13);
  text-decoration:none !important; color:inherit;
  transition:all .35s var(--ease-soft);
  opacity:0; animation:fadeUp 1s forwards;
}
.service-item:nth-child(1) { animation-delay:.85s; }
.service-item:nth-child(2) { animation-delay:1s; }
.service-item:nth-child(3) { animation-delay:1.15s; }
.service-item:nth-child(4) { animation-delay:1.3s; }
.service-item:hover { padding-left:.65rem; }
.svc-num {
  font-family:'Cormorant Garamond', serif;
  font-size:1.9rem; font-weight:300; line-height:1;
  color:var(--terra); opacity:.18; flex-shrink:0;
  width:2.4rem; transition:opacity .35s;
}
.service-item:hover .svc-num { opacity:.42; }
.service-item h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.05rem,1.5vw,1.3rem);
  font-weight:400; color:var(--teal); flex:1; margin:0;
}
.svc-item-arrow {
  font-size:.82rem; color:var(--terra);
  opacity:0; transform:translateX(-8px);
  transition:all .35s; flex-shrink:0;
}
.service-item:hover .svc-item-arrow { opacity:1; transform:translateX(0); }
.hero-actions { margin-top:1.8rem; display:flex; gap:1rem; flex-wrap:wrap; opacity:0; animation:fadeUp 1s 1.5s forwards; }

.services-right { position:relative; }
/* offset hairline frame behind the hero photo (echoes the about portrait) */
.services-right::after {
  content:''; position:absolute;
  top:16px; right:-16px; bottom:-16px; left:16px;
  border:1px solid var(--terra); border-radius:12px;
  opacity:0; z-index:0; pointer-events:none;
  animation:frameIn 1.4s 1s var(--ease-soft) forwards;
}
@keyframes frameIn { from { opacity:0; transform:translateY(14px); } to { opacity:.38; transform:none; } }
.services-right-mark {
  position:absolute; width:60%; left:-24%; top:50%;
  margin-top:-47%;
  opacity:0; pointer-events:none; z-index:0;
  animation:markIn 1.6s .7s var(--ease-soft) forwards,
            markBreathe 12s 2.4s ease-in-out infinite;
}
@keyframes markIn {
  from { opacity:0; transform:translateY(24px) scale(.98); }
  to   { opacity:.17; transform:none; }
}
.services-photo-wrap {
  position:relative; z-index:1;
  aspect-ratio:3/4; max-height:72vh;
  border-radius:10px; overflow:hidden;
  box-shadow:0 32px 64px -20px rgba(42,58,61,.3);
  opacity:0; animation:fadeUp 1s .45s forwards;
}
.services-photo-wrap img {
  width:100%; height:100%; object-fit:cover; object-position:center top;
  filter:saturate(.9) contrast(.98);
  transition:transform 8s ease-out;
}
.services-photo-wrap:hover img { transform:scale(1.04); }
.services-photo-wrap::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(26,92,74,.04) 0%, rgba(201,168,130,.1) 100%);
}
.scroll-hint {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.4rem;
  opacity:0; animation:fadeUp 1s 2.1s forwards;
  cursor:pointer;
}
.scroll-line {
  width:1px; height:44px;
  background:linear-gradient(to bottom, var(--teal), transparent);
  animation:scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform:scaleY(0); transform-origin:top; opacity:0; }
  40% { opacity:.45; }
  60% { transform:scaleY(1); transform-origin:top; }
  61% { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ── HOME: QUOTE ────────────────────────────────────── */
.quote-section { position:relative; overflow:hidden; text-align:center; padding:9rem 2rem; color:#fff; }
.quote-photo-bg {
  position:absolute; top:-9%; bottom:-9%; left:0; right:0;
  background:url('../img/nature-golden.jpg') center/cover no-repeat;
  filter:saturate(.92); will-change:transform;
}
.quote-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(26,92,74,.82) 0%, rgba(42,58,61,.7) 100%); }
.quote-section::before {
  content:''; position:absolute; inset:0; z-index:1;
  background-image:radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:28px 28px; pointer-events:none;
  animation:dotDrift 22s ease-in-out infinite;
}
@keyframes dotDrift { 0%,100% { background-position:0 0; } 50% { background-position:14px 14px; } }
.quote-inner { position:relative; z-index:2; max-width:820px; margin:0 auto; opacity:0; will-change:transform, opacity; }
.quote-big-mark {
  font-family:'Cormorant Garamond', serif;
  font-size:5rem; line-height:.6; color:var(--terra);
  opacity:.55; display:block; margin-bottom:1.5rem;
}
.quote-section blockquote {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.4rem,3.2vw,2.3rem);
  font-weight:300; font-style:italic; line-height:1.5; opacity:.97;
}
.quote-attr {
  margin-top:1.6rem; font-size:.8rem; letter-spacing:.16em;
  text-transform:uppercase; color:rgba(255,255,255,.72);
}
.quote-ghost {
  position:absolute; right:4%; top:50%; transform:translateY(-50%);
  width:22%; max-width:250px; opacity:.06; pointer-events:none; z-index:1;
}

/* ── HOME: ABOUT TEASER ─────────────────────────────── */
.about-section { background:var(--paper); }
.about-grid { display:grid; grid-template-columns:.9fr 1fr; gap:5rem; align-items:center; }
.about-wrap { position:relative; }
.about-wrap::before {
  content:''; position:absolute;
  top:20px; left:-20px; right:20px; bottom:-20px;
  border:1px solid var(--terra); border-radius:4px;
  opacity:.4; z-index:0;
}
.about-photo {
  position:relative; z-index:1;
  aspect-ratio:3/4; border-radius:4px; overflow:hidden;
  box-shadow:0 28px 56px -18px rgba(42,58,61,.28);
}
.about-photo img {
  width:100%; height:100%; object-fit:cover; object-position:center top;
  filter:saturate(.92) contrast(.98);
  transition:transform 8s ease-out;
}
/* scroll-parallax mode (desktop only, added by main.js): the hover-zoom
   transition would fight rAF transform writes, so it's suspended while
   .parallax is active and the two effects never run at once */
/* .parallax: main.js now drives this image's transform inline on
   scroll (translateY + a fixed 1.08 scale for cover headroom). The
   inline style always outranks the .about-photo:hover rule above by
   specificity, so the two effects never visibly fight — the hover
   rule simply goes dormant for the parallax's lifetime. */
.about-photo.parallax img { transition:none; will-change:transform; }
.about-photo:hover img { transform:scale(1.04); }
.about-stats { display:flex; gap:2.5rem; margin:2.2rem 0; flex-wrap:wrap; }
.about-stat { padding-left:1.2rem; border-left:1px solid rgba(201,168,130,.35); }
.about-stat strong {
  display:block; font-family:'Cormorant Garamond', serif;
  font-size:2.4rem; font-weight:300; color:var(--teal); line-height:1;
}
.about-stat small { font-size:.7rem; color:var(--muted); letter-spacing:.05em; }

/* ── HOME: LANDSCHAFT — stiller Naturstreifen, an den Stil
   der übrigen Bildwelt angeglichen (hell, entsättigt, verschleiert) ── */
.land-band { display:grid; grid-template-columns:repeat(3,1fr); height:440px; overflow:hidden; }
.land-panel { position:relative; margin:0; overflow:hidden; }
.land-panel img {
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.7) contrast(.94) brightness(1.03);
  transition:transform 9s ease-out;
}
.land-panel:hover img { transform:scale(1.05); }
.land-panel.parallax img { transition:none; will-change:transform; } /* see .about-photo.parallax note above */
/* sanfter Cream/Teal-Schleier, wie bei .section-veiled */
.land-panel::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(165deg, rgba(247,242,232,.22) 0%, rgba(247,242,232,.06) 45%, rgba(26,92,74,.14) 100%);
}

/* ── VEILED SECTION — photo behind a soft paper veil ── */
.section-veiled { position:relative; overflow:hidden; }
.section-veiled::before {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(rgba(247,242,232,.93), rgba(247,242,232,.88)),
    url('../img/nature-blossom.jpg') center/cover no-repeat;
  filter:saturate(.68);
}
.section-veiled::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size:32px 32px; opacity:.3;
}
.section-veiled .section-inner { position:relative; z-index:1; }
/* Alternative Überlagerung (Editor: Ojo-Symbol → Bild-Überlagerung):
   weiß oder schwarz statt des Standard-Cremeverlaufs, mit einstellbarer
   Deckkraft über die CSS-Variable --veil-op (vom Editor per Inline-Style
   gesetzt). Ohne [data-veil] bleibt der ursprüngliche Verlauf aktiv. */
.section-veiled[data-veil="white"]::before {
  background:
    linear-gradient(rgba(255,255,255,var(--veil-op,.7)), rgba(255,255,255,var(--veil-op,.7))),
    url('../img/nature-blossom.jpg') center/cover no-repeat;
}
.section-veiled[data-veil="black"]::before {
  background:
    linear-gradient(rgba(0,0,0,var(--veil-op,.5)), rgba(0,0,0,var(--veil-op,.5))),
    url('../img/nature-blossom.jpg') center/cover no-repeat;
}

/* ── CARDS (Ansatz / Angebot / Ressourcen) ──────────── */
.approach-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-top:3rem; }
/* gentle editorial wave on desktop (Ansatz cards excluded: client wants them uniform) */
@media (min-width:1001px) {
  .testimonials-grid .testimonial-card:nth-child(2) { margin-top:2.4rem; }
}
.approach-card {
  display:block; text-align:center; padding:2rem 1.5rem;
  border-radius:10px; border:1px solid var(--gray);
  background:#fff; transition:all .4s; color:inherit;
}
.approach-card:hover { border-color:var(--teal); transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,.05); color:inherit; }
.approach-icon {
  width:88px; height:88px; border-radius:50%;
  background:var(--paper); margin:0 auto 1.25rem;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); transition:all .3s;
}
.approach-card:hover .approach-icon { background:var(--teal); color:#fff; }
.approach-icon svg { width:60px; height:60px; transition:transform .45s var(--ease-soft); }
.approach-card:hover .approach-icon svg { transform:rotate(8deg) scale(1.1); }
.approach-card h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:1.1rem; font-weight:500; color:var(--ink); margin-bottom:.5rem;
}
.approach-card p { font-size:.78rem; color:var(--muted); line-height:1.65; }
.approach-more { font-size:.72rem; color:var(--terra); display:inline-block; margin-top:.8rem; letter-spacing:.06em; }

/* header row for Ressourcen: centered lede + CTA under the centered title block */
.res-head {
  display:flex; justify-content:center; align-items:center;
  gap:1.5rem; flex-wrap:wrap; text-align:center;
  max-width:640px; margin:0 auto;
}
.res-head .section-text { margin:0; max-width:none; }
.res-head .btn { flex-shrink:0; }

.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.resource-card { border-radius:10px; overflow:hidden; border:1px solid var(--gray); transition:all .4s; background:#fff; display:block; color:inherit; }
.resource-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,.05); border-color:var(--teal); color:inherit; }
.rc-img { height:150px; background:var(--paper); display:flex; align-items:center; justify-content:center; color:var(--terra); }
.rc-img svg { transition:transform .45s var(--ease-soft); }
.resource-card:hover .rc-img svg { transform:translateY(-4px) scale(1.08); }
.rc-body { padding:1.25rem; }
.rc-body h3 { font-family:'Cormorant Garamond', serif; font-size:1.1rem; color:var(--ink); margin-bottom:.4rem; }
.rc-body p { font-size:.78rem; color:var(--muted); line-height:1.6; }
.rc-tag {
  display:inline-block; font-size:.62rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--teal); background:rgba(26,92,74,.08);
  padding:3px 8px; border-radius:3px; margin-bottom:.6rem;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; margin-top:3rem; }
.testimonial-card { background:#fff; padding:2.5rem; border-radius:10px; position:relative; transition:transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(0,0,0,.05); }
.tc-q { font-family:'Cormorant Garamond', serif; font-size:3rem; color:var(--terra); line-height:1; margin-bottom:.5rem; }
.testimonial-card blockquote { font-size:.88rem; font-style:italic; color:var(--body); line-height:1.8; margin-bottom:1.5rem; }
.t-attr { font-size:.82rem; font-weight:500; color:var(--teal); }
.t-attr span { display:block; font-weight:300; color:var(--muted); font-size:.76rem; margin-top:.15rem; }

/* ── SUBPAGE: HERO ──────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(rgba(241,234,218,.93), rgba(247,242,232,.97)),
    url('../img/nature-blossom.jpg') center/cover no-repeat;
  position:relative; overflow:hidden;
  padding:calc(var(--nav-h) + 5rem) 2rem 4.5rem;
}
.page-hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size:32px 32px; opacity:.25;
}
.page-hero-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.page-hero .section-label { opacity:0; animation:fadeUp .9s .15s forwards; }
.page-hero h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2rem,4.6vw,3.2rem);
  font-weight:300; color:var(--teal); line-height:1.15;
  max-width:760px; opacity:0; animation:fadeUp .9s .3s forwards;
}
.page-hero .page-lede {
  margin-top:1.4rem; max-width:640px;
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.1rem,1.9vw,1.45rem); font-style:italic;
  color:var(--ink); line-height:1.55;
  opacity:0; animation:fadeUp .9s .45s forwards;
}
.page-hero-mark {
  position:absolute; right:3%; top:50%; transform:translateY(-50%);
  width:26%; max-width:300px; opacity:.07; pointer-events:none;
}
.page-hero-mark--center { right:auto; left:50%; transform:translate(-50%,-50%); }

/* ── SUBPAGE: PROSE ─────────────────────────────────── */
.prose { max-width:720px; margin:0 auto; font-size:.95rem; line-height:1.85; }
.prose > * + * { margin-top:1.2rem; }
.prose h2 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.45rem,2.6vw,1.9rem); font-weight:400;
  color:var(--teal); line-height:1.25; margin-top:3.2rem;
}
.prose h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:1.2rem; font-weight:500; color:var(--ink); margin-top:2.2rem;
}
.prose ul { list-style:none; }
.prose ul li { position:relative; padding-left:1.6rem; margin-top:.7rem; }
.prose ul li::before {
  content:''; position:absolute; left:0; top:.72em;
  width:14px; height:1px; background:var(--terra);
}
.prose em { color:var(--ink); }
.prose .lead-q {
  font-family:'Cormorant Garamond', serif;
  font-size:1.25rem; font-style:italic; color:var(--teal); line-height:1.6;
}
.prose blockquote {
  border-left:2px solid var(--terra); padding:.4rem 0 .4rem 1.5rem;
  font-family:'Cormorant Garamond', serif;
  font-size:1.18rem; font-style:italic; color:var(--ink); line-height:1.6;
}
.locations {
  display:flex; gap:.6rem; flex-wrap:wrap; margin-top:2.4rem;
}
.locations span {
  font-size:.7rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--teal); background:rgba(26,92,74,.08);
  padding:.3rem .8rem; border-radius:99px;
}

/* steps (Ablauf) */
.steps { counter-reset:step; margin-top:1.6rem; }
.step { display:flex; gap:1.4rem; padding:1.3rem 0; border-top:1px solid rgba(201,168,130,.2); }
.step:last-child { border-bottom:1px solid rgba(201,168,130,.2); }
.step::before {
  counter-increment:step; content:counter(step, decimal-leading-zero);
  font-family:'Cormorant Garamond', serif;
  font-size:1.7rem; font-weight:300; color:var(--terra); opacity:.55;
  flex-shrink:0; width:2.6rem; line-height:1.2;
}
.step h3 { font-family:'Cormorant Garamond', serif; font-size:1.12rem; font-weight:500; color:var(--ink); margin:0 0 .25rem; }
.step p { font-size:.88rem; line-height:1.75; }

/* highlight panel (GROW, MBSR, Retreats) */
.panel {
  background:#fff; border:1px solid var(--gray); border-radius:10px;
  padding:2.2rem 2.4rem; margin-top:2rem;
  transition:border-color .4s, box-shadow .4s;
}
.panel:hover { border-color:var(--teal); box-shadow:0 8px 28px rgba(0,0,0,.05); }
.panel h3 { margin-top:0 !important; }
.panel .pill {
  display:inline-block; font-size:.62rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--terra); background:rgba(201,168,130,.12);
  padding:3px 10px; border-radius:99px; margin-bottom:.9rem;
}

/* Grundmotivationen */
.gm-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:2rem; }
.gm-card { background:#fff; border:1px solid var(--gray); border-radius:10px; padding:1.8rem; transition:all .4s; }
.gm-card:hover { border-color:var(--teal); transform:translateY(-3px); box-shadow:0 8px 28px rgba(0,0,0,.05); }
.gm-card h3 { font-family:'Cormorant Garamond', serif; font-size:1.12rem; font-weight:500; color:var(--teal); margin:0 0 .3rem; }
.gm-card .gm-q { font-family:'Cormorant Garamond', serif; font-size:1.02rem; font-style:italic; color:var(--ink); margin-bottom:.6rem; }
.gm-card p { font-size:.82rem; line-height:1.7; color:var(--body); }

/* CV lists (Über mich) */
.cv-block h2 {
  font-family:'Cormorant Garamond', serif;
  font-size:1.5rem; font-weight:400; color:var(--teal); margin:3rem 0 1rem;
}
.cv-list { list-style:none; }
.cv-list li {
  padding:.85rem 0 .85rem 1.6rem; position:relative;
  border-bottom:1px solid rgba(201,168,130,.14);
  font-size:.88rem; line-height:1.7;
}
.cv-list li::before {
  content:''; position:absolute; left:0; top:1.45em;
  width:14px; height:1px; background:var(--terra);
  transform:scaleX(0); transform-origin:left;
  transition:transform .7s var(--ease-soft) .15s;
}
.reveal.visible .cv-list li::before,
.cv-list li.visible::before { transform:scaleX(1); }
/* stagger each tick mark slightly after the previous one, echoing
   the list's natural reading order */
.cv-list li:nth-child(1)::before { transition-delay:.1s; }
.cv-list li:nth-child(2)::before { transition-delay:.18s; }
.cv-list li:nth-child(3)::before { transition-delay:.26s; }
.cv-list li:nth-child(4)::before { transition-delay:.34s; }
.cv-list li:nth-child(5)::before { transition-delay:.42s; }
.cv-list li:nth-child(6)::before { transition-delay:.5s; }
.cv-list li:nth-child(n+7)::before { transition-delay:.56s; }
.cv-list li small { color:var(--muted); }

/* ── CTA BAND (Kontakt buttons, shared) ─────────────── */
.cta-band {
  background:
    linear-gradient(135deg, rgba(26,92,74,.94) 0%, rgba(42,58,61,.92) 100%),
    url('../img/nature-pine.jpg') center/cover no-repeat;
  color:#fff; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(247,242,232,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,242,232,.055) 1px, transparent 1px);
  background-size:32px 32px;
}
.cta-band .section-label { color:var(--sage); }
.cta-band .section-title { color:#fff; }
.cta-band .section-text { color:rgba(255,255,255,.68); margin:0 auto 2.5rem; }
.contact-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-ghost {
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:30%; max-width:280px; opacity:.07; pointer-events:none;
}
.cta-shimmer {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background:linear-gradient(105deg, transparent 20%, rgba(255,255,255,.042) 50%, transparent 80%);
  background-size:300% 100%; animation:shimmerSweep 11s linear infinite;
}
@keyframes shimmerSweep { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }
.cta-band .section-inner { position:relative; z-index:1; }
.contact-note { margin-top:1.6rem; font-size:.78rem; color:rgba(255,255,255,.55); }
.contact-note a { color:rgba(255,255,255,.85); text-decoration:underline; }

/* ── LEGAL PAGES ────────────────────────────────────── */
.legal .prose { font-size:.88rem; }
.legal .prose h2 { font-size:1.35rem; margin-top:2.6rem; }
.legal .prose h3 { font-size:1.05rem; }
.legal address { font-style:normal; line-height:1.8; }

/* ═════════════════════════════════════════════════════
   MEADOW FOOTER — grass integrated as page background
   ═════════════════════════════════════════════════════ */
.footer-meadow {
  position:relative; overflow:hidden;
  background:var(--paper);
  padding:4.5rem 2rem 12rem;
}
.footer-grass {
  position:absolute; left:0; right:0; bottom:-2px;
  height:240px; pointer-events:none; z-index:0;
  /* fade blades in softly so the meadow has no hard upper edge */
  -webkit-mask-image:linear-gradient(to bottom, transparent 0, #000 38%);
          mask-image:linear-gradient(to bottom, transparent 0, #000 38%);
}
.grass-svg { width:100%; height:100%; display:block; }
.grass-layer-back  { opacity:.55; filter:blur(.4px); }
.grass-layer-mid   { opacity:.88; }
.grass-layer-front { opacity:1; }
/* warm ground glow behind the blades, blends into the paper bg */
.footer-meadow::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:200px;
  pointer-events:none; z-index:0;
  background:radial-gradient(120% 100% at 50% 100%, rgba(175,195,187,.22) 0%, rgba(175,195,187,.08) 45%, transparent 75%);
}
/* wind sway — multi-phase, asymmetric, slightly irregular so the
   movement reads as wind rather than a metronome */
@keyframes sway-slow {
  0%,100% { transform:rotate(-1.1deg); }
  38% { transform:rotate(1.6deg); }
  68% { transform:rotate(.3deg); }
  85% { transform:rotate(1deg); }
}
@keyframes sway-mid {
  0%,100% { transform:rotate(-1.7deg) skewX(-.3deg); }
  42% { transform:rotate(2.6deg) skewX(.5deg); }
  70% { transform:rotate(.6deg) skewX(0deg); }
  88% { transform:rotate(1.6deg) skewX(.3deg); }
}
@keyframes sway-strong {
  0%,100% { transform:rotate(-2.2deg) skewX(-.6deg); }
  36% { transform:rotate(3.5deg) skewX(.8deg); }
  60% { transform:rotate(1deg) skewX(.2deg); }
  80% { transform:rotate(2.4deg) skewX(.5deg); }
}
@keyframes sway-gust {
  0%,100% { transform:rotate(-1.2deg) skewX(-.4deg); }
  25% { transform:rotate(.3deg) skewX(0deg); }
  48% { transform:rotate(3.6deg) skewX(.9deg); }
  64% { transform:rotate(2deg) skewX(.4deg); }
  82% { transform:rotate(2.8deg) skewX(.6deg); }
}
.footer-inner {
  max-width:1100px; margin:0 auto; position:relative; z-index:1;
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:2rem; flex-wrap:wrap;
}
.footer-logo { display:flex; align-items:center; gap:.6rem; }
.footer-brand img { height:24px; width:auto; display:block; opacity:1; }
.footer-brand .footer-mark { height:30px; opacity:.92; margin-bottom:0; }
.footer-tag { font-size:.7rem; color:var(--muted); letter-spacing:.06em; margin-top:.8rem; }
.footer-nav { display:flex; gap:2rem; }
.footer-nav a { font-size:.78rem; color:var(--muted); }
.footer-nav a:hover { color:var(--teal); }
.footer-copy { font-size:.7rem; color:var(--muted); opacity:.7; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width:1000px) {
  .services-two-col { grid-template-columns:1fr; }
  .services-right { display:none; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-photo { max-height:65vh; }
  .about-wrap::before { left:-12px; right:12px; top:12px; bottom:-12px; }
  .approach-grid { grid-template-columns:repeat(2,1fr); }
  .land-band { grid-template-columns:1fr; height:auto; }
  .land-panel { height:320px; }
  .testimonials-grid { grid-template-columns:1fr; }
  .resources-grid { grid-template-columns:repeat(2,1fr); }
  .gm-grid { grid-template-columns:1fr; }
  .page-hero-mark { display:none; }
}
@media (max-width:740px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .land-panel { height:260px; }
  .approach-grid { grid-template-columns:1fr 1fr; }
  .resources-grid { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; gap:1.4rem; }
  .footer-meadow { padding-bottom:11rem; }
}
@media (max-width:500px) {
  .section { padding:4rem 1.25rem; }
  .hero-brandmark { height:140px; }
  .section-mark { height:36px; }
  .page-hero { padding-left:1.25rem; padding-right:1.25rem; }
  .approach-grid { grid-template-columns:1fr; }
  .contact-btns { flex-direction:column; align-items:center; }
  .panel { padding:1.6rem 1.4rem; }
}

/* ── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right,
  .services-tag, .services-headline, .services-lede,
  .service-item, .hero-actions, .services-photo-wrap,
  .hero-brandmark,
  .page-hero .section-label, .page-hero h1, .page-hero .page-lede,
  .quote-inner, .section-mark { opacity:1 !important; transform:none !important; filter:none !important; }
  .section-mark { opacity:.5 !important; }
  .services-right-mark { opacity:.17 !important; }
  .reveal .divider, .reveal-left .divider, .reveal-right .divider { transform:scaleX(1); }
  .cv-list li::before { transform:scaleX(1) !important; }
  /* disable JS-driven scroll parallax entirely — transforms are reset
     inline by main.js when this media query matches, this is a
     stylesheet-level backstop in case that ever changes */
  .about-photo.parallax img, .land-panel.parallax img, .photo-band-panel.parallax img,
  .quote-photo-bg, .quote-inner { transform:none !important; }
}

/* ═══════════════════════════════════════════════════════
   ÜBERARBEITUNG — Juni 2026
   (Boxen, kleinerer Hero-Rahmen, Logo-Schatten, Einzelbild,
    Audio-Player, Safari-Fix)
   ═══════════════════════════════════════════════════════ */

/* ── Hero: kleinerer Foto-Rahmen (wie About me) + ohne Hintergrund-Logo ── */
.services-right { max-width:340px; margin:0 auto; }
.services-photo-wrap {
  aspect-ratio:3/4; max-height:none; max-width:100%;
  border-radius:4px;
  box-shadow:0 28px 56px -18px rgba(42,58,61,.28);
}
.services-right::after { border-radius:4px; }

/* ── Angebot als anklickbare Boxen ──────────────────── */
.services-boxes {
  border-top:none !important;
  display:grid; grid-template-columns:1fr 1fr; gap:.9rem;
  margin-top:.4rem;
}
.services-boxes .service-item {
  position:relative;
  flex-direction:column; align-items:flex-start; gap:.4rem;
  padding:1.05rem 1.15rem 1.05rem 1.15rem;
  border:1px solid rgba(201,168,130,.28);
  border-bottom:1px solid rgba(201,168,130,.28);
  border-radius:10px; background:rgba(255,255,255,.5);
  transition:border-color .35s var(--ease-soft), transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), background .35s;
}
.services-boxes .service-item:hover {
  padding-left:1.15rem; transform:translateY(-3px);
  border-color:var(--teal); background:#fff;
  box-shadow:0 10px 26px rgba(42,58,61,.08);
}
.services-boxes .svc-num { display:none; }
.services-boxes .service-item h3 { flex:none; font-size:1.05rem; }
.services-boxes .svc-item-arrow { position:absolute; right:1.1rem; bottom:1.05rem; }
@media (max-width:500px){ .services-boxes { grid-template-columns:1fr; } }

/* ── About-Grid etwas enger ─────────────────────────── */
.about-grid--tight { gap:3rem; grid-template-columns:.8fr 1fr; }
.about-grid--tight .prose { font-size:.9rem; }
@media (max-width:1000px){ .about-grid--tight { grid-template-columns:1fr; gap:2.4rem; } }

/* ── Einzelnes Naturbild (ersetzt land-band) ────────── */
.photo-band { width:100%; overflow:hidden; }
.photo-band-panel { margin:0; height:440px; overflow:hidden; position:relative; }
.photo-band-panel img {
  width:100%; height:100%; object-fit:cover; object-position:center 15%;
  filter:saturate(.7) contrast(.94) brightness(1.03);
  transition:transform 9s ease-out;
}
.photo-band:hover .photo-band-panel img { transform:scale(1.04); }
.photo-band-panel.parallax img { transition:none; will-change:transform; } /* see .about-photo.parallax note above */
.photo-band-panel::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(165deg, rgba(247,242,232,.22) 0%, rgba(247,242,232,.06) 45%, rgba(26,92,74,.14) 100%);
}
@media (max-width:1000px){ .photo-band-panel { height:320px; } }
@media (max-width:740px){ .photo-band-panel { height:260px; } }

/* ── Farbüberlagerung für Bilder (Editor: „Bild ändern“ → Farbfilter) ──
   HINWEIS: ein inset-box-shadow direkt auf <img> zeichnet NICHT über die
   Bildpixel (Browser malen das Ersetzungsinhalt eines <img> über box-shadow/
   background) — das haben wir zunächst falsch angenommen. Zuverlässig ist
   nur ein echtes Overlay-Element: der Editor umschließt das <img> mit einem
   schlanken <span class="cb-tint-wrap"> und legt ein <span class="cb-tint-
   overlay"> als Geschwister darüber — funktioniert unabhängig vom
   umgebenden Layout, weil der Wrapper selbst position:relative bekommt. */
.cb-tint-wrap { position:relative; display:block; width:100%; height:100%; }
.cb-tint-overlay { position:absolute; inset:0; pointer-events:none; }
/* Verlauf statt Vollton: oben transparent, nach unten hin sanft eingefärbt —
   wirkt leichter/edler als eine flache Fläche und lässt den oberen
   Bildbereich (meist der interessanteste) unverschleiert. Die Deckkraft
   ist gegenüber der ursprünglichen Vollton-Version deutlich reduziert. */
.cb-tint-overlay--light  { background:linear-gradient(180deg, rgba(247,242,232,.05) 0%, rgba(247,242,232,.3) 45%, rgba(247,242,232,.62) 100%); }
.cb-tint-overlay--medium { background:linear-gradient(180deg, rgba(26,92,74,.1) 0%, rgba(26,92,74,.38) 45%, rgba(26,92,74,.7) 100%); }
.cb-tint-overlay--dark   { background:linear-gradient(180deg, rgba(26,92,74,.18) 0%, rgba(26,92,74,.52) 45%, rgba(26,92,74,.86) 100%); }

/* ── Testimonials: Welle auch bei 4 Karten ──────────── */
@media (min-width:1001px){
  .testimonials-grid .testimonial-card:nth-child(even) { margin-top:2.4rem; }
}

/* ── Audio-Player (Ressourcen) ──────────────────────── */
.audio-list { margin-top:1.4rem; display:flex; flex-direction:column; gap:.9rem; }
.audio-item {
  display:flex; flex-direction:column; gap:.55rem;
  padding:1rem 1.1rem; border:1px solid var(--gray);
  border-radius:10px; background:var(--paper);
}
.audio-meta { display:flex; align-items:baseline; gap:.7rem; }
.audio-num { font-family:'Cormorant Garamond', serif; font-size:1.3rem; color:var(--terra); opacity:.55; line-height:1; }
.audio-title { font-size:.9rem; color:var(--ink); }
.audio-player { width:100%; height:38px; }

/* ── Safari-Fix: mix-blend-mode über einem feTurbulence-SVG
      kann in Safari die gesamte Hero-Section schwarz rendern.
      Ohne Blend bleibt das Korn dezent und cross-browser stabil. ── */
.hero-grain { mix-blend-mode:normal; opacity:.03; }

/* ═══════════════════════════════════════════════════════
   PODCAST-ERWEITERUNG — Juli 2026
   (Referenz-Attribution, Audio-Deep-Links, Folgenliste,
    Plattform-Buttons, Broschüren, Frageformular)
   ═══════════════════════════════════════════════════════ */

/* ── TESTIMONIALS: .t-name / .t-role ─────────────────────
   Markup wechselte von Textknoten + <span> zu zwei benannten
   <span>-Elementen. „.t-attr span“ (oben) bleibt als kompatible
   Basis stehen; diese beiden Regeln haben durch die doppelte
   Klasse höhere Spezifität und übernehmen gezielt Name/Rolle —
   das Ergebnis bleibt optisch identisch zum bisherigen Stand. ── */
.t-attr .t-name {
  display:block; font-size:.82rem; font-weight:500; color:var(--teal); margin-top:0;
}
.t-attr .t-role {
  display:block; font-weight:300; color:var(--muted); font-size:.76rem; margin-top:.15rem;
}

/* ── AUDIO: Deep-Link je Folge (Permalink für Shownotes) ── */
.audio-meta { position:relative; }
.audio-link {
  margin-left:auto; flex-shrink:0;
  font-size:.72rem; letter-spacing:.02em; color:var(--muted); opacity:.55;
  transition:opacity .3s, color .3s;
}
.audio-link:hover, .audio-link:focus-visible { opacity:1; color:var(--teal); }
.audio-item {
  scroll-margin-top:calc(var(--nav-h) + 1.5rem);
  transition:border-color .5s var(--ease-soft), background-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.audio-item:target { border-color:var(--terra); background:var(--cream); box-shadow:0 0 0 3px rgba(201,168,130,.18); }

/* ── AUDIO: Download-Link je Audio (wird per main.js neben dem
   „#“-Permalink ergänzt, sobald das <audio> eine Quelle hat) ── */
.audio-dl {
  flex-shrink:0; display:inline-flex; align-items:center; justify-content:center;
  font-size:.95rem; line-height:1; color:var(--muted); opacity:.55;
  transition:opacity .3s, color .3s; text-decoration:none;
}
.audio-dl:hover, .audio-dl:focus-visible { opacity:1; color:var(--teal); }

/* ── EPISODEN: Direktlink je Folge (analog zu .audio-link) ── */
.episode-item { position:relative; }
.ep-link {
  position:absolute; top:1.1rem; right:1.1rem;
  font-size:.72rem; letter-spacing:.02em; color:var(--muted); opacity:.55;
  transition:opacity .3s, color .3s; text-decoration:none;
}
.ep-link:hover, .ep-link:focus-visible { opacity:1; color:var(--teal); }

/* ── EPISODEN (Podcast-Folgen) ───────────────────────────
   Liste ist anfangs leer — .episode-empty bleibt sichtbar,
   solange keine Folge im Editor angelegt wurde; sobald die Liste
   Inhalt hat, blendet der reine CSS-Selektor unten die Meldung aus. ── */
.episode-list { margin-top:1.4rem; }
.episode-list:empty { display:none; margin-top:0; }
/* Nur wenn die Liste flach ist (Editor, bevor das Anzeige-Skript sie in
   .ep-featured/.ep-scroll gruppiert): Abstand zwischen den Karten. */
.episode-list > .episode-item + .episode-item { margin-top:.9rem; }
.episode-list:not(:empty) + .episode-empty { display:none; }
.episode-item {
  display:flex; flex-direction:column; gap:.7rem;
  padding:1.1rem 1.1rem 1.2rem; border:1px solid var(--gray);
  border-radius:12px; background:var(--paper);
  scroll-margin-top:calc(var(--nav-h) + 1.5rem);
  transition:border-color .5s var(--ease-soft), background-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.episode-item:target { border-color:var(--terra); background:var(--cream); box-shadow:0 0 0 3px rgba(201,168,130,.18); }
.ep-num {
  display:block; font-family:'Cormorant Garamond', serif; font-size:1.1rem;
  color:var(--terra); opacity:.55; line-height:1; margin-bottom:.15rem;
}
.ep-body { min-width:0; font-size:.88rem; line-height:1.6; color:var(--body); }
.ep-body h3, .ep-body h4, .ep-body .ep-title {
  font-family:'Cormorant Garamond', serif; font-size:1.02rem; font-weight:500;
  color:var(--ink); margin:0 0 .2rem;
}
.ep-body p { margin:0; font-size:.82rem; color:var(--muted); }
.ep-embed-wrap { border-radius:12px; overflow:hidden; line-height:0; background:var(--sand); }
.ep-embed { display:block; width:100%; border:0; }
.episode-empty {
  font-style:italic; color:var(--muted); text-align:center;
  padding:1.4rem .5rem; font-size:.85rem;
}

/* ── EPISODEN: Anzeigemuster der öffentlichen Seite (3 Karten + Side-Scroll
   bis 9 + „Alle Folgen anzeigen“) — wird per JS aufgebaut (siehe ressourcen.html),
   NICHT im Editor (dort bleibt die Liste flach & bearbeitbar).
   Der Podcast-Block steckt in .prose (max-width:720px) + .panel-Padding —
   real nutzbare Breite ~640px. Ein 3-Spalten-Grid würde jede Spotify-
   Einbettung auf ~190px zusammenquetschen (Titel/Cover werden abgeschnitten),
   deshalb bleiben die 3 vorgestellten Folgen volle Breite, gestapelt. ── */
.ep-featured {
  display:flex; flex-direction:column; gap:1.4rem;
}
.ep-scroll {
  display:flex; gap:1.1rem; margin-top:1.4rem;
  overflow-x:auto; padding:.2rem .1rem 1rem;
  scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
}
.ep-scroll::-webkit-scrollbar { height:7px; }
.ep-scroll::-webkit-scrollbar-thumb { background:var(--gray); border-radius:99px; }
.ep-scroll > .episode-item { flex:0 0 min(360px, 84vw); scroll-snap-align:start; }
.episode-item[hidden] { display:none; }
.ep-more-btn { display:block; margin:1.2rem auto 0; }

/* ── Temporärer Hervorheb-Flash bei Deep-Link-Ankunft ────
   Ergänzt .audio-item:target / .episode-item:target: main.js
   fügt „hash-flash“ beim Laden bzw. bei hashchange hinzu und
   entfernt die Klasse nach 2s wieder — ein kurzer Puls statt
   eines dauerhaften Zustands. ── */
.audio-item.hash-flash, .episode-item.hash-flash { animation:hashFlash 2s var(--ease-soft); }
@keyframes hashFlash {
  0%   { box-shadow:0 0 0 4px rgba(201,168,130,.32); border-color:var(--terra); background:var(--cream); }
  100% { box-shadow:0 0 0 0 rgba(201,168,130,0); }
}

/* ── PODCAST-PLATTFORMEN ─────────────────────────────── */
.platform-links { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.2rem; }
.platform-btn {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.76rem; font-weight:500; letter-spacing:.03em;
  color:var(--teal); border:1px solid var(--teal); border-radius:99px;
  padding:.55rem 1.2rem; background:transparent; transition:all .3s;
}
.platform-btn:hover, .platform-btn:focus-visible { background:var(--teal); color:#fff; }
.platform-btn.is-soon {
  color:var(--muted); border:1px dashed var(--gray);
  opacity:.6; cursor:default; pointer-events:none;
}
.platform-btn.is-soon:hover { background:none; color:var(--muted); }

/* ── FOLLETOS PDF (Broschüren, mindfulness.html) ─────────
   .is-empty: „Broschüre folgt in Kürze“ — kein Link-Cursor,
   kein Hover, .doc-meta übernimmt den Hinweistext. ── */
.doc-list { display:flex; flex-direction:column; gap:.8rem; margin-top:1.4rem; }
.doc-item {
  display:flex; align-items:center; gap:.9rem;
  padding:1rem 1.1rem; border:1px solid var(--gray); border-radius:10px;
  background:#fff; color:inherit;
  transition:border-color .35s, box-shadow .35s, transform .35s;
}
.doc-item:hover { border-color:var(--teal); box-shadow:0 8px 24px rgba(0,0,0,.05); transform:translateY(-2px); }
.doc-icon {
  flex-shrink:0; font-family:'Inter', monospace;
  font-size:.62rem; font-weight:700; letter-spacing:.12em;
  color:var(--terra); border:1px solid var(--terra); border-radius:4px;
  padding:.25rem .5rem;
}
/* .doc-head: kleines Label über der Broschüren-Liste (Markup von
   Agent E, nicht im Contract gelistet — hier ergänzt, damit es nicht
   als unstylter <p> im .prose-Fluss auftaucht) */
.doc-head {
  font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--terra); margin-top:1.6rem; margin-bottom:.5rem;
}
.doc-head + .doc-list { margin-top:0; }
.doc-name { flex:1; font-size:.88rem; color:var(--ink); }
.doc-meta { flex-shrink:0; font-size:.72rem; color:var(--muted); }
.doc-item.is-empty { cursor:default; pointer-events:none; opacity:.6; }
.doc-item.is-empty:hover { border-color:var(--gray); box-shadow:none; transform:none; }
.doc-item.is-empty .doc-meta { font-style:italic; }
@media (max-width:500px) {
  .doc-item { flex-wrap:wrap; }
  .doc-meta { width:100%; }
}

/* ── FRAGEFORMULAR (Podcast-Frage, ressourcen.html) ──────
   Ruhige Formularsprache, konsistent mit .panel/.pf-Feldern:
   var(--paper)-Grund, var(--gray)-Rahmen, 8–10px Radius, Fokus
   in var(--teal). .pf-hp ist der Honeypot: bewusst NICHT
   display:none/visibility:hidden (Bots mit Feature-Erkennung
   würden das durchschauen), sondern off-screen positioniert,
   für Menschen unsichtbar, für Formular-Parser weiter vorhanden. ── */
.pod-form { max-width:620px; margin-top:1.6rem; }
.pf-field { margin-top:1.2rem; }
.pf-field:first-child { margin-top:0; }
.pf-label { display:block; font-size:.82rem; font-weight:500; color:var(--ink); margin-bottom:.4rem; }
.pf-label span { display:inline; font-weight:300; color:var(--muted); font-size:.74rem; margin-left:.35rem; }
.pf-input, .pf-textarea {
  display:block; width:100%; font-family:'Inter', sans-serif;
  font-size:.9rem; color:var(--body); background:var(--paper);
  border:1px solid var(--gray); border-radius:8px;
  padding:.75rem .9rem; transition:border-color .3s, box-shadow .3s;
}
.pf-textarea { min-height:140px; resize:vertical; line-height:1.6; }
.pf-input:focus, .pf-textarea:focus {
  outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(26,92,74,.12);
}
.pf-input:focus-visible, .pf-textarea:focus-visible { outline:2px solid var(--teal); outline-offset:2px; }
.pf-check {
  display:flex; align-items:flex-start; gap:.65rem; margin-top:1.4rem;
  font-size:.82rem; line-height:1.6; color:var(--body); cursor:pointer;
}
.pf-check input[type="checkbox"] {
  flex-shrink:0; width:18px; height:18px; margin-top:.15rem;
  accent-color:var(--teal); cursor:pointer;
}
.pf-actions { margin-top:1.5rem; display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.pf-note { margin-top:1.1rem; font-size:.78rem; line-height:1.75; color:var(--muted); }
.pf-msg { margin-top:1.2rem; padding:.8rem 1rem; border-radius:8px; font-size:.84rem; line-height:1.6; }
.pf-msg[hidden] { display:none; }
.pf-msg.ok { color:var(--teal); background:rgba(26,92,74,.08); }
.pf-msg.err { color:#8a6238; background:rgba(201,168,130,.18); } /* gedecktes Terra-Braun, ausreichend Kontrast auf hellem Grund */
.pf-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
@media (max-width:500px) {
  .pod-form { max-width:none; }
  .pf-input, .pf-textarea { font-size:16px; } /* verhindert iOS-Auto-Zoom */
}

@media (prefers-reduced-motion: reduce) {
  .audio-item.hash-flash, .episode-item.hash-flash { animation:none; }
}

/* ── RESOURCE DIVIDER (ressourcen.html) ───────────────────────────
   Trennt innerhalb des Panels "Audios" die Unterabschnitte "Geführte
   Audios" (Mindfulness) und "Podcast-Ressourcen". .divider (siehe oben)
   ist als kurzer 60px-Akzent unter Überschriften konzipiert und passt
   hier nicht — dies ist eine volle, dünne Trennlinie zwischen zwei
   Inhaltsblöcken innerhalb desselben Panels. ── */
.resource-divider {
  border:none; border-top:1px solid var(--gray);
  margin:2.2rem 0;
}

/* ── AUDIO-LEERSTAND (Podcast-Ressourcen, ressourcen.html) ────────
   Analog zu .episode-empty/.episode-list oben: .audio-empty bleibt
   sichtbar, solange data-cb-list="podcastaudios" leer ist; sobald der
   Editor dort Audios anlegt, blendet der reine CSS-Selektor die
   Meldung automatisch aus. Betrifft NICHT die Liste data-cb-list="audios"
   (Geführte Audios), die bereits Inhalt hat und kein eigenes :empty-
   Verhalten benötigt — die Selektoren wirken aber generisch auf jedes
   .audio-list, falls künftig weitere leere Listen dazukommen. ── */
.audio-list:empty { display:none; margin-top:0; }
.audio-list:not(:empty) + .audio-empty { display:none; }
.audio-empty {
  font-style:italic; color:var(--muted); text-align:center;
  padding:1.4rem .5rem; font-size:.85rem;
}

/* ── Visibilidad de secciones (editor: botón de ojo) ──────────────
   Marcado por el CMS (editcenter.php, acción `a=sectionvis`) en el atributo
   data-cb-hidden="1" de la etiqueta <section data-cb-sec="sN">. Oculta
   la sección por completo en el sitio público; en el editor (dentro del
   iframe con la clase html.cb-edit) la regla equivalente en editcenter.php
   la muestra atenuada en su lugar, para que se pueda volver a activar. */
[data-cb-hidden="1"] { display:none !important; }

/* ── Cookie-Hinweis ─────────────────────────────────────────────
   Reiner Hinweis-Banner + Zwei-Wege-Einwilligung (nur notwendig /
   alle). Speichert die Wahl in localStorage (main.js), setzt selbst
   kein Cookie. Läuft NICHT im Editor (window.__CB), siehe main.js. */
.cookie-banner {
  position:fixed; left:0; right:0; bottom:0; z-index:2000;
  background:var(--ink); color:var(--cream);
  padding:1.3rem 1.5rem; box-shadow:0 -8px 30px rgba(0,0,0,.18);
  transform:translateY(100%); transition:transform .5s var(--ease-soft);
}
.cookie-banner.is-visible { transform:translateY(0); }
.cookie-banner-inner {
  max-width:1100px; margin:0 auto;
  display:flex; flex-wrap:wrap; align-items:center; gap:1.2rem 2rem;
}
.cookie-banner-text { flex:1 1 380px; font-size:.85rem; line-height:1.6; color:rgba(241,234,218,.88); }
.cookie-banner-text strong { color:var(--cream); font-weight:500; }
.cookie-banner-text a { color:var(--terra-light); border-bottom:1px solid rgba(220,196,164,.4); }
.cookie-banner-text a:hover { color:var(--cream); border-color:var(--cream); }
.cookie-banner-actions { display:flex; flex-wrap:wrap; gap:.7rem; flex:0 0 auto; }
.cookie-banner-actions .btn { padding:.7rem 1.4rem; font-size:.76rem; }
.cookie-banner-actions .btn-outline-white:hover { color:var(--ink); background:var(--cream); border-color:var(--cream); }
@media (max-width:600px) {
  .cookie-banner-actions { width:100%; }
  .cookie-banner-actions .btn { flex:1 1 0; text-align:center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition:none; }
}
