/* ─── Sun & Soul: Landing Site ──────────────────────────────────────
   Design system inspired by the Canva brand guide:
     highlight  #EEEAD0  = cream logo tone
     shadow     #A29181  = warmes Greige (=brand-Ton, tonal; Kontrast 2.59 auf paper, bewusst soft)
     brand      #A29181  = warm neutral (from logo palette st1)
     paper      #F2ECE3  = light cream page bg
     ink        #241811  = deep chocolate text on paper
   ────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Moneta';
  src: url('./public/fonts/Moneta-Light.woff2') format('woff2'),
       url('./public/fonts/Moneta-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('./public/fonts/Montserrat-Regular.woff2') format('woff2'),
       url('./public/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --highlight: #EEEAD0;
  --white: #FFFFFF; /* Standardweiß für helle Buttons */
  --shadow: #A29181; /* warmes Greige-Akzent (tonal, = brand) */
  --brand: #A29181;
  --paper: #F2ECE3;
  --ink: #241811;
  --ink-soft: rgba(36, 24, 17, 0.8); /* Body-/Listen-Text (weiches Ink) */
  --bg-deep: #1e130c;
  --bg-mid: #3a2519;

  --font-serif: 'Moneta', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --track-heading: 0.12em;
  --track-body: 0.02em;
  --max-content: 1200px;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

html, body {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: var(--track-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 2px solid var(--shadow);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--shadow); color: var(--highlight); }

h1, h2, h3 { text-wrap: balance; }

/* ─── Basis-Typo-Skala (global, überall gleich) ─────────────────
   h2 = große Serifen-Headline (wie „Mein Weg zum Reiki")
   h3 = kleinere Serifen-Subheadline (eine Stufe unter h2)
   p  = normaler Fließtext (Montserrat), Farbe erbt vom Kontext */
h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 1.2rem; /* Grundabstand Header → Folgetext */
}
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 0.65rem; /* Grundabstand Header → Folgetext */
}
p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft); /* weiches Ink (=Listen-Ton), Kontext-Farben überschreiben */
  margin-bottom: 1rem; /* Grundabstand zwischen Absätzen (global) */
}
p:last-child { margin-bottom: 0; }

/* ─── Utility: shared typography ──────────────────────────────── */

.serif-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.serif-heading--light { color: var(--highlight); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--highlight); opacity: 0.72; }

.link-underline {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-underline:hover { color: var(--shadow); }

/* ─── NAV ─────────────────────────────────────────────────────── */

/* Transparent über dunklen Headern; sobald helle Sektionen beginnen: solid paper + invertierte Schrift */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav__brand img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  transition: filter 0.4s ease;
}
.nav.nav--solid {
  background: rgba(242, 236, 227, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(36, 24, 17, 0.06);
}
.nav.nav--solid .nav__brand img {
  /* cream → warm dark tone for paper bg */
  filter: brightness(0.16) saturate(1.2);
}
.nav.nav--solid .nav__links a { color: var(--ink); opacity: 0.85; }
.nav.nav--solid .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}
.nav.nav--solid .nav__cta:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}
.nav__links a:hover { opacity: 1; color: var(--shadow); }
.nav__cta {
  border: 1px solid var(--highlight);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav__cta:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--highlight);
  transition: background-color 0.2s ease;
}
.nav__toggle span:nth-child(1) { top: 8px; }
.nav__toggle span:nth-child(2) { top: 16px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav.nav--solid .nav__toggle span { background: var(--ink); }

/* ─── HERO ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  /* Farbe der unteren Bildkante, falls der Hero (durch Inhalt) höher als 100vh
     ist, geht der Bereich unter dem 100vh-Bild nahtlos weiter statt als Balken */
  background-color: #37271A;
}
/* Bild + Overlay fest auf 100vh (nicht an die Hero-Höhe gekoppelt) →
   exakt dieselbe Referenz wie .page-header::before → bei jedem Viewport deckungsgleich */
.hero__bg {
  position: absolute;
  inset: 0; /* füllt den ganzen Hero, kein Balken, auch wenn Hero > 100vh */
  /* PNG als Rueckfall zuerst, moderne Browser nehmen die WebP-Zeile darunter.
     936 KB PNG -> 15 KB WebP bei praktisch identischer Darstellung. */
  background-image: url('./public/hero-bg.png');
  background-image: -webkit-image-set(url('./public/hero-bg.webp') type('image/webp'), url('./public/hero-bg.png') type('image/png'));
  background-image: image-set(url('./public/hero-bg.webp') type('image/webp'), url('./public/hero-bg.png') type('image/png'));
  background-size: cover;
  background-position: center top; /* oben verankert (obere Bildkante immer sichtbar) */
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 55%,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.42) 65%,
      rgba(0, 0, 0, 0.68) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5vw;
}
/* Logo + Tagline füllen exakt den ersten Screen (100vh) → beim Laden sieht man
   nur diesen Block; Subtitle + Buttons liegen darunter (erst nach Scrollen). */
.hero__lead {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: var(--nav-h) 0 2vh;
}
/* liegt unter dem Fold: Subtitle + CTA, sichtbar nach dem Scrollen */
.hero__rest {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4vh 0 8vh;
  text-align: center;
}
.hero__logo-wrap {
  width: min(46%, 640px);
  display: flex;
  justify-content: center;
}
.hero__logo {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 3px 24px rgba(162, 145, 129, 0.20))
    drop-shadow(0 0 60px rgba(162, 145, 129, 0.10));
}
.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  opacity: 0.7;
  margin: 0; /* Hero nutzt Flex-Gap, kein p-margin */
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.5;
  color: var(--highlight);
  opacity: 0.88;
  max-width: 620px;
  text-align: center;
  margin: 0; /* Hero nutzt Flex-Gap, kein p-margin */
}
.hero__actions {
  display: flex;
  gap: 1rem;
}
.btn--ghost {
  background: transparent;
  color: var(--highlight);
  border: 1px solid var(--highlight);
}
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* ─── SECTION BASE ────────────────────────────────────────────── */

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 5vw;
  background: var(--paper);
}
.section--paper { background: var(--paper); }
.section--dark {
  background: var(--bg-deep);
  color: var(--highlight);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(162, 145, 129, 0.14) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(ellipse at 80% 70%, rgba(162, 145, 129, 0.12) 0%, rgba(0,0,0,0) 60%);
}

.section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.section__inner--narrow { max-width: 720px; text-align: center; }

.section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
/* Content-Intro = normaler Fließtext (gleicher weicher Ink-Ton) */
.section__intro {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto; /* Abstand kommt jetzt vom h2-margin-bottom */
  color: var(--ink-soft);
}
/* Kontakt-/CTA-Sektionen (dunkel) ausgenommen → Serif-Intro bleibt */
.section__intro--light {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--highlight);
  opacity: 0.85;
}

/* ─── ABOUT (split) ───────────────────────────────────────────── */

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.split__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--brand) 0%, var(--bg-mid) 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
/* Ovale Bildmaske (Mission), exakt wie Originalseite:
   aspect-[3/4], rounded-full, max-w-sm (24rem), mx-auto, object-top */
.split__media--oval {
  width: min(100%, 24rem);
  margin-inline: auto;
  align-self: start; /* oben mit der Überschrift ausrichten (bei langem Text) */
  aspect-ratio: 3 / 4;
  border-radius: 9999px;
  background: none;
}
.split__media--oval .cover-img {
  border-radius: 9999px;
  object-position: top;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(238, 234, 208, 0.5);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.32em;
}
.split__body p { margin-bottom: 1rem; max-width: 520px; }

/* Angebots-Blöcke in der Mission (Reiki / Energy Clearings / E-Books) */
.offer-list { margin-top: 2.25rem; max-width: 520px; }
.offer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(36, 24, 17, 0.1); /* dezente Trennlinie, über jedem Block, inkl. Reiki */
}
.offer + .offer { margin-top: 1.5rem; }
.offer__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.offer p { margin-bottom: 0; }

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
/* Quote: kursiv + Akzent-Rand als „Pull-Quote", aber barrierefrei, Montserrat (lesbare Strichstärke) statt dünner Light-Serif,
   Farbe #4a3d2b = 8.97:1 auf paper (AAA). */
.quote-inline {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a3d2b;
  border-left: 2px solid #4a3d2b;
  padding-left: 1rem;
  margin: 1.25rem 0;
}
.split__body p { max-width: 560px; }

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────── */

/* Feste 480px-Höhe → alle Unterseiten-Header identisch hoch. */
.page-header {
  height: 480px;
  padding: var(--nav-h) 5vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-deep);
  color: var(--highlight);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Hintergrund exakt wie der Landing-Hero: ::before ist eine echte 100vh-Box
   (gleiche Referenz wie .hero), gleiches Bild + gleicher Overlay, gleiches
   center/cover. Die 480px-Sektion schneidet davon nur den unteren Teil ab →
   Bildgröße bei jedem Viewport 1:1 identisch zur Startseite. */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background:
    radial-gradient(
      ellipse at 50% 55%,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.42) 65%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    url('./public/hero-bg.png') center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
.page-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Headline-Farbe = Logo-Cream auf der Landingpage (#EEEAD0, ungedimmt) */
.page-header h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--highlight);
}
.page-header p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  max-width: 620px;
  margin: 0 auto;
  color: var(--highlight);
  opacity: 0.9;
}
/* ─── PROSE (long-form content) ───────────────────────────────── */

.prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
}
/* Look von den globalen h2/h3-Regeln; hier nur Abstände */
.prose h2 { margin-top: 2.75rem; margin-bottom: 1.1rem; }
.prose h3 { margin-top: 2.25rem; margin-bottom: 0.9rem; }
.prose p { margin-bottom: 1rem; }
.prose .lead + p { margin-top: 1.25rem; }
.prose ul { margin: 1rem 0 1.5rem 1.25rem; }
.prose li { padding: 0.35rem 0; line-height: 1.55; }

/* ─── FEATURE GRID (Vorteile/After) ───────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.feature-col h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(162, 145, 129, 0.24);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  /* 2 Zeilen reservieren + Text unten bündig, damit die Unterstriche ALLER
     Spalten-Header auf gleicher Höhe liegen, auch wenn ein Header umbricht. */
  min-height: 4.25rem;
  display: flex;
  align-items: flex-end;
}
.feature-col ul { list-style: none; padding: 0; }
.feature-col li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(36, 24, 17, 0.06);
  color: var(--ink-soft);
}
.feature-col li:last-child { border-bottom: 0; }

.after-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.after-col {
  background: var(--paper);
  border: 1px solid rgba(162, 145, 129, 0.3);
  border-radius: 6px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(36, 24, 17, 0.05);
}
.after-col__icon {
  color: var(--shadow);
  margin-bottom: 0.75rem;
  display: block;
  line-height: 0;
}
.after-col h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.after-col p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

/* ─── COMPARE (Reiki vs Fern-Reiki) ───────────────────────────── */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.compare-col {
  padding: 2rem;
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid rgba(162, 145, 129, 0.3);
  box-shadow: 0 14px 34px rgba(36, 24, 17, 0.05);
  display: flex;
  flex-direction: column;
}
/* Preisbox + Button ans untere Ende schieben → über beide Spalten auf gleicher Höhe */
.compare-col .price-box { margin-top: auto; }
.compare-col h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

/* ─── STEPS (session flow) ───────────────────────────────────── */

.steps {
  margin: 2rem 0;
  list-style: none;
  padding: 0;
  counter-reset: step;
  max-width: 680px;
}
.steps li {
  counter-increment: step;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  position: relative;
  border-bottom: 1px solid rgba(36, 24, 17, 0.1);
  color: var(--ink-soft);
  line-height: 1.55;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--shadow);
  width: 3rem;
  text-align: left;
}
.steps li:last-child { border-bottom: 0; }

/* ─── PRICE BLOCK ─────────────────────────────────────────────── */

.price-box {
  background: var(--paper);
  border: 1px solid rgba(162, 145, 129, 0.24);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.price-box__meta { flex: 1; }
.price-box__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.25rem;
}
.price-box__desc { color: var(--ink-soft); }
.price-box__price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--shadow);
}

/* ─── FACTS GRID (Über mich) ─────────────────────────────────── */

.facts-grid {
  columns: 2;
  column-gap: 3rem;
  margin: 2rem 0;
}
.fact-col {
  break-inside: avoid;
  margin-bottom: 2.5rem;
}
.fact-col p { color: var(--ink-soft); }
.fact-col h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.fact-col ul { list-style: none; padding: 0; }
.fact-col li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(36, 24, 17, 0.08);
  color: var(--ink-soft);
}
.fact-col li:last-child { border-bottom: 0; }

/* ─── ANGEBOT / CARDS ─────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
/* 2-spaltige Card-Reihe (Unterseiten: Reiki, Energy Clearing) */
.cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 800px;
  margin: 0 auto;
}
/* Einzelne, zentrierte Card (Energy Clearing) */
.cards--single {
  grid-template-columns: minmax(0, 388px);
  justify-content: center;
}

/* Reset-Woche Bundle: hervorgehobenes Banner (Landing + Reiki + Energy Clearing) */
.bundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding: 2.25rem 2.75rem;
  background: linear-gradient(120deg, rgba(162, 145, 129, 0.16), rgba(238, 234, 208, 0.34));
  border: 1px solid rgba(162, 145, 129, 0.5);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(36, 24, 17, 0.06);
}
.bundle__main { display: flex; align-items: flex-start; gap: 1.25rem; }
.bundle__icon { color: var(--shadow); line-height: 0; margin-top: 0.15rem; flex-shrink: 0; }
.bundle__badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--shadow);
  color: var(--highlight);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.bundle h3 { margin-bottom: 0.4rem; }
.bundle__desc { max-width: 48ch; margin: 0; }
.bundle__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 0.9rem; flex-shrink: 0; }
.bundle__price { font-family: var(--font-serif); font-size: 2rem; color: var(--shadow); line-height: 1; }
@media (max-width: 720px) {
  .bundle { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .bundle__aside { align-items: flex-start; }
}

/* FAQ: Accordion */
.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: none; }
/* Frage-Header = exakt wie ".feature-col h3" (»Emotional« auf der Reiki-Seite):
   Serif, bold 700, 1.5rem, ink, mit Unterstrich-Linie. */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: block;
  position: relative;
  padding: 1.2rem 3rem 0.65rem 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ink);
  border-bottom: 1px solid rgba(162, 145, 129, 0.4);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover,
.faq-item[open] summary { color: var(--shadow); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--shadow);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "–"; }
/* Aufklapptext = wie die Listenpunkte (».feature-col li«): ink-soft Body-Text. */
.faq-item__body { padding: 1rem 3rem 1.7rem 0; }
.faq-item__body p { margin: 0; color: var(--ink-soft); max-width: 62ch; }
.faq-item__body p + p { margin-top: 0.85rem; }
.faq-item__body strong { color: var(--ink); font-weight: 600; }
.faq-item__body a { color: var(--shadow); }
/* FAQ Zwischenkapitel (kleine Label-Titel im Greige-Akzent) */
.faq-group + .faq-group { margin-top: 3.5rem; }
.faq-group__title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  margin: 0 0 0.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(162, 145, 129, 0.55);
}

/* ─── BUCHEN / Cal.com Embed ──────────────────────────────────── */
.booking-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.booking-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid rgba(162, 145, 129, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.booking-nav a:hover { color: var(--ink); border-color: var(--ink); }
.booking-head { max-width: 640px; margin: 0 auto 2rem; text-align: center; }
.booking-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--shadow);
  color: var(--highlight);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.booking-meta {
  font-family: var(--font-sans);
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.booking-meta strong { font-family: var(--font-serif); font-weight: 400; font-size: 1.2em; color: var(--ink); }
.cal-embed-host {
  width: 100%;
  max-width: 920px;
  min-height: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(162, 145, 129, 0.25);
  border-radius: 8px;
  overflow: hidden;
}
.cal-embed-host :is(iframe, cal-inline) { width: 100% !important; max-width: 100% !important; min-height: 640px; border: 0; }
.card {
  background: var(--paper);
  border: 1px solid rgba(162, 145, 129, 0.3);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(36, 24, 17, 0.08);
  border-color: rgba(162, 145, 129, 0.5);
}
/* Featured-Karte = gleiche Fläche wie die anderen (kein Extra-Verlauf) */
.card--featured {
  background: var(--paper);
  border-color: rgba(162, 145, 129, 0.3);
}
/* Badge-Stack (mehrere Badges, z.B. Coming Soon + Online) */
.card__badges {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.card__badges .card__badge { position: static; }
.card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.7rem;
  background: var(--shadow);
  color: var(--highlight);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
}
.card__badge--soon {
  background: var(--brand);
  color: var(--paper);
}
.card__meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin: -0.25rem 0 0.75rem;
  font-style: italic;
}
.card__price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--shadow);
  margin: 0.5rem 0 0.75rem;
}
.card__symbol {
  color: var(--shadow);
  margin-bottom: 0.9rem;
  line-height: 0;
}
/* Icon-Größe wird inline am SVG definiert (width/height am Einbindungsort) */
.card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--ink);
}
.card p { color: var(--ink-soft); flex: 1; margin-bottom: 0.5rem; }
/* Meta-Zeile darf NICHT wie die Beschreibung mitwachsen (sonst starten die
   Beschreibungen je nach Meta-Länge auf unterschiedlicher Höhe). 2 Zeilen reserviert,
   damit ein- und zweizeilige Metas die Beschreibung auf gleicher Höhe beginnen lassen. */
.card p.card__meta { flex: 0 0 auto; min-height: 2.9rem; }
/* „Mehr erfahren" unter dem Button: klein, linksbündig, leicht (weniger visuelles Gewicht) */
.card .link-underline {
  align-self: flex-start;
  margin-top: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
}
/* Card-CTA: volle Breite, unten */
.card .btn { align-self: stretch; margin-top: 0.5rem; padding: 0.85rem 1.5rem; }

/* ─── JOURNAL ─────────────────────────────────────────────────── */

.journal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.journal__item {
  border-top: 1px solid rgba(36, 24, 17, 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.journal__date {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
}
.journal__item h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
}
.journal__item p { color: var(--ink-soft); flex: 1; }

/* ─── QUOTES ──────────────────────────────────────────────────── */

/* 4 Stimmen → 2×2 (bei 3 Spalten stünde die vierte allein in Reihe 2).
   align-items:start, damit kurze Zitate nicht auf Höhe der langen gestreckt werden. */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem;
}
.quote {
  padding: 2rem 1.75rem;
  background: var(--paper);
  border-left: 2px solid var(--shadow);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ─── FORM (Kontakt) ──────────────────────────────────────────── */

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--highlight);
  opacity: 0.75;
}
.field input,
.field textarea {
  background: rgba(238, 234, 208, 0.06);
  border: 1px solid rgba(238, 234, 208, 0.25);
  color: var(--highlight);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus {
  border-color: var(--highlight);
  background: rgba(238, 234, 208, 0.09);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  align-self: start;
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 0.5rem;
}
.btn--primary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(36, 24, 17, 0.14);
  box-shadow: 0 10px 26px rgba(36, 24, 17, 0.1);
}
.btn--primary:hover {
  background: var(--shadow);
  border-color: var(--shadow);
  color: var(--highlight);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(162, 145, 129, 0.22);
}

.btn--ghost--dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost--dark:hover { background: var(--ink); color: var(--highlight); }

/* cal.com embed placeholder */
.cal-placeholder {
  background: var(--paper);
  border: 1px dashed rgba(162, 145, 129, 0.4);
  border-radius: 6px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--ink-soft);
}
.cal-placeholder__icon {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--shadow);
  margin-bottom: 1rem;
}
.cal-placeholder__sub {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */

.footer {
  background: var(--bg-deep);
  color: var(--highlight);
  padding: 4rem 5vw 2rem;
}
.footer__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(238, 234, 208, 0.12);
}
.footer__brand img { height: 76px; width: auto; margin-bottom: 1rem; }
.footer__brand p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--highlight); /* Footer ausgenommen → cream, nicht das dunkle Body-Ink */
  opacity: 0.65;
  max-width: 320px;
}
.footer__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--highlight);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-size: 0.92rem;
}
.footer__col a:hover { opacity: 1; color: var(--shadow); }
.footer__bottom {
  max-width: var(--max-content);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .cards, .journal, .quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 6vw; }
  .nav__brand img { height: 36px; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
    gap: 1.5rem;
    background: rgba(30, 19, 12, 0.98);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }
  .nav.nav--open .nav__links { transform: translateY(0); }
  .nav.nav--solid .nav__links {
    background: rgba(242, 236, 227, 0.98);
    border-bottom: 1px solid rgba(36, 24, 17, 0.08);
  }
  .nav__toggle { display: block; }

  .hero__logo-wrap { width: min(78%, 380px); }
  .hero__inner { padding: 0 6vw; }
  .hero__lead { gap: 1.25rem; padding: var(--nav-h) 0 2vh; }

  .section__inner--split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 4 / 3; }

  .cards, .journal, .quotes { grid-template-columns: 1fr; }

  .form { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ─── Zahlungs-Uebergabe (buchen.html) ────────────────────────── */
/* Zwischenmeldung zwischen Terminwahl und Stripe-Checkout. Ohne sie
   wirkt der Wechsel wie ein Haenger, und genau da springen Leute ab. */
.pay-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: rgba(242, 236, 227, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pay-veil.is-on { display: flex; }
.pay-veil__box { max-width: 30rem; }
.pay-veil__spin {
  width: 34px;
  height: 34px;
  margin: 0 auto 1.4rem;
  border: 3px solid rgba(162, 145, 129, 0.3);
  border-top-color: var(--shadow);
  border-radius: 50%;
  animation: pay-veil-spin 0.9s linear infinite;
}
@keyframes pay-veil-spin { to { transform: rotate(360deg); } }
.pay-veil h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.pay-veil .btn { margin-top: 1.25rem; }
.pay-veil__hint { font-size: 0.85rem; color: rgba(36, 24, 17, 0.6); margin-top: 1.25rem; }
