/* =========================================================
   Danijela Jakimovska — Systemische Begleitung
   Stylesheet · warm · erdig · feminin · ruhig
   ========================================================= */

/* ─── Self-hosted Fonts (Fraunces + Inter) ────────── */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

:root {
  /* Farbpalette */
  --cream:      #F0E8D8;
  --cream-deep: #E8DDC5;
  --sand:       #DBC9AB;
  --cream-light: #FAF7F0;
  --terracotta: #7A1414;
  --terracotta-deep: #5E0F0F;
  --sage:       #5F6E4B;
  --sage-deep:  #44523A;
  --ink:        #2A2622;
  --ink-soft:   #5C544B;
  --line:       rgba(46, 42, 38, 0.10);

  /* Typografie */
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body:    1.06rem;
  --fs-lead:    1.22rem;
  --fs-h3:      1.5rem;
  --fs-h2:      clamp(1.9rem, 3.5vw, 2.8rem);
  --fs-h1:      clamp(2.2rem, 5.5vw, 4.2rem);

  --tracking-eyebrow: 0.18em;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.2rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
}

/* ─── Premium-Layer: Subtle Film-Grain ──────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.15 0 0 0 1 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

/* ─── Reset / Basics ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--terracotta-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--terracotta); color: var(--cream); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Typografie ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 em, h2 em { font-style: italic; color: var(--terracotta-deep); font-weight: 400; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  margin: 0 0 1.2rem;
}
.eyebrow--center { text-align: center; }

.section__title {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}
.section__title--center { text-align: center; }

/* ─── Buttons ─ Premium-Redesign ─────────────────── */
.btn {
  --btn-y: -1px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition:
    color .35s cubic-bezier(.2, .9, .2, 1),
    border-color .35s ease,
    box-shadow .35s ease;
}
.btn::after {
  /* Hover-Fill ringt von der Mitte nach außen */
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta-deep);
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.2, .9, .2, 1);
  z-index: -1;
}
.btn:hover::after { transform: scale(1.05); }

/* Primary: Terracotta-Pill mit Premium-Shadow-Layern */
.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(46, 42, 38, 0.10) inset,
    0 4px 14px -6px rgba(201, 123, 94, 0.55),
    0 12px 30px -16px rgba(176, 95, 68, 0.45);
  will-change: transform;
}
.btn--primary:hover {
  color: var(--cream);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 -1px 0 rgba(46, 42, 38, 0.14) inset,
    0 8px 22px -8px rgba(176, 95, 68, 0.70),
    0 18px 40px -18px rgba(176, 95, 68, 0.55);
}
.btn--primary:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 2px 8px -4px rgba(176, 95, 68, 0.55);
}

/* Pfeil-Icon animiert beim Hover */
.btn svg { width: 14px; height: 14px; transition: transform .35s cubic-bezier(.2, .9, .2, 1); }
.btn:hover svg { transform: translate(2px, -1px); }

/* Ghost-Button: Outline-Stil mit fill-in on hover */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--cream); border-color: var(--ink); }

/* Soft-Button (für Sekundär-CTAs in Cards) */
.btn--soft {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  padding: 0.85rem 1.5rem;
}
.btn--soft::after { background: var(--cream-deep); }
.btn--soft:hover { color: var(--ink); border-color: var(--ink); }

.btn--block { width: 100%; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* Magnetic-CTA: glide based on inline CSS vars set by JS */
.btn--magnetic {
  transform: translate3d(var(--mx, 0px), var(--my, -1px), 0);
}

/* ─── Navigation — Premium ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

/* Brand mit Monogramm */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}
.nav__brand-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.06em;
  color: #7A1414;
  line-height: 0.9;
  padding: 0 0.15em 0 0;
  position: relative;
}
/* sehr feiner Terracotta-Unterstrich, kein grauer Balken */
.nav__brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.15em;
  bottom: 0.05em;
  height: 2px;
  background: #7A1414;
  border-radius: 2px;
  opacity: 0.85;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__brand-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9B2222;
}
.nav__brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

/* Nav-Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
  transition: color .25s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.nav__links a:hover { color: var(--terracotta-deep); }

/* CTA-Pill mit Premium-Stil */
.nav__cta {
  margin-left: 0.5rem;
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(46, 42, 38, 0.1) inset,
    0 4px 12px -5px rgba(201, 123, 94, 0.5);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav__cta::after { display: none; }
.nav__cta::before {
  /* Mini-Dot vor dem Text — Premium-Detail */
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.85);
  box-shadow: 0 0 8px rgba(247, 242, 234, 0.7);
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--terracotta-deep);
  color: var(--cream) !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 -1px 0 rgba(46, 42, 38, 0.14) inset,
    0 8px 18px -6px rgba(176, 95, 68, 0.65);
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all .25s ease;
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, var(--sand) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(163, 181, 160, 0.30) 0%, transparent 55%),
    var(--cream);
  z-index: -1;
}
.hero__inner { max-width: 880px; }
.hero__headline {
  font-size: var(--fs-h1);
  font-weight: 400;
  margin: 0.4em 0 0.8em;
  letter-spacing: -0.015em;
  text-align: left;
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 2.2rem;
}
.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}

/* ─── Einladung / Schmerz-Spiegel ───────────────── */
.invite { padding: var(--section-y) 0; }
.invite__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2.4rem;
  margin: 2.5rem 0;
  max-width: 980px;
}
.invite__sub {
  max-width: 720px;
  margin: 0 0 2.6rem;
  color: var(--ink-soft);
  font-size: var(--fs-body);
  font-style: italic;
}
.invite__item {
  padding: 2.2rem 2rem 2rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}
.invite__icon {
  width: 56px;
  height: 56px;
  color: var(--terracotta);
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.invite__icon svg { width: 100%; height: 100%; display: block; }
.invite__item:nth-child(2) .invite__icon { color: var(--sage-deep); }
.invite__item:nth-child(3) .invite__icon { color: var(--terracotta-deep); }
.invite__item:nth-child(4) .invite__icon { color: var(--sage-deep); }
.invite__item p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.invite__tag {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  display: inline-block;
}
.invite__item:nth-child(2) { border-left-color: var(--sage); }
.invite__item:nth-child(2) .invite__tag { color: var(--sage-deep); }
.invite__item:nth-child(3) { border-left-color: var(--terracotta-deep); }
.invite__item:nth-child(4) { border-left-color: var(--sage-deep); }
.invite__item:nth-child(4) .invite__tag { color: var(--sage-deep); }
.invite__more {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--terracotta-deep);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.invite__more:hover { border-bottom-color: currentColor; color: var(--terracotta-deep); }

/* Identify-Bullets: jetzt klickbare Links */
.identify__list li a {
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: color .25s ease;
}
.identify__list li a:hover { color: var(--terracotta-deep); }
.identify__list li a::after {
  content: ' →';
  color: var(--terracotta);
  opacity: 0;
  transition: opacity .25s ease;
  font-weight: 500;
}
.identify__list li a:hover::after { opacity: 1; }
.invite__bridge {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 760px;
  margin: 3rem 0 0;
  color: var(--ink);
}

/* ─── Drei Säulen ───────────────────────────────── */
.pillars {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.pillar { text-align: left; }
.pillar__icon {
  width: 56px;
  height: 56px;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
  opacity: 0.85;
}
.pillar__icon svg { width: 100%; height: 100%; display: block; }
.pillar:nth-child(2) .pillar__icon { color: var(--sage-deep); }
.pillar:nth-child(3) .pillar__icon { color: var(--terracotta-deep); }
.pillar__num {
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  margin-bottom: 0.8rem;
}
.pillar:nth-child(2) .pillar__num { color: var(--sage-deep); }
.pillar:nth-child(3) .pillar__num { color: var(--terracotta-deep); }
.pillar h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.pillar p {
  color: var(--ink-soft);
  margin: 0;
}

/* ─── Methode ───────────────────────────────────── */
.method { padding: var(--section-y) 0; }
.method__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.method__points {
  background: var(--cream-deep);
  padding: 2.2rem 2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.method__illu {
  max-width: 180px;
  margin: -1rem 0 1.4rem;
  color: var(--terracotta);
  opacity: 0.85;
}
.method__illu img { width: 100%; height: auto; display: block; }
.method__points h3 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--sage-deep);
  margin-bottom: 1.2rem;
}
.method__points ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.method__points li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.5;
}
.method__points li:last-child { border-bottom: 0; padding-bottom: 0; }

/* ─── Angebote ──────────────────────────────────── */
.offers {
  padding: var(--section-y) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.offers__intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.offer {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(46, 42, 38, 0.25);
}
.offer--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.offer--feature h3, .offer--feature .offer__price { color: var(--cream); }
.offer--feature .offer__duration { color: rgba(247, 242, 234, 0.70); }
.offer--feature p { color: rgba(247, 242, 234, 0.85); }
.offer__badge {
  position: absolute;
  top: -10px;
  left: 1.8rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
}
.offer__head { display: flex; flex-direction: column; gap: 0.25rem; }
.offer h3 {
  font-size: 1.3rem;
  margin: 0;
}
.offer__price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--terracotta-deep);
  margin: 0.3rem 0 0;
  line-height: 1;
}
.offer__duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}
.offer p {
  flex: 1;
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-soft);
}
.offer--feature p { color: rgba(247, 242, 234, 0.85); }
.offer .btn { align-self: flex-start; }
.offer--feature .btn--soft { color: var(--cream); border-color: rgba(247, 242, 234, 0.30); }
.offer--feature .btn--soft:hover { background: var(--cream); color: var(--ink); }
.offers__bridge {
  text-align: center;
  margin: 3rem auto 1.5rem;
  max-width: 620px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink);
}
.offers__note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* ─── Über mich ─────────────────────────────────── */
.about {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: -120px;
  width: 380px;
  height: 600px;
  background: url('../assets/decor-leaf.svg') no-repeat center / contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.about .container { position: relative; z-index: 1; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about__photo {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 30px 60px -30px rgba(46, 42, 38, 0.30);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(.2, .9, .2, 1);
}
.about__photo.is-visible {
  clip-path: inset(0 0 0 0);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
  transform: scale(1.06);
}
.about__photo.is-visible img { transform: scale(1.0); }
.about__photo:hover img { transform: scale(1.02); }
.about__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--ink);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.about__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.8rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--terracotta);
}
.about__signature em {
  font-weight: 500;
  color: var(--terracotta-deep);
}

/* ─── Stimmen / Voices ──────────────────────────── */
.voices {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.voice {
  margin: 0;
  background: var(--cream);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--sage);
}
.voice blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  color: var(--ink);
}
.voice figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.voices__note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: rgba(201, 123, 94, 0.08);
  padding: 1rem 1.4rem;
  border-left: 2px solid var(--terracotta);
  border-radius: var(--radius);
}

/* ─── FAQ ───────────────────────────────────────── */
.faq { padding: var(--section-y) 0; }
.faq__list {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--ink);
  padding: 1.1rem 2.5rem 1.1rem 0;
  position: relative;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--terracotta-deep);
  font-weight: 300;
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--terracotta-deep); }
.faq__item p {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 680px;
}

/* ─── Kontakt ───────────────────────────────────── */
.contact {
  padding: var(--section-y) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__text p {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
}
.contact__direct {
  margin-top: 1.2rem;
  font-size: 1rem !important;
  color: var(--ink) !important;
}
.contact__direct a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--terracotta-deep);
}
.contact__booking {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.8rem;
}
.contact__booking svg {
  transition: transform .25s ease;
}
.contact__booking:hover svg {
  transform: translate(2px, -2px);
}
.contact__booking-note {
  margin-top: 0.8rem !important;
  font-size: 0.82rem !important;
  font-style: italic;
  color: var(--ink-soft) !important;
}
.contact__or {
  margin: 2.2rem 0 1.2rem !important;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em;
}
.process__book {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terracotta-deep);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.process__book:hover {
  border-bottom-color: currentColor;
  color: var(--terracotta-deep);
}

.contact__form {
  background: var(--cream);
  padding: 2.4rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field span {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.field input, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  background: var(--cream-deep);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--cream);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--check {
  flex-direction: row;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.field--check input { margin-top: 0.25rem; }
.field--check span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contact__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(247, 242, 234, 0.85);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8A0A0;
  margin: 0 0 0.35rem;
}
.footer__brand-mark {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.06em;
  color: #E8A0A0;
  line-height: 1;
  margin-bottom: 0.45rem;
}
.footer__brand-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: rgba(247, 242, 234, 0.55);
  margin: 0;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-self: end;
}
.footer__nav a {
  color: rgba(247, 242, 234, 0.85);
  font-size: 0.93rem;
}
.footer__nav a:hover { color: var(--terracotta); }
.footer__copy {
  grid-column: 1 / -1;
  margin: 3rem 0 0;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.45);
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 242, 234, 0.15);
}

/* ─── Cookie-Hinweis ────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.45);
  animation: slideUp .4s ease both;
}
.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem var(--gutter);
  flex-wrap: wrap;
}
.cookie p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(247, 242, 234, 0.92);
  max-width: 860px;
}
.cookie p a { color: var(--terracotta); }
.cookie .btn--soft {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.30);
  background: transparent;
}
.cookie .btn--soft:hover {
  background: var(--cream);
  color: var(--ink);
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ─── Spotlight Cursor (sehr dezent) ────────────── */
.spotlight {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(201, 123, 94, 0.10) 0%, transparent 60%);
  transform: translate3d(var(--sx, -1000px), var(--sy, -1000px), 0) translate(-50%, -50%);
  transition: opacity .5s ease;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: blur(8px);
}
.spotlight.is-active { opacity: 0.6; }
@media (max-width: 880px), (hover: none) {
  .spotlight { display: none; }
}

/* ─── SVG Path-Drawing (animated) ───────────────── */
.draw-svg path,
.draw-svg circle,
.draw-svg rect {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.8s cubic-bezier(.4, 0, .2, 1);
  transition-delay: var(--draw-delay, 0ms);
}
.draw-svg.is-drawn path,
.draw-svg.is-drawn circle,
.draw-svg.is-drawn rect {
  stroke-dashoffset: 0;
}

/* ─── Slide-In aus den Seiten ───────────────────── */
.slide-in-left {
  opacity: 0;
  transform: translateX(-32px);
  filter: blur(4px);
  transition:
    opacity 1.0s cubic-bezier(.2, .8, .2, 1),
    transform 1.0s cubic-bezier(.2, .8, .2, 1),
    filter 1.0s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(32px);
  filter: blur(4px);
  transition:
    opacity 1.0s cubic-bezier(.2, .8, .2, 1),
    transform 1.0s cubic-bezier(.2, .8, .2, 1),
    filter 1.0s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.slide-in-left.is-visible,
.slide-in-right.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ─── Stronger Hover-Lifts ──────────────────────── */
.invite__item, .pillar, .offer, .voice, .filter__col, .topic-card, .blog-entry__link {
  will-change: transform;
}
.invite__item:hover, .filter__col:hover, .voice:hover, .topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px -28px rgba(46, 42, 38, 0.30);
}
.offer:hover {
  transform: translateY(-5px);
}
.blog-entry:hover .blog-entry__title {
  color: var(--terracotta-deep);
  transition: color .25s ease;
}

/* ─── Word-Marquee (subtle running word stream) ─── */
.marquee {
  background: var(--ink);
  color: rgba(247, 242, 234, 0.30);
  overflow: hidden;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  border-bottom: 1px solid rgba(247, 242, 234, 0.08);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 4rem;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
}
.marquee__track span { flex-shrink: 0; }
.marquee__track span::after {
  content: ' · ';
  color: var(--terracotta);
  margin-left: 4rem;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ─── Scroll-Progress-Bar ───────────────────────── */
.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-deep) 50%, var(--terracotta));
  z-index: 200;
  transition: width .08s linear;
  pointer-events: none;
  opacity: 0.85;
}

/* ─── Scroll-Reveal (verfeinert mit Blur + Stagger) ─ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition:
    opacity 1.0s cubic-bezier(.2, .8, .2, 1),
    transform 1.0s cubic-bezier(.2, .8, .2, 1),
    filter 1.0s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
/* Stagger für Geschwister-Items in einer Liste */
.invite__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.invite__grid .reveal:nth-child(2) { --reveal-delay: 90ms; }
.invite__grid .reveal:nth-child(3) { --reveal-delay: 180ms; }
.invite__grid .reveal:nth-child(4) { --reveal-delay: 270ms; }
.pillars__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.pillars__grid .reveal:nth-child(2) { --reveal-delay: 120ms; }
.pillars__grid .reveal:nth-child(3) { --reveal-delay: 240ms; }
.offers__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.offers__grid .reveal:nth-child(2) { --reveal-delay: 80ms; }
.offers__grid .reveal:nth-child(3) { --reveal-delay: 160ms; }
.offers__grid .reveal:nth-child(4) { --reveal-delay: 240ms; }
.offers__grid .reveal:nth-child(5) { --reveal-delay: 320ms; }
.process__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.process__grid .reveal:nth-child(2) { --reveal-delay: 180ms; }
.process__grid .reveal:nth-child(3) { --reveal-delay: 360ms; }

/* ─── Hero Word-Split Reveal ───────────────────── */
.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition:
    opacity 1.0s cubic-bezier(.2, .8, .2, 1),
    transform 1.0s cubic-bezier(.2, .8, .2, 1),
    filter 1.0s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--word-delay, 0ms);
}
.hero__headline.is-revealed .word {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero__headline .word--space { width: 0.32em; }

/* ─── Hero-Italic-Akzent (robust, alle Browser) ── */
.hero__headline em {
  font-style: italic;
  color: var(--terracotta-deep);
  font-weight: 400;
}
.hero__headline em .word--em {
  color: var(--terracotta-deep);
}

/* ─── Empfehlungs-Card: sanfter Glow-Pulse ─────── */
@keyframes danijela-recommend-glow {
  0%, 100% {
    box-shadow:
      0 20px 50px -30px rgba(46, 42, 38, 0.40),
      0 0 0 1px rgba(201, 123, 94, 0.0) inset;
  }
  50% {
    box-shadow:
      0 24px 60px -28px rgba(46, 42, 38, 0.50),
      0 0 0 1px rgba(201, 123, 94, 0.25) inset;
  }
}
.offer--feature {
  animation: danijela-recommend-glow 6s ease-in-out infinite;
}

/* ─── Methode-Sektion: Grid-Overlay (sehr dezent) ─ */
.method {
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 42, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 42, 38, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.method .container { position: relative; z-index: 1; }

/* ─── Card-Hover mit Border-Reveal ──────────────── */
.invite__item, .pillar, .offer, .voice, .filter__col, .topic-card, .related-list li a {
  position: relative;
  transition:
    transform .45s cubic-bezier(.2, .9, .2, 1),
    box-shadow .45s cubic-bezier(.2, .9, .2, 1);
}
/* Border-Reveal entfernt — browser-incompatible */
.invite__item:hover, .filter__col:hover, .voice:hover, .topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -28px rgba(46, 42, 38, 0.30);
}
.pillar:hover .pillar__icon {
  transform: translateY(-2px);
  transition: transform .35s ease;
}

/* ─── Image-Fade-In beim Laden ──────────────────── */
.about__photo img {
  opacity: 0;
  transition: opacity 1.2s ease, transform .8s ease;
}
.about__photo img.is-loaded {
  opacity: 1;
}

/* ─── Smooth Anchor-Scroll mit Easing ───────────── */
@supports (scroll-behavior: smooth) {
  html { scroll-behavior: smooth; }
}

/* ─── Smooth-Underline auf Footer & Nav Links ───── */
.nav__links a:not(.nav__cta),
.footer__nav a {
  position: relative;
}
.nav__links a:not(.nav__cta)::after,
.footer__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
}
.nav__links a:not(.nav__cta):hover::after,
.footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── Mikro-Identifikation ─────────────────────── */
.identify {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.identify__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--ink);
  margin: 0 0 1.3rem;
  text-align: center;
}
.identify__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  gap: 1rem;
}
.identify__list li {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink);
  padding: 1rem 1.4rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border-left: 2px solid var(--sage);
}

/* ─── Lead-Magnet ─────────────────────────────── */
.leadmagnet {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.leadmagnet__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--cream-deep);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.leadmagnet__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
  color: var(--ink);
}
.leadmagnet__text p {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.6;
}
.leadmagnet__meta {
  font-size: 0.85rem !important;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1.2rem !important;
}
.leadmagnet__form {
  background: var(--cream);
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
}
.leadmagnet__action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: center;
  text-align: center;
}
.leadmagnet__action .btn {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}
.leadmagnet__note {
  font-size: 0.78rem !important;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 !important;
  font-style: italic;
}

/* ─── Manifest / Glaubens-Aussage ───────────────── */
.manifest {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.manifest::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 123, 94, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(163, 181, 160, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.manifest::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: url('../assets/decor-circles.svg') no-repeat center / contain;
  opacity: 0.18;
  pointer-events: none;
}
.manifest__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.manifest .eyebrow {
  color: var(--terracotta);
  margin-bottom: 2rem;
}
.manifest__line {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.manifest__line span {
  display: block;
  opacity: 0.45;
  transition: opacity 1.2s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--mani-delay, 0ms);
}
.manifest__line span:nth-child(1) { --mani-delay: 0ms; }
.manifest__line span:nth-child(2) { --mani-delay: 200ms; }
.manifest__line span:nth-child(3) { --mani-delay: 400ms; }
.manifest__line span:nth-child(4) { --mani-delay: 700ms; }
.manifest__line.is-visible span { opacity: 1; }
.manifest__close {
  margin-top: 1.4rem !important;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem) !important;
  color: rgba(247, 242, 234, 0.78) !important;
  font-style: italic;
}
.manifest__close em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

/* ─── Methode-Tradition (Theorie-Anker) ─────────── */
.method__tradition {
  margin-top: 2rem !important;
  padding: 1.4rem 1.6rem;
  background: var(--cream-deep);
  border-left: 2px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  color: var(--ink-soft) !important;
}
.method__tradition strong {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}

/* ─── Newsletter-Decor (SVG-Letter-Sketch) ──────── */
.newsletter__decor {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  opacity: 0.55;
}
.newsletter__decor svg { width: 60%; max-width: 220px; }

/* ─── Story / Fallbeispiel ──────────────────────── */
.story {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at top left, rgba(163, 181, 160, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(230, 211, 190, 0.55) 0%, transparent 55%),
    var(--cream);
  position: relative;
}
.story__inner {
  max-width: 760px;
  margin: 0 auto;
}
.story__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.story__disclaimer {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 2.4rem;
}
.story__body {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink);
  position: relative;
}
/* dropcap on first paragraph */
.story__body > p:first-child::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.15em 0 -0.05em;
  color: var(--terracotta);
}
.story__body p { margin: 0 0 1.3rem; }
.story__close {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem !important;
  margin-top: 2rem !important;
  font-family: var(--font-sans) !important;
  font-size: var(--fs-body) !important;
  color: var(--ink-soft) !important;
  font-style: italic;
}

/* ─── Werte-Filter ──────────────────────────────── */
.filter {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.filter::before {
  content: '';
  position: absolute;
  top: 60px;
  left: -150px;
  width: 600px;
  height: 240px;
  background: url('../assets/decor-waves.svg') no-repeat left top / contain;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.filter .container { position: relative; z-index: 1; }
.filter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 3rem auto 2.5rem;
}
.filter__col {
  background: var(--cream);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--sage);
}
.filter__col--no { border-top-color: var(--terracotta); opacity: 0.92; }
.filter__col h3 {
  font-size: 1.2rem;
  margin: 0 0 1.2rem;
  font-family: var(--font-serif);
  color: var(--ink);
}
.filter__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter__col li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.filter__col li:last-child { border-bottom: 0; }
.filter__col li::before {
  content: '—';
  margin-right: 0.5rem;
  color: var(--sage-deep);
}
.filter__col--no li::before { color: var(--terracotta-deep); }
.filter__promise {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink);
  padding: 1.5rem 1.8rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
}
.filter__promise strong {
  font-weight: 500;
  color: var(--terracotta-deep);
  font-style: normal;
}
.filter__capacity {
  max-width: 560px;
  margin: 1.6rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.6;
}

/* ─── Bridge: Beraterinnen / High-Performerinnen ─ */
.bridge {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 123, 94, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(163, 181, 160, 0.08) 0%, transparent 50%),
    var(--cream);
  position: relative;
}
.bridge__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.bridge__inner::before,
.bridge__inner::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0.55;
}
.bridge__inner::before { margin-bottom: 2.6rem; }
.bridge__inner::after  { margin-top: 2.6rem; }
.bridge__illu {
  max-width: 380px;
  margin: 0 auto 2rem;
  color: var(--terracotta);
}
.bridge__illu img { width: 100%; height: auto; display: block; }
.bridge__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1.6rem;
  color: var(--ink);
}
.bridge__title em {
  font-style: italic;
  color: var(--terracotta-deep);
  font-weight: 400;
}
.bridge__lead {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.bridge__lead--accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-top: 2rem;
}

/* ─── Prozess / Wie wir beginnen ────────────────── */
.process {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta) 20%, var(--terracotta) 80%, transparent);
  opacity: 0.35;
  z-index: 0;
}
.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--cream-deep);
  padding: 0 0.8rem;
}
.process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-deep);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.process__step h3 {
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.process__step p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Trust-Badges in About ─────────────────────── */
.trust {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.9rem;
}
.trust__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: baseline;
}
.trust__label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  font-weight: 500;
}
.trust__value {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ─── Newsletter ────────────────────────────────── */
.newsletter {
  padding: var(--section-y) 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
}
.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 1rem;
}
.newsletter__text p {
  color: rgba(247, 242, 234, 0.82);
  font-size: var(--fs-body);
  line-height: 1.65;
}
.newsletter__text .eyebrow { color: var(--terracotta); }
.newsletter__meta {
  font-size: 0.82rem !important;
  color: rgba(247, 242, 234, 0.55) !important;
  font-style: italic;
  margin-top: 1.2rem !important;
}
.newsletter__form { display: grid; gap: 1rem; }
.newsletter__form .field span { color: rgba(247, 242, 234, 0.65); }
.newsletter__form .field input {
  background: rgba(247, 242, 234, 0.08);
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.15);
}
.newsletter__form .field input::placeholder { color: rgba(247, 242, 234, 0.35); }
.newsletter__form .field input:focus {
  background: rgba(247, 242, 234, 0.12);
  border-color: var(--terracotta);
}
.newsletter__form .field--check span { color: rgba(247, 242, 234, 0.75); }
.newsletter__form .field--check a { color: var(--terracotta); }
.newsletter__form .btn--soft {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.30);
  background: transparent;
}
.newsletter__form .btn--soft:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem var(--gutter) 1.8rem;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta {
    background: var(--terracotta);
    color: var(--cream) !important;
    margin-top: 0.8rem;
    text-align: center;
  }

  .invite__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .method__inner,
  .about__inner,
  .contact__inner,
  .leadmagnet__inner,
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .filter__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .process__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .process__grid::before { display: none; }
  .trust__item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__nav { justify-self: start; }
  .about__photo {
    max-width: 380px;
  }
}

@media (max-width: 520px) {
  .hero { padding-top: 4.5rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .offer { padding: 1.6rem 1.4rem; }
  .contact__form { padding: 1.8rem 1.4rem; }
  .cookie__inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Blog ──────────────────────────────────────── */
.blog-index { padding: clamp(4rem, 8vw, 7rem) 0 6rem; }
.blog-index__head {
  max-width: 740px;
  margin: 0 auto 4rem;
  text-align: center;
}
.blog-index__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.5rem 0 1.4rem;
  color: var(--ink);
}
.blog-index__lead {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.6;
  font-style: italic;
}
.blog-list { list-style: none; padding: 0; margin: 0 auto; max-width: 820px; }
.blog-entry { border-top: 1px solid var(--line); }
.blog-entry:last-child { border-bottom: 1px solid var(--line); }
.blog-entry__link {
  display: block;
  padding: 2.4rem 0;
  color: var(--ink);
  transition: opacity .3s ease;
}
.blog-entry__link:hover { color: var(--ink); opacity: 0.78; }
.blog-entry__date {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  margin: 0 0 0.8rem;
  font-weight: 500;
}
.blog-entry__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 400;
}
.blog-entry__excerpt {
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  line-height: 1.65;
}
.blog-entry__more {
  color: var(--terracotta-deep);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
}
.blog-soon {
  max-width: 560px;
  margin: 4rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
}
.blog-soon a { color: var(--terracotta-deep); border-bottom: 1px solid currentColor; }

/* Post page */
.post { padding: clamp(3.5rem, 7vw, 6rem) 0 5rem; }
.post__container { max-width: 760px; margin: 0 auto; }
.post__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.post__meta a { color: inherit; border-bottom: 1px solid transparent; }
.post__meta a:hover { border-bottom-color: currentColor; }
.post__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
  margin: 0 0 3rem;
  color: var(--ink);
  font-weight: 400;
}
.post__title em {
  font-style: italic;
  color: var(--terracotta-deep);
  font-weight: 400;
}
.post__body { font-size: 1.1rem; line-height: 1.78; color: var(--ink); }
.post__body p { margin: 0 0 1.5rem; max-width: 65ch; }
.post__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.18rem, 2vw, 1.35rem) !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  padding-bottom: 1.6rem;
  margin-bottom: 2rem !important;
  border-bottom: 1px solid var(--line);
}
.post__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  margin: 2.8rem 0 1.2rem;
  color: var(--ink);
  font-weight: 400;
}
.post__body em { font-style: italic; color: var(--terracotta-deep); }
.post__body .pullquote {
  margin: 3rem 0 3rem -1.5rem;
  padding: 0.3rem 0 0.3rem 1.5rem;
  border-left: 2px solid var(--sage);
  max-width: 40ch;
}
.post__body .pullquote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.6rem) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  margin: 0 !important;
  max-width: none !important;
}
.post__body .pullquote figcaption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  margin-top: 0.75rem;
}
@media (max-width: 640px) {
  .post__body .pullquote { margin-left: 0; }
}
.post__close {
  margin-top: 2.5rem;
  padding: 1.5rem 1.8rem;
  background: var(--cream-deep);
  border-left: 2px solid var(--terracotta);
  border-radius: var(--radius);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
}
.post__foot {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.post__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta-deep);
  margin: 0 0 2rem;
}
.post__cta {
  background: var(--ink);
  color: var(--cream);
  padding: 2.2rem 2rem;
  border-radius: var(--radius);
  margin: 0 0 2.5rem;
}
.post__cta p {
  margin: 0 0 1.2rem;
  color: rgba(247, 242, 234, 0.85);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.post__back {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.post__back a { color: var(--terracotta-deep); }

/* ─── Topics Index ──────────────────────────────── */
.topics-index { padding: clamp(4rem, 8vw, 7rem) 0 6rem; }
.topics-index__head { max-width: 740px; margin: 0 auto 4rem; text-align: center; }
.topics-index__illu {
  max-width: 500px;
  margin: 2.5rem auto 0;
  color: var(--terracotta);
  opacity: 0.85;
}
.topics-index__illu img { width: 100%; height: auto; display: block; }
.topics-index__head h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.5rem 0 1.4rem;
  color: var(--ink);
}
.topics-index__lead {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  font-style: italic;
  line-height: 1.6;
}
.topics-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.topic-card {
  display: block;
  background: var(--cream-deep);
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
  color: var(--ink);
  transition: transform .35s cubic-bezier(.2, .9, .2, 1), box-shadow .35s ease;
  position: relative;
}
.topic-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -28px rgba(46, 42, 38, 0.25);
}
.topics-grid li:nth-child(2) .topic-card { border-left-color: var(--terracotta-deep); }
.topics-grid li:nth-child(3) .topic-card { border-left-color: var(--sage-deep); }
.topic-card__icon {
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.topics-grid li:nth-child(2) .topic-card__icon { color: var(--terracotta-deep); }
.topics-grid li:nth-child(3) .topic-card__icon { color: var(--sage-deep); }
.topic-card__icon svg { width: 100%; height: 100%; }
.topic-card__tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  font-weight: 500;
  margin: 0 0 0.6rem;
}
.topics-grid li:nth-child(3) .topic-card__tag { color: var(--sage-deep); }
.topic-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  line-height: 1.3;
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 400;
}
.topic-card__excerpt { color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.6; }
.topic-card__more { color: var(--terracotta-deep); font-size: 0.92rem; font-weight: 500; margin: 0; }

/* ─── Topic Page ────────────────────────────────── */
.topic { background: var(--cream); }
.topic__hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse at top right, var(--sand) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(163, 181, 160, 0.30) 0%, transparent 55%),
    var(--cream);
}
.topic__hero .eyebrow { margin-bottom: 1.2rem; }
.topic__breadcrumb { color: inherit; border-bottom: 1px solid transparent; }
.topic__breadcrumb:hover { border-bottom-color: currentColor; }
.topic__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-weight: 400;
  max-width: 20ch;
}
.topic__title em {
  font-style: italic;
  color: var(--terracotta-deep);
  font-weight: 400;
}
.topic__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0;
  line-height: 1.5;
}
.topic__body {
  max-width: 760px;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.topic__section { margin: 3rem 0; }
.topic__section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-weight: 400;
}
.topic__section p { font-size: 1.06rem; line-height: 1.75; color: var(--ink); margin: 0 0 1.3rem; max-width: 65ch; }
.topic__section p em { color: var(--terracotta-deep); font-style: italic; }
.topic__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem) !important;
  line-height: 1.5 !important;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.topic__mirror { background: var(--cream-deep); padding: 2.2rem 2rem; border-radius: var(--radius); border-left: 2px solid var(--sage); }
.topic__mirror h2 { font-size: 1.1rem !important; font-family: var(--font-sans) !important; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--sage-deep); margin-bottom: 1.2rem !important; }
.topic__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.topic__bullets li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
}
.topic__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.topic__story {
  margin: 4rem 0;
  padding: 2.4rem 2.2rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  position: relative;
  border-top: 3px solid var(--terracotta);
}
.topic__story .eyebrow { margin-bottom: 0.5rem; }
.topic__disclaimer { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1.5rem; }
.topic__story-body {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink);
}
.topic__story-body p { margin: 0 0 1.2rem; }
.topic__story-body > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.15em 0 -0.05em;
  color: var(--terracotta);
}

.topic__faq { margin: 3.5rem 0; }
.topic__faq h2 { margin-bottom: 2rem; }
.topic__faq .faq__item { padding: 0.4rem 0; }

/* Related-Briefe (Topic → Blog Cross-Links) */
.topic__related {
  margin: 4rem 0 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.topic__related h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 0 0 1.6rem;
  color: var(--ink);
  font-weight: 400;
}
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.related-list li a {
  display: block;
  padding: 1.4rem 1.6rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border-left: 2px solid var(--sage);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, border-left-color .3s ease;
}
.related-list li a:hover {
  transform: translateX(3px);
  border-left-color: var(--terracotta);
  color: var(--ink);
}
.related-meta {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--terracotta-deep);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.related-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
}

.topic__cta {
  margin-top: 4rem;
  padding: 2.6rem 2.4rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  text-align: center;
}
.topic__cta h2 {
  font-family: var(--font-serif);
  color: var(--cream) !important;
  font-size: clamp(1.4rem, 2.6vw, 1.75rem) !important;
  margin-bottom: 1rem !important;
}
.topic__cta p {
  color: rgba(247, 242, 234, 0.85) !important;
  max-width: 56ch;
  margin: 0 auto 2rem !important;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem !important;
}
.topic__back {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 0.92rem;
}
.topic__back a { color: var(--terracotta-deep); }

/* ─── Print ─────────────────────────────────────── */
@media print {
  .nav, .cookie, .footer, .hero__cta, .contact__form { display: none; }
}

/* ─── Motion-Sensitivity ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  /* explicit end states so reveals don't stay hidden */
  .reveal, .slide-in-left, .slide-in-right, .hero__headline .word, .manifest__line span {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =====================================================
   STATE-OF-THE-ART HEBEL V15
   Esther-Perel-Standard + 2026 CSS Premium
   ===================================================== */

/* ─── Hebel 2: Underline-Reveal-Hover ──────────── */
/* Pattern aus estherperel.com: Linie kommt von rechts rein, geht links raus */
.invite__more,
.process__book,
.blog-soon a,
.contact__direct a,
.post__back a,
.topic__back a,
.topic__breadcrumb {
  position: relative;
  text-decoration: none;
  display: inline;
}
.invite__more::after,
.process__book::after,
.blog-soon a::after,
.contact__direct a::after,
.post__back a::after,
.topic__back a::after,
.topic__breadcrumb::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
}
.invite__more:hover::after,
.process__book:hover::after,
.blog-soon a:hover::after,
.contact__direct a:hover::after,
.post__back a:hover::after,
.topic__back a:hover::after,
.topic__breadcrumb:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ─── Hebel 3: View Transitions zwischen Seiten ── */
@view-transition {
  navigation: auto;
}
/* Wichtige Elemente bekommen Übergangs-Namen — Browser linkt sie cross-page */
@supports (view-transition-name: auto) {
  .hero__headline {
    view-transition-name: page-hero-headline;
  }
  .topic__title {
    view-transition-name: page-hero-headline;
  }
  .post__title {
    view-transition-name: page-hero-headline;
  }
  .blog-index__title {
    view-transition-name: page-hero-headline;
  }
  .topics-index__head h1 {
    view-transition-name: page-hero-headline;
  }
  .nav__brand {
    view-transition-name: page-brand;
  }
  /* sanfte Crossfade-Duration */
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  }
  ::view-transition-old(page-hero-headline),
  ::view-transition-new(page-hero-headline) {
    animation-duration: 0.5s;
  }
}

/* ─── Hebel 4: OKLCH-Palette + color-mix() ─────── */
/* Perceptual color: warm-erdige Töne bleiben warm bei Helligkeits-Mischung */
@supports (color: oklch(0% 0 0)) {
  :root {
    --cream:          oklch(91% 0.025 78);
    --cream-deep:     oklch(86% 0.040 78);
    --sand:           oklch(80% 0.055 75);
    --cream-light:    oklch(96% 0.012 78);
    --terracotta:     oklch(37% 0.13 28);
    --terracotta-deep: oklch(30% 0.13 26);
    --sage:           oklch(46% 0.045 130);
    --sage-deep:      oklch(36% 0.045 130);
    --ink:            oklch(22% 0.010 50);
    --ink-soft:       oklch(42% 0.010 50);
    --line:           color-mix(in oklch, var(--ink) 12%, transparent);
    /* abgeleitete Tones via color-mix */
    --terracotta-soft: color-mix(in oklch, var(--terracotta) 22%, var(--cream));
    --sage-soft:       color-mix(in oklch, var(--sage) 30%, var(--cream));
  }
}

/* ─── Hebel 5: Scroll-Driven Progress-Bar (CSS native) ─ */
/* Progressive Enhancement: wenn der Browser scroll-timeline kann,
   ersetzt diese CSS-only Variante die JS-Variante. */
@supports (animation-timeline: scroll()) {
  .scrollbar {
    animation: scrollGrow linear;
    animation-timeline: scroll(root);
    transform-origin: left center;
    width: 100% !important;
    transform: scaleX(0);
  }
  @keyframes scrollGrow {
    to { transform: scaleX(1); }
  }
}

/* ─── Hebel 6: Drop-Caps für Blog-Briefe ───────── */
.post__lead {
  position: relative;
}
@supports (initial-letter: 3) {
  .post__lead::first-letter {
    initial-letter: 3 2;
    color: var(--terracotta-deep);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    padding-right: 0.18em;
  }
}
/* Fallback ohne initial-letter (Firefox bis vor kurzem) */
@supports not (initial-letter: 3) {
  .post__lead::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 4.2em;
    line-height: 0.85;
    margin: 0.05em 0.12em -0.05em 0;
    color: var(--terracotta-deep);
    font-weight: 500;
  }
}

/* ─── Hebel 7: Variable-Font-Atmung auf Hero ─── */
/* Headline atmet beim Scrollen sehr subtil. Fraunces hat opsz-Achse. */
@supports (animation-timeline: view()) {
  .hero__headline {
    animation: heroBreath linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes heroBreath {
    0% {
      font-weight: 400;
      letter-spacing: -0.015em;
    }
    100% {
      font-weight: 460;
      letter-spacing: -0.005em;
    }
  }
}

/* ─── Hebel 5b: Reveals via Scroll-Driven (Migration) ─ */
@supports (animation-timeline: view()) {
  /* Native scroll-driven reveal — ersetzt die JS-IntersectionObserver-Variante
     für Browser, die es können. JS-Reveal bleibt für ältere Browser als Fallback. */
  .reveal {
    animation: nativeReveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 25%;
  }
  @keyframes nativeReveal {
    from {
      opacity: 0;
      transform: translateY(18px);
      filter: blur(4px);
    }
    to {
      opacity: 1;
      transform: none;
      filter: none;
    }
  }
}

/* ─── Angebote V2: schlank, ohne Preise ───────── */
.offers__solo {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem;
}
.offer--solo {
  max-width: 620px;
  width: 100%;
  text-align: left;
}
.offer--solo .offer__head h3 {
  font-size: 1.65rem;
}
.offers__forms {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 2rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in oklch, var(--cream) 90%, var(--sand) 10%);
}
.offers__forms-lead {
  margin: 0 0 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
.offers__forms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offers__forms-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  line-height: 1.6;
}
.offers__forms-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-weight: 600;
}
.offers__forms-list strong {
  color: var(--terracotta-deep);
  font-weight: 600;
}
.offers__forms-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 640px) {
  .offers__forms { padding: 1.5rem 1.4rem; }
}

/* ─── Briefe: Kategorie-Layout V2 ─────────── */
.blog-category {
  margin: 4rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.blog-category:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 2.5rem;
}
.blog-category__head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.blog-category__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklch, var(--cream) 80%, var(--sand) 20%);
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 14px;
}
.blog-category__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.blog-category__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  margin: 0.2rem 0 0.4rem;
  color: var(--ink);
}
.blog-category__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 540px;
}

/* Brief-Einträge in Kategorie-Listen — mit Visual links */
.blog-category .blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-category .blog-entry {
  margin: 0;
}
.blog-category .blog-entry__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: color-mix(in oklch, var(--cream) 95%, var(--sand) 5%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s cubic-bezier(.2,.8,.2,1),
              border-color .35s ease;
  height: 100%;
}
.blog-category .blog-entry__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -22px rgba(42,38,34,0.35);
  border-color: color-mix(in oklch, var(--terracotta) 30%, var(--line));
}
.blog-entry__visual {
  background: color-mix(in oklch, var(--cream) 88%, var(--sand) 12%);
  padding: 1.4rem 1.6rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  border-bottom: 1px solid var(--line);
}
.blog-entry__visual img {
  max-width: 100%;
  max-height: 110px;
  display: block;
}
.blog-entry__text {
  padding: 1.2rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.blog-entry__date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-soft);
  margin: 0;
}
.blog-entry__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.blog-entry__excerpt {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.blog-entry__more {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--terracotta-deep);
  font-weight: 500;
}
@media (max-width: 640px) {
  .blog-category__head { flex-direction: column; gap: 1rem; }
  .blog-category__icon { width: 64px; height: 64px; }
  .blog-category .blog-list { grid-template-columns: 1fr; }
}

/* ─── Brief-Hero-Illustration im Artikel ──── */
.post__illu {
  margin: 1.5rem 0 2rem;
  padding: 1.6rem;
  background: color-mix(in oklch, var(--cream) 85%, var(--sand) 15%);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post__illu img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .post__illu img { max-width: 100%; }
}

/* ─── Phase 1: Tagline, Methoden-Begriff, btn--small ──── */

/* Hero-Tagline: prominenter, eigenständiger Block über der Headline */
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--terracotta);
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
  line-height: 1.4;
  text-align: left;
}

/* Methode-Tag unter dem Sub-Text im Hero */
.hero__method-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  border: 1px solid color-mix(in oklch, var(--terracotta) 25%, transparent);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin: 1.6rem 0 0;
  background: color-mix(in oklch, var(--cream-light, var(--cream)) 60%, transparent);
}
.hero__method-tag em {
  color: var(--terracotta);
  font-style: italic;
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  margin-left: 0.3em;
}

/* Footer-Claim — italic Methoden-Anker */
.footer__brand-claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in oklch, var(--terracotta) 60%, var(--cream));
  margin: 0.55rem 0 0;
  letter-spacing: 0.01em;
}
.footer__brand-claim em {
  font-style: italic;
}

/* btn--small Variante für Ghost-CTAs in Angebote-Karten */
.btn--small {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  letter-spacing: 0.05em;
}

/* ─── Logo Wortmarke in Nav ────────────────── */
.nav__brand--wordmark {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.nav__logo {
  display: block;
  height: 36px;
  width: auto;
  color: var(--ink);
}
.nav__brand--wordmark:hover .nav__logo {
  color: var(--terracotta);
}
@media (max-width: 540px) {
  .nav__logo { height: 30px; }
}

/* ─── Hero mit Foto (zwei-spaltig) ─────────── */
.hero--with-photo .hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero--with-photo .hero__content {
  min-width: 0;
}
.hero__photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 60px -28px rgba(42, 38, 34, 0.32);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
@media (max-width: 880px) {
  .hero--with-photo .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__photo {
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }
}

/* ─── Methode: Foto statt Illustration ────── */
.method__photo {
  margin: 0 0 1.6rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 50px -24px rgba(42, 38, 34, 0.28);
}
.method__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Bridge: warmes Hero-Foto über der Headline ─ */
.bridge__photo {
  margin: 0 auto 2.5rem;
  max-width: 540px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 22px 60px -28px rgba(42, 38, 34, 0.30);
}
.bridge__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Newsletter-Foto ─────────────────────── */
.newsletter__photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 460px;
  box-shadow: 0 18px 50px -24px rgba(42, 38, 34, 0.28);
}
.newsletter__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Override: Foto-Default-Sichtbarkeit ───── */
.about__photo {
  clip-path: inset(0 0 0 0) !important;
}
.about__photo img {
  opacity: 1 !important;
  transform: scale(1.0) !important;
}
/* method__photo darf NICHT mit method__points colliden, klare Box */
.method__points .method__photo {
  display: block;
  background: var(--cream-deep, #E8DDC5);
  margin: 0 0 1.6rem !important;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 50px -24px rgba(42, 38, 34, 0.28);
}
.method__points .method__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
}

/* ─── Hard-Override: Foto-Container immer sichtbar ─ */
.about__photo,
.about__photo.reveal,
.method__photo,
.method__points,
.method__points.reveal,
.bridge__photo,
.newsletter__photo,
.hero__photo {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}
.about__photo img,
.method__photo img,
.bridge__photo img,
.newsletter__photo img,
.hero__photo img {
  opacity: 1 !important;
  transform: scale(1) !important;
  display: block !important;
}

/* ─── Hero mit Foto: Side-by-Side erzwingen ─ */
.hero--with-photo .hero__inner {
  max-width: 1100px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}
.hero--with-photo .hero__photo {
  order: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.hero--with-photo .hero__content {
  order: 0 !important;
  min-width: 0;
}
@media (max-width: 880px) {
  .hero--with-photo .hero__inner {
    grid-template-columns: 1fr !important;
    max-width: 600px !important;
    gap: 2rem !important;
  }
  .hero--with-photo .hero__photo {
    order: -1 !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }
}

/* ═══════════════════════════════════════════════════ */
/* ─── EDITORIAL PREMIUM — Foundation ──────────────── */
/* ═══════════════════════════════════════════════════ */

:root {
  /* Display-Skala für Editorial */
  --ed-display-xl: clamp(3rem, 7.5vw, 7.5rem);
  --ed-display-l:  clamp(2.4rem, 5.5vw, 5rem);
  --ed-display-m:  clamp(1.9rem, 3.8vw, 3.4rem);
  --ed-h2:         clamp(1.5rem, 2.4vw, 2.1rem);
  --ed-h3:         clamp(1.15rem, 1.4vw, 1.4rem);
  --ed-body:       1.05rem;
  --ed-lede:       1.18rem;
  --ed-small:      0.88rem;
  --ed-caps:       0.72rem;
  --ed-tracking-caps: 0.18em;
  
  /* Section-Spacing — sehr großzügig */
  --ed-section: clamp(5rem, 11vw, 10rem);
  --ed-section-tight: clamp(3rem, 6vw, 5rem);
  
  /* Hairlines */
  --ed-hairline: color-mix(in oklch, var(--ink) 18%, transparent);
  --ed-hairline-strong: color-mix(in oklch, var(--ink) 35%, transparent);
  
  /* Editorial Widths */
  --ed-narrow: 640px;
  --ed-medium: 880px;
  --ed-wide: 1100px;
  --ed-edge: 1280px;
}

/* Body — saubere Foundation */
body.editorial {
  background: var(--cream);
}

/* Hairline-Trenner */
.ed-hairline {
  width: 100%;
  height: 1px;
  background: var(--ed-hairline);
  border: none;
  margin: 0;
}
.ed-hairline-tight {
  width: 60px;
  height: 1px;
  background: var(--ink);
  border: none;
  margin: 2rem auto;
  display: block;
}

/* Eyebrows — sehr klein, sehr letter-spaced */
.ed-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.ed-eyebrow--accent { color: var(--terracotta); }

/* Editorial Section-Container */
.ed-section {
  padding: var(--ed-section) 0;
  position: relative;
}
.ed-section--tight { padding: var(--ed-section-tight) 0; }
.ed-section--dark {
  background: var(--ink);
  color: var(--cream-light, var(--cream));
}
.ed-section--sage {
  background: #9CB39F;
  color: #FFFFFF;
}
.ed-container {
  width: 100%;
  max-width: var(--ed-edge);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.ed-container--medium { max-width: var(--ed-medium); }
.ed-container--narrow { max-width: var(--ed-narrow); }

/* ─── Editorial Hero ──────────────────────────── */
.ed-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.ed-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  min-height: 80vh;
}
.ed-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.ed-hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-lede);
  color: var(--terracotta);
  line-height: 1.35;
  margin: 0;
  font-weight: 400;
  max-width: 28ch;
}
.ed-hero__headline {
  font-family: var(--font-serif);
  font-size: var(--ed-display-xl);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.ed-hero__headline em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.ed-hero__sub {
  font-family: var(--font-sans);
  font-size: var(--ed-body);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 1rem 0 0;
  font-weight: 400;
}
.ed-hero__method-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink-soft);
  margin-top: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ed-hairline);
}
.ed-hero__method-tag em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--terracotta);
  text-transform: none;
}
.ed-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.ed-hero__meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}
.ed-hero__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.35);
}
.ed-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 880px) {
  .ed-hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  .ed-hero__photo { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ─── Premium Button ──────────────────────────── */
.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.8rem;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.ed-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}
.ed-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.ed-btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}
.ed-link {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: color .3s ease, border-color .3s ease;
}
.ed-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ─── Mikro-Identifikation als Editorial-Liste ── */
.ed-identify {
  padding: var(--ed-section-tight) 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-identify__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-h3);
  color: var(--ink);
  margin: 0 0 2.5rem;
  max-width: 40ch;
}
.ed-identify__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-identify__list li {
  border-bottom: 1px solid var(--ed-hairline);
}
.ed-identify__list a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--ed-h3);
  line-height: 1.5;
  transition: color .3s ease;
}
.ed-identify__list a:hover { color: var(--terracotta); }
.ed-identify__list .ed-num {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.ed-identify__list .ed-arrow {
  color: var(--ink-soft);
  font-size: 1.5rem;
  transition: transform .3s ease, color .3s ease;
}
.ed-identify__list a:hover .ed-arrow {
  color: var(--terracotta);
  transform: translateX(4px);
}

/* ─── Manifest-Spread auf Sage ──────────────── */
.ed-manifest {
  padding: clamp(6rem, 14vw, 12rem) 0;
  background: #9CB39F;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}
.ed-manifest__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: rgba(255,255,255,0.7);
  margin: 0 0 3rem;
}
.ed-manifest__line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin: 0 auto 3rem;
}
.ed-manifest__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.6rem);
  line-height: 1.3;
  font-weight: 400;
  margin: 0 auto;
  max-width: 22ch;
  letter-spacing: -0.01em;
}
.ed-manifest__quote em {
  font-style: italic;
  font-weight: 500;
  border-bottom: 2px solid rgba(255,255,255,0.6);
  padding-bottom: 0.1em;
}
.ed-manifest__quote .ed-manifest__break { display: block; height: 1em; }

/* ─── Methode Editorial Feature ──────────────── */
.ed-methode {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-methode__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.ed-methode__sidebar {
  position: sticky;
  top: 6rem;
}
.ed-methode__big-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-display-m);
  color: var(--terracotta);
  line-height: 1.05;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}
.ed-methode__body {
  font-family: var(--font-sans);
  font-size: var(--ed-body);
  line-height: 1.75;
  color: var(--ink);
}
.ed-methode__body > p { margin: 0 0 1.4em; }
.ed-methode__body > p:first-child::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--terracotta);
  font-weight: 500;
}
.ed-methode__pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 3.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--ed-hairline);
  border-bottom: 1px solid var(--ed-hairline);
  text-align: center;
}
.ed-methode__footnote {
  margin: 3rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--ed-hairline);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.ed-methode__footnote strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}
.ed-methode__takeaways {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ed-hairline);
}
.ed-methode__takeaways li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ed-hairline);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1rem;
}
.ed-methode__takeaways li::before {
  content: "—";
  color: var(--terracotta);
}
@media (max-width: 860px) {
  .ed-methode__grid { grid-template-columns: 1fr; }
  .ed-methode__sidebar { position: static; }
}

/* ─── Über-mich Editorial ─────────────────────── */
.ed-about {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.ed-about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ed-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transform: none !important;
}
.ed-about__photo-caption {
  margin: 1.2rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.ed-about__text {
  font-family: var(--font-sans);
  font-size: var(--ed-body);
  line-height: 1.75;
  color: var(--ink);
}
.ed-about__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ed-about__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-lede);
  line-height: 1.5;
  color: var(--terracotta);
  margin: 0 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ed-hairline);
  max-width: 36ch;
}
.ed-about__text p { margin: 0 0 1.4em; }
.ed-about__text em { font-style: italic; }
.ed-about__pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ed-hairline);
  border-bottom: 1px solid var(--ed-hairline);
}
.ed-about__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 2.5rem 0 0;
}
.ed-about__trust {
  margin: 3rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--ed-hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}
.ed-about__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ed-about__trust-label {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink-soft);
  font-weight: 500;
}
.ed-about__trust-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .ed-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ed-about__trust { grid-template-columns: 1fr; }
}

/* ─── Premium Cards (Angebote) ──────────────── */
.ed-offers {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
  background: color-mix(in oklch, var(--cream) 88%, var(--sand) 12%);
}
.ed-offers__head {
  text-align: center;
  margin: 0 0 5rem;
}
.ed-offers__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.ed-offers__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-lede);
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 50ch;
  line-height: 1.6;
}
.ed-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.ed-card {
  background: var(--cream-light, var(--cream));
  border: 1px solid var(--ed-hairline);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  position: relative;
}
.ed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.18);
  border-color: var(--ed-hairline-strong);
}
.ed-card--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  grid-column: span 2;
}
.ed-card--feature:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}
.ed-card--feature .ed-card__title,
.ed-card--feature .ed-card__price,
.ed-card--feature .ed-card__body { color: var(--cream); }
.ed-card--feature .ed-card__duration { color: rgba(247,242,234,0.65); }
.ed-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  background: var(--cream);
  color: var(--terracotta);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
}
.ed-card__head {
  border-bottom: 1px solid var(--ed-hairline);
  padding-bottom: 1.5rem;
}
.ed-card--feature .ed-card__head { border-color: rgba(247,242,234,0.18); }
.ed-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  color: var(--ink);
}
.ed-card__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin: 0;
}
.ed-card__duration {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}
.ed-card__body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}
.ed-card--feature .ed-card__body { color: rgba(247,242,234,0.78); }
.ed-card__cta {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 880px) {
  .ed-card--feature { grid-column: span 1; }
}

/* ─── Stimmen — Quote-Spreads ──────────────── */
.ed-voices {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-voices__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  font-weight: 400;
  text-align: center;
  margin: 0 0 5rem;
  color: var(--ink);
}
.ed-voice {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--ed-hairline);
}
.ed-voice:last-child { border-bottom: none; }
.ed-voice__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--terracotta);
  margin: 0 0 1rem;
}
.ed-voice__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.4;
  margin: 0 auto 2rem;
  max-width: 28ch;
  color: var(--ink);
}
.ed-voice__attr {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink-soft);
}

/* ─── Briefe als Editorial-Archive ──────────── */
.ed-briefe-cta {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
}
.ed-briefe-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.ed-briefe-cta__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.ed-briefe-cta__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-lede);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 40ch;
}
.ed-briefe-cta__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ed-briefe-cta__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 780px) {
  .ed-briefe-cta__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── Newsletter Premium ──────────────────── */
.ed-newsletter {
  padding: var(--ed-section) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.ed-newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.ed-newsletter__eyebrow {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.ed-newsletter__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.ed-newsletter__body {
  font-family: var(--font-sans);
  font-size: var(--ed-body);
  line-height: 1.7;
  color: rgba(247,242,234,0.75);
  margin: 0 0 1.5rem;
}
.ed-newsletter__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(247,242,234,0.6);
  margin: 0;
  line-height: 1.6;
}
.ed-newsletter__hint a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ed-newsletter__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ed-newsletter__photo img { width:100%; height:100%; object-fit: cover; display:block; }
@media (max-width: 780px) {
  .ed-newsletter__grid { grid-template-columns: 1fr; }
}

/* ─── FAQ Editorial ──────────────────────── */
.ed-faq { padding: var(--ed-section) 0; border-top: 1px solid var(--ed-hairline); }
.ed-faq__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-m);
  text-align: center;
  margin: 0 0 5rem;
  color: var(--ink);
  font-weight: 400;
}
.ed-faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--ed-hairline);
}
.ed-faq__item {
  border-bottom: 1px solid var(--ed-hairline);
  padding: 1.8rem 0;
}
.ed-faq__item summary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  transition: color .3s ease;
}
.ed-faq__item summary::-webkit-details-marker { display: none; }
.ed-faq__item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--terracotta);
  transition: transform .3s ease;
}
.ed-faq__item[open] summary::after { content: "−"; }
.ed-faq__item summary:hover { color: var(--terracotta); }
.ed-faq__item p {
  margin: 1.2rem 0 0;
  font-family: var(--font-sans);
  font-size: var(--ed-body);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ─── Kontakt Premium ──────────────────── */
.ed-kontakt {
  padding: var(--ed-section) 0;
  border-top: 1px solid var(--ed-hairline);
  text-align: center;
}
.ed-kontakt__title {
  font-family: var(--font-serif);
  font-size: var(--ed-display-l);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  color: var(--ink);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.ed-kontakt__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--ed-lede);
  color: var(--ink-soft);
  margin: 0 auto 3rem;
  max-width: 48ch;
  line-height: 1.55;
}
.ed-kontakt__cta {
  font-size: 1.05rem;
  padding: 1.2rem 2.4rem;
}
.ed-kontakt__alt {
  margin: 2.5rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.ed-kontakt__alt a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── Footer ──────────────────────────── */
.ed-footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--ed-hairline);
  background: var(--cream);
}
.ed-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.ed-footer__brand img {
  height: 40px;
  width: auto;
  display: block;
  color: var(--ink);
}
.ed-footer__claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}
.ed-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: flex-end;
}
.ed-footer__nav a {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  color: var(--ink);
  text-decoration: none;
  transition: color .3s ease;
}
.ed-footer__nav a:hover { color: var(--terracotta); }
.ed-footer__copy {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
  border-top: 1px solid var(--ed-hairline);
  padding-top: 2rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 780px) {
  .ed-footer__grid { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .ed-footer__nav { justify-content: flex-start; }
}

/* ─── Nav Premium Override ──────────────── */
body.editorial .nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ed-hairline);
  background: rgba(240, 232, 216, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
body.editorial .nav__inner { gap: 3rem; }
body.editorial .nav__logo { height: 30px; }
body.editorial .nav__links { gap: 0; }
body.editorial .nav__links a {
  font-family: var(--font-sans);
  font-size: var(--ed-caps);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-caps);
  padding: 0.6rem 1rem;
  color: var(--ink);
}
body.editorial .nav__links a:not(.nav__cta)::after { display: none !important; }
body.editorial .nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  border: 1px solid var(--ink);
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
}
body.editorial .nav__cta:hover { background: var(--terracotta); border-color: var(--terracotta); }
body.editorial .nav__cta::before { display: none; }

/* ─── Sealing — Hero-Größe zähmen, Mobile, Polish ─ */
:root {
  --ed-display-xl: clamp(2.5rem, 5.5vw, 5.5rem);
}
.ed-hero__headline { line-height: 0.98; }
.ed-hero__photo { box-shadow: 0 40px 100px -40px rgba(0,0,0,0.4); }

/* Manifest Quote-Marks dezenter */
.ed-voice__mark { font-size: 5rem; line-height: 0.3; opacity: 0.5; }

/* Newsletter — Photo soll nicht zu klein wirken auf Mobile */
.ed-newsletter__photo { box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5); }

/* Über-mich Foto + Briefe-CTA + Bridge Photo: leichter Shadow */
.ed-about__photo, .ed-briefe-cta__photo { box-shadow: 0 28px 70px -36px rgba(0,0,0,0.25); }

/* Section-Trenner — feiner Burgundy-Hairline statt Default */
.ed-section, .ed-identify, .ed-methode, .ed-about, .ed-offers, .ed-voices, .ed-briefe-cta, .ed-faq, .ed-kontakt, .ed-footer {
  border-top-color: color-mix(in oklch, var(--ink) 12%, transparent);
}

/* Mobile — Headline nicht so überdimensioniert */
@media (max-width: 640px) {
  :root { --ed-display-xl: clamp(2rem, 9vw, 3.2rem); }
  .ed-hero__headline { line-height: 1.05; }
  .ed-section, .ed-identify, .ed-methode, .ed-about, .ed-offers, .ed-voices, .ed-briefe-cta, .ed-faq, .ed-kontakt { padding: 4rem 0; }
  .ed-card { padding: 1.8rem 1.5rem; }
  .ed-card--feature { grid-column: span 1; }
  .ed-identify__list a { grid-template-columns: 1fr; gap: 0.5rem; }
  .ed-identify__list .ed-num { font-size: 0.65rem; }
  .ed-identify__list .ed-arrow { display: none; }
}

/* Logo soll auf cremigem Hintergrund warm wirken */
.nav__logo { color: var(--ink); }
.ed-footer__brand img { color: var(--ink); height: 32px; }

/* Smooth Scroll für Anker-Links */
html { scroll-behavior: smooth; }

/* Cookie unten links subtil */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 1.8rem;
  border-radius: 8px;
  z-index: 90;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.4);
}
.cookie .ed-container.cookie__inner {
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.cookie p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  font-family: var(--font-sans);
  color: rgba(247,242,234,0.8);
}
.cookie p a { color: var(--terracotta); text-decoration: underline; }
.cookie .ed-btn { background: var(--cream); color: var(--ink); border-color: var(--cream); white-space: nowrap; padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.cookie .ed-btn:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }



/* ── Logo Updates 2026-06-25 ──────────────────────── */
.nav__brand img.nav__logo {
  height: 30px;
  width: auto;
  display: block;
}
.nav__brand .nav__brand-mark,
.nav__brand .nav__brand-text { display: none !important; }

.footer__brand img.footer__logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

@media (max-width: 760px) {
  .nav__brand img.nav__logo { height: 36px; }
  .footer__brand img.footer__logo { height: 40px; max-width: 80%; }
}

/* ── Blog Filter + Suche (2026-06-29) ───────────── */
.blog-filter {
  margin: 0 0 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26,22,18,0.08);
  border-bottom: 1px solid rgba(26,22,18,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 0;
  background: var(--cream, #EFE5D2);
  z-index: 50;
}
.blog-search__wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}
.blog-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(26,22,18,0.45);
  pointer-events: none;
}
.blog-search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid rgba(26,22,18,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink, #1A1612);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.blog-search:focus {
  border-color: var(--gold, #C9A45F);
  background: #fff;
}
.blog-filter__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.blog-filter__pill {
  padding: 0.5rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(26,22,18,0.22);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink, #1A1612);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.blog-filter__pill:hover {
  border-color: var(--gold, #C9A45F);
}
.blog-filter__pill.is-active {
  background: var(--ink, #1A1612);
  color: var(--cream, #EFE5D2);
  border-color: var(--ink, #1A1612);
}
.blog-filter__count {
  text-align: center;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(26,22,18,0.55);
  letter-spacing: 0.02em;
  min-height: 1rem;
}
.blog-category.is-hidden { display: none; }
.blog-entry.is-hidden { display: none; }
.blog-entry--empty p {
  padding: 2rem;
  background: rgba(255,255,255,0.4);
  border-radius: 6px;
  text-align: center;
  color: rgba(26,22,18,0.6);
}

@media (max-width: 720px) {
  .blog-filter { position: static; padding: 1.4rem 0; }
  .blog-filter__pill { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
}

/* ═══════ Tracing Beam (Brief-Seiten) — 2026-06-30 ═══════ */
.tracing-beam{
  position: fixed;
  left: max(2rem, calc((100vw - 1100px) / 2 - 30px));
  top: 12vh; bottom: 12vh; width: 2px;
  pointer-events: none; z-index: 40; display: none;
}
@media (min-width: 1024px){ .tracing-beam{ display: block; } }
.tracing-beam__rail{
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,22,18,.12) 8%, rgba(26,22,18,.12) 92%, transparent 100%);
}
.tracing-beam__progress{
  position: absolute; top: 0; left: -1px; width: 4px;
  background: linear-gradient(to bottom, var(--gold,#C9A45F), var(--burgundy,#5C1410));
  border-radius: 2px; height: 0; box-shadow: 0 0 16px rgba(201,164,95,.7);
}
.tracing-beam__head{
  position: absolute; left: -7px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold,#C9A45F);
  box-shadow: 0 0 22px rgba(201,164,95,.95), 0 0 0 4px rgba(255,240,200,.18);
  transform: translateY(-50%); top: 0; transition: top 0.05s linear;
}
@media (prefers-reduced-motion: reduce){ .tracing-beam{ display: none !important; } }
