/* ============================================================
   LOCAL FONTS
   ============================================================ */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --sage: #7A9E87;
  --sage-mid: #5B8A72;
  --sage-light: #A8C5B0;
  --sage-pale: #D4E6DA;
  --sage-bg: #EBF3EE;
  --rose: #C4957A;
  --rose-pale: #EDD9CF;
  --cream: #F7F5F1;
  --cream-dark: #EDE9E3;
  --text: #3A3530;
  --text-light: #6B6460;
  --white: #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;

  --nav-h: 90px;
  --max-w: 1080px;
  --radius: 3px;
  --shadow: 0 2px 20px rgba(58, 53, 48, 0.07);
  --shadow-md: 0 6px 36px rgba(58, 53, 48, 0.11);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

section p a, section ul a {
  text-decoration: underline;
}

section p a:hover, section ul a:hover {
  text-decoration: none;
}

nav ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.6rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section--sage {
  background: var(--sage-mid);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-top: 0.3rem;
}

.section-footer {
  margin-top: 2.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 158, 135, 0.12);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav__mobile-only {
  display: none;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover img {
  transform: scale(1.06);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--sage-mid);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--sage-mid) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: var(--sage) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--sage-mid);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(91, 138, 114, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--sage-mid);
  border: 1px solid var(--sage-mid);
}

.btn--outline:hover {
  background: var(--sage-pale);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--sage-mid);
}

.btn--white:hover {
  background: var(--sage-pale);
  transform: translateY(-1px);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sage-mid);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}

.text-link:hover {
  color: var(--sage);
  border-color: var(--sage);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(130deg,
      rgba(247, 245, 241, 0.98) 0%,
      rgba(235, 243, 238, 0.9) 45%,
      rgba(212, 230, 218, 0.65) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  animation: bounce 2.2s infinite;
  cursor: pointer;
}

.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sage-mid), rgba(91, 138, 114, 0));
  opacity: 0.65;
}

#nach-hero {
  scroll-margin-top: var(--nav-h);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__text {
  animation: fadeUp 0.85s ease both;
}

.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__illustration img {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1.2rem;
}

.hero__eyebrow-line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--sage-mid);
  flex-shrink: 0;
}

.hero__title {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.hero__title em {
  font-style: italic;
  -color: var(--sage-mid);
  color: #d7978e;
}

.hero__lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero__name {
  margin-top: 1rem;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-teaser__image {
  position: relative;
}

.photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--sage-pale), var(--cream-dark));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.photo-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.25;
}

/* decorative offset frame */
.about-teaser__image::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -1rem;
  right: 1rem;
  bottom: -1rem;
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius);
  z-index: -1;
}

.about-teaser__text h2 {
  margin: 0.25rem 0 1.2rem;
}

.about-teaser__text p {
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 0.85rem;
}

.about-personal {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   SCHWERPUNKTE GRID
   ============================================================ */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sage-pale);
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius);
  overflow: hidden;
}

.sp-card {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
  cursor: pointer;
}

.sp-card:hover {
  background: var(--white);
}

.sp-card__icon {
  display: block;
  line-height: 0;
}

.sp-card h3 {
  font-size: 0.95rem;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

/* ============================================================
   ABLAUF TEASER
   ============================================================ */
.ablauf-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ablauf-teaser__text h2 {
  margin: 0.3rem 0 1rem;
}

.ablauf-teaser__text p {
  color: var(--text-light);
  font-weight: 300;
}

.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ablauf-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.ablauf-step:last-child {
  border-bottom: none;
}

.ablauf-step__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: right;
}

.ablauf-step__body h3 {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.ablauf-step__body p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-block__text h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-block__text p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 420px;
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-block__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.cta-block__meta a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.cta-block__meta a:hover {
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  padding: 3rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 245, 241, 0.08);
  align-items: start;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.5);
  line-height: 1.8;
}

.footer__nav,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a,
.footer__legal a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.55);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.footer__nav a:hover,
.footer__legal a:hover {
  color: var(--sage-light);
}

.footer__copy {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer__copy p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.473);
  letter-spacing: 0.04em;
}

/* ============================================================
   PAGE HEADER (for subpages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

body.page-ueber-mich .page-header,
body.page-schwerpunkte .page-header,
body.page-therapie .page-header {
  background: linear-gradient(130deg,
      rgba(247, 245, 241, 0.98) 0%,
      rgba(235, 243, 238, 0.9) 45%,
      rgba(212, 230, 218, 0.65) 100%);
  border-bottom: 2px solid var(--sage-pale);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-top: 0.4rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-teaser__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .ablauf-teaser {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block__actions {
    align-items: flex-start;
  }

  .cta-block__meta {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.75rem 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__mobile-only {
    display: list-item;
  }

  .nav__toggle {
    display: flex;
  }

  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 3rem;
  }

  .hero__illustration {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding-bottom: 1.5rem;
  }

  .footer__copy {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

/* ============================================================
   CAPTCHA FIELD
   ============================================================ */
.form-group--captcha input {
  max-width: 120px;
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-notice.is-visible {
  transform: translateY(0);
}

.cookie-notice p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.7);
  letter-spacing: 0.02em;
}

.cookie-notice__close {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  background: none;
  border: 1px solid rgba(168, 197, 176, 0.35);
  border-radius: var(--radius);
  padding: 0.3rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-notice__close:hover {
  color: var(--white);
  border-color: var(--sage-light);
}

/* ============================================================
   SHELL PLACEHOLDER (temporary, remove when content is added)
   ============================================================ */
.shell-placeholder {
  padding: 4rem 2rem;
  border: 2px dashed var(--sage-pale);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.9rem;
}

/* ============================================================
   ÜBER MICH – VERFAHREN
   ============================================================ */
.verfahren-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.verfahren-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage-pale);
}

.verfahren-card h3 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.verfahren-card p {
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.72;
}

/* ============================================================
   ÜBER MICH – VITA
   ============================================================ */
.vita-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 640px;
}

.vita-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.vita-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.vita-subheading {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2.5rem;
}

/* ============================================================
   ÜBER MICH – METHOD TAGS
   ============================================================ */
.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.method-tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sage-mid);
  background: var(--sage-bg);
  border: 1px solid var(--sage-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ============================================================
   ÜBER MICH – MITGLIEDSCHAFTEN
   ============================================================ */
.mitglieder-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  max-width: 480px;
}

.mitglieder-list li {
  color: var(--text-light);
  font-weight: 300;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}

.mitglieder-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage-mid);
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz, Haftungsausschluss)
   ============================================================ */
.prose h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.prose ul {
  max-width: 720px;
  margin: 0.5rem 0 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.95rem;
}

.prose ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage-mid);
}

.legal-address {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin: 1rem 0 1.75rem;
  max-width: 460px;
}

.legal-address p {
  max-width: none !important;
  margin-bottom: 0.4rem !important;
  font-size: 0.92rem;
}

.legal-address p:last-of-type {
  margin-bottom: 0 !important;
}

.legal-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 2rem;
  margin-top: 0.9rem;
}

.legal-dl dt {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.legal-dl dd {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ============================================================
   SECTION CLOSING
   ============================================================ */
.section-closing {
  max-width: 560px;
  margin-top: 4rem;
}

.section-closing p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   SCHWERPUNKTE – FULL BLOCKS
   ============================================================ */
.sp-intro {
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   SCHWERPUNKTE – NAVIGATION TAGS
   ============================================================ */
.sp-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  max-width: 720px;
}

.sp-nav__tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sage-mid);
  background: var(--sage-bg);
  border: 1px solid var(--sage-pale);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none !important;
}

.sp-nav__tag:hover {
  background: var(--sage-pale);
  border-color: var(--sage-light);
  color: var(--sage-mid);
}

/* ============================================================
   Schwerpunkte Detail-Seite
   ============================================================ */
.sp-block {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.sp-list {
  display: flex;
  flex-direction: column;
}

.sp-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  align-items: start;
  transition: background 0.2s;
}

.sp-list .sp-block:last-child {
  border-bottom: none;
}

.sp-block:not(.sp-block--featured):hover {
  background: var(--cream-dark);
}

.sp-block--featured {
  padding: 2.5rem 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--sage-pale);
  border-bottom: none;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.sp-block__icon {
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

.sp-block__body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.sp-block--featured .sp-block__body h3 {
  font-size: 1.2rem;
}

.sp-block__body p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.sp-block__body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   THERAPIE – PROSE (grouped body paragraphs)
   ============================================================ */
.prose p {
  color: var(--text-light);
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

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

/* ============================================================
   THERAPIE – ABLAUF INTRO
   ============================================================ */
.ablauf-intro {
  color: var(--text-light);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ============================================================
   THERAPIE – GKV NOTE
   ============================================================ */
.gkv-note {
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--sage-bg);
  border-left: 3px solid var(--sage-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   THERAPIE – GRUPPENTHERAPIE FORMAT TAGS
   ============================================================ */
.gruppen-format {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.gruppen-tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sage-mid);
  background: var(--sage-bg);
  border: 1px solid var(--sage-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ============================================================
   THERAPIE – KOSTEN GRID
   ============================================================ */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.kosten-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--sage-pale);
}

.kosten-card h3 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.kosten-card p {
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.72;
}

/* ============================================================
   THERAPIE – FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  list-style: none;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.faq-item__q:hover {
  color: var(--sage-mid);
}

.faq-item[open] .faq-item__q {
  color: var(--sage-mid);
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--sage-light);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--sage-mid);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-item__a {
  color: var(--text-light);
  font-weight: 300;
  max-width: 680px;
  line-height: 1.75;
  padding-bottom: 1.75rem;
}

/* ============================================================
   KONTAKT – LAYOUT
   ============================================================ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}


.kontakt-info__lead {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--cream-dark);
}

.kontakt-dl {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.kontakt-dl dt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.2rem;
}

.kontakt-dl dd {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.kontakt-dl a {
  color: var(--text-light);
  border-bottom: 1px solid var(--sage-pale);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.kontakt-dl a:hover {
  color: var(--sage-mid);
  border-color: var(--sage-mid);
}

.notfall-box {
  padding: 1.2rem 1.5rem;
  background: var(--rose-pale);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* KONTAKT – FORM */
.form-feedback {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-feedback--erfolg {
  background: var(--sage-bg);
  border-left: 3px solid var(--sage-mid);
  color: var(--text);
}

.form-feedback--fehler {
  background: var(--rose-pale);
  border-left: 3px solid var(--rose);
  color: var(--text);
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--sage-bg);
  border-left: 3px solid var(--sage-mid);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-error {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--rose-pale);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-mid);
  box-shadow: 0 0 0 3px rgba(91, 138, 114, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.checkbox-group input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--sage-mid);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--sage-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.checkbox-group a:hover {
  color: var(--sage);
}

/* KONTAKT – ANFAHRT */
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.anfahrt-text p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.anfahrt-text p:last-child {
  margin-bottom: 0;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* ============================================================
   PAGE HEADER VARIANTEN
   ============================================================ */
.page-header--rose {
  background: var(--rose-pale);
}

.page-header--rose h1 em {
  font-style: italic;
  color: #d7978e;
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.page-header__text {
  flex: 1;
}

.page-header__deco-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.page-header__deco {
  width: 200px;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 700px) {
  .page-header__deco-wrap {
    display: none;
  }
}


/* ============================================================
   COACHING – ANGEBOTE GRID (coaching.html)
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rose-pale);
  border: 1px solid var(--rose-pale);
  border-radius: var(--radius);
  overflow: hidden;
}

.offers-card {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offers-card h3 {
  font-size: 0.95rem;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

/* ============================================================
   COACHING – PHOTO PLACEHOLDER LANDSCAPE
   ============================================================ */
.photo {
  width: 100%;
}

/* ============================================================
   COACHING – TEASER (index.html)
   ============================================================ */
.coaching-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.coaching-teaser__text h2 {
  margin: 0.25rem 0 1.2rem;
}

.coaching-teaser__text h2 em {
  font-style: italic;
  color: var(--rose);
}

.coaching-teaser__text p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

.coaching-teaser__motiv {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  pointer-events: none;
}

/* ============================================================
   COACHING – SECTION (schwerpunkte.html)
   ============================================================ */
.coaching-section {
  background: var(--rose-pale);
  position: relative;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.coaching-text p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
}

.coaching-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.coaching-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
}

.coaching-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-mid);
  flex-shrink: 0;
  margin-top: 0.42em;
}

.coaching-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 149, 122, 0.25);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================================
   COACHING – STRIP (index.html)
   ============================================================ */
.coaching-strip {
  background: var(--rose-pale);
  padding: 3rem 0;
}

.coaching-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.coaching-strip__text .section-label {
  margin-bottom: 0.4rem;
}

.coaching-strip__text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 540px;
}

.coaching-strip .text-link {
  margin-top: 0;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE – NEW COMPONENTS
   ============================================================ */
@media (max-width: 960px) {
  .verfahren-grid {
    grid-template-columns: 1fr;
  }

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

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coaching-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaching-teaser__motiv {
    display: none;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .anfahrt-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 700px) {
  .sp-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .sp-block__icon {
    padding-top: 0;
  }

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

.coaching-hinweis {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  border-top: 1px solid var(--cream-dark);
  padding-top: 2rem;
  max-width: 560px;
}

.coaching-hinweis a {
  color: var(--sage-mid);
}