/* ============================================================
   Lebensgrund — site.css (Komponenten + Seiten + Responsive)
   BEM-light, desktop-first (Basis = Artboard-exakt ab 1440px),
   Overrides kaskadieren über 1439 / 1279 / 1023 / 880 / 767 / 479.
   ============================================================ */

/* ---------- 1. Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--accent-strong);
}

a:hover svg {
  stroke: var(--accent-strong);
}

p {
  margin: 0 0 16px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 500px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

/* ---------- 2. Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
}

/* ---------- 3. Motion: Reveal + Entrance ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-reveal), transform 0.6s var(--ease-reveal);
  transition-delay: calc(var(--i, 0) * 70ms);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Linie+Punkt-Signatur wächst beim Reveal */
html.js .label-row .label-row__edge,
html.js .label-row .label-row__rule {
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.7s var(--ease-reveal) 0.1s;
}

html.js .is-visible .label-row__edge,
html.js .is-visible .label-row__rule,
html.js .label-row.is-visible .label-row__edge,
html.js .label-row.is-visible .label-row__rule {
  transform: scaleX(1);
}

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

html.js .hero-anim > .anim {
  animation: lgUp 0.7s var(--ease-reveal) both;
}

html.js .hero-anim > .anim:nth-child(2) {
  animation-delay: 0.12s;
}

html.js .hero-anim > .anim:nth-child(3) {
  animation-delay: 0.24s;
}

/* QA-Modus (?qa=1): nur für Screenshot-Prüfungen */
html.qa .hero-start {
  min-height: 320px;
}
html.qa .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
html.qa .label-row__edge,
html.qa .label-row__rule {
  transform: scaleX(1) !important;
}
html.qa .hero-anim > .anim {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
  html.js .label-row .label-row__edge,
  html.js .label-row .label-row__rule {
    transform: scaleX(1);
  }
}

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 18px 0 16px;
  background: transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: var(--paper);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 50px;
}

.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.site-header__logo img {
  width: 50px;
}

.site-header__rule {
  position: relative;
  flex: 1 1 100px;
  height: 1px;
  background: var(--line-soft);
}

.site-header__rule::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.site-nav {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: var(--fs-nav);
  font-weight: 300;
  letter-spacing: var(--ls-nav);
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color var(--dur-nav) var(--ease), border-color var(--dur-nav) var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}

.site-nav .site-nav__cta {
  border: 1px solid var(--ink);
  padding: 9px 18px;
  white-space: nowrap;
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta[aria-current="page"] {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}

/* Burger (nur ≤880) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 6px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
}

.burger span:nth-child(3) {
  width: 18px;
  align-self: flex-start;
}

/* ---------- 5. Menü-Overlay (mobil) ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 14px 26px 40px;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-overlay__top img {
  width: 40px;
}

.menu-overlay__close {
  padding: 8px 12px;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
}

.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;
}

.menu-overlay__nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.45;
  color: var(--ink);
  padding: 2px 0;
}

.menu-overlay__nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.menu-overlay__cta {
  margin-top: 34px;
  align-self: flex-start;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
  padding: 13px 26px;
}

.menu-overlay__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}

.menu-overlay__meta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.menu-overlay__tagline {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7a622a;
}

html.js .menu-overlay:not([hidden]) .menu-overlay__nav a {
  animation: lgUp 0.4s var(--ease-reveal) both;
}

html.js .menu-overlay:not([hidden]) .menu-overlay__nav a:nth-child(2) { animation-delay: 0.06s; }
html.js .menu-overlay:not([hidden]) .menu-overlay__nav a:nth-child(3) { animation-delay: 0.12s; }
html.js .menu-overlay:not([hidden]) .menu-overlay__nav a:nth-child(4) { animation-delay: 0.18s; }
html.js .menu-overlay:not([hidden]) .menu-overlay__nav a:nth-child(5) { animation-delay: 0.24s; }

body.menu-open {
  overflow: hidden;
}

/* ---------- 6. Side-Rail (nur ≥1280) ---------- */
.side-rail {
  position: fixed;
  left: 57px;
  top: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.side-rail__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 40px;
  padding: 20px 0;
  background: #f0eee685;
  color: var(--ink);
}

.side-rail__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.side-rail__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-cite);
}

.side-rail__spine {
  position: relative;
  display: block;
  width: 1px;
  height: 32px;
  background: var(--line);
}

.side-rail__spine::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.side-rail__spine--top::after {
  bottom: 28px;
}

.side-rail__spine--bottom::after {
  bottom: -5px;
}

.side-rail__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
}

.side-rail__dotwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-rail__connector {
  width: 2px;
  height: 6px;
  background: var(--line);
}

.side-rail__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.side-rail__dot:hover {
  color: var(--accent-strong);
}

.side-rail__dot span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  transition: background var(--dur-fast) var(--ease);
}

.side-rail__dot[aria-current] span,
.side-rail__dot.is-active span {
  background: currentColor;
}

/* ---------- 7. Section-Label (Linie + 4px-Punkt) ---------- */
.label-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.label-row__edge {
  position: relative;
  left: -40px;
  flex: 0 0 auto;
  height: 1px;
  background: var(--line-mid);
  width: max(0px, calc(90vw - 1120px));
  margin-left: calc(-1 * max(0px, calc(90vw - 1160px)));
}

.label-row__edge::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.label-row__text {
  position: relative;
  left: -10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-eyebrow-lg);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  margin: 0;
}

.label-row--xl .label-row__text {
  font-size: var(--fs-eyebrow-xl);
}

.section-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--heading-gap);
  line-height: 1.5;
}

.section-heading--lg {
  font-size: var(--fs-eyebrow-lg);
}

/* ---------- 8. Buttons ---------- */
.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: var(--fs-button);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  padding: 14px 30px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.btn:hover {
  background: var(--ink);
  color: #fff;
}

.btn--lg {
  padding: 15px 34px;
}

.btn--accent {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.btn--accent:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ---------- 9. Wellen ---------- */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  display: block;
  pointer-events: none;
}

.wave--flip {
  transform: rotate(180deg);
}

.wave--m {
  display: none;
  height: 60px;
}

/* ---------- 10. Listen ---------- */
.list-dash li {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.list-dash__marker {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.list-dash__text {
  font-family: var(--font-body);
  font-size: var(--fs-list);
  line-height: var(--lh-list);
  color: var(--ink-body);
  margin: 5px 0 10px;
}

.list-dot li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 10px 0;
}

.list-dot li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bullet);
}

.list-dot__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-body);
}

/* ---------- 11. Kreise + Deko ---------- */
.circle {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circle--sand { background: var(--circle-sand); }
.circle--butter { background: var(--circle-butter); }

.spine {
  position: relative;
  display: block;
  width: 1px;
  margin-inline: auto;
}

.spine::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

/* ---------- 12. Startseite ---------- */

/* Hero */
.hero-start {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.hero-start__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.hero-start__bg-left,
.hero-start__bg-right {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.hero-start__bg-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-start__bg-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
}

.hero-start__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 100px;
}

.hero-start__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 150px;
  align-items: center;
  width: 100%;
}

.hero-start__logo-wrap {
  grid-column: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cremefarbene Scheibe als ruhiger Backdrop hinter der Wortmarke.
   Höhe an die Logohöhe gekoppelt (150 %), aspect-ratio hält sie kreisrund,
   z-index -1 setzt sie hinter die Wortmarke, aber (dank Content-Stacking-
   Context z-index:10) noch vor die Hero-Hintergrundfotos. */
.hero-start__logo-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 150%;
  aspect-ratio: 1;
  background: url("../img/hero-start-scheibe.webp") center / contain no-repeat;
  z-index: -1;
  pointer-events: none;
}

.hero-start__logo {
  display: block;
  height: 375px;
  width: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.hero-start__lede {
  grid-column: 3;
  justify-self: start;
  font-size: var(--fs-lede);
  line-height: var(--lh-lede);
  color: var(--ink-soft);
  text-align: justify;
  max-width: 400px;
  min-width: 260px;
  margin: 0;
}

.hero-start__spine {
  display: none;
}

/* Corner-Texture (nur mobil, nur Startseite) */
.corner-texture {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 300px;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 92%), linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 92%), linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

.corner-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

/* Willkommen / Schau dich um (Text + Foto) */
.sec-willkommen {
  position: relative;
  z-index: 10;
  padding: 150px var(--gutter) 0;
}

.split {
  display: flex;
  gap: var(--col-gap);
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  justify-content: flex-end;
  align-items: flex-start;
}

.split__text {
  min-width: 0;
}

.split__text .btn {
  margin-top: 32px;
}

.split__media {
  width: 50%;
  flex: 0 0 auto;
  padding-top: 10px;
}

.split__media img {
  width: 90%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split__media--photo43 img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.split__media--photo57 img {
  aspect-ratio: 5 / 7;
}

/* Zitat-Kreis */
.sec-zitat {
  position: relative;
  z-index: 5;
  margin-top: -200px;
  padding: 126px var(--gutter) 0;
}

.circle-zitat {
  width: min(700px, 100%);
  z-index: 3;
}

.circle-zitat__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  line-height: var(--lh-quote);
  color: var(--ink);
  width: 85%;
  max-width: none;
  margin: 0 0 60px;
}

.circle-zitat__cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--ink-cite);
  line-height: 1.5;
}

.circle-zitat__deco {
  position: absolute;
  left: 50%;
  top: 50%; /* exakt auf der vertikalen Kreismitte */
  /* Linie startet am Mittelpunkt-Dot (left:0 = Kreismitte = 50vw) und läuft 40vw
     nach rechts; der Deko-Ball (left:100%) landet damit bei 90vw — also 10vw vom
     rechten Rand. Exaktes Spiegelbild des grünen .cta-band__ball (10vw vom linken
     Rand). Kreis hat overflow:visible, wird nicht abgeschnitten. */
  width: 40vw;
  height: 1px;
  background: rgba(74, 86, 40, 0.3);
  transform: translateY(-50%);
  z-index: 10;
}

.circle-zitat__deco::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.circle-zitat__deco-ball {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--circle-gold);
}

.sec-zitat .spine {
  height: 252px;
  background: var(--line-deco);
  z-index: 20;
}

/* Deko-Strich (.circle-zitat__deco) mit Mittelpunkt liegt fix bei top:44%.
   Damit Linie und Punkt nicht vom Zitat überdeckt werden, teilen wir den Kreis
   (nur wo die Deko sichtbar ist, ≥881px) in zwei Hälften: Zitat unten in der
   oberen Hälfte (endet über der Linie), Cite oben in der unteren Hälfte (unter
   dem Deko-Ball). So bleibt der Strich immer frei — wie im Final-Artboard. */
@media (min-width: 881px) {
  .circle-zitat {
    display: grid;
    grid-template-rows: 1fr 1fr; /* Zeilengrenze exakt auf der Kreismitte = Deko-Linie (top:50%) */
    justify-items: center;
  }
  .circle-zitat__quote {
    grid-row: 1;
    align-self: end;
    margin: 0 0 40px; /* Zitat endet 40px über der Mittellinie */
  }
  .circle-zitat__cite {
    grid-row: 2;
    align-self: start;
    margin-top: 40px; /* Cite startet 40px unter der Mittellinie (Ball sitzt außen, kein Konflikt) */
  }
}

/* Unterstützung (Gradient-Band) */
.sec-unterstuetzung {
  position: relative;
  z-index: 0;
  margin-top: -80px;
  padding: 110px 0 0;
  background: var(--band-grad-down);
}

.wave--unterstuetzung {
  top: 0;
  margin-top: -100px;
  z-index: 20;
}

.sec-unterstuetzung__inner {
  position: relative;
  max-width: var(--content-max);
  margin-inline: auto;
}

.sec-unterstuetzung__grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.sec-unterstuetzung__media {
  width: 50%;
  flex: 0 0 auto;
}

.sec-unterstuetzung__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 65% 45%;
}

.sec-unterstuetzung__list {
  width: 50%;
  padding-left: 100px;
}

.deco-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -180px;
}

.deco-stack__ball {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--circle-apricot);
}

.deco-stack .spine {
  height: 200px;
  background: var(--line-strong);
  z-index: 2;
}

/* Begleitung (Service-Selector) */
.sec-begleitung {
  position: relative;
  background: var(--band-grad-up);
  padding: 30px var(--gutter) 80px;
}

.selector {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.selector__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-self: end;
  text-align: left;
}

.selector__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  transition: color var(--dur-fast) var(--ease);
  color: var(--ink);
  text-align: left;
}

.selector__item svg {
  flex: 0 0 auto;
}

.selector__item.is-current,
.selector__item:hover {
  color: var(--accent-strong);
}

.selector__title {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-service);
  line-height: 1.12;
}

.selector__sub {
  display: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #6f7657;
}

.selector__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  justify-self: center;
}

.selector__mark img {
  width: 128px;
}

.selector__bullets {
  display: flex;
  gap: 12px;
}

.selector__bullets span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--accent-strong);
  background: transparent;
  transition: background var(--dur-fast) var(--ease);
}

.selector__bullets span.is-current {
  background: var(--accent-strong);
}

/* Mobile-Variante der Bullets: auf Desktop ausblenden (Mobil-Regel weiter unten
   zeigt sie ab ≤880px wieder). Ohne dies erbt sie display:flex von .selector__bullets. */
.selector__bullets--m {
  display: none;
}

.selector__cards {
  display: grid;
  justify-self: stretch;
  width: 100%;
  height: 236px;
}

.selector__card {
  grid-area: 1 / 1;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 236px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.selector__card.is-current {
  opacity: 1;
  pointer-events: auto;
}

.selector__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selector__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 30px 28px 26px;
  background: var(--overlay-grad);
  color: var(--ink-on-dark);
}

.selector__card-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 23px;
  line-height: 1.1;
}

.selector__card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-on-dark-soft);
}

.selector__more {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
}

.sec-begleitung__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--cta-gap);
}

/* Schau dich um + CTA */
.sec-umschau {
  position: relative;
  z-index: 2;
  padding: 192px var(--gutter) 0;
}

.wave--umschau {
  top: 0;
  z-index: 20;
}

.sec-umschau .split {
  position: relative;
  z-index: 3;
  justify-content: center;
}

.cta-band {
  position: relative;
  z-index: 1;
  margin: -120px calc(-1 * var(--gutter)) 0;
  padding: 30px 0;
}

.cta-band__line {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 40%;
  height: 1px;
  background: rgba(74, 86, 40, 0.3);
  transform: translateY(-50%);
  z-index: 10;
}

.cta-band__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.cta-band__ball {
  position: absolute;
  left: 30px; /* 30px nach rechts gegenüber dem Linienanfang (10%) */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--circle-moss);
}

.circle-cta {
  width: min(600px, 100%);
  z-index: 3;
  gap: 50px;
  padding: 0 6%;
}

.circle-cta blockquote {
  margin: 0;
}

.circle-cta__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-quote);
  line-height: var(--lh-quote);
  color: var(--ink);
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

/* Verbindungsstrich (.cta-band__line) endet mit Punkt exakt auf der Kreismitte.
   Damit dieser Punkt nie vom Zitat überdeckt wird, teilen wir den Kreis (nur wo
   der Strich sichtbar ist, ≥881px) in zwei gleiche Hälften: Zitat unten in der
   oberen Hälfte, Button oben in der unteren Hälfte. Die 30px-Ränder halten ein
   freies Band um die Kreismitte frei — unabhängig davon, wie viele Zeilen das
   Zitat umbricht. */
@media (min-width: 881px) {
  .circle-cta {
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    gap: 0;
  }
  .circle-cta blockquote {
    grid-row: 1;
    align-self: end;
    margin-bottom: 30px;
  }
  .circle-cta .btn {
    grid-row: 2;
    align-self: start;
    margin-top: 30px;
  }
}

/* ---------- 13. Footer ---------- */
.site-footer {
  padding: clamp(30px, 4vw, 40px) 0 clamp(40px, 5vw, 52px);
  border-top: 1px solid var(--line-faint);
  background: var(--paper-footer);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 3fr;
  gap: var(--col-gap);
  align-items: flex-start;
  padding: 0 var(--gutter);
}

.site-footer__brand img {
  width: 270px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
}

.site-footer__col a {
  font-size: 16px;
  color: var(--ink-soft);
}

.site-footer__col a:hover {
  color: var(--accent-strong);
}

.site-footer__right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.site-footer__social {
  display: flex;
  gap: 20px;
  color: var(--ink);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.site-footer__legal {
  display: flex;
  gap: 6px;
  font-size: var(--fs-meta);
  color: var(--ink-faint);
}

.site-footer__legal a {
  color: var(--ink-faint);
}

.site-footer__legal a:hover {
  color: var(--accent-strong);
}

.site-footer__copy {
  font-size: var(--fs-meta);
  color: var(--ink-faint);
}

/* ============================================================
   Responsive-Kaskade (desktop-first)
   ============================================================ */

/* ---- ≤1439: Rail bleibt, Gutter wird fluid (min 110px wegen Rail) ---- */
@media (max-width: 1439px) {
  :root {
    --gutter: clamp(110px, 9vw, 120px);
  }
  .hero-start__grid {
    gap: clamp(40px, 8vw, 150px);
  }
  .hero-start__logo {
    height: clamp(240px, 26vw, 375px);
  }
}

/* ---- ≤1279: ohne Side-Rail, Desktop fluid ---- */
@media (max-width: 1279px) {
  :root {
    --gutter: clamp(48px, 7vw, 120px);
  }
  .side-rail {
    display: none;
  }
  .label-row__edge {
    width: 42px;
    margin-left: 0;
    left: 0;
    margin-right: 14px;
  }
  .label-row__text {
    left: 0;
    white-space: normal;
  }
  .circle-zitat {
    width: min(700px, 64vw);
  }
  .circle-cta {
    width: min(600px, 64vw);
  }
  .sec-unterstuetzung__list {
    padding-left: clamp(32px, 5vw, 100px);
  }
  .hero-start__content {
    padding: 0 clamp(32px, 6vw, 100px);
  }
}

/* ---- ≤1023: Tablet quer, kondensierte Nav ---- */
@media (max-width: 1023px) {
  :root {
    --gutter: clamp(28px, 5vw, 64px);
    --fs-nav: 14px;
    --ls-nav: 1.5px;
  }
  .site-header__inner {
    padding: 0 28px;
  }
  .site-nav {
    gap: 20px;
  }
  .split {
    gap: 32px;
  }
  .circle-zitat {
    width: min(560px, 72vw);
  }
  .circle-cta {
    width: min(560px, 72vw);
  }
  .circle-zitat__quote {
    font-size: 26px;
  }
  .sec-zitat {
    margin-top: -120px;
  }
  .deco-stack__ball {
    width: 280px;
    height: 280px;
  }
  .deco-stack {
    margin-top: -140px;
  }
  .selector__title {
    font-size: 26px;
  }
  .selector__item {
    gap: 20px;
  }
}

/* ---- ≤880: Mobile-Layout (Mobile-Artboard) ---- */
@media (max-width: 880px) {
  :root {
    --gutter: 32px;
    --fs-body: var(--fs-body-m);
  }

  body {
    font-size: var(--fs-body-m);
  }

  p {
    font-size: var(--fs-body-m);
    line-height: var(--lh-body-m);
    max-width: 100%;
  }

  h1 {
    font-size: 46px;
  }

  /* Header: sticky + Burger */
  .site-header {
    position: sticky;
    background: rgba(244, 241, 228, 0.82);
    backdrop-filter: var(--header-blur);
    -webkit-backdrop-filter: var(--header-blur);
    border-bottom: 1px solid rgba(74, 86, 40, 0.12);
    padding: 13px 0;
  }
  .site-header__inner {
    padding: 0 22px;
    justify-content: space-between;
  }
  .site-header__logo img {
    width: 40px;
  }
  .site-header__rule,
  .site-nav {
    display: none;
  }
  .burger {
    display: flex;
  }

  /* Startseiten-Hero: gestapelt, ohne BG-Fotos */
  .hero-start {
    min-height: 0;
    padding: 108px 26px 46px;
  }
  /* Mobiler Hero: Desktop-Waldfoto als querformatige Bild-Box oben; das Logo
     überlappt deren Unterkante, Lede sitzt darunter auf Creme. Höhe folgt dem
     Reet-Bildseitenverhältnis (~3:2), damit es nicht beschnitten/verzerrt wirkt. */
  /* Box-Unterkante genau auf die Logomitte legen → die Scheibe (auf das Logo
     zentriert) liegt zu 50 % in der Box, 50 % darunter auf Creme.
     Höhe = padding-top (108px) + halbe Logohöhe (Logobreite × 0.5 × 522/641). */
  .hero-start__bg {
    display: flex;
    bottom: auto;
    height: calc(108px + min(70vw, 300px) * 0.407);
  }
  .hero-start__bg-left {
    width: 100%;
  }
  .hero-start__bg-right {
    display: none;
  }
  .hero-start__bg-left img {
    opacity: 1;
  }
  /* Scheibe als eigenständiges (nicht beschnittenes) Element: Mittelpunkt auf die
     Reet-Box-Unterkante → 50 % in der Box, 50 % auf Creme, als voller Kreis.
     Box-Unterkante relativ zum Wrap = min(70vw,300px) × 0.407 (= Boxhöhe − padding). */
  .hero-start__logo-wrap::before {
    display: block;
    top: calc(min(80vw, 300px) * 0.35);
    height: 50vw;
    aspect-ratio: 1;
    background-image: url("../img/hero-logo-scheibe.webp");
  }
  .corner-texture {
    display: none;
  }
  .hero-start__content {
    padding: 0;
  }
  .hero-start__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .hero-start__logo {
    height: auto;
    width: 60vw;
    margin: 36px 0 0;
    /* Scheibe liegt als ::before hinter dem Logo (siehe .hero-start__logo-wrap::before) */
  }
  .hero-start__lede {
    font-family: var(--font-display);
    text-align: center;
    max-width: 320px;
    min-width: 0;
    font-size: 20px;
    line-height: 1.75;
  }
  .hero-start__spine {
    display: block;
    width: 1px;
    height: 46px;
    background: var(--line);
    margin-top: 4px;
  }

  /* Splits stapeln */
  .sec-willkommen {
    padding: 14px var(--gutter-m) 40px;
  }
  .split {
    flex-direction: column;
    gap: 30px;
  }
  .split__media {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    padding-top: 0;
    order: -1;
  }
  .split__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
  }
  .split__media--photo43 img {
    aspect-ratio: 7 / 5;
  }
  .label-row {
    gap: 14px;
    margin-bottom: 18px;
  }
  .label-row__edge {
    width: 42px;
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .label-row__text,
  .label-row--xl .label-row__text {
    font-size: 16px;
    letter-spacing: 0.32em;
    left: 0;
    white-space: normal;
  }
  .split__text .btn {
    margin-top: 26px;
  }

  /* Zitat-Kreis: bleibt Kreis, gold (Mobile-Artboard) */
  .sec-zitat {
    margin-top: 0;
    padding: 34px var(--gutter-m) 50px;
  }
  .circle-zitat {
    width: min(86vw, 330px);
    background: var(--circle-gold-m);
    padding: 0 13%;
  }
  .circle-zitat__quote {
    font-size: 19px;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 16px;
  }
  .circle-zitat__cite {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .circle-zitat__deco,
  .sec-zitat .spine,
  .deco-stack,
  .cta-band__line {
    display: none;
  }

  /* Unterstützung: ohne Band */
  .sec-unterstuetzung {
    margin-top: 0;
    padding: 18px var(--gutter-m) 44px;
    background: none;
  }
  .wave--unterstuetzung {
    display: none;
  }
  .section-heading,
  .section-heading--lg {
    font-size: 17px;
    letter-spacing: 0.28em;
    margin-bottom: 30px;
  }
  .sec-unterstuetzung__grid {
    flex-direction: column;
    gap: 28px;
  }
  .sec-unterstuetzung__media {
    width: 100%;
  }
  .sec-unterstuetzung__media img {
    aspect-ratio: 4 / 3;
  }
  .sec-unterstuetzung__list {
    width: 100%;
    padding-left: 0;
  }
  .list-dash li {
    gap: 16px;
    align-items: flex-start;
    padding: 10px 0;
  }
  .list-dash__marker {
    display: none;
  }
  .list-dash li::before {
    content: "";
    flex: 0 0 auto;
    margin-top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bullet);
  }
  .list-dash__text {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
  }

  /* Begleitung: flaches Band + Wellen oben/unten */
  .sec-begleitung {
    background: var(--band-flat);
    margin-top: 46px;
    padding: 30px var(--gutter-m) 44px;
    position: relative;
  }
  .wave--m {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .wave--m-top {
    top: -58px;
  }
  .wave--m-bottom {
    bottom: -58px;
    transform: rotate(180deg);
  }
  .wave--m path {
    fill: var(--band-flat);
  }

  /* Selector: Liste mit Trennern */
  .selector {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .selector__mark {
    order: -1;
    margin-bottom: 18px;
  }
  .selector__mark img {
    width: 74px;
  }
  .selector__mark .selector__bullets {
    display: none;
  }
  .selector__list {
    width: 100%;
    justify-self: stretch;
    gap: 0;
    margin-bottom: 8px;
  }
  .selector__list li {
    border-top: 1px solid var(--line-faint);
  }
  .selector__item {
    gap: 18px;
    padding: 16px 2px;
    width: 100%;
  }
  .selector__title {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.05;
  }
  .selector__sub {
    display: block;
    margin-top: 2px;
  }
  .selector__bullets--m {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin: 6px 0 22px;
  }
  .selector__cards {
    height: auto;
  }
  .selector__card {
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .selector__overlay {
    gap: 9px;
    padding: 46px 22px 22px;
  }
  .selector__card-title {
    font-family: var(--font-display);
    font-weight: 600;
  }
  .sec-begleitung__cta {
    margin-top: 30px;
  }

  /* Schau dich um + CTA */
  .sec-umschau {
    padding: 78px var(--gutter-m) 36px;
  }
  .wave--umschau {
    display: none;
  }
  .cta-band {
    margin: 0 calc(-1 * var(--gutter-m));
    padding: 30px var(--gutter-m) 60px;
  }
  .circle-cta {
    width: min(86vw, 330px);
    background: var(--circle-amber-m);
    gap: 24px;
    padding: 0 12%;
  }
  .circle-cta__quote {
    font-size: 21px;
    line-height: 1.4;
    width: 100%;
  }
  .circle-cta .btn {
    font-size: 12px;
    padding: 12px 26px;
  }

  /* Footer */
  .site-footer {
    padding: 34px 0 40px;
  }
  .site-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 0 var(--gutter-m);
  }
  .site-footer__brand img {
    width: auto;
    height: 38px;
  }
  .site-footer__col {
    margin-inline: 0;
  }
  .site-footer__col a {
    font-size: 14px;
    padding: 4px 0;
  }
  .site-footer__right {
    margin-left: 0;
    align-items: flex-start;
  }
}

/* ---- ≤767: Phones — zentrierter Footer, mehr Zentrierung ---- */
@media (max-width: 767px) {
  :root {
    --gutter: var(--gutter-m);
  }
  h1 {
    font-size: 42px;
  }
  .site-footer__grid {
    align-items: center;
    text-align: center;
  }
  .site-footer__col {
    align-items: center;
  }
  .site-footer__right {
    align-items: center;
  }
  .site-footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-footer__copy {
    font-size: 11px;
    line-height: 1.9;
    text-align: center;
  }
}

/* ---- ≤479: XS ---- */
@media (max-width: 479px) {
  :root {
    --gutter-m: 18px;
  }
  h1 {
    font-size: 36px;
  }
  .circle-zitat__quote {
    font-size: 18px;
  }
  .menu-overlay__nav a {
    font-size: 30px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .circle-cta .btn,
  .split__text .btn {
    width: auto;
  }
}

/* ============================================================
   14. Unterseiten (Template nach "Aufstellungsarbeit Final")
   ============================================================ */

/* ---- Hero ---- */
.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: stretch;
}

.page-hero__bg-media {
  position: relative;
  overflow: hidden;
  width: 50%;
}

.page-hero__bg-media img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #000 55%, rgba(0, 0, 0, 0) 100%), radial-gradient(circle 430px at 100% 52%, rgba(0, 0, 0, 0) 42%, #000 92%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 60%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #000 55%, rgba(0, 0, 0, 0) 100%), radial-gradient(circle 430px at 100% 52%, rgba(0, 0, 0, 0) 42%, #000 92%);
  mask-composite: intersect;
}

.page-hero__content {
  position: relative;
  z-index: 10;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 100px 0;
}

.page-hero__grid {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: center;
  width: min(var(--content-max), 100%);
}

.page-hero__eyebrow-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
}

.page-hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: var(--fs-eyebrow);
  text-align: center;
  margin: 0;
}

.page-hero__text-col {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 40%;
}

.page-hero__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  text-align: left;
  align-self: stretch;
}

.page-hero__lede {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
  text-align: left;
  align-self: flex-end;
  max-width: none;
}

/* ---- Inhalts-Sektionen ---- */
.content-section {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
}

.content-section--intro {
  padding: 150px var(--gutter) 100px;
}

.content-split {
  display: flex;
  gap: var(--col-gap);
  align-items: center;
  max-width: var(--content-max);
  margin-inline: auto;
}

.content-split--top {
  align-items: flex-start;
  gap: 0;
}

.content-split--flip {
  flex-direction: row-reverse;
}

.content-split__col {
  width: 50%;
}

.content-split--top .content-split__col:first-child {
  padding-right: var(--col-gap);
}

.content-split__col img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-split__col--portrait img {
  aspect-ratio: 5 / 7;
}

.split-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-eyebrow-lg);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
}

.band-wrap {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #dde6bbf5, #faffeab3, #fffbf1b3);
  margin: clamp(90px, 12vw, 140px) 0 0;
}

.band-wrap .wave--band-top {
  top: -98px;
}

.band-wrap .section-heading--lg {
  margin-bottom: 48px;
}

.content-section--soft {
  background-color: #fffbf1b3;
}

.content-section--fade-down {
  background: linear-gradient(180deg, #fffbf1b3, #faffeab3, #dde6bbf5);
  padding-top: 46px;
  padding-bottom: 96px;
  z-index: 3;
}

.wave--closing {
  position: static;
  display: block;
  transform: rotate(180deg);
  height: 100px;
  width: 100%;
}

.band-text p {
  color: #4f5733;
}

/* ---- Kreis mit Liste (Hilfreich bei / Unterstützung) ---- */
.circle-list-wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.circle-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--circle-butter);
  gap: 10px;
  width: min(700px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.circle-list__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: min(500px, 86%);
}

.circle-list__heading {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-eyebrow-lg);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  width: 100%;
  line-height: 1.5;
}

.circle-list__inner ul {
  padding-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.circle-list__inner li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 8px 0 0 0;
}

.circle-list__inner li .list-dash__text {
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

/* ---- CTA-Kreis (mit Termine-Block) ---- */
.cta-final {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(90px, 12vw, 140px);
}

.cta-final__wrap {
  position: relative;
  max-width: var(--content-max);
  margin-inline: auto;
}

.cta-final__deco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 1px;
  background: rgba(74, 86, 40, 0.3);
  z-index: 5;
}

.cta-final__deco::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.cta-final__ball {
  position: absolute;
  left: 100%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--circle-moss);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-final__ball img {
  width: 120px;
}

.cta-final__circle {
  position: relative;
  z-index: 3;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-inline: auto;
  background-color: var(--circle-butter);
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  width: min(700px, 100%);
}

.cta-final__half {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  gap: 30px;
  padding-bottom: 20px;
  width: 100%;
}

.cta-final__half--bottom {
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 0;
  padding-top: 30px;
}

.cta-final__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 auto;
  width: 80%;
  max-width: none;
}

/* Einspaltiger CTA-Kreis (ohne Termine) */
.cta-final__circle--single {
  gap: 30px;
}

.cta-final__circle--single .cta-final__logo {
  width: 120px;
}

/* ---- Termine (Fragment wird server-seitig ersetzt) ---- */
.termine-block,
.termine-block__circle {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.termine-block__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
}

.termine {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}

.termine li {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.termine time {
  font-variant-numeric: tabular-nums;
}

.termine__ort {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: none;
}

.termine__leer {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: none;
}

/* ---- Hinweis-Box (Reiki) ---- */
.note-box {
  background: #ffca72b3;
  border-left: 2px solid var(--accent-strong);
  padding: 22px 26px;
  max-width: 500px;
}

.note-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* ---- Unterseiten responsive ---- */
@media (max-width: 1279px) {
  .page-hero__content {
    padding: 80px clamp(32px, 6vw, 100px) 0;
  }
  .page-hero__grid {
    gap: clamp(40px, 6vw, 100px);
  }
  .circle-list {
    width: min(700px, 74vw);
  }
  .cta-final__circle {
    width: min(700px, 74vw);
  }
}

@media (max-width: 1023px) {
  .circle-list {
    width: min(620px, 80vw);
  }
  .cta-final__circle {
    width: min(620px, 80vw);
  }
  .cta-final__ball {
    width: 140px;
    height: 140px;
  }
  .cta-final__ball img {
    width: 92px;
  }
}

/* ---- V2 Mobil (≤880): Design-Sprache der Startseite Mobile —
        zentrierter Hero mit maskiertem Artwork, Salbei-Bänder mit
        Wellen, Dot-Listen, Gold-/Amber-Kreise für kurze Inhalte ---- */
@media (max-width: 880px) {
  /* Hero: Text zentriert, Artwork zieht sich hinter den Sticky-Header */
  .page-hero {
    min-height: 0;
    height: auto;
    padding: 176px 26px 16px;
  }
  .page-aufstellungsarbeit .page-hero { padding-top: 236px; padding-bottom: 6px; }
  .page-kontakt .page-hero { padding-top: 216px; }
  .page-prozessbegleitung .page-hero { padding-top: 176px; }
  .page-reiki .page-hero { padding-top: 132px; }
  .page-ueber-mich .page-hero { padding-top: 146px; }

  .page-hero__bg {
    inset: auto;
    left: 0;
    right: 0;
    top: -60px;
    height: 260px;
    display: block;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 92%), linear-gradient(to bottom, #000 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 92%), linear-gradient(to bottom, #000 60%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
  }
  .page-ueber-mich .page-hero__bg { height: 300px; }
  .page-reiki .page-hero__bg { height: 500px; }
  .page-hero__bg-media {
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .page-hero__bg-media img {
    mix-blend-mode: multiply;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: center;
  }

  .page-hero__content { padding: 0; }
  .page-hero__grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  /* Spine: Linie + Punkt unter der Lede */
  .page-hero__grid::after {
    content: "";
    flex: 0 0 auto;
    width: 4px;
    height: 52px;
    margin-top: 30px;
    background: linear-gradient(rgba(74, 86, 40, 0.4), rgba(74, 86, 40, 0.4)) top center / 1px 46px no-repeat, radial-gradient(circle, var(--dot) 0 2px, transparent 2.2px) bottom center / 4px 4px no-repeat;
  }
  .page-hero__eyebrow-col,
  .page-hero__text-col {
    width: 100%;
    align-items: center;
    gap: 0;
  }
  .page-hero__eyebrow br { display: none; }
  .page-hero__eyebrow { font-size: 15px; letter-spacing: 0.32em; }
  .page-hero__title {
    font-size: 36px;
    line-height: 1.15;
    text-align: center;
    align-self: center;
    margin: 12px 0 2px;
  }
  .page-hero__lede {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 320px;
    margin: 12px auto 0;
    text-align: center;
    align-self: center;
  }

  /* Sektionen: Entwurfs-Rhythmus, keine Verlaufsflaechen mehr */
  .content-section { padding: 18px var(--gutter-m); }
  .content-section--intro { padding: 40px var(--gutter-m) 18px; }
  .content-section--soft { background: none; }
  .content-section--fade-down {
    background: none;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .wave--closing { display: none; }

  .content-split,
  .content-split--flip { flex-direction: column; gap: 26px; }
  .content-split__col,
  .content-split__col--45,
  .content-split__col--55 {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .content-split--top .content-split__col:first-child { padding-right: 0; }
  /* Bildfolge wie im Entwurf: Standard = Text vor Bild;
     in den Wellen-Baendern steht das Bild direkt unter dem H2 */
  .band-wrap .content-split > :last-child { order: -1; }
  .page-ueber-mich .content-section--fade-down .content-split > :last-child { order: -1; }

  /* Aufstellungs-Intro: erstes Foto zwischen den Absaetzen (Entwurf) */
  .page-aufstellungsarbeit .content-section--intro .content-split { gap: 0; }
  .page-aufstellungsarbeit .content-section--intro .content-split__col { display: contents; }
  .page-aufstellungsarbeit .content-section--intro .content-split__col:first-child p:first-child { order: -2; }
  .page-aufstellungsarbeit .content-section--intro .content-split__col:last-child picture { order: -1; margin: 12px 0 26px; }

  /* Wellen-Baender: Salbei, 96px Luft, Standardwelle oben und unten */
  .band-wrap {
    margin: 96px 0;
    background: var(--band-flat);
  }
  .band-wrap .wave--band-top { top: -58px; height: 60px; }
  .band-wrap .wave path,
  .price-band .wave path { fill: var(--band-flat); }
  .band-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -59px;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2080%20C%20320%206%20720%202%201040%2040%20C%201220%2060%201350%2070%201440%2058%20L%201440%2080%20Z'%20fill='%23DFE6D4'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    transform: rotate(180deg);
    pointer-events: none;
  }
  .band-wrap > .content-section { padding: 30px var(--gutter-m) 44px; }
  .band-wrap .section-heading--lg { margin-bottom: 26px; }
  .band-wrap .section-heading--lg,
  .price-band .section-heading--lg { font-size: 17px; letter-spacing: 0.28em; }

  /* Zeilen-Headings: kurze Linie mit Punkt vor dem Titel */
  .split-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    letter-spacing: 0.28em;
    line-height: 1.5;
    margin: 0 0 18px;
  }
  .split-heading::before {
    content: "";
    flex: 0 0 auto;
    width: 46px;
    height: 4px;
    background: linear-gradient(rgba(74, 86, 40, 0.32), rgba(74, 86, 40, 0.32)) left center / 42px 1px no-repeat, radial-gradient(circle, var(--dot) 0 2px, transparent 2.2px) right center / 4px 4px no-repeat;
  }

  /* Ex-Kreis-Listen: frei auf Creme, 6px-Punkte statt SVG-Striche */
  .circle-list-wrap { display: block; }
  .circle-list {
    display: block;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    border-radius: 0;
    background: none;
    padding: 0;
    margin: 0;
  }
  .circle-list__inner {
    display: block;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .circle-list__heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    font-size: 15px;
    letter-spacing: 0.28em;
    line-height: 1.5;
    text-align: left;
  }
  .circle-list__heading br { display: none; }
  .circle-list__heading::before {
    content: "";
    flex: 0 0 auto;
    width: 46px;
    height: 4px;
    background: linear-gradient(rgba(74, 86, 40, 0.32), rgba(74, 86, 40, 0.32)) left center / 42px 1px no-repeat, radial-gradient(circle, var(--dot) 0 2px, transparent 2.2px) right center / 4px 4px no-repeat;
  }
  .circle-list__inner ul {
    padding-top: 10px;
    align-items: stretch;
  }
  .circle-list__inner li {
    gap: 16px;
    align-items: flex-start;
    padding: 9px 0;
  }
  .circle-list__inner li .list-dash__marker { display: none; }
  .circle-list__inner li::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--bullet);
  }
  .circle-list__inner li .list-dash__text {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
  }
  .circle-list__intro {
    font-size: 16px;
    line-height: 1.85;
  }

  /* Termine: Gold-Kreis, Ortsangabe darunter */
  .termine-block { gap: 0; }
  .termine-block__circle {
    width: min(86vw, 330px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #ffca72cc;
    justify-content: center;
    gap: 0;
    padding: 6% 11%;
    margin-inline: auto;
  }
  .termine-block__heading { font-size: 15px; letter-spacing: 0.3em; margin: 0 0 14px; }
  .termine { gap: 10px; font-size: 16px; }
  .termine li { flex-direction: column; gap: 2px; align-items: center; }
  .termine li span { font-size: 13px; letter-spacing: 0.04em; color: #4a5a2a; }
  .termine__ort {
    margin: 18px auto 0;
    max-width: 300px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-body);
  }
  .termine__leer { font-size: 15px; text-align: center; }

  /* Abschluss-CTA: Zitat frei, Logo + Button im Amber-Kreis */
  .cta-final { padding: 18px var(--gutter-m) 56px; }
  .cta-final__deco,
  .cta-final__center-dot { display: none; }
  .cta-final__circle {
    width: auto;
    height: auto;
    aspect-ratio: auto;
    border-radius: 0;
    background: none;
    margin-inline: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 38px;
  }
  .cta-final__half {
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    padding: 0;
    gap: 0;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .cta-final__half--bottom { position: relative; padding-top: 0; }
  .cta-final__half--bottom .cta-final__quote {
    font-size: 20px;
    line-height: 1.5;
    width: auto;
    max-width: 320px;
    margin: 0 auto 38px;
  }
  .cta-final__half--bottom::after {
    content: "";
    flex: 0 0 auto;
    width: min(86vw, 330px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--circle-butter) url("../img/logo-icon-200.webp") no-repeat center calc(50% - 32px) / 64px auto;
  }
  .cta-final__half--bottom .btn {
    position: absolute;
    left: 50%;
    bottom: calc((min(86vw, 330px) - 118px) / 2);
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    padding: 13px 26px;
    font-size: 12px;
  }
}

/* ============================================================
   15. Kontakt-Seite (Formular, Preise, Kontakt-CTA)
   ============================================================ */

.page-hero--wide .page-hero__bg-media {
  width: 60%;
}

.page-hero--kontakt .page-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.page-hero--kontakt .page-hero__title-col {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  text-align: center;
  justify-content: flex-end;
}

.page-hero--kontakt .page-hero__eyebrow {
  color: var(--ink);
}

.page-hero--kontakt .page-hero__title {
  font-size: clamp(36px, 4.2vw, 58px);
  max-width: 15ch;
  text-align: center;
  margin-inline: auto;
}

.page-hero--kontakt .page-hero__lede {
  grid-column: 3;
  justify-self: start;
  text-align: justify;
  max-width: 400px;
}

/* Notizbuch-Foto: 4/5 am Desktop (war Inline-Style), mobil 4/3 */
.page-kontakt .content-split__col--portrait img {
  aspect-ratio: 4 / 5;
}

/* ---- Formular ---- */
.form__intro {
  margin-bottom: 26px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__field label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-body);
}

.form__field input,
.form__field textarea {
  border: none;
  border-bottom: 1px solid transparent;
  background: var(--field-bg);
  padding: 15px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  resize: none;
  line-height: 1.6;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--ink-body);
  opacity: 1;
}

.form__field input:focus-visible,
.form__field textarea:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 0;
}

.form__field input:user-invalid,
.form__field textarea:user-invalid {
  border-bottom: 2px solid #a03a12;
}

.form__field input:user-valid,
.form__field textarea:user-valid {
  border-bottom: 2px solid var(--price-green);
}

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 4px 0 18px;
}

.form__consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.form__consent label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-body);
}

.form__consent a {
  text-decoration: underline;
  text-decoration-color: rgba(74, 86, 40, 0.4);
  text-underline-offset: 2px;
}

.form__submit {
  width: 100%;
  background: var(--accent-strong);
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  padding: 17px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}

.form__submit:hover {
  background: var(--ink);
}

.form__submit:disabled {
  opacity: 0.5;
  cursor: default;
}

.form__hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.form__status {
  min-height: 1.6em;
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: none;
}

.form__status--ok {
  color: var(--price-green);
}

.form__status--error {
  color: #a03a12;
}

.form.is-sent .form__fields,
.form.is-sent .form__consent,
.form.is-sent .form__submit,
.form.is-sent .form__intro {
  display: none;
}

/* ---- Preise-Band ---- */
.price-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #dde6bbf5, #faffeab3, #fffbf1b3, #faffeab3, #dde6bbf2);
  margin: clamp(90px, 12vw, 140px) 0 0;
}

/* Obere Welle nach oben herausziehen, damit sie die wellige Bandkante bildet
   (wie bei .band-wrap). Ohne diese Desktop-Regel stünde sie auf top:0 und säße
   flach im Band — die mobile Variante steht separat weiter unten. */
.price-band .wave--band-top {
  top: -98px;
}

.price-band .wave--band-bottom {
  bottom: -98px;
  transform: scaleY(-1);
}

.price-band__inner {
  max-width: var(--content-max);
  margin-inline: auto;
}

.price-band__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.price-band__logo img {
  width: 78px;
}

.price-band .section-heading--lg {
  margin-bottom: clamp(38px, 5vw, 56px);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border: 1px solid var(--price-green);
}

.price-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.2;
}

.price-card__item {
  margin-bottom: 18px;
}

.price-card__item:last-child {
  margin-bottom: 0;
}

.price-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.price-card__label {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.45;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--price-green);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-card__note {
  font-size: 13px;
  color: var(--ink);
  font-style: italic;
  margin: 6px 0 0;
  line-height: 1.5;
  max-width: none;
}

.price-band__closing {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 44px auto 0;
  max-width: 620px;
}

/* ---- Kontakt-CTA (Kreis mit Kontaktliste) ---- */
.cta-final--kontakt {
  padding-top: 180px;
}

/* Linie am Wrap-Zentrum (= 50vw, dort sitzt der Kreis) verankern und 40vw nach
   links ziehen: der Ball (left:0 = linkes Linienende) landet bei 10vw — exakt
   wie der grüne .cta-band__ball auf der Startseite. */
.cta-final--kontakt .cta-final__deco {
  left: auto;
  right: 50%;
  width: 40vw;
}

.cta-final--kontakt .cta-final__deco::before {
  left: auto;
  right: -1px;
}

.cta-final--kontakt .cta-final__ball {
  left: 30px; /* 30px nach rechts gegenüber dem Linienanfang */
  background: #ffca72cc;
  width: 170px;
  height: 170px;
}

.cta-final--kontakt .cta-final__circle {
  gap: 70px;
}

.contact-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 10px;
  max-width: none;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--ink-cite);
}

.contact-list a svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
}

.contact-list .contact-list__tel {
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-grid .price-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .page-hero--wide .page-hero__bg-media { width: 100%; }
  .page-hero--kontakt .page-hero__grid { display: flex; flex-direction: column; align-items: center; }
  .page-hero--kontakt .page-hero__title-col { gap: 0; }
  .page-hero--kontakt .page-hero__title { font-size: 38px; }
  .page-hero--kontakt .page-hero__lede { text-align: center; max-width: 320px; }
  .page-kontakt .content-split__col--portrait img { aspect-ratio: 4 / 3; }

  /* Preise: ein durchgehender Salbei-Band-Block statt Karten */
  .price-band { margin: 96px 0; background: var(--band-flat); }
  .price-band .wave--band-top { top: -58px; height: 60px; }
  .price-band .wave--band-bottom { bottom: -58px; height: 60px; }
  .price-band > .content-section { padding: 30px var(--gutter-m) 40px; }
  .price-band__logo { display: none; }
  .price-band .section-heading--lg { margin-bottom: 24px; }
  .price-grid { grid-template-columns: 1fr; gap: 0; }
  .price-grid .price-card:last-child { grid-column: auto; }
  .price-card { padding: 0; background: none; border: none; }
  .price-card + .price-card {
    border-top: 1px solid rgba(74, 86, 40, 0.25);
    margin-top: 22px;
    padding-top: 22px;
  }
  .price-card h3 { font-size: 21px; margin: 0 0 12px; }
  .price-card__label { font-size: 16px; line-height: 1.5; }
  .price-card__price { font-size: 21px; }
  .price-card__note { color: #4f5733; }
  .price-card__item { margin-bottom: 14px; }
  .price-band__closing {
    font-size: 18px;
    line-height: 1.6;
    margin: 30px auto 0;
    max-width: 300px;
  }

  /* Kontakt-CTA: Termine-Kreis + freie Kontaktliste, kein Amber-Kreis */
  .cta-final--kontakt { padding-top: 18px; }
  .cta-final--kontakt .cta-final__circle { gap: 40px; }
  .cta-final--kontakt .cta-final__half--bottom::after { content: none; }
  .contact-heading { font-size: 26px; line-height: 1.4; margin: 0 0 24px; }
  .contact-list { align-items: center; gap: 14px; }
  .contact-list a { font-size: 17px; letter-spacing: 0.08em; gap: 14px; }
  .contact-list .contact-list__tel { letter-spacing: 0.12em; }
  .contact-list a svg { width: 24px; height: 24px; }
}

/* ============================================================
   16. Prozessbegleitung / Reiki / Über mich — Spezifika
   ============================================================ */

/* Hero-Variante: Titel-Spalte mittig + Lede rechts (Über mich, wie Kontakt) */
.page-hero--titled .page-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.page-hero--titled .page-hero__title-col {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  text-align: center;
  justify-content: flex-end;
}

.page-hero--titled .page-hero__title {
  max-width: 15ch;
  text-align: center;
  margin-inline: auto;
}

.page-hero--titled .page-hero__lede {
  grid-column: 3;
  justify-self: start;
  text-align: justify;
  max-width: 400px;
}

.page-hero--ueber-mich .page-hero__title {
  font-size: clamp(40px, 4.2vw, 64px);
}

.page-hero__eyebrow--ink {
  color: var(--ink);
}

/* Hero-Variante: alles mittig gestapelt (Prozessbegleitung, Reiki) */
.page-hero--center .page-hero__grid {
  justify-content: center;
}

.page-hero--center .page-hero__center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: min(640px, 100%);
  margin-inline: auto;
}

.page-hero--center .page-hero__title {
  font-size: clamp(40px, 4.2vw, 60px);
  text-align: center;
  align-self: center;
}

.page-hero--center .page-hero__lede {
  text-align: center;
  align-self: center;
}

.page-hero--prozess .page-hero__bg-media {
  width: 55%;
}

.page-hero--prozess .page-hero__lede {
  font-size: 21px;
}

/* Reiki-Hero: vollflächiges Bild mit Top-Fade + Deko-Scheibe */
.page-hero--reiki .page-hero__bg-media {
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 90px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 90px);
}

.page-hero--reiki .page-hero__bg-media img {
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  object-position: 50% 72%;
}

.page-hero--reiki .page-hero__center {
  position: relative;
  padding: 30px 0;
}

.reiki-scheibe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: 450px;
  max-width: none;
  z-index: 0;
  pointer-events: none;
}

.page-hero--reiki .page-hero__eyebrow,
.page-hero--reiki .page-hero__title,
.page-hero--reiki .page-hero__lede {
  position: relative;
  z-index: 1;
}

/* Prozess: Deko-Kreis + Spine zwischen Intro und Methoden */
.deco-drop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -150px;
  pointer-events: none;
}

.deco-drop__ball {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ffd07a;
}

.deco-drop .spine {
  height: 192px;
  background: var(--line-deco);
}

.sec-methoden {
  position: relative;
  z-index: 0;
  top: -150px;
  margin-bottom: -150px;
  padding: clamp(28px, 4vw, 52px) var(--gutter) clamp(46px, 7vw, 84px);
}

.circle-list--methoden {
  width: min(650px, 100%);
}

.circle-list--methoden .circle-list__inner {
  width: min(390px, 62%);
}

.circle-list--methoden .circle-list__heading {
  text-align: center;
  padding-top: 20px;
}

.circle-list--methoden .circle-list__inner ul {
  padding-top: 0;
}

.circle-list__intro {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink-body);
  text-align: left;
  width: 100%;
  max-width: none;
}

.wave--after-methoden {
  position: static;
  display: block;
  margin-top: -100px;
  height: 100px;
  width: 100%;
}

/* Breite Splits (Themen / Wie ich arbeite, 45/55 mit gap 100) */
.content-split--wide {
  gap: 100px;
}

.content-split__col--45 {
  width: 45%;
}

.content-split__col--55 {
  width: 55%;
}

/* Diese Spalten tragen NICHT die Basisklasse .content-split__col, daher greift
   die dortige Bild-Regel nicht → object-fit fiele auf 'fill' zurück und quetscht
   das Bild in seine (per aspect-ratio gesetzte) Box. Cover statt fill = zuschneiden
   statt verzerren. */
.content-split__col--45 img,
.content-split__col--55 img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-split--wide .content-split__col--55 img {
  aspect-ratio: 7 / 5;
}

.content-split--wide.content-split--flip .content-split__col--45 img {
  aspect-ratio: 5 / 7;
}

/* Schmaler zentrierter Textblock (Mein Weg) */
.band-narrow {
  max-width: 760px;
  margin-inline: auto;
}

.band-narrow .section-heading--lg {
  margin-bottom: clamp(30px, 4vw, 46px);
}

/* Reiki-Bänder mit Sonder-Wellen */
.band-wrap--reiki {
  margin-top: -80px;
  background: none;
}

.band-wrap--reiki .content-section {
  background: linear-gradient(180deg, #dde6bbf2, #faffeab3, #faffeab3, #e9ebcdbf);
}

.wave--reiki-top {
  top: -99px;
}

.wave--reiki-close {
  position: static;
  display: block;
  transform: scaleY(-1);
  height: 210px;
  width: 100%;
  background-color: var(--paper);
}

.content-section--reiki-fade {
  background: linear-gradient(180deg, #f7f0e0a5, #ffefd677, #f7f0e0a1);
  padding-top: 96px;
  padding-bottom: 96px;
  z-index: 3;
}

.content-section--reiki-unterstuetzung {
  position: relative;
  padding: 70px 0 40px;
}

/* Deko auf der rechten Seite: Linie am rechten Rand verankert, Ball am äußeren
   (rechten) Ende, Punkt am inneren (linken) Ende. */
.content-section--reiki-unterstuetzung .cta-final__deco-alt {
  position: absolute;
  left: auto;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: rgba(74, 86, 40, 0.3);
  z-index: 0;
  width: 28%;
}

.content-section--reiki-unterstuetzung .cta-final__deco-alt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
}

.content-section--reiki-unterstuetzung .cta-final__deco-alt span {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffca72;
}

.circle-list--reiki .circle-list__inner {
  width: min(430px, 80%);
}

.circle-list--reiki .circle-list__heading {
  max-width: 400px;
  width: auto;
  text-align: left;
}

.circle-list--reiki .circle-list__inner ul {
  width: fit-content;
}

/* Hinweis-Box (Reiki) — Artboard-Stil: warmer Kasten, Serif kursiv */
.note-box {
  background: #ffca72b3;
  border-left: none;
  padding: 20px 30px;
  max-width: none;
}

.note-box p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: none;
}

/* CTA-Varianten */
.cta-final__ball {
  width: 150px;
  height: 150px;
}

.cta-final__ball--logo {
  width: 180px;
  height: 180px;
}

/* Logo-Ball nach rechts an den Viewport-Rand ziehen — wie der orange Punkt auf
   der Startseite (Kreismitte = 50vw + 40vw → Ball bei 90vw = 10vw vom rechten
   Rand). Nur die Deko mit Logo-Ball (aufstellungsarbeit) betroffen. */
.cta-final__deco:has(.cta-final__ball--logo) {
  width: 40vw;
}

.cta-final--left .cta-final__deco {
  left: 0;
  width: 50%;
}

.cta-final--left .cta-final__deco::before {
  left: auto;
  right: -1px;
}

.cta-final--left .cta-final__ball {
  left: 0;
}

.cta-final__center-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
  z-index: 5;
}

.cta-final__circle--708 {
  width: min(708px, 100%);
}

.cta-final__circle--600 {
  width: min(600px, 100%);
}

.cta-final__single {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 0 10%;
}

.cta-final__single .cta-final__logo {
  width: 200px;
}

.cta-final__single .cta-final__quote {
  font-size: 22px;
  width: 100%;
}

/* Logo und Text gleich weit von der Deko-Linie (top:50% = Kreismitte).
   Kreis ist quadratisch → padding-top in % (bezogen auf die Breite) trifft die
   vertikale Mitte. Content-Start um (Logohöhe 170 + halber Abstand 20 = 190px)
   über die Mitte versetzen: Logo-Unterkante 20px darüber, Text-Oberkante 20px
   darunter. Nur Desktop (Strich ab ≤880px ausgeblendet). */
@media (min-width: 881px) {
  .cta-final__single {
    height: 100%;
    justify-content: flex-start;
    padding-top: calc(50% - 190px);
  }
}

.btn--wide {
  min-width: 250px;
  text-align: center;
}

/* Aus HTML-Inline-Styles verlagert, damit die Mobile-Kaskade greift */
.page-prozessbegleitung .content-section--intro {
  padding-bottom: 50px;
}

.sec-themen-prozess {
  padding-top: 96px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #dde6bbf5, #faffeab3, #fffbf1b3);
  z-index: 3;
}

.page-prozessbegleitung .content-section--fade-down {
  padding-top: 48px;
}

.page-reiki .content-section--intro {
  padding-bottom: 0;
}

.band-wrap--reiki > .content-section {
  padding-top: 118px;
  padding-bottom: 30px;
}

.band-wrap--reiki .section-heading--lg {
  margin-bottom: 50px;
}

.band-wrap--reiki .band-text {
  gap: 50px;
}

.page-reiki .cta-final {
  padding-top: 48px;
  padding-bottom: 96px;
}

.page-ueber-mich .content-section--intro {
  padding-bottom: 80px;
}

@media (max-width: 1279px) {
  .cta-final__circle--708,
  .cta-final__circle--600 {
    width: min(700px, 74vw);
  }
}

@media (max-width: 1023px) {
  .cta-final__circle--708,
  .cta-final__circle--600 {
    width: min(620px, 80vw);
  }
  .content-split--wide {
    gap: 40px;
  }
  .reiki-scheibe {
    width: 360px;
  }
  .cta-final__single .cta-final__logo {
    width: 150px;
  }
}

@media (max-width: 880px) {
  .page-hero--titled .page-hero__grid,
  .page-hero--center .page-hero__grid { display: flex; flex-direction: column; align-items: center; }
  .page-hero--titled .page-hero__title-col,
  .page-hero--center .page-hero__center { gap: 0; }
  .page-hero--titled .page-hero__lede { text-align: center; max-width: 320px; }
  .page-hero--center .page-hero__title { font-size: 38px; }
  .page-hero--reiki .page-hero__title { font-size: 42px; line-height: 1.1; }
  .page-hero--prozess .page-hero__bg-media,
  .page-hero--reiki .page-hero__bg-media {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .page-hero--reiki .page-hero__bg-media img {
    mix-blend-mode: multiply;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: center;
  }
  .page-hero--prozess .page-hero__lede { font-size: 20px; }
  .page-reiki .page-hero__lede { font-size: 18px; max-width: 240px; }
  .page-hero--reiki .page-hero__center { padding: 30px 0 10px; }
  .reiki-scheibe { width: min(74vw, 290px); }
  .deco-drop { display: none; }

  /* Verlagerte Desktop-Paddings mobil zuruecksetzen */
  .page-prozessbegleitung .content-section--intro { padding-bottom: 18px; }
  .page-reiki .content-section--intro { padding-bottom: 18px; }
  .page-ueber-mich .content-section--intro { padding-bottom: 18px; }
  .page-prozessbegleitung .content-section--fade-down { padding-top: 18px; }
  .content-split--wide { gap: 26px; }
  .content-split__col--45,
  .content-split__col--55 { width: 100%; }

  /* Meine Methoden: einziges Listen-Band (Salbei mit Wellen) */
  .sec-methoden { top: 0; margin-bottom: 0; padding: 0 var(--gutter-m); }
  .circle-list--methoden { width: auto; }
  .circle-list--methoden:not(.circle-list--reiki) {
    position: relative;
    display: block;
    margin: 96px calc(-1 * var(--gutter-m));
    padding: 30px var(--gutter-m) 40px;
    background: var(--band-flat);
  }
  .circle-list--methoden:not(.circle-list--reiki)::before,
  .circle-list--methoden:not(.circle-list--reiki)::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2080%20C%20320%206%20720%202%201040%2040%20C%201220%2060%201350%2070%201440%2058%20L%201440%2080%20Z'%20fill='%23DFE6D4'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    pointer-events: none;
  }
  .circle-list--methoden:not(.circle-list--reiki)::before { top: -59px; }
  .circle-list--methoden:not(.circle-list--reiki)::after { bottom: -59px; transform: rotate(180deg); }
  .circle-list--methoden .circle-list__inner,
  .circle-list--reiki .circle-list__inner {
    width: 100%;
    max-width: 560px;
  }
  .circle-list--methoden .circle-list__heading {
    justify-content: center;
    text-align: center;
    font-size: 17px;
  }
  .circle-list--methoden .circle-list__heading::before { content: none; }
  .wave--after-methoden { display: none; }

  /* Moegliche Themen: freie Dot-Liste auf Creme */
  .sec-themen-prozess {
    background: none;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .sec-themen-prozess li { display: flex; gap: 16px; align-items: flex-start; padding: 9px 0; }
  .sec-themen-prozess .list-dash__marker { display: none; }
  .sec-themen-prozess li::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--bullet);
  }
  .sec-themen-prozess ul { margin: 0 0 22px; padding: 0; list-style: none; }
  .sec-themen-prozess .list-dash__text { font-size: 16px; line-height: 1.55; margin: 0; }

  /* Reiki: Salbei-Band nur um den Ablauf, Liste danach auf Creme */
  .band-wrap--reiki { margin: 96px 0 0; background: var(--band-flat); }
  .wave--reiki-top,
  .wave--reiki-close { display: none; }
  .band-wrap--reiki::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2080%20C%20320%206%20720%202%201040%2040%20C%201220%2060%201350%2070%201440%2058%20L%201440%2080%20Z'%20fill='%23DFE6D4'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    pointer-events: none;
  }
  .band-wrap--reiki::after { content: none; }
  .band-wrap--reiki > .content-section {
    background: none;
    padding: 30px var(--gutter-m) 0;
  }
  .band-wrap--reiki .band-text { gap: 26px; }
  .band-wrap--reiki .section-heading--lg { margin-bottom: 26px; }
  .content-section--reiki-unterstuetzung {
    background: var(--paper);
    margin: 44px calc(-1 * var(--gutter-m)) 0;
    padding: 0 var(--gutter-m) 12px;
  }
  .content-section--reiki-unterstuetzung::before {
    content: "";
    position: absolute;
    left: 0;
    top: -58px;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2080%20C%20320%206%20720%202%201040%2040%20C%201220%2060%201350%2070%201440%2058%20L%201440%2080%20Z'%20fill='%23F7F0E0'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    pointer-events: none;
  }
  .content-section--reiki-unterstuetzung .cta-final__deco-alt { display: none; }
  .circle-list--reiki .circle-list__heading {
    text-align: left;
    justify-content: flex-start;
    font-size: 15px;
    max-width: none;
    width: 100%;
  }
  .circle-list--reiki .circle-list__inner ul { width: 100%; }
  .content-section--reiki-fade {
    background: none;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .content-section--reiki-fade .content-split > :last-child { order: -1; }
  .page-reiki .label-row { gap: 14px; margin-bottom: 18px; }
  .page-reiki .label-row__edge {
    position: static;
    left: 0;
    width: 42px;
    margin-left: 0;
    background: rgba(74, 86, 40, 0.32);
  }
  .page-reiki .label-row__text {
    position: static;
    left: 0;
    font-size: 15px;
    letter-spacing: 0.28em;
    white-space: normal;
    line-height: 1.5;
  }
  .note-box { padding: 18px 22px; margin-top: 4px; }
  .note-box p { font-size: 18px; line-height: 1.65; }
  .page-reiki .btn--wide { min-width: 0; width: auto; padding: 13px 28px; font-size: 12px; }

  /* Einspalten-CTA (Prozess, Ueber mich): Zitat frei, Logo+Button im Kreis */
  .cta-final__circle--708,
  .cta-final__circle--600 { width: auto; }
  .cta-final__single {
    position: relative;
    padding: 0;
    gap: 0;
    max-width: none;
    margin-inline: 0;
  }
  .cta-final__single .cta-final__quote {
    order: -1;
    font-size: 20px;
    line-height: 1.5;
    width: auto;
    max-width: 320px;
    margin: 0 auto 38px;
  }
  .cta-final__single::after {
    content: "";
    flex: 0 0 auto;
    width: min(86vw, 330px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--circle-butter);
  }
  .cta-final__single .cta-final__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc((min(86vw, 330px) - 118px) / 2 + 64px);
    width: 64px;
  }
  .cta-final__single .btn {
    position: absolute;
    left: 50%;
    bottom: calc((min(86vw, 330px) - 118px) / 2);
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    padding: 13px 26px;
    font-size: 12px;
  }

  /* Reiki-CTA: Zitat + Button im Butter-Kreis, ohne Logo */
  .page-reiki .cta-final { padding-top: 34px; padding-bottom: 56px; }
  .page-reiki .cta-final__circle--600 {
    width: min(86vw, 330px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--circle-butter);
    margin-inline: auto;
    padding: 0 12%;
  }
  .page-reiki .cta-final__single { position: static; gap: 20px; }
  .page-reiki .cta-final__single::after { content: none; }
  .page-reiki .cta-final__single .cta-final__logo { display: none; }
  .page-reiki .cta-final__single .cta-final__quote {
    order: 0;
    font-size: 19px;
    line-height: 1.4;
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .page-reiki .cta-final__single .btn {
    position: static;
    transform: none;
    width: auto;
  }
}
