/* =====================================================================
   ALEXANDRA KASCHNY - Design System
   Somatic facilitation · Breathwork · Karmic astrology
   ---------------------------------------------------------------------
   Core principle: a rhythm of light and shadow. Sections alternate
   between dark (ink/pine) and light (cream) WITHIN every page.
   ===================================================================== */

/* ---------- 0. SELF-HOSTED FONTS (local, no Google CDN -> no consent needed) ---------- */
@font-face {
  font-family: "Figtree"; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url("../Schriften/Figtree-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Figtree"; font-style: italic; font-weight: 300 900; font-display: swap;
  src: url("../Schriften/Figtree-Italic-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Livvic"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../Schriften/Livvic-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Livvic"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../Schriften/Livvic-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Livvic"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../Schriften/Livvic-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Livvic"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../Schriften/Livvic-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../Schriften/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Fraunces"; font-style: italic; font-weight: 300 700; font-display: swap;
  src: url("../Schriften/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
}

/* ---------- 1. DESIGN TOKENS ---------------------------------------- */
:root {
  /* Color - dark base */
  --ink:        #1A1714;   /* warm black, primary dark base        */
  --ink-2:      #211C18;   /* lifted dark surface                  */
  --ink-3:      #2C2620;   /* card / inset on dark                 */
  --ink-line:   #3A332B;   /* hairline borders on dark             */

  /* Color - warm accent (fox / terracotta) */
  --rust:       #B5562B;
  --rust-soft:  #C9743F;
  --rust-deep:  #8E4221;

  /* Color - cool counterpoint (deep navy) */
  --pine:       #1A2832;
  --pine-2:     #213642;
  --pine-line:  #33454F;

  /* Color - light surfaces */
  --cream:      #F2EDE4;   /* primary light base                   */
  --cream-2:    #E9E1D2;   /* secondary light surface              */
  --cream-line: #D8CCB8;   /* hairline borders on light            */

  /* Text */
  --beige:      #DCD0BC;   /* warm beige text on dark              */
  --beige-dim:  rgba(220, 208, 188, 0.62);
  --char:       #241F1A;   /* deep charcoal text on light          */
  --char-dim:   rgba(36, 31, 26, 0.66);

  /* Typography */
  --font-body:    "Figtree", system-ui, -apple-system, sans-serif;
  --font-head:    "Livvic", "Figtree", sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.68rem;
  --fs-body:    1.05rem;
  --fs-lede:    clamp(1.05rem, 0.95rem + 0.6vw, 1.32rem);
  --fs-h3:      clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-h1:      clamp(2.9rem, 1.6rem + 5.4vw, 6.2rem);
  --fs-display: clamp(2.4rem, 1.4rem + 4.2vw, 5rem);

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;
  --section-y: clamp(4.5rem, 3rem + 6vw, 9rem);
  --gutter:    clamp(1.25rem, 0.5rem + 3vw, 4rem);
  --maxw:      1240px;
  --measure:   62ch;

  /* Form */
  --radius:    14px;
  --radius-lg: 26px;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       0.6s;

  /* z-index scale */
  --z-nav: 50;
  --z-overlay: 40;
}

/* ---------- 2. RESET / BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--beige);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--rust); color: var(--cream); }

/* ---------- 3. LAYOUT PRIMITIVES ------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 880px; }

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
}

/* The light/dark rhythm - color contexts -------------------------- */
.section--dark {
  background: var(--ink);
  color: var(--beige);
}
.section--ink2 { background: var(--ink-2); color: var(--beige); }
.section--pine {
  background: var(--pine);
  color: var(--beige);
}
.section--light {
  background: var(--cream);
  color: var(--char);
}
.section--cream2 { background: var(--cream-2); color: var(--char); }

/* soft seam between alternating bands */
.section--light + .section--dark,
.section--light + .section--pine,
.section--cream2 + .section--dark { box-shadow: 0 -1px 0 rgba(0,0,0,.4); }

/* grain texture overlay for atmosphere on dark sections */
.section--dark::after,
.section--pine::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ---------- 4. TYPOGRAPHY ELEMENTS ---------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--rust-soft);
}
/* section index numbers (01, 02 …) removed as a design element site-wide */
.eyebrow::before { display: none; }
.section--light .eyebrow::before,
.section--cream2 .eyebrow::before { color: var(--char-dim); }
.eyebrow.no-index::before { display: none; }
.section--light .eyebrow, .section--cream2 .eyebrow { color: var(--rust-deep); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.12; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: 0.005em;
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  max-width: var(--measure);
  color: var(--beige);
}
.section--light .lede, .section--cream2 .lede { color: var(--char); }

.prose { max-width: var(--measure); }
.prose p + p { margin-top: var(--space-2); }
.dim { color: var(--beige-dim); }
.section--light .dim, .section--cream2 .dim { color: var(--char-dim); }
.accent { color: var(--rust-soft); }
.section--light .accent, .section--cream2 .accent { color: var(--rust-deep); }

/* ---------- 5. NAV -------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 1rem var(--gutter);
  transition: background-color .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(20, 19, 16, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--ink-line);
  padding-block: 0.7rem;
}
/* simplified header for legal pages: always solid/dark (no scroll dependency), brand + back link only */
.nav--simple {
  background: rgba(20, 19, 16, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--ink-line);
  padding-block: 0.85rem;
}
.nav__back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.02em; color: var(--beige);
  transition: color .25s var(--ease), gap .25s var(--ease-out);
}
.nav__back:hover { color: var(--cream); gap: 0.75rem; }
.nav__back svg { width: 1.05em; height: 1.05em; stroke: currentColor; }
.brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
}
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); list-style: none; }
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beige);
  padding-block: 0.4rem;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: var(--space-3); }

/* language toggle */
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang button {
  padding: 0.42rem 0.72rem;
  color: var(--beige-dim);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.lang button[aria-pressed="true"] { color: var(--ink); background: var(--beige); }
.lang button:hover { color: var(--cream); }
.lang button[aria-pressed="true"]:hover { color: var(--ink); }

/* mobile menu toggle */
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--cream); }

/* ---------- 6. BUTTONS / LINKS ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  transition: transform .3s var(--ease-out), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; stroke: currentColor; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--rust); color: var(--cream); box-shadow: 0 10px 30px -12px rgba(181,86,43,.7); }
.btn--primary:hover { background: var(--rust-soft); box-shadow: 0 16px 40px -12px rgba(181,86,43,.85); }
.btn--ghost { border: 1px solid currentColor; color: var(--cream); }
.section--light .btn--ghost, .section--cream2 .btn--ghost { color: var(--char); }
.btn--ghost:hover { background: rgba(220,208,188,.08); }
.section--light .btn--ghost:hover, .section--cream2 .btn--ghost:hover { background: rgba(36,31,26,.06); }

/* pop button - refined filled accent: elegant + editorial, still stands out (process CTA) */
.btn--pop {
  position: relative; isolation: isolate; overflow: hidden;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2.1rem;
  color: var(--cream);
  background: linear-gradient(120deg, var(--rust) 0%, var(--rust-deep) 100%);
  box-shadow: 0 14px 34px -18px rgba(181,86,43,.85), inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease), filter .4s var(--ease);
}
/* fine sheen that sweeps across once on hover */
.btn--pop::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform .7s var(--ease-out);
}
.btn--pop:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -18px rgba(181,86,43,.95), inset 0 1px 0 rgba(255,255,255,.18);
  filter: brightness(1.06);
}
.btn--pop:hover::before { transform: translateX(130%); }
.btn--pop svg { width: 0.95em; height: 0.95em; }

/* fine / refined button - thin outline with a slow fill-sweep on hover */
.btn--fine {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  color: var(--beige);
  border: 1px solid var(--beige-dim);
  background: transparent;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn--fine::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--cream);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.btn--fine:hover { color: var(--ink); border-color: var(--cream); }
.btn--fine:hover::before { transform: scaleX(1); }
.btn--fine svg { width: 0.95em; height: 0.95em; stroke: currentColor; transition: transform .45s var(--ease-out); }
.btn--fine:hover svg { transform: translateX(5px); }
.section--light .btn--fine, .section--cream2 .btn--fine { color: var(--char); border-color: var(--char-dim); }
.section--light .btn--fine::before, .section--cream2 .btn--fine::before { background: var(--ink); }
.section--light .btn--fine:hover, .section--cream2 .btn--fine:hover { color: var(--cream); border-color: var(--ink); }
.btn--sm { padding: 0.62rem 1.05rem; font-size: 0.68rem; letter-spacing: 0.16em; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: var(--rust-soft);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.section--light .tlink, .section--cream2 .tlink { color: var(--rust-deep); }
.tlink svg { width: 1em; height: 1em; stroke: currentColor; transition: transform .3s var(--ease-out); }
.tlink:hover { border-bottom-color: currentColor; gap: 0.8rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

/* ---------- 7. HERO (light-in-dark reveal) ------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: var(--space-6);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
/* placeholder large-format image: layered landscape/texture */
.hero__media {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 80% at 70% 12%, rgba(201,116,63,.28), transparent 55%),
    linear-gradient(180deg, #14110e 0%, #1c1814 42%, #241d16 78%, #14110e 100%);
}
.hero__media::before { /* ridge / landscape suggestion */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 38% at 50% 100%, rgba(31,45,42,.55), transparent 70%),
    linear-gradient(75deg, transparent 30%, rgba(181,86,43,.08) 60%, transparent 75%);
}
.hero__media::after { /* grain */
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: .06; mix-blend-mode: screen;
}
/* the shaft of light that blooms in on load */
.hero__light {
  position: absolute; z-index: -2;
  top: -20%; left: 58%;
  width: 70vw; height: 130%;
  background: radial-gradient(closest-side, rgba(242,237,228,.5), rgba(201,116,63,.18) 45%, transparent 75%);
  filter: blur(8px);
  transform: translateX(8%) scale(.7);
  opacity: 0;
  animation: bloom 2.6s var(--ease-out) .25s forwards;
}
@keyframes bloom {
  0%   { opacity: 0; transform: translateX(16%) scale(.55); }
  60%  { opacity: .9; }
  100% { opacity: .82; transform: translateX(0) scale(1); }
}
/* photo hero - real large-format image instead of gradient placeholder */
.hero--photo .hero__media {
  background:
    linear-gradient(180deg, rgba(20,17,14,.55) 0%, rgba(20,17,14,.10) 30%, rgba(20,17,14,.20) 60%, rgba(20,17,14,.88) 100%),
    linear-gradient(90deg, rgba(20,17,14,.65) 0%, rgba(20,17,14,.15) 45%, transparent 75%),
    url("../dune-header.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 35%;
}
.hero--photo .hero__media::before,
.hero--photo .hero__light { display: none; }

.hero__media-label {
  position: absolute; right: var(--gutter); bottom: 1.4rem; z-index: 1;
  font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--beige-dim);
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero h1 {
  font-size: clamp(2.6rem, 1.5rem + 4.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 15ch;
  color: var(--cream);
  text-wrap: balance;
}
.hero h1 .display { display: block; color: var(--rust-soft); }
.hero .lede { margin-top: var(--space-3); color: var(--beige); }

/* word-by-word mask reveal */
.reveal-words { display: inline; }
.reveal-words .word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise .9s var(--ease-out) forwards;
}
@keyframes word-rise { to { transform: translateY(0); } }

.scroll-cue {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: var(--space-4);
  font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--beige-dim);
}
.scroll-cue .line { display: block; width: 46px; height: 1px; background: var(--rust); transform-origin: left;
  animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleX(.4); opacity: .5; } 50% { transform: scaleX(1); opacity: 1; } }

/* ---------- 8. MARQUEE (wild / free word band) --------------------- */
.band { padding-block: clamp(2.2rem, 1.4rem + 2vw, 3.4rem); border-block: 1px solid var(--ink-line); }
.marquee { display: flex; gap: 2.5rem; width: max-content; animation: slide 34s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 3rem);
  color: var(--beige-dim); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: "✺"; color: var(--rust); font-size: 0.7em; }
@keyframes slide { to { transform: translateX(-50%); } }
.band:hover .marquee { animation-play-state: paused; }

/* ---------- 9. OFFER GRID ------------------------------------------ */
.grid { display: grid; gap: var(--space-3); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.offer {
  position: relative;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  background: var(--ink-3);
  display: flex; flex-direction: column; gap: var(--space-2);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease), background-color .4s var(--ease);
}
.section--light .offer, .section--cream2 .offer {
  background: #fff; border-color: var(--cream-line);
  box-shadow: 0 18px 40px -28px rgba(36,31,26,.4);
}
.offer:hover { transform: translateY(-6px); border-color: var(--rust); }
.offer__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 2.2rem; color: var(--rust-soft); line-height: 1;
}
.offer h3 { color: inherit; }
.offer p { color: var(--beige-dim); }
.section--light .offer p, .section--cream2 .offer p { color: var(--char-dim); }
.offer .tlink { margin-top: auto; }

/* offering cards - image-top + cream panel (reference style) */
.ocard {
  display: flex; flex-direction: column;
  border-radius: 8px; overflow: hidden;
  background: var(--cream);
  box-shadow: 0 26px 54px -34px rgba(0,0,0,.6);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
}
.ocard:hover { transform: translateY(-8px); box-shadow: 0 38px 64px -34px rgba(0,0,0,.65); }
.ocard__media {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
}
.ocard__media::before { /* diagonal line texture */
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(242,237,228,.06) 0 1px, transparent 1px 15px);
  transition: opacity .5s var(--ease);
}
.ocard:hover .ocard__media::before { opacity: .55; }
.media--navy { background: radial-gradient(120% 90% at 30% 20%, #2a3d49, transparent 60%), linear-gradient(160deg, #20313d, #131e25 75%); }
.media--rust { background: radial-gradient(120% 100% at 80% 90%, rgba(201,116,63,.5), transparent 55%), linear-gradient(150deg, #3a261b, #1d130d 80%); }
.media--dark { background: radial-gradient(120% 90% at 70% 30%, #2a241d, transparent 60%), linear-gradient(160deg, #221c16, #131009 80%); }
.ocard__tag {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--beige-dim);
  transition: color .4s var(--ease);
}
.ocard:hover .ocard__tag { color: var(--beige); }
.ocard__body {
  flex: 1;
  padding: clamp(1.5rem, 1rem + 1.4vw, 2.3rem);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.ocard__body h3 { color: var(--char); }
.ocard__body p { color: var(--char-dim); }
.ocard__link {
  margin-top: auto; padding-top: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust-deep);
}
.ocard__link svg { width: 1em; height: 1em; stroke: currentColor; transition: transform .35s var(--ease-out); }
.ocard:hover .ocard__link svg { transform: translateX(5px); }

/* feature: large split (image + text) */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.figure {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 30% 20%, rgba(201,116,63,.35), transparent 60%),
    linear-gradient(160deg, #2a2017, #1a1714 60%, #1f2d2a);
  border: 1px solid var(--ink-line);
}
.figure::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: .07; mix-blend-mode: screen;
}
.figure__label {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--beige-dim);
}
.figure--light { aspect-ratio: 5 / 4; }

/* ---------- 10. QUOTE BAND ----------------------------------------- */
.quote { text-align: center; max-width: 18ch; margin-inline: auto; }
.quote .display { font-size: var(--fs-display); color: var(--cream); }
.section--light .quote .display, .section--cream2 .quote .display { color: var(--char); }
.quote cite { display: block; margin-top: var(--space-3); font-style: normal;
  font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust-soft); }

/* single subtle animal accent (line-art) - used ONCE per page */
.totem { position: absolute; right: 4%; top: 8%; width: clamp(120px, 18vw, 240px); opacity: .12; z-index: 0; pointer-events: none; }
.totem path, .totem line { stroke: var(--rust-soft); stroke-width: 1.4; fill: none; vector-effect: non-scaling-stroke; }

/* ---------- 11. STEPS / PROCESS ------------------------------------ */
.steps { display: grid; gap: var(--space-3); counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-3);
  padding-block: var(--space-3);
  border-top: 1px solid var(--cream-line);
  align-items: start;
}
.section--dark .step, .section--pine .step { border-top-color: var(--ink-line); }
.step__k {
  font-family: var(--font-display); font-style: italic; font-size: 1.8rem;
  color: var(--rust-deep); line-height: 1;
}
.section--dark .step__k, .section--pine .step__k { color: var(--rust-soft); }
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--char-dim); max-width: 52ch; }
.section--dark .step p, .section--pine .step p { color: var(--beige-dim); }

/* ---------- 12. CTA PANEL ------------------------------------------ */
.invite { text-align: center; }
.invite .display { font-size: var(--fs-display); color: var(--cream); max-width: 16ch; margin-inline: auto; }
.section--light .invite .display { color: var(--char); }

/* ---------- 13. FOOTER --------------------------------------------- */
.footer { background: var(--ink-2); color: var(--beige); padding-block: var(--space-6) var(--space-4); border-top: 1px solid var(--ink-line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4); }
.footer__brand .display { font-family: var(--font-body); font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.05rem; color: var(--cream); }
.footer h4 { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige-dim); margin-bottom: var(--space-2); }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer a { color: var(--beige); transition: color .25s var(--ease); }
.footer a:hover { color: var(--rust-soft); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2);
  margin-top: var(--space-5); padding-top: var(--space-3);
  border-top: 1px solid var(--ink-line);
  font-size: 0.8rem; color: var(--beige-dim);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------- 14. SCROLL REVEAL -------------------------------------- */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* ---------- 15. PAGE HEADER (interior pages) ----------------------- */
.pagehead {
  position: relative; min-height: 64svh; display: flex; align-items: flex-end;
  padding-top: 9rem; padding-bottom: var(--space-5);
  background: var(--ink); overflow: hidden; isolation: isolate;
}
.pagehead .hero__media, .pagehead .hero__light { }
.pagehead h1 { font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem); font-weight: 400; letter-spacing: -0.005em; color: var(--cream); max-width: 16ch; }
.pagehead .display { color: var(--rust-soft); }

/* utility */
.stack > * + * { margin-top: var(--space-3); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.center { text-align: center; }
[hidden] { display: none !important; }

/* ---------- 16. RESPONSIVE ----------------------------------------- */
@media (max-width: 920px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .split, .split--rev { grid-template-columns: 1fr; direction: ltr; }
  .figure { aspect-ratio: 16/11; order: -1; }
  .figure--portrait { aspect-ratio: 4/5; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links, .nav .lang { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(20,19,16,.97); backdrop-filter: blur(14px);
    padding: 1rem var(--gutter) 1.6rem; border-bottom: 1px solid var(--ink-line);
  }
  .nav.is-open .lang { display: inline-flex; margin-top: 0.6rem; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { align-items: center; }
}

/* ---------- 17. REDUCED MOTION ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-words .word > span { transform: none; }
  .hero__light { opacity: .7; transform: none; }
}

/* focus visibility */
:focus-visible { outline: 2px solid var(--rust-soft); outline-offset: 3px; border-radius: 4px; }

/* =====================================================================
   18. LEGAL PAGES (Impressum / Datenschutz / AGB)
   ===================================================================== */
.legal { max-width: 68ch; }
.legal__meta { font-size: 0.82rem; color: var(--char-dim); letter-spacing: 0.01em; }
.legal__note {
  margin-top: var(--space-3); padding: 0.9rem 1.1rem;
  border: 1px solid var(--cream-line); border-radius: var(--radius);
  background: rgba(36,31,26,.03);
  font-size: 0.85rem; color: var(--char-dim);
}
.legal h2 {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.18rem; line-height: 1.25; color: var(--char);
  margin-top: var(--space-5); padding-top: var(--space-4);
  border-top: 1px solid var(--cream-line);
}
.legal h2:first-of-type { margin-top: var(--space-4); }
.legal h3 {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.98rem; color: var(--char);
  margin-top: var(--space-3); margin-bottom: 0.3rem;
}
.legal p { font-size: 0.92rem; line-height: 1.7; color: var(--char); }
.legal p + p { margin-top: 0.85rem; }
.legal h3 + p { margin-top: 0; }
.legal address {
  font-style: normal; line-height: 1.75; margin-top: 0.5rem;
  color: var(--char);
}
.legal a { color: var(--rust-deep); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease); word-break: break-word; }
.legal a:hover { border-bottom-color: currentColor; }

/* =====================================================================
   19. (Cookie banner removed - site needs no consent UI by design)
   ===================================================================== */

/* =====================================================================
   19. SOUL BLUEPRINT PAGE COMPONENTS
   ===================================================================== */
/* hero sublines */
.subline { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: clamp(1.2rem, 0.95rem + 1.2vw, 1.8rem); color: var(--rust-soft); line-height: 1.35; max-width: 50ch; text-shadow: 0 1px 24px rgba(20,17,14,.7), 0 1px 3px rgba(20,17,14,.5); }
.descriptor { font-size: 0.98rem; letter-spacing: 0.01em; color: var(--beige-dim); max-width: 46ch; margin-top: var(--space-2); }

/* photo page-header (Soul Blueprint) - full screen, real image, text right */
.pagehead--photo { min-height: 100svh; }
.pagehead--photo .wrap { text-align: right; }
.pagehead--photo .wrap > * { margin-left: auto; }
.pagehead--photo .cta-row { justify-content: flex-end; }
.pagehead--photo .hero__media-label { right: auto; left: var(--gutter); }
.pagehead--photo .hero__media {
  /* full-strength image - only a slim top strip darkened so the nav stays legible */
  background:
    linear-gradient(180deg, rgba(20,17,14,.42) 0%, transparent 13%),
    url("../soul-blueprint-header.jpg");
  background-size: cover; background-position: center;
}
.pagehead--photo .hero__media::before,
.pagehead--photo .hero__light { display: none; }
/* legibility comes from text shadow, not from dimming the photo */
.pagehead--photo h1,
.pagehead--photo .descriptor { text-shadow: 0 2px 26px rgba(20,17,14,.6), 0 1px 4px rgba(20,17,14,.55); }
/* mobile: photo has bright patches -> add a stronger bottom scrim + heavier text shadow so the fox-brown text stays legible */
@media (max-width: 700px) {
  .pagehead--photo .hero__media {
    background:
      linear-gradient(180deg, rgba(20,17,14,.42) 0%, transparent 13%),
      linear-gradient(0deg, rgba(20,17,14,.82) 24%, rgba(20,17,14,.55) 52%, rgba(20,17,14,.25) 74%, transparent 88%),
      url("../soul-blueprint-header.jpg");
    background-size: cover; background-position: center;
  }
  .pagehead--photo .subline { text-shadow: 0 2px 22px rgba(20,17,14,.9), 0 1px 4px rgba(20,17,14,.85); }
  .pagehead--photo h1,
  .pagehead--photo .descriptor { text-shadow: 0 2px 24px rgba(20,17,14,.85), 0 1px 4px rgba(20,17,14,.8); }
}

/* about portrait - real image with a subtle orange/blue wash on top */
.figure--portrait {
  /* source image is 879x1400 - cap display size so it never upscales (stays sharp) */
  max-width: 440px; width: 100%; margin-inline: auto;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(201,116,63,.16), transparent 38%),
    linear-gradient(320deg, rgba(31,58,66,.20), transparent 42%),
    url("../alexandra-portrait3.jpg");
  background-size: cover; background-position: center top;
}

/* aurora gradient ground (orange + blue) - matches the portrait wash */
.section--glow {
  background:
    radial-gradient(85% 60% at 22% 12%, rgba(201,116,63,.26), transparent 55%),
    radial-gradient(80% 75% at 88% 92%, rgba(31,58,66,.55), transparent 60%),
    linear-gradient(160deg, #241c14, #1a1714 55%, #1a2832);
}

/* tighter vertical rhythm for a section (half the usual padding) */
.section--tight { padding-block: clamp(2.25rem, 1.5rem + 3vw, 4.5rem); }

/* anchored sections (one-pager nav): offset the scroll target below the fixed nav */
#ueber-mich, #stimmen, #prozess { scroll-margin-top: 84px; }

/* ---- FAQ accordion (elegant, smooth unfold via grid-rows) ---- */
.faq__list { border-top: 1px solid var(--ink-line); }
.faq__item { border-bottom: 1px solid var(--ink-line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.22rem); line-height: 1.3;
  color: var(--beige); transition: color .3s var(--ease);
}
.faq__q:hover, .faq__item.is-open .faq__q { color: var(--cream); }
/* plus icon that turns into a minus when open */
.faq__icon { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--rust-soft); border-radius: 2px;
}
.faq__icon::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after {
  width: 2px; height: 15px; transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out), opacity .3s var(--ease);
}
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
/* smooth height reveal */
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  padding-bottom: 1.4rem; max-width: 64ch;
  font-size: 0.95rem; line-height: 1.68; color: var(--beige-dim);
}
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---- fanned "tarot" deck straddling the hero + reviews boundary (Soul Blueprint) ---- */
/* override the global .section overflow:hidden so the deck can rise into the hero + above the nav */
.sb-reviews { position: relative; overflow: visible; }
.sb-reviews .wrap { position: relative; }
.sb-deck {
  position: absolute; left: 30px; top: -230px; z-index: 60;
  width: 360px; height: 430px; pointer-events: none;
}
.sb-card {
  position: absolute; top: 0; left: 0;
  width: 216px; aspect-ratio: 2 / 3;
  border-radius: 15px; padding: 3px;
  /* gold-to-rust metallic frame, matches the site palette */
  background: linear-gradient(150deg, #E6C079 0%, var(--rust) 55%, var(--rust-deep) 100%);
  box-shadow:
    0 34px 66px -26px rgba(20,15,10,.72),
    0 6px 18px -8px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.35);
  transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
  animation: deckIn 1.05s var(--ease-out) var(--d, 0s) backwards;
}
.sb-card__img {
  display: block; width: 100%; height: 100%;
  border-radius: 12px; background-size: cover; background-position: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}
/* wider-angled fan (more spread + more rotation so the back cards show more) */
.sb-card--back  { --tx: 0px;   --ty: 66px; --rot: -27deg; --d: .05s; z-index: 1; }
.sb-card--mid   { --tx: 56px;  --ty: 34px; --rot: -14deg; --d: .20s; z-index: 2; }
.sb-card--front { --tx: 114px; --ty: 52px; --rot: -6deg;  --d: .36s; z-index: 3; }
.sb-card--back  .sb-card__img { background-image: url("../card-back2.jpg"); }
.sb-card--mid   .sb-card__img { background-image: url("../card-back.jpg"); }
/* front card: portrait with the same orange/blue wash as the portrait further down */
.sb-card--front .sb-card__img {
  background-image:
    linear-gradient(160deg, rgba(201,116,63,.18), transparent 40%),
    linear-gradient(320deg, rgba(31,58,66,.24), transparent 44%),
    url("../alexandra-portrait2.jpg");
  background-position: center top;
}
/* emerge-on-load ONCE: cards rise + fade into their fanned position (no loop, no hover) */
@keyframes deckIn {
  from {
    opacity: 0;
    transform: translate(calc(var(--tx) * .35), calc(var(--ty) + 64px)) rotate(calc(var(--rot) * .35)) scale(.9);
  }
  to {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
  }
}
/* spacer reserves the top-left column so review boxes resume BELOW the cards
   (reviews stay 3-column; only the left column starts lower) */
.sb-reviews__spacer { display: none; }
@media (min-width: 1200px) {
  .sb-reviews__spacer { display: block; height: 185px; break-inside: avoid; }
}
/* below 1200px: the straddling absolute deck doesn't fit -> show a small in-flow deck
   right under the header, then the reviews (full width) below it */
@media (max-width: 1199px) {
  .sb-deck {
    position: relative; left: auto; top: auto; z-index: 1;
    width: 300px; height: 250px;
    margin: 0.25rem auto 1.75rem;
    transform: scale(.72); transform-origin: top center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sb-card { animation: none; }
}

/* decorative accent: the two back cards, tilted, in the top-right whitespace of a section
   (adds dynamism without overlapping text; desktop only) */
/* overflow visible so the accent can straddle up into the section above */
.sb-accent-host { position: relative; overflow: visible; }
.sb-accent {
  position: absolute; top: -112px; right: 260px; z-index: 3;
  width: 300px; height: 360px; pointer-events: none;
}
.sb-accent .sb-card { animation: none; }
.sb-card--a2 { --tx: 0px;  --ty: 30px; --rot: 15deg; z-index: 1; }
.sb-card--a1 { --tx: 78px; --ty: 0px;  --rot: 6deg;  z-index: 2; }
.sb-card--a2 .sb-card__img { background-image: url("../card-back2.jpg"); }
.sb-card--a1 .sb-card__img { background-image: url("../card-back.jpg"); }
@media (max-width: 1199px) { .sb-accent { display: none; } }

/* =====================================================================
   MANIFESTO - full-bleed dark signature moment (light grows out of dark)
   ===================================================================== */
.manifesto {
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 118%, #241a12, transparent 60%), #131009;
  color: var(--cream);
  padding-block: clamp(6rem, 4rem + 9vw, 11rem);
  text-align: center;
}
.manifesto__glow {
  position: absolute; z-index: -1; left: 50%; top: 48%;
  width: min(125vw, 1100px); aspect-ratio: 1; translate: -50% -50%;
  background: radial-gradient(closest-side, rgba(201,116,63,.42), rgba(181,86,43,.12) 45%, transparent 72%);
  filter: blur(10px);
  opacity: 0; transform: scale(.62);
  transition: opacity 1.6s var(--ease-out), transform 1.9s var(--ease-out);
}
.manifesto.is-in .manifesto__glow { opacity: 1; transform: scale(1); }
.manifesto .eyebrow { justify-content: center; margin-bottom: var(--space-4); }
.manifesto__line { display: block; overflow: hidden; padding-block: 0.04em; }
.manifesto__line > span {
  display: inline-block;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(2.3rem, 1.3rem + 5vw, 5.4rem); line-height: 1.08; letter-spacing: 0.005em;
  transform: translateY(118%);
  transition: transform 1s var(--ease-out);
}
.manifesto.is-in .manifesto__line > span { transform: translateY(0); }
.manifesto__line--accent > span { color: var(--rust-soft); transition-delay: 0.14s; }
.manifesto .cta-row { justify-content: center; margin-top: var(--space-5); }
@media (prefers-reduced-motion: reduce) {
  .manifesto__line > span { transform: none; }
  .manifesto__glow { opacity: 0.8; transform: none; }
}

/* =====================================================================
   CHECKLIST · COMPARE · LIFE-WHEEL IMAGE · ZODIAC BAND
   ===================================================================== */
/* two-column intro + list layout (fills the section, balanced) */
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: start; }
.split-list .checklist { max-width: none; }
@media (max-width: 860px) {
  .split-list { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* elegant bulleted list with staggered scroll reveal */
.checklist { list-style: none; display: grid; gap: 0.9rem; max-width: 60ch; }
.checklist li { position: relative; padding-left: 1.9rem; line-height: 1.55; color: var(--beige); }
.section--light .checklist li, .section--cream2 .checklist li { color: var(--char); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rust-soft); box-shadow: 0 0 0 4px rgba(201,116,63,.14);
}
.section--light .checklist li::before, .section--cream2 .checklist li::before {
  background: var(--rust); box-shadow: 0 0 0 4px rgba(181,86,43,.12);
}
.checklist li:nth-child(2) { transition-delay: .07s; }
.checklist li:nth-child(3) { transition-delay: .14s; }
.checklist li:nth-child(4) { transition-delay: .21s; }
.checklist li:nth-child(5) { transition-delay: .28s; }
.checklist li:nth-child(6) { transition-delay: .35s; }

/* life-areas wheel as an image (light line-art on a dark ground) */
.wheel-img { width: 100%; max-width: 460px; margin-inline: auto; display: block; }

/* comparison - Ohne Blueprint / Mit Blueprint */
.compare { margin-top: var(--space-4); display: grid; }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(1rem, 2.5vw, 3rem); }
.compare__cell { padding: 1.05rem 0 1.05rem 1.5rem; border-bottom: 1px solid var(--cream-line); line-height: 1.5; font-size: 0.98rem; position: relative; }
.compare__cell.before { color: var(--char-dim); }
.compare__cell.before::before { content: ""; position: absolute; left: 0; top: 1.4em; width: 8px; height: 8px; border-radius: 50%; background: var(--char-dim); opacity: .5; }
.compare__cell.after { color: var(--char); font-weight: 500; }
.compare__cell.after::before { content: ""; position: absolute; left: 0; top: 1.4em; width: 9px; height: 9px; border-radius: 50%; background: var(--rust); }
.compare__row--head .compare__cell {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; padding-block: 0 0.8rem; border-bottom: 1px solid var(--char);
}
.compare__row--head .compare__cell::before { display: none; }
.compare__row--head .before { color: var(--char-dim); }
.compare__row--head .after { color: var(--rust-deep); }
@media (max-width: 620px) {
  .compare__row { grid-template-columns: 1fr; }
  .compare__row--head { display: none; }
}

/* life-areas - epic full-bleed: complete graphic, dimmed, text centered on top */
.areas {
  position: relative; isolation: isolate; overflow: hidden;
  background: #07060a;
  color: var(--beige);
  min-height: clamp(640px, 94svh, 940px);
  display: grid; place-items: center; text-align: center;
}
.areas__media {
  position: absolute; inset: 0; z-index: -1;
  background: url("../zodiacsigns-circle.jpg") center / contain no-repeat;
  opacity: 0.32;
  animation: areas-breathe 26s ease-in-out infinite alternate;
}
@keyframes areas-breathe { to { transform: scale(1.05); } }
.areas__inner { max-width: 700px; margin-inline: auto; padding-inline: var(--gutter); }
.areas__inner h2 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem); }
.areas__inner .eyebrow { justify-content: center; }
.areas__inner .prose { max-width: 40ch; margin-inline: auto; text-align: center; }
.areas__inner .prose p { color: var(--beige); }
.areas__inner .prose strong { color: var(--cream); }
@media (prefers-reduced-motion: reduce) { .areas__media { animation: none; } }

/* DM / message-style testimonials (no portraits) */
.dm-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.dm {
  background: #fff; border: 1px solid var(--cream-line); border-radius: 18px;
  padding: 1.2rem 1.3rem 1rem; box-shadow: 0 18px 40px -30px rgba(36,31,26,.5);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.dm__head { display: flex; align-items: center; gap: 0.6rem; }
.dm__dot { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(150deg, var(--rust-soft), var(--rust-deep)); flex: 0 0 auto; }
.dm__who { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--char); }
.dm__time { font-size: 0.7rem; color: var(--char-dim); margin-left: auto; }
.dm__bubble { background: var(--cream-2); border-radius: 14px 14px 14px 4px; padding: 0.8rem 0.95rem; font-size: 0.9rem; line-height: 1.5; color: var(--char); }
.dm__bubble + .dm__bubble { background: #ECE3D2; border-radius: 14px 14px 4px 14px; align-self: flex-end; }
.dm__meta { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--char-dim); margin-top: 0.2rem; }

/* painpoints grid */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.pain {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: var(--space-3); border: 1px solid var(--ink-line); border-radius: var(--radius);
  background: var(--ink-3); transition: border-color .4s var(--ease);
}
.pain:hover { border-color: var(--rust); }
.pain__i { width: 26px; height: 26px; flex: 0 0 auto; }
.pain__i svg { width: 26px; height: 26px; stroke: var(--rust-soft); fill: none; stroke-width: 1.4; }
.pain p { color: var(--beige); font-size: 0.96rem; line-height: 1.55; }

/* wheel of life */
.wheel-wrap { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.wheel { width: 100%; max-width: 440px; margin-inline: auto; }
.wheel__slice { stroke: var(--cream); stroke-width: 1.2; transition: opacity .35s var(--ease), transform .4s var(--ease-out); transform-origin: 200px 200px; cursor: default; }
.wheel__slice:hover { opacity: 1 !important; transform: scale(1.04); }
.wheel__label { font-family: var(--font-body); font-size: 11px; font-weight: 600; fill: var(--cream); letter-spacing: 0.02em; }
.wheel__hub { fill: var(--ink); stroke: var(--rust); stroke-width: 1.5; }
.wheel__hub-text { font-family: var(--font-display); font-style: italic; font-size: 15px; fill: var(--rust-soft); }

/* testimonial cards with avatars */
.tcard {
  background: #fff; border: 1px solid var(--cream-line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1vw, 2.3rem); display: flex; flex-direction: column; gap: var(--space-3);
  box-shadow: 0 20px 44px -30px rgba(36,31,26,.45);
}
.tcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.tcard__name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; line-height: 1.1; color: var(--char); white-space: nowrap; }
.tcard__role { display: block; margin-top: 0.4rem; font-style: italic; font-size: 0.9rem; color: var(--char-dim); }
.tcard__avatar {
  width: 128px; height: 128px; border-radius: 50%; flex: 0 0 auto; object-fit: cover;
  /* lift the photo up so it overlaps the card's top edge - more dynamic */
  margin-top: calc(-1.8rem - clamp(1.6rem, 1.2rem + 1vw, 2.3rem));
  border: 5px solid #fff;
  box-shadow: 0 10px 24px -8px rgba(36,31,26,.42);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--cream);
  background: linear-gradient(150deg, var(--rust-soft), var(--pine-2));
}
.tcard__quote { font-size: 1rem; line-height: 1.65; color: var(--char); }
.tcard__quote strong { font-weight: 700; color: var(--char); }
.tcard__quote em { font-style: italic; }

/* process flow */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); counter-reset: flow; }
.flow__step { position: relative; padding-top: var(--space-3); border-top: 2px solid var(--ink-line); }
.flow__step::before { display: none; }
.flow__step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.flow__step p { font-size: 0.88rem; color: var(--beige-dim); line-height: 1.55; }
/* first step keeps a static orange top-stroke as an accent */
.flow__step.is-cta { border-top-color: var(--rust); }
/* "what you get" bullet list in the last step */
.flow__list { list-style: none; display: grid; gap: 0.55rem; margin-top: 0.1rem; }
.flow__list li { position: relative; padding-left: 1.1rem; font-size: 0.88rem; line-height: 1.5; color: var(--beige-dim); }
.flow__list li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 6px; height: 6px; border-radius: 50%; background: var(--rust); }
.flow__list li strong { color: var(--beige); font-weight: 600; }
/* CTA centered below all steps */
.flow__cta { grid-column: 1 / -1; justify-self: center; margin-top: var(--space-5); }

/* screenshot-style reviews - dark boxes on a bright section, bright text, masonry */
.reviews { columns: 3 270px; column-gap: var(--space-3); }
/* registered so the glow position can transition (lag behind the cursor) */
@property --mx { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --my { syntax: "<length>"; inherits: false; initial-value: 0px; }
.review {
  position: relative; overflow: hidden;
  break-inside: avoid; margin: 0 0 var(--space-3);
  background: var(--ink); color: var(--beige);
  border: 1px solid var(--ink-line); border-radius: var(--radius);
  padding: clamp(1rem, 0.8rem + 0.5vw, 1.35rem);
  box-shadow: 0 18px 42px -30px rgba(0,0,0,.55);
  /* eased follow - the glow trails the pointer slightly (plus keep the reveal fade) */
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), --mx .45s var(--ease-out), --my .45s var(--ease-out);
}
/* subtle glow that follows the cursor with a slight delay (--mx / --my set in JS) */
.review::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(201,116,63,.16), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.review:hover::before { opacity: 1; }
.review > * { position: relative; }
.review__mark { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1; color: var(--rust-soft); margin-bottom: 0.3rem; }
.review p { font-size: 0.86rem; line-height: 1.58; color: var(--beige); }

/* readable wide quote (e.g. the Cobain pull-quote) */
.quote--wide { max-width: 760px; }
.quote--wide .display { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.7rem); line-height: 1.18; }

@media (max-width: 920px) {
  .dm-row { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .wheel-wrap { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__cta { grid-column: 1 / -1; justify-self: center; margin-top: var(--space-4); }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
}

/* =====================================================================
   PER-PAGE THEMES (set via class on <body>)
   - default (no class)  = Soul Blueprint / About / legal  -> rust
   - .theme-forest        = Home + 1:1 Mentoring            -> green (#c7e8a5)
   - .theme-recall        = The Recall                      -> lake blue + gold
   Base dark (anthracite) stays for forest; recall tints it bluer.
   ===================================================================== */

/* ---------- FOREST (Home + Mentoring) ---------- */
.theme-forest {
  --rust:      #4C7A3F;   /* mid leaf green - markers on light surfaces      */
  --rust-soft: #C7E8A5;   /* bright accent on dark surfaces                  */
  --rust-deep: #2E5A39;   /* deep forest - accent text on light (readable)   */
  --pine:      #1C2A22;   /* counterpoint band = deep fir green              */
  --pine-2:    #24372C;
  --pine-line: #36473B;
}
/* atmospheric glows -> green / lake-blue (home keeps its dune photo hero) */
.theme-forest .pagehead .hero__media {
  background:
    radial-gradient(120% 80% at 70% 12%, rgba(199,232,165,.20), transparent 55%),
    linear-gradient(180deg, #14110e 0%, #161d18 45%, #16211c 78%, #14110e 100%);
}
.theme-forest .pagehead .hero__light {
  background: radial-gradient(closest-side, rgba(228,240,214,.42), rgba(120,170,120,.16) 45%, transparent 75%);
}
.theme-forest .figure {
  background:
    radial-gradient(90% 60% at 30% 20%, rgba(120,170,120,.30), transparent 60%),
    linear-gradient(160deg, #1d271d, #14110e 60%, #15242a);
}
.theme-forest .manifesto { background: radial-gradient(120% 90% at 50% 118%, #16210f, transparent 60%), #0f1209; }
.theme-forest .manifesto__glow { background: radial-gradient(closest-side, rgba(199,232,165,.34), rgba(120,170,120,.12) 45%, transparent 72%); }

/* ---------- RECALL (The Recall) ---------- */
.theme-recall {
  --ink:       #141A20;   /* deep lake-blue anthracite (base)                */
  --ink-2:     #19222B;
  --ink-3:     #212D38;
  --ink-line:  #35434F;
  --rust:      #B98A3C;   /* gold - markers on light                         */
  --rust-soft: #E2B873;   /* bright gold on dark                             */
  --rust-deep: #7C5A1F;   /* deep gold - accent text on light                */
  --pine:      #142231;   /* counterpoint = deeper lake blue                 */
  --pine-2:    #1B2E40;
  --pine-line: #2E445A;
}
.theme-recall .pagehead .hero__media {
  background:
    radial-gradient(120% 80% at 70% 12%, rgba(226,184,115,.20), transparent 55%),
    linear-gradient(180deg, #0f141a 0%, #141d27 45%, #16222e 78%, #0f141a 100%);
}
.theme-recall .pagehead .hero__light {
  background: radial-gradient(closest-side, rgba(240,225,195,.40), rgba(226,184,115,.16) 45%, transparent 75%);
}
.theme-recall .figure {
  background:
    radial-gradient(90% 60% at 30% 20%, rgba(226,184,115,.26), transparent 60%),
    linear-gradient(160deg, #1a232e, #121820 60%, #142231);
}

/* =====================================================================
   STORY LAYOUT (alternating image/text) · COMPARE HIGHLIGHT · SPACING
   ===================================================================== */
/* alternating image + text rows (zigzag) */
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.figure--land { aspect-ratio: 4 / 3; }
/* taurus/zodiac image with the same orange/blue wash as the other photos (consistency) */
.figure--taurus {
  background:
    linear-gradient(160deg, rgba(201,116,63,.16), transparent 42%),
    linear-gradient(320deg, rgba(31,58,66,.24), transparent 46%),
    url("../taurus-zodiac-web.jpg");
  background-size: cover; background-position: center;
}
/* square frame that shows a square graphic complete & undistorted - free, no box */
.figure--wheel { aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 2%;
  background: none; border: none; box-shadow: none; }
.figure--wheel::after { display: none; }
.figure--wheel img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 860px) { .split-media .figure--wheel { aspect-ratio: 1 / 1; } }
@media (max-width: 860px) {
  .split-media { grid-template-columns: 1fr; gap: var(--space-4); }
  .split-media .figure { order: 0; aspect-ratio: 16 / 11; }
}

/* consistent breathing room between a heading and its intro text (site-wide) */
h2 + .lede, h2 + .prose { margin-top: 1.75rem; }

/* checklist: 7th item keeps the staggered reveal */
.checklist li:nth-child(7) { transition-delay: .42s; }

/* compare: gently highlight the "Mit Blueprint" column + centered closing line */
.compare__cell.after { background: rgba(181,86,43,.06); padding-right: 1rem; }
.compare__closer { text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem); color: var(--rust-deep); margin-top: var(--space-4); }

/* small, unobtrusive testimonial disclaimer */
.disclaimer {
  max-width: 62ch; margin: var(--space-5) auto 0;
  text-align: center; font-size: 0.72rem; line-height: 1.55;
  color: var(--char-dim); opacity: 0.7;
}
.section--dark .disclaimer, .section--pine .disclaimer { color: var(--beige-dim); }
