/*
Theme Name: Psychotherapie Stuttgart-West
Theme URI: https://example.com
Author: Stefan Grau
Description: Kleines individuelles WordPress-Theme für eine Praxis für Psychotherapie in Stuttgart-West.
Version: 1.9
Text Domain: psychotherapie-stuttgart-west
*/

:root {
  --bg: #fbf6f1;
  --bg-soft: #f4ebe4;
  --paper: #fffaf6;
  --text: #242424;
  --muted: #69605a;
  --line: #e6d8cf;
  --accent: #c9856f;
  --accent-dark: #9f624f;
  --shadow: 0 24px 80px rgba(70, 50, 38, .08);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Für bewusst langsam geführte Startseiten-Sprunglinks übernimmt JavaScript die Animation. */
html.pstw-manual-scroll {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: #1f2426;
}

h1 {
  font-size: clamp(4.2rem, 8.3vw, 7.2rem);
  line-height: .9;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 241, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.nav {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-logo-svg {
  width: 84px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 84px;
  overflow: hidden;
}

.site-logo-svg svg {
  width: 150px;
  height: 150px;
  max-width: none;
  transform: translateY(1px);
}

.site-logo-svg svg path:first-child {
  fill: #8f8277;
}

.site-logo-svg svg path:last-child {
  fill: #d4c6b8;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.05;
  font-weight: 600;
  color: #1f2426;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}

.main-menu,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
  color: #403a36;
}

.main-menu a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-menu a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}


.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 12px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: background .22s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: var(--bg-soft);
}

.mobile-menu-toggle:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: #403a36;
  transform-origin: center;
  transition: transform .24s ease, opacity .2s ease;
}

.site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Allgemein */

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  max-width: 720px;
  margin: 20px auto 0;
}

.small-line {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--accent);
  margin: 20px auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 112px) 0 clamp(72px, 8vw, 96px);
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 236, 228, .85), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 246, .45), rgba(251, 246, 241, 0));
}

.hero-section::before,
.hero-section::after,
.hero-content::before,
.hero-content::after {
  display: none !important;
  content: none !important;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .84fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  min-height: auto;
}

.hero-bg-logo {
  display: none !important;
}

.hero-mark {
  position: absolute;
  top: -400px;
  left: -270px;
  width: clamp(720px, 64vw, 980px);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero-mark-svg,
.hero-mark .praxis-logo {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.hero-mark .praxis-logo path:first-of-type {
  fill: #f1e3d8 !important;
  opacity: .96;
}

.hero-mark .praxis-logo path:last-of-type {
  fill: #f1e3d8 !important;
  opacity: .68;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-location,
.hero-claim,
.hero-text,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
}

.hero-content h1 {
  max-width: 720px;
}

.hero-location {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 650px;
}

.hero-claim {
  margin-top: 28px;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.hero-text {
  margin: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  gap: 30px;
  align-items: stretch;
  margin-top: 42px;
  max-width: 660px;
}

.hero-meta {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
  max-width: none;
  transform: translateY(-22px);
}

.hero-value-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  min-height: 94px;
}

.hero-value-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d7c1b0;
}

.hero-value-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-value-text {
  display: block;
  font-size: .86rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-about-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: -18px;
  transform: translateY(-4px);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: .98rem;
  transition: .2s ease;
}

.hero-about-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-portrait {
  min-height: 330px;
  border-radius: 20px;
  background: #eee2d7;
  border: 1px solid rgba(201, 133, 111, .20);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 133, 111, .34);
  border-radius: 16px;
}

.hero-portrait span {
  position: relative;
  z-index: 1;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b17761;
}

/* Formular */

.hero-card {
  position: relative;
  z-index: 3;
  margin-top: 6px;
  background: rgba(255, 250, 246, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
}

.hero-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 26px;
}

.contact-form label {
  display: block;
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf6;
  border-radius: 8px;
  padding: 14px;
  margin-top: 8px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 133, 111, .12);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  transition: .2s ease;
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Themenraster */

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 246, .44);
}

.topic-card {
  min-height: 190px;
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease, box-shadow .22s ease;
}

.topic-card:nth-child(4n) {
  border-right: none;
}

.topic-card:nth-last-child(-n+4) {
  border-bottom: none;
}

.topic-card:hover {
  background: #fffaf6;
  box-shadow: inset 0 0 0 1px rgba(201, 133, 111, .10);
}

.topic-card:hover .topic-card-icon,
.topic-card:hover h3 {
  transform: translateY(-2px);
}

.topic-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dfad96;
  margin-bottom: 21px;
  transition: transform .22s ease;
}

.topic-card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.topic-card h3 {
  font-size: 1.55rem;
  transition: transform .22s ease, color .22s ease;
}

.topic-card:hover h3 {
  color: var(--accent-dark);
}

/* Angebot */

.offer-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 133, 111, .10), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 246, .42), rgba(244, 235, 228, .36));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 250, 246, .74);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(70, 50, 38, .06);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 246, .92);
  box-shadow: 0 30px 90px rgba(70, 50, 38, .095);
}

.offer-image {
  height: 210px;
  position: relative;
  background:
    radial-gradient(circle at 28% 28%, rgba(201, 133, 111, .14), transparent 32%),
    linear-gradient(135deg, #eadbd0 0%, #fff8f2 72%);
  border-bottom: 1px solid rgba(230, 216, 207, .72);
  overflow: hidden;
}

.offer-image::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 133, 111, .34);
  border-radius: 15px;
}

.offer-image::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 210px;
  height: 160px;
  border-radius: 50%;
  border: 34px solid rgba(201, 133, 111, .10);
}

.offer-image span {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(159, 98, 79, .78);
}

.offer-body {
  padding: 34px 34px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-body h3 {
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  margin-bottom: 14px;
}

.offer-body p {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 0;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: .91rem;
}

.offer-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.offer-body .button-primary {
  margin-top: auto;
  align-self: flex-start;
}

.offer-band {
  margin: 32px auto 0;
  max-width: 900px;
  background: rgba(255, 250, 246, .68);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 38px);
  text-align: center;
  box-shadow: 0 18px 56px rgba(70, 50, 38, .045);
}

.offer-band p {
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 720px;
}

.offer-band strong {
  color: var(--text);
  font-weight: 600;
}

/* Methoden */

.method-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 133, 111, .075), transparent 32%),
    linear-gradient(180deg, rgba(251, 246, 241, .94), rgba(255, 250, 246, .56));
}

.method-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 32px;
  align-items: stretch;
}

.method-list {
  background: rgba(255, 250, 246, .66);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(70, 50, 38, .045);
}

.method-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
  align-items: start;
}

.method-row:last-child {
  border-bottom: none;
}

.method-row:hover {
  background: rgba(255, 250, 246, .86);
}

.method-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 4px;
}

.method-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.method-copy h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  margin-bottom: 10px;
}

.method-copy p {
  color: var(--muted);
  font-size: .94rem;
  margin: 0;
}

.method-quote {
  min-height: 100%;
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 22%, rgba(201, 133, 111, .18), transparent 34%),
    linear-gradient(135deg, #efe3d9, #fffaf6);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(70, 50, 38, .06);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.method-quote::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201, 133, 111, .32);
  border-radius: 16px;
  pointer-events: none;
}

.method-quote::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 190px;
  border-radius: 50%;
  border: 38px solid rgba(201, 133, 111, .10);
}

.method-quote-inner {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  line-height: .55;
  color: rgba(201, 133, 111, .28);
  margin-bottom: 16px;
}

.method-quote blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #1f2426;
}

/* Ort / Online – alternierender Flächenakzent nach Entfernung der Methoden-Sektion */

.location-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 133, 111, .08), transparent 34%),
    linear-gradient(180deg, rgba(244, 235, 228, .36), rgba(251, 246, 241, .96));
}

.help-section-link {
  text-align: center;
  margin: 34px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  font-size: .92rem;
  transition: .2s ease;
}

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

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

.location-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 250, 246, .66);
  box-shadow: 0 22px 70px rgba(70, 50, 38, .05);
}

.location-card-image {
  display: flex;
  flex-direction: column;
}

.location-image {
  min-height: 410px;
  position: relative;
  background:
    radial-gradient(circle at 30% 24%, rgba(201, 133, 111, .15), transparent 30%),
    linear-gradient(135deg, #eadbd0 0%, #fffaf6 74%);
  border-bottom: 1px solid rgba(230, 216, 207, .72);
  overflow: hidden;
}

.location-image::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201, 133, 111, .34);
  border-radius: 16px;
}

.location-image::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 38px solid rgba(201, 133, 111, .10);
}

.location-image span {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(159, 98, 79, .76);
}

.location-card-body {
  padding: 30px 34px 34px;
}

.location-card-body h3,
.location-card-text h3 {
  margin-bottom: 16px;
}

.location-card-body p {
  color: var(--muted);
  max-width: 520px;
}

.location-card-text {
  display: flex;
  align-items: center;
  min-height: 100%;
  background:
    radial-gradient(circle at 76% 18%, rgba(201, 133, 111, .12), transparent 32%),
    rgba(255, 250, 246, .70);
}

.location-text-inner {
  padding: clamp(38px, 5vw, 62px);
}

.location-text-inner h3 {
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.location-text-inner p:not(.eyebrow) {
  color: var(--muted);
  max-width: 560px;
}

.location-note {
  color: var(--accent-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  margin-top: 28px;
  margin-bottom: 0;
}

/* Kosten – alternierender Flächenakzent */

.cost-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(201, 133, 111, .075), transparent 32%),
    linear-gradient(180deg, rgba(251, 246, 241, .96), rgba(244, 235, 228, .34));
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.cost-card {
  position: relative;
  min-height: 360px;
  background: rgba(255, 250, 246, .72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 42px 34px 38px;
  box-shadow: 0 22px 70px rgba(70, 50, 38, .052);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.cost-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 246, .92);
  box-shadow: 0 30px 90px rgba(70, 50, 38, .09);
}

.cost-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 133, 111, .24);
  border-radius: 16px;
  pointer-events: none;
}

.cost-card::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 210px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: .28;
  pointer-events: none;
}

.cost-card--1::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 180'%3E%3Cg fill='none' stroke='%23dfad96' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M54 160c54-42 80-83 92-132'/%3E%3Cpath d='M102 84c-24-18-43-21-58-12 17 19 36 22 58 12Z'/%3E%3Cpath d='M121 57c5-28 19-44 43-50-1 26-16 43-43 50Z'/%3E%3Cpath d='M136 104c20-15 39-17 56-7-15 17-34 20-56 7Z'/%3E%3Cpath d='M82 121c-18-12-33-13-46-5 13 14 28 16 46 5Z'/%3E%3C/g%3E%3C/svg%3E");
}

.cost-card--2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 180'%3E%3Cg fill='none' stroke='%23dfad96' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M36 154c50-28 93-61 144-133'/%3E%3Cpath d='M76 126c-8-26-3-46 15-59 8 24 3 44-15 59Z'/%3E%3Cpath d='M104 102c-7-24-3-41 12-54 8 21 4 40-12 54Z'/%3E%3Cpath d='M128 82c17-13 35-15 53-6-13 15-31 17-53 6Z'/%3E%3Cpath d='M150 58c15-12 31-13 47-5-12 14-28 15-47 5Z'/%3E%3Cpath d='M58 140c-16-9-29-10-40-3 11 12 24 13 40 3Z'/%3E%3C/g%3E%3C/svg%3E");
}

.cost-card--3::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 180'%3E%3Cg fill='none' stroke='%23dfad96' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M186 156c-17-55-44-95-94-136'/%3E%3Cpath d='M132 79c22-17 43-20 62-10-16 19-37 22-62 10Z'/%3E%3Cpath d='M109 58c-5-24 2-43 18-56 6 22 0 41-18 56Z'/%3E%3Cpath d='M156 109c18-13 35-15 51-7-13 15-30 17-51 7Z'/%3E%3Cpath d='M116 108c-20-13-39-14-56-5 15 16 33 18 56 5Z'/%3E%3Cpath d='M142 132c-17-11-32-12-46-5 12 14 27 15 46 5Z'/%3E%3C/g%3E%3C/svg%3E");
}

.cost-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--accent);
}

.cost-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cost-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  margin-bottom: 26px;
}

.cost-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 20px;
  background: rgba(201, 133, 111, .62);
  border-radius: 999px;
}

.cost-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 0;
}

.cost-note {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 28px 34px;
  background: rgba(255, 250, 246, .62);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  box-shadow: 0 18px 56px rgba(70, 50, 38, .04);
}

.cost-note p {
  margin: 0;
}

/* Ablauf – alternierender Flächenakzent */

.process-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 133, 111, .08), transparent 32%),
    linear-gradient(180deg, rgba(244, 235, 228, .34), rgba(251, 246, 241, .96));
}

.process-timeline {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 250, 246, .62);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(70, 50, 38, .045);
}

.process-step {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 38px 42px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .2s ease;
}

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

.process-step:hover {
  background: rgba(255, 250, 246, .86);
}

.process-step::before {
  content: "";
  position: absolute;
  left: 116px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 133, 111, .24);
}

.process-step:first-child::before {
  top: 48px;
}

.process-step:last-child::before {
  bottom: 48px;
}

.process-number {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 250, 246, .92);
  border: 1px solid rgba(201, 133, 111, .38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  line-height: 1;
  color: var(--accent);
  box-shadow: 0 16px 42px rgba(70, 50, 38, .055);
}

.process-content {
  align-self: center;
}

.process-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
}

.process-content p {
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 0;
}

.process-band {
  max-width: 920px;
  margin: 32px auto 0;
  padding: 30px 34px;
  background:
    radial-gradient(circle at 18% 28%, rgba(201, 133, 111, .10), transparent 34%),
    rgba(255, 250, 246, .68);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  box-shadow: 0 18px 56px rgba(70, 50, 38, .04);
}

.process-band p {
  margin: 0 auto 22px;
  max-width: 720px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.25;
  color: #3b3733;
}

/* Über mich */

.about-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 133, 111, .075), transparent 32%),
    linear-gradient(180deg, rgba(251, 246, 241, .96), rgba(255, 250, 246, .52));
}

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 6vw, 74px);
  align-items: start;
}

.about-intro {
  position: sticky;
  top: 118px;
  padding: 38px 0;
}

.about-intro .small-line {
  margin-left: 0;
  margin-right: auto;
}

.about-intro p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 28px;
  max-width: 460px;
}

.about-link {
  margin-top: 16px;
}

.about-list {
  background: rgba(255, 250, 246, .66);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(70, 50, 38, .045);
}

.about-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 38px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .2s ease;
  align-items: start;
}

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

.about-item:hover {
  background: rgba(255, 250, 246, .88);
}

.about-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 4px;
}

.about-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-item h3 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.7vw, 2.5rem);
}

.about-item p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 640px;
}

/* Kontakt */

.contact-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 133, 111, .08), transparent 32%),
    linear-gradient(180deg, rgba(244, 235, 228, .34), rgba(251, 246, 241, .96));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 246, .66);
  box-shadow: 0 22px 70px rgba(70, 50, 38, .05);
}

.contact-map-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 24%, rgba(201, 133, 111, .14), transparent 30%),
    linear-gradient(135deg, #eadbd0 0%, #fffaf6 74%);
  border-right: 1px solid var(--line);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201, 133, 111, .34);
  border-radius: 16px;
}

.contact-map-card::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -82px;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  border: 38px solid rgba(201, 133, 111, .10);
}

.contact-map-inner {
  position: absolute;
  left: 44px;
  bottom: 42px;
  z-index: 1;
}

.contact-map-inner span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(159, 98, 79, .82);
}

.contact-map-inner p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.contact-info-card {
  background: rgba(255, 250, 246, .72);
  padding: clamp(38px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-info-block:last-of-type {
  margin-bottom: 32px;
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-info-block h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.contact-info-block p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 560px;
}

.contact-info-card .button-primary {
  align-self: flex-start;
}

/* Footer */

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--text);
}

.footer-brand span {
  display: block;
  margin-top: 2px;
}

.footer-menu {
  display: flex;
  gap: 18px;
}

.footer-menu a:hover {
  color: var(--accent-dark);
}

/* Responsive */

@media (max-width: 1200px) {
  .hero-mark {
    top: -280px;
    left: -138px;
    width: 806px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 228px;
    max-width: 620px;
  }

  .hero-meta {
    min-height: 300px;
  }

  .hero-portrait {
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .offer-grid,
  .method-grid,
  .location-grid,
  .cost-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 48px;
  }

  .hero-mark {
    top: -233px;
    left: -113px;
    width: 720px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 220px;
    max-width: 100%;
  }

  .hero-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-value-item {
    min-height: 88px;
  }

  .hero-meta {
    min-height: 280px;
  }

  .hero-portrait {
    min-height: 280px;
  }

  .hero-card {
    margin-top: 36px;
  }

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

  .topic-card:nth-child(2n) {
    border-right: none;
  }

  .topic-card:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .offer-card,
  .cost-card {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .method-quote {
    min-height: 360px;
  }

  .location-image {
    min-height: 340px;
  }

  .about-intro {
    position: static;
    padding: 0;
  }

  .contact-map-card {
    min-height: 360px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 72px;
    gap: 16px;
  }

  .brand {
    max-width: calc(100% - 64px);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    padding: 10px 0 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 28px 46px rgba(70, 50, 38, .10);
  }

  .site-header.mobile-menu-open .main-navigation {
    display: block;
  }

  .main-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 20px 8px;
    color: #403a36;
  }

  .main-menu li {
    margin: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-menu li:last-child {
    border-bottom: 0;
  }

  .main-menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 0;
    font-size: .96rem;
  }

  .main-menu a:hover,
  .main-menu .current-menu-item > a,
  .main-menu .current-menu-ancestor > a,
  .main-menu .current_page_parent > a {
    border-bottom: 0;
    color: var(--accent-dark);
  }

  body.mobile-navigation-active {
    overflow-x: hidden;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: .64rem;
  }

  .site-logo-svg {
    width: 68px;
    height: 50px;
    flex-basis: 68px;
  }

  .site-logo-svg svg {
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 780px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 28px;
  }

  .process-step::before {
    display: none;
  }

  .process-number {
    width: 74px;
    height: 74px;
    font-size: 2.25rem;
  }

  .process-band {
    padding: 28px 26px;
  }
}

@media (max-width: 700px) {
  .method-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 26px;
  }

  .method-row p {
    align-self: auto;
  }

  .method-quote-inner {
    padding: 42px 32px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-mark {
    top: -138px;
    left: -95px;
    width: 460px;
    opacity: .96;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-meta {
    min-height: auto;
    gap: 28px;
  }

  .hero-values {
    grid-template-columns: 1fr;
    margin-top: 0;
    transform: none;
  }

  .hero-about-link {
    align-self: flex-start;
    margin-top: 0;
    transform: none;
  }

  .hero-value-item {
    align-items: flex-start;
    text-align: left;
    min-height: auto;
  }

  .hero-portrait {
    min-height: 260px;
  }

  .hero-card {
    margin-top: 36px;
  }

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

  .topic-card {
    border-right: none !important;
  }

  .topic-card:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .topic-card:last-child {
    border-bottom: none;
  }

  .location-image {
    min-height: 280px;
  }

  .location-card-body {
    padding: 28px 26px 32px;
  }

  .location-text-inner {
    padding: 36px 28px;
  }

  .cost-card {
    padding: 36px 28px 34px;
  }

  .cost-card::before {
    inset: 16px;
  }

  .cost-note {
    padding: 24px 26px;
  }

  .about-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 28px;
  }

  .contact-map-card {
    min-height: 300px;
  }

  .contact-map-card::before {
    inset: 22px;
  }

  .contact-map-inner {
    left: 32px;
    bottom: 32px;
  }

  .contact-info-card {
    padding: 36px 28px;
  }
}

/* Dynamische Mediathek-Bilder: fester Designrahmen unabhängig von Bildformat/Auflösung */
.pstw-media {
  position: relative;
  overflow: hidden;
}

.pstw-media .pstw-cover-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.pstw-media.focus-top .pstw-cover-image {
  object-position: center top;
}

.pstw-media.focus-bottom .pstw-cover-image {
  object-position: center bottom;
}

.pstw-media.focus-left .pstw-cover-image {
  object-position: left center;
}

.pstw-media.focus-right .pstw-cover-image {
  object-position: right center;
}

.hero-portrait.has-image {
  height: 330px;
  min-height: 330px;
}

.hero-portrait.has-image::before,
.offer-image.has-image::before,
.offer-image.has-image::after,
.location-image.has-image::before,
.location-image.has-image::after,
.method-quote.has-image::before,
.method-quote.has-image::after,
.contact-map-card.has-image::before,
.contact-map-card.has-image::after {
  display: none;
}

.offer-image.has-image {
  height: 210px;
}

.method-quote.has-image {
  min-height: 100%;
}

.location-image.has-image {
  min-height: 410px;
}

.contact-map-card.has-image {
  min-height: 470px;
}

@media (max-width: 1200px) {
  .hero-portrait.has-image {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  .hero-portrait.has-image {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .hero-portrait.has-image {
    height: 260px;
    min-height: 260px;
  }

  .location-image.has-image {
    min-height: 280px;
  }

  .contact-map-card.has-image {
    min-height: 300px;
  }
}


/* =========================================================
   Unterseite: Depression & Erschöpfung
   ========================================================= */

.topic-page-section {
  padding: clamp(58px, 7vw, 90px) 0 clamp(78px, 9vw, 122px);
  background:
    radial-gradient(circle at 92% 4%, rgba(201, 133, 111, .055), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 246, .34), rgba(251, 246, 241, 0));
}

.topic-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  column-gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.topic-sidebar {
  position: sticky;
  top: 128px;
  min-height: 728px;
  padding: 8px 34px 0 0;
  border-right: 1px solid var(--line);
}

.topic-sidebar-title {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: .72rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.topic-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topic-sidebar-nav li {
  position: relative;
  margin-bottom: 21px;
}

.topic-sidebar-nav a {
  display: block;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.48;
  transition: color .18s ease;
}

.topic-sidebar-nav a:hover,
.topic-sidebar-nav .is-active a {
  color: #343237;
}

.topic-sidebar-nav .is-active a {
  font-weight: 550;
}

.topic-sidebar-nav .is-active::before {
  content: "";
  position: absolute;
  top: .65em;
  left: -17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.topic-content {
  max-width: 826px;
  min-width: 0;
}

.topic-intro {
  max-width: 810px;
  padding: 7px 0 38px;
}

.topic-intro .eyebrow {
  margin-bottom: 22px;
}

.topic-intro h1 {
  max-width: 700px;
  font-size: clamp(3rem, 4.45vw, 4rem);
  line-height: .99;
  letter-spacing: -.048em;
}

.topic-title-line {
  display: block;
  width: 48px;
  height: 1px;
  margin: 27px 0 31px;
  background: var(--accent);
}

.topic-lead {
  max-width: 790px;
  margin-bottom: 20px;
  color: #4d4946;
  font-size: .98rem;
  line-height: 1.72;
}

.topic-detail-list {
  border-top: 1px solid var(--line);
}

.topic-detail-row {
  display: grid;
  grid-template-columns: 56px minmax(165px, 205px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  padding: 30px 0 31px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.topic-row-icon {
  width: 48px;
  height: 48px;
  color: #dfad96;
}

.topic-row-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-detail-row h2 {
  padding-top: 8px;
  font-size: clamp(1.47rem, 2vw, 1.72rem);
  line-height: 1.24;
  letter-spacing: -.025em;
}

.topic-row-body {
  padding-top: 7px;
  color: #4d4946;
  font-size: .91rem;
  line-height: 1.68;
}

.topic-row-body p {
  margin-bottom: 15px;
}

.topic-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topic-bullet-list li {
  position: relative;
  padding-left: 16px;
  margin: 0 0 4px;
}

.topic-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.topic-note {
  margin: 15px 0 0 !important;
  color: var(--muted);
}

.topic-cta {
  display: grid;
  grid-template-columns: minmax(180px, 265px) 1fr;
  margin-top: clamp(36px, 5vw, 52px);
  min-height: 214px;
  border: 1px solid var(--line);
  background: rgba(244, 235, 228, .56);
  overflow: hidden;
}

.topic-cta-image {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(244, 235, 228, .76), rgba(255, 250, 246, .48));
}

.topic-cta-botanical {
  position: absolute;
  width: 206px;
  height: auto;
  left: 3px;
  bottom: -4px;
  fill: rgba(201, 133, 111, .06);
  stroke: rgba(183, 143, 123, .48);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-cta-body {
  padding: clamp(27px, 4vw, 37px) clamp(27px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-cta-body h2 {
  margin-bottom: 13px;
  font-size: clamp(1.95rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.topic-cta-body p {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .92rem;
}

.topic-cta-body .button-primary {
  align-self: flex-start;
}

.topic-cta-image.has-image {
  min-height: 214px;
}

.main-menu .current-menu-item > a,
.main-menu .current-menu-ancestor > a,
.main-menu .current_page_parent > a {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

@media (max-width: 980px) {
  .topic-layout {
    grid-template-columns: 1fr;
  }

  .topic-sidebar {
    position: static;
    min-height: 0;
    padding: 0 0 28px;
    margin-bottom: 44px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .topic-sidebar-title {
    margin-bottom: 20px;
  }

  .topic-sidebar-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .topic-sidebar-nav li {
    margin: 0;
  }

  .topic-sidebar-nav a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .84rem;
    background: rgba(255, 250, 246, .55);
  }

  .topic-sidebar-nav .is-active::before {
    display: none;
  }

  .topic-sidebar-nav .is-active a {
    color: var(--accent-dark);
    border-color: rgba(201, 133, 111, .46);
    background: rgba(201, 133, 111, .08);
  }
}

@media (max-width: 720px) {
  .topic-page-section {
    padding-top: 40px;
  }

  .topic-detail-row {
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 17px;
    padding: 27px 0;
  }

  .topic-row-icon {
    width: 43px;
    height: 43px;
    grid-row: span 2;
  }

  .topic-detail-row h2 {
    padding-top: 5px;
  }

  .topic-row-body {
    grid-column: 2;
    padding-top: 4px;
  }

  .topic-cta {
    grid-template-columns: 1fr;
  }

  .topic-cta-image,
  .topic-cta-image.has-image {
    min-height: 145px;
  }

  .topic-cta-botanical {
    width: 178px;
  }
}

/* Weitere Themen – Übersichtsseite */

.more-topic-list {
  margin-top: clamp(52px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.more-topic-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(32px, 4.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.more-topic-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent);
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  line-height: 1;
  padding-top: 7px;
}

.more-topic-body {
  max-width: 740px;
}

.more-topic-body h2 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  margin-bottom: 14px;
}

.more-topic-body p {
  color: var(--muted);
  font-size: .98rem;
  margin: 0 0 18px;
  max-width: 690px;
}

.treatment-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-size: .92rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201, 133, 111, .42);
  transition: .2s ease;
}

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

.more-topics-cta {
  margin-top: clamp(52px, 6vw, 76px);
}

@media (max-width: 700px) {
  .more-topic-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .more-topic-number {
    padding-top: 0;
  }
}



/* =========================================================
   Übersichtsseite: Therapie
   ========================================================= */

.therapy-overview-section {
  min-height: calc(100vh - 83px);
  padding: clamp(52px, 6vw, 76px) 0 clamp(56px, 7vw, 84px);
  background:
    radial-gradient(circle at 82% 11%, rgba(201, 133, 111, .06), transparent 29%),
    linear-gradient(180deg, rgba(255, 250, 246, .44), rgba(251, 246, 241, 0));
}

.therapy-overview-layout {
  display: grid;
  grid-template-columns: minmax(540px, 1.08fr) minmax(345px, .78fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: stretch;
}

.therapy-overview-content {
  padding: clamp(28px, 4vw, 58px) 0 0;
}

.therapy-overview-intro {
  max-width: 590px;
}

.therapy-overview-intro .eyebrow {
  margin-bottom: 18px;
}

.therapy-overview-intro h1 {
  max-width: 550px;
  font-size: clamp(3.9rem, 6.3vw, 5.55rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.therapy-overview-line {
  display: block;
  width: 52px;
  height: 1px;
  margin: clamp(27px, 3.5vw, 34px) 0 clamp(27px, 3.5vw, 34px);
  background: var(--accent);
}

.therapy-overview-intro > p:last-child {
  max-width: 525px;
  margin: 0;
  color: #4d4946;
  font-size: .99rem;
  line-height: 1.76;
}

.therapy-overview-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(30px, 4vw, 52px);
  row-gap: 23px;
  max-width: 670px;
  margin-top: clamp(47px, 5vw, 62px);
}

.therapy-overview-topic {
  display: flex;
  align-items: center;
  gap: 19px;
  min-height: 45px;
  color: #403c39;
  font-size: .9rem;
  line-height: 1.45;
  transition: color .2s ease;
}

.therapy-overview-topic:hover {
  color: var(--accent-dark);
}

.therapy-overview-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #dfad96;
}

.therapy-overview-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.therapy-overview-more {
  margin-top: clamp(44px, 5vw, 60px);
}

.therapy-overview-more .treatment-text-link {
  font-size: .94rem;
  min-width: 205px;
  padding-bottom: 10px;
}

.therapy-overview-image {
  position: relative;
  min-height: clamp(680px, 72vw, 850px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(244, 235, 228, .88), rgba(255, 250, 246, .32)),
    #f3e9e0;
  box-shadow: 0 22px 72px rgba(70, 50, 38, .06);
}

.therapy-overview-image.has-image {
  min-height: clamp(680px, 72vw, 850px);
}

.therapy-overview-image .pstw-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-overview-image.focus-top .pstw-cover-image {
  object-position: center top;
}

.therapy-overview-image.focus-bottom .pstw-cover-image {
  object-position: center bottom;
}

.therapy-overview-image.focus-left .pstw-cover-image {
  object-position: left center;
}

.therapy-overview-image.focus-right .pstw-cover-image {
  object-position: right center;
}

.therapy-overview-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(92deg, rgba(246, 237, 229, .82), rgba(255, 250, 246, .68) 42%, rgba(236, 224, 213, .75)),
    radial-gradient(circle at 67% 38%, rgba(255, 255, 255, .62), transparent 28%);
}

.therapy-overview-placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.therapy-curtain {
  fill: none;
  stroke: rgba(218, 203, 191, .42);
  stroke-width: 18;
  stroke-linecap: round;
}

.therapy-branch {
  fill: rgba(183, 143, 123, .14);
  stroke: rgba(174, 135, 114, .42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.therapy-vase {
  fill: rgba(198, 162, 142, .2);
  stroke: rgba(174, 135, 114, .35);
  stroke-width: 2;
}

@media (max-width: 1040px) {
  .therapy-overview-layout {
    grid-template-columns: 1fr;
  }

  .therapy-overview-content {
    padding-top: 0;
  }

  .therapy-overview-image,
  .therapy-overview-image.has-image {
    min-height: clamp(390px, 64vw, 540px);
    margin-top: 20px;
  }
}

@media (max-width: 660px) {
  .therapy-overview-section {
    padding-top: 40px;
  }

  .therapy-overview-intro h1 {
    font-size: clamp(3.05rem, 15vw, 3.8rem);
  }

  .therapy-overview-topic-grid {
    grid-template-columns: 1fr;
    row-gap: 17px;
  }

  .therapy-overview-image,
  .therapy-overview-image.has-image {
    min-height: 350px;
  }
}


@media (max-width: 430px) {
  .brand {
    gap: 8px;
  }

  .brand-text strong {
    font-size: .98rem;
  }

  .brand-text small {
    font-size: .6rem;
  }

  .site-logo-svg {
    width: 55px;
    flex-basis: 55px;
  }

  .site-logo-svg svg {
    width: 105px;
    height: 105px;
  }
}

/* -------------------------------------------------------
   Unterseite: Über mich
   ------------------------------------------------------- */

.about-page {
  background: var(--bg);
}

.about-page-hero {
  padding: clamp(32px, 4vw, 52px) 0 0;
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(440px, 1.36fr);
  align-items: stretch;
  gap: clamp(36px, 5.5vw, 76px);
}

.about-page-hero-content {
  padding: clamp(34px, 6vw, 78px) 0 clamp(38px, 5vw, 64px);
  max-width: 395px;
}

.about-page-hero-content .eyebrow {
  margin-bottom: 14px;
}

.about-page-hero-content h1 {
  font-size: clamp(3.4rem, 6.2vw, 5.35rem);
  line-height: .96;
  letter-spacing: -.052em;
}

.about-page-accent {
  display: block;
  width: 58px;
  height: 2px;
  margin: 28px 0 30px;
  background: #dda991;
}

.about-page-lead {
  margin: 0;
  color: #3f4443;
  font-size: clamp(.98rem, 1.3vw, 1.05rem);
  line-height: 1.78;
}

.about-page-portrait {
  position: relative;
  min-height: clamp(385px, 39vw, 500px);
  background: var(--bg-soft);
  overflow: hidden;
}

.about-page-portrait .pstw-cover-image,
.about-page-companion-image .pstw-cover-image,
.about-page-cta-image .pstw-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-portrait.focus-top .pstw-cover-image,
.about-page-companion-image.focus-top .pstw-cover-image,
.about-page-cta-image.focus-top .pstw-cover-image {
  object-position: center top;
}

.about-page-portrait.focus-bottom .pstw-cover-image,
.about-page-companion-image.focus-bottom .pstw-cover-image,
.about-page-cta-image.focus-bottom .pstw-cover-image {
  object-position: center bottom;
}

.about-page-portrait.focus-left .pstw-cover-image,
.about-page-companion-image.focus-left .pstw-cover-image,
.about-page-cta-image.focus-left .pstw-cover-image {
  object-position: left center;
}

.about-page-portrait.focus-right .pstw-cover-image,
.about-page-companion-image.focus-right .pstw-cover-image,
.about-page-cta-image.focus-right .pstw-cover-image {
  object-position: right center;
}

.about-page-image-placeholder,
.about-page-small-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(159, 98, 79, .54);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: .02em;
  background: linear-gradient(120deg, #f2e6de, #e9d7cc);
}

.about-page-story {
  padding: 0 0 clamp(24px, 4vw, 46px);
}

.about-page-story-inner {
  max-width: 970px;
  margin-top: clamp(12px, 2.5vw, 26px);
}

.about-page-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(18px, 2.7vw, 28px);
  padding: clamp(24px, 3.2vw, 33px) 0;
  border-bottom: 1px solid var(--line);
}

.about-page-row-icon {
  color: #dfad96;
  padding-top: 3px;
}

.about-page-row-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page-row-content {
  max-width: 780px;
}

.about-page-row-content h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.22rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.about-page-row-content p {
  margin: 0 0 12px;
  color: #454844;
  font-size: .98rem;
  line-height: 1.7;
}

.about-page-row-content p:last-child {
  margin-bottom: 0;
}

.about-page-list {
  margin: 10px 0 14px;
  padding: 0 0 0 19px;
  color: #454844;
}

.about-page-list li {
  padding-left: 5px;
  margin: 5px 0;
  line-height: 1.62;
  font-size: .97rem;
}

.about-page-list li::marker {
  color: #dcaa92;
}

.about-page-row-wide .about-page-row-content {
  max-width: 810px;
}

.about-page-companion {
  grid-template-columns: 56px minmax(0, 1fr) clamp(112px, 16vw, 170px);
  align-items: center;
}

.about-page-companion-image {
  width: 100%;
  height: clamp(88px, 10vw, 106px);
  overflow: hidden;
  background: var(--bg-soft);
}

.about-page-cta-section {
  padding: 0 0 clamp(50px, 8vw, 88px);
}

.about-page-cta {
  max-width: 970px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  min-height: 176px;
  background: #f4eae3;
  border: 1px solid rgba(207, 179, 163, .42);
  overflow: hidden;
}

.about-page-cta-image {
  position: relative;
  min-height: 176px;
  display: grid;
  place-items: center;
  background: rgba(248, 240, 233, .62);
}

.about-page-botanical {
  width: 126px;
  height: 152px;
  color: #d5aa94;
  opacity: .82;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page-cta-content {
  padding: clamp(26px, 3.7vw, 37px) clamp(28px, 4.5vw, 52px);
  align-self: center;
}

.about-page-cta-content h2 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 3.5vw, 2.48rem);
}

.about-page-cta-content p {
  max-width: 500px;
  margin: 0 0 18px;
  color: #55504b;
  line-height: 1.66;
}

.about-page-cta-content .button-primary {
  display: inline-flex;
  align-items: center;
  gap: 17px;
}

@media (max-width: 980px) {
  .about-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-page-hero-content {
    max-width: 610px;
    padding-top: 18px;
  }

  .about-page-portrait {
    min-height: clamp(330px, 58vw, 500px);
  }
}

@media (max-width: 700px) {
  .about-page-hero {
    padding-top: 24px;
  }

  .about-page-hero-content {
    padding-bottom: 36px;
  }

  .about-page-portrait {
    min-height: clamp(278px, 73vw, 390px);
  }

  .about-page-story-inner {
    margin-top: 0;
  }

  .about-page-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .about-page-row-icon svg {
    width: 32px;
    height: 32px;
  }

  .about-page-companion {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .about-page-companion-image {
    grid-column: 2;
    height: 126px;
    max-width: 188px;
    margin-top: 8px;
  }

  .about-page-cta {
    grid-template-columns: 1fr;
  }

  .about-page-cta-image {
    min-height: 126px;
  }

  .about-page-botanical {
    height: 110px;
  }
}


/* ==========================================================
   Methoden & Haltung – eigenständige Unterseite
   ========================================================== */

.methods-page {
  padding: clamp(28px, 4vw, 46px) 0 clamp(56px, 7vw, 94px);
}

.methods-page-header {
  max-width: 850px;
  margin: 0 auto clamp(28px, 3.4vw, 38px);
  text-align: center;
}

.methods-page-header .eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.methods-page-header h1 {
  font-size: clamp(3rem, 5.4vw, 4.45rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.methods-page-accent {
  display: block;
  width: 42px;
  height: 2px;
  margin: 16px auto 12px;
  background: #dfae97;
}

.methods-page-header > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #4f504c;
  font-size: clamp(.98rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

.methods-page-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(278px, 326px);
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.methods-page-panel,
.methods-foundation-card {
  border: 1px solid rgba(216, 192, 177, .48);
  border-radius: 10px;
  background: rgba(255, 250, 246, .44);
}

.methods-page-panel {
  padding: 0 clamp(17px, 2.25vw, 26px);
}

.methods-page-row {
  display: grid;
  grid-template-columns: 53px minmax(240px, 1.05fr) minmax(226px, .94fr);
  gap: clamp(16px, 2vw, 25px);
  align-items: center;
  padding: clamp(18px, 2vw, 22px) 0;
  border-bottom: 1px solid rgba(226, 212, 203, .72);
}

.methods-page-row:last-child {
  border-bottom: 0;
}

.methods-page-method-icon {
  align-self: start;
  color: #dfad96;
  padding-top: 3px;
}

.methods-page-method-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.methods-page-method-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(1.42rem, 2vw, 1.68rem);
  line-height: 1.1;
  letter-spacing: -.018em;
}

.methods-page-method-copy p,
.methods-page-points {
  color: #4c4e4c;
  font-size: clamp(.88rem, 1vw, .94rem);
  line-height: 1.58;
}

.methods-page-method-copy p {
  margin: 0;
}

.methods-page-points {
  margin: 0;
  padding-left: 18px;
}

.methods-page-points li {
  margin: 2px 0;
  padding-left: 4px;
}

.methods-page-points li::marker {
  color: #d39477;
}

.methods-page-image-column {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 9px;
  background: #eee1d7;
}

.methods-page-image {
  position: absolute;
  inset: 0;
}

.methods-page-image .pstw-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.methods-page-image-column.focus-top .pstw-cover-image { object-position: center top; }
.methods-page-image-column.focus-bottom .pstw-cover-image { object-position: center bottom; }
.methods-page-image-column.focus-left .pstw-cover-image { object-position: left center; }
.methods-page-image-column.focus-right .pstw-cover-image { object-position: right center; }

.methods-page-image-placeholder {
  height: 100%;
  background: linear-gradient(102deg, #eee3dc 0%, #f7f0e9 26%, #efe2d8 100%);
}

.methods-page-image-placeholder svg {
  width: 100%;
  height: 100%;
}

.methods-curtain {
  fill: none;
  stroke: rgba(207, 182, 167, .44);
  stroke-width: 13;
}

.methods-branch {
  fill: none;
  stroke: rgba(111, 103, 74, .66);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.methods-vase {
  fill: rgba(222, 207, 195, .83);
  stroke: rgba(178, 150, 133, .35);
  stroke-width: 2;
}

.methods-page-quote {
  position: absolute;
  left: clamp(22px, 3vw, 35px);
  right: clamp(22px, 3vw, 35px);
  bottom: clamp(24px, 3.1vw, 34px);
  margin: 0;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 2.5vw, 28px);
  text-align: center;
  background: rgba(255, 250, 246, .9);
  border-radius: 7px;
  box-shadow: 0 10px 34px rgba(79, 56, 43, .06);
}

.methods-page-quote span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  color: #62615d;
  line-height: .55;
  margin-bottom: 17px;
}

.methods-page-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #424743;
  font-size: clamp(1.22rem, 1.55vw, 1.42rem);
  line-height: 1.47;
  margin: 0;
}

.methods-page-quote i {
  display: block;
  width: 34px;
  height: 1px;
  margin: 18px auto 0;
  background: #deae95;
}

.methods-page-foundation {
  margin-top: clamp(17px, 2vw, 22px);
}

.methods-foundation-card {
  overflow: hidden;
  text-align: center;
}

.methods-foundation-card > h2 {
  margin: clamp(18px, 2.3vw, 25px) 0 14px;
  font-size: clamp(1.72rem, 2.7vw, 2.1rem);
  letter-spacing: -.018em;
}

.methods-foundation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 clamp(16px, 4vw, 52px) clamp(22px, 2.6vw, 31px);
}

.methods-foundation-item {
  padding: 0 clamp(10px, 2vw, 24px);
  border-right: 1px solid rgba(226, 212, 203, .8);
}

.methods-foundation-item:last-child {
  border-right: 0;
}

.methods-foundation-item > div {
  display: flex;
  justify-content: center;
  margin: 1px 0 11px;
  color: #dfad96;
}

.methods-foundation-item svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.methods-foundation-item p {
  margin: 0;
  color: #4b4d4b;
  font-size: .94rem;
  line-height: 1.45;
  font-weight: 500;
}

.methods-foundation-cta {
  border-top: 1px solid rgba(226, 212, 203, .8);
  padding: clamp(17px, 2.4vw, 23px) 20px clamp(18px, 2.6vw, 26px);
  background: rgba(247, 238, 231, .35);
}

.methods-foundation-cta p {
  margin: 0 auto 13px;
  color: #444a47;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.25vw, 1.72rem);
  line-height: 1.35;
}

.methods-foundation-cta .button-primary {
  font-size: .9rem;
  padding: 10px 23px;
}

@media (max-width: 1120px) {
  .methods-page-layout {
    grid-template-columns: 1fr;
  }

  .methods-page-image-column {
    min-height: clamp(420px, 60vw, 570px);
  }
}

@media (max-width: 780px) {
  .methods-page-row {
    grid-template-columns: 43px 1fr;
    gap: 13px;
  }

  .methods-page-points {
    grid-column: 2;
    padding-left: 17px;
  }

  .methods-foundation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-bottom: 12px;
  }

  .methods-foundation-item {
    padding: 15px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(226, 212, 203, .8);
  }

  .methods-foundation-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .methods-page-header h1 {
    font-size: clamp(2.65rem, 13vw, 3.3rem);
  }

  .methods-page-row {
    grid-template-columns: 1fr;
  }

  .methods-page-method-icon,
  .methods-page-points {
    grid-column: 1;
  }

  .methods-page-method-icon svg {
    width: 35px;
    height: 35px;
  }

  .methods-page-image-column {
    min-height: 470px;
  }

  .methods-foundation-grid {
    grid-template-columns: 1fr;
  }

  .methods-foundation-item:last-child {
    grid-column: auto;
  }
}


/* ---------------------------------------------------------
   Unterseite: Yoga & Psyche
   --------------------------------------------------------- */
.yoga-psyche-page {
  padding: 0 0 clamp(54px, 7vw, 86px);
  background: var(--bg);
}

.yoga-psyche-hero {
  padding: clamp(0px, 1.1vw, 8px) 0 0;
}

.yoga-psyche-hero-grid {
  display: grid;
  grid-template-columns: minmax(325px, .82fr) minmax(500px, 1.55fr);
  align-items: stretch;
  min-height: clamp(382px, 35vw, 457px);
}

.yoga-psyche-hero-content {
  padding: clamp(27px, 3.2vw, 39px) clamp(30px, 4.2vw, 49px) clamp(28px, 3vw, 40px) clamp(20px, 2.8vw, 33px);
  background: linear-gradient(90deg, rgba(251,246,241,1) 0%, rgba(251,246,241,.99) 81%, rgba(251,246,241,.38) 100%);
  position: relative;
  z-index: 1;
  margin-right: -38px;
}

.yoga-psyche-hero-content .eyebrow {
  display: none;
}

.yoga-psyche-hero-content h1 {
  margin: 0;
  color: #303938;
  font-size: clamp(2.8rem, 4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.yoga-psyche-accent {
  display: block;
  width: 42px;
  height: 2px;
  margin: clamp(19px, 2vw, 25px) 0 clamp(17px, 2vw, 22px);
  background: #dfa58d;
}

.yoga-psyche-hero-content h2 {
  color: #d28a70;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.17rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -.014em;
  line-height: 1.43;
  margin: 0 0 clamp(17px, 2vw, 21px);
}

.yoga-psyche-hero-content p {
  color: #4b4f4d;
  font-size: clamp(.89rem, 1.05vw, .96rem);
  line-height: 1.68;
  margin: 0 0 15px;
  max-width: 390px;
}

.yoga-psyche-hero-content p:last-child {
  margin-bottom: 0;
}

.yoga-psyche-hero-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(382px, 35vw, 457px);
  background: #eadccf;
}

.yoga-psyche-hero-media .pstw-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(382px, 35vw, 457px);
  object-fit: cover;
}

.yoga-psyche-hero-media.focus-top .pstw-cover-image { object-position: center top; }
.yoga-psyche-hero-media.focus-bottom .pstw-cover-image { object-position: center bottom; }
.yoga-psyche-hero-media.focus-left .pstw-cover-image { object-position: left center; }
.yoga-psyche-hero-media.focus-right .pstw-cover-image { object-position: right center; }

.yoga-psyche-hero-placeholder {
  height: 100%;
  min-height: clamp(382px, 35vw, 457px);
  background: linear-gradient(96deg, #eee1d6 0%, #f4eae0 48%, #e5d3c5 100%);
}

.yoga-psyche-hero-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

.yoga-curtain {
  fill: none;
  stroke: rgba(223, 210, 198, .65);
  stroke-width: 19;
}

.yoga-branch {
  fill: none;
  stroke: rgba(106, 100, 69, .76);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yoga-vase { fill: rgba(203, 183, 161, .95); }
.yoga-mat { fill: rgba(132, 112, 92, .42); }
.yoga-bolster { fill: rgba(121, 102, 84, .42); }

.yoga-card {
  border: 1px solid rgba(226, 211, 201, .78);
  border-radius: 7px;
  background: rgba(255, 251, 247, .4);
}

.yoga-experience {
  margin-top: clamp(16px, 1.7vw, 20px);
}

.yoga-experience-card {
  padding: clamp(0px, .3vw, 3px) clamp(18px, 2.3vw, 30px) clamp(14px, 2vw, 21px);
  text-align: center;
}

.yoga-experience-card > h2,
.yoga-formats-card > h2,
.yoga-note-card > h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #444743;
  font-weight: 500;
  letter-spacing: -.02em;
}

.yoga-experience-card > h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.14rem);
  line-height: 1.2;
  padding-top: clamp(0px, .4vw, 4px);
}

.yoga-section-accent {
  display: block;
  width: 30px;
  height: 2px;
  background: #dfa58d;
  margin: 8px auto 17px;
}

.yoga-experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.yoga-experience-item {
  padding: 0 clamp(15px, 2.15vw, 27px) 0;
  border-right: 1px solid rgba(227, 212, 202, .8);
  text-align: center;
}

.yoga-experience-item:last-child {
  border-right: 0;
}

.yoga-icon {
  display: flex;
  justify-content: center;
  color: #dfa58d;
  margin: 0 auto 10px;
}

.yoga-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yoga-experience-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #47504d;
  font-size: clamp(1.2rem, 1.6vw, 1.38rem);
  font-weight: 500;
  letter-spacing: -.014em;
  line-height: 1.3;
  margin: 0 0 10px;
}

.yoga-experience-item p {
  color: #505351;
  font-size: clamp(.83rem, .94vw, .89rem);
  line-height: 1.61;
  margin: 0;
}

.yoga-formats {
  margin-top: clamp(16px, 1.7vw, 20px);
}

.yoga-formats-grid {
  display: grid;
  grid-template-columns: minmax(520px, 2.16fr) minmax(280px, .93fr);
  gap: clamp(18px, 2.15vw, 28px);
}

.yoga-formats-card {
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.3vw, 27px) clamp(16px, 2vw, 21px);
  text-align: center;
}

.yoga-formats-card > h2,
.yoga-note-card > h2 {
  font-size: clamp(1.65rem, 2.15vw, 1.92rem);
  line-height: 1.2;
  margin-bottom: 7px;
}

.yoga-formats-intro {
  max-width: 640px;
  margin: 0 auto clamp(17px, 1.8vw, 21px);
  color: #4d514f;
  font-size: clamp(.85rem, .97vw, .91rem);
  line-height: 1.55;
}

.yoga-formats-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.yoga-format-item {
  padding: 0 clamp(8px, 1.3vw, 14px);
  border-right: 1px solid rgba(227, 212, 202, .8);
}

.yoga-format-item:last-child {
  border-right: 0;
}

.yoga-format-item .yoga-icon {
  margin-bottom: 7px;
}

.yoga-format-item .yoga-icon svg {
  width: 34px;
  height: 34px;
}

.yoga-format-item p {
  margin: 0;
  color: #505451;
  font-size: clamp(.82rem, .94vw, .89rem);
  line-height: 1.4;
  font-weight: 500;
}

.yoga-note-card {
  padding: clamp(19px, 2.2vw, 27px) clamp(22px, 2.8vw, 34px);
  background: rgba(247, 238, 231, .65);
  text-align: center;
}

.yoga-note-card p {
  color: #4e514e;
  font-size: clamp(.9rem, 1.04vw, .96rem);
  line-height: 1.68;
  text-align: left;
  margin: clamp(13px, 1.4vw, 17px) 0 0;
}

.yoga-cta {
  margin-top: clamp(16px, 1.8vw, 21px);
}

.yoga-cta-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(108px, 12vw, 130px);
  border-radius: 7px;
  background: linear-gradient(98deg, #f2e7dc 0%, #f8f0e8 46%, #e9ddcf 100%);
  border: 1px solid rgba(226, 211, 201, .6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoga-cta-background {
  position: absolute;
  inset: 0;
  opacity: .36;
}

.yoga-cta-background .pstw-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yoga-cta-card.focus-top .pstw-cover-image { object-position: center top; }
.yoga-cta-card.focus-bottom .pstw-cover-image { object-position: center bottom; }
.yoga-cta-card.focus-left .pstw-cover-image { object-position: left center; }
.yoga-cta-card.focus-right .pstw-cover-image { object-position: right center; }

.yoga-cta-decoration {
  position: absolute;
  left: clamp(18px, 10vw, 142px);
  bottom: -7px;
  width: clamp(88px, 9vw, 120px);
  color: rgba(194, 137, 108, .42);
}

.yoga-cta-decoration svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yoga-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(15px, 1.8vw, 20px) 20px;
}

.yoga-cta-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #4b4b47;
  font-size: clamp(1.45rem, 2.08vw, 1.74rem);
  font-weight: 500;
  line-height: 1.32;
  margin: 0 0 2px;
}

.yoga-cta-content p {
  margin: 0 0 clamp(10px, 1.1vw, 13px);
  color: #505350;
  font-size: clamp(.88rem, 1vw, .95rem);
  line-height: 1.48;
}

.yoga-cta-content .button-primary {
  font-size: .89rem;
  padding: 10px 23px;
}

@media (max-width: 1080px) {
  .yoga-psyche-hero-grid {
    grid-template-columns: 1fr;
  }

  .yoga-psyche-hero-content {
    margin-right: 0;
    padding-right: clamp(20px, 4vw, 42px);
  }

  .yoga-psyche-hero-content p {
    max-width: 680px;
  }

  .yoga-psyche-hero-media,
  .yoga-psyche-hero-media .pstw-cover-image,
  .yoga-psyche-hero-placeholder {
    min-height: clamp(300px, 46vw, 440px);
  }

  .yoga-experience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 0;
  }

  .yoga-experience-item:nth-child(3) {
    border-right: 0;
  }

  .yoga-experience-item:nth-child(n+4) {
    border-top: 1px solid rgba(227, 212, 202, .8);
    padding-top: 22px;
  }

  .yoga-formats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .yoga-experience-grid,
  .yoga-formats-items {
    grid-template-columns: 1fr 1fr;
  }

  .yoga-experience-item,
  .yoga-format-item {
    border-right: 0;
    border-bottom: 1px solid rgba(227, 212, 202, .8);
    padding: 18px 14px;
  }

  .yoga-experience-item:nth-child(n+4) {
    border-top: 0;
  }

  .yoga-experience-item:nth-child(odd),
  .yoga-format-item:nth-child(odd) {
    border-right: 1px solid rgba(227, 212, 202, .8);
  }

  .yoga-experience-item:last-child,
  .yoga-format-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .yoga-cta-decoration {
    opacity: .35;
    left: 6px;
  }
}

@media (max-width: 510px) {
  .yoga-psyche-hero-content {
    padding-left: 8px;
    padding-right: 8px;
  }

  .yoga-psyche-hero-content h1 {
    font-size: clamp(2.5rem, 14vw, 2.95rem);
  }

  .yoga-experience-grid,
  .yoga-formats-items {
    grid-template-columns: 1fr;
  }

  .yoga-experience-item:nth-child(odd),
  .yoga-format-item:nth-child(odd) {
    border-right: 0;
  }

  .yoga-experience-item:last-child,
  .yoga-format-item:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   Unterseite: Ablauf
   ========================================================= */

.workflow-page {
  padding: clamp(50px, 6vw, 74px) 0 clamp(66px, 8vw, 98px);
  background:
    radial-gradient(circle at 50% 7%, rgba(201, 133, 111, .07), transparent 26%),
    linear-gradient(180deg, #fbf6f1 0%, #fcf8f4 100%);
}

.workflow-hero-inner {
  max-width: 920px;
  text-align: center;
  margin: 0 auto clamp(42px, 5vw, 60px);
}

.workflow-hero .eyebrow {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 clamp(10px, 1.2vw, 15px);
}

.workflow-hero h1 {
  color: #2c302f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(4.5rem, 9.2vw, 7.7rem);
  letter-spacing: -.052em;
  line-height: .92;
  margin: 0;
}

.workflow-accent {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(201, 133, 111, .72);
  margin: clamp(24px, 3vw, 31px) auto clamp(21px, 2.5vw, 28px);
}

.workflow-intro {
  color: #625d59;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
  max-width: 730px;
  margin: 0 auto;
}

.workflow-timeline {
  max-width: 950px;
  border: 1px solid rgba(223, 205, 194, .92);
  border-radius: 19px;
  background: rgba(255, 250, 246, .54);
  overflow: hidden;
  box-shadow: 0 26px 84px rgba(70, 50, 38, .035);
}

.workflow-step {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 48px);
  padding: clamp(37px, 5vw, 55px) clamp(37px, 5.2vw, 57px) clamp(37px, 5vw, 52px) clamp(40px, 5.5vw, 62px);
  border-bottom: 1px solid rgba(223, 205, 194, .88);
  position: relative;
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step::before {
  content: "";
  position: absolute;
  left: clamp(88px, 9.65vw, 113px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 133, 111, .28);
}

.workflow-step:first-child::before {
  top: clamp(74px, 8vw, 91px);
}

.workflow-step:last-child::before {
  bottom: clamp(55px, 6vw, 74px);
}

.workflow-step-number {
  position: relative;
  z-index: 1;
  width: clamp(66px, 7.1vw, 78px);
  height: clamp(66px, 7.1vw, 78px);
  border-radius: 50%;
  background: #fcf8f4;
  border: 1px solid rgba(201, 133, 111, .43);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.25vw, 2.05rem);
  color: var(--accent);
  line-height: 1;
}

.workflow-step-content h2 {
  color: #29302f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.62rem, 5.05vw, 4.28rem);
  letter-spacing: -.045em;
  font-weight: 500;
  line-height: .98;
  margin: 0 0 clamp(17px, 2vw, 22px);
  max-width: 660px;
}

.workflow-step-lead {
  color: #625d59;
  font-size: clamp(.98rem, 1.18vw, 1.08rem);
  line-height: 1.7;
  margin: 0 0 clamp(13px, 1.35vw, 16px);
  max-width: 650px;
}

.workflow-step-detail {
  color: #82766f;
  font-size: clamp(.9rem, 1vw, .96rem);
  line-height: 1.68;
  margin: 0;
  max-width: 660px;
}

.workflow-statement {
  margin-top: clamp(26px, 3vw, 33px);
}

.workflow-statement-card {
  max-width: 950px;
  min-height: clamp(218px, 27vw, 294px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(39px, 5.4vw, 63px) clamp(28px, 7vw, 94px);
  border: 1px solid rgba(223, 205, 194, .9);
  border-radius: 19px;
  background:
    radial-gradient(circle at 15% 44%, rgba(201, 133, 111, .075), transparent 31%),
    rgba(255, 250, 246, .48);
}

.workflow-statement-card p {
  margin: 0;
  color: #3c3b38;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.9vw, 3.75rem);
  letter-spacing: -.03em;
  line-height: 1.14;
  font-weight: 400;
}

.workflow-orientation {
  margin-top: clamp(48px, 6vw, 68px);
}

.workflow-section-head {
  text-align: center;
  margin: 0 auto clamp(28px, 3.6vw, 39px);
  max-width: 660px;
}

.workflow-section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: #303431;
  font-size: clamp(2.15rem, 3.8vw, 2.85rem);
  line-height: 1.14;
}

.workflow-section-head .workflow-accent {
  margin: 14px auto 15px;
}

.workflow-section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.workflow-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 1.8vw, 21px);
}

.workflow-note-card {
  padding: clamp(25px, 3vw, 34px) clamp(22px, 2.55vw, 30px);
  background: rgba(255, 250, 246, .59);
  border: 1px solid rgba(223, 205, 194, .76);
  border-radius: 10px;
}

.workflow-note-index {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  color: var(--accent);
  margin-bottom: 17px;
}

.workflow-note-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.68rem);
  font-weight: 500;
  color: #363936;
  margin: 0 0 10px;
}

.workflow-note-card p {
  color: var(--muted);
  line-height: 1.67;
  font-size: .94rem;
  margin: 0;
}

.workflow-cta {
  margin-top: clamp(38px, 5vw, 56px);
}

.workflow-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 950px;
  min-height: clamp(174px, 20vw, 214px);
  border: 1px solid rgba(223, 205, 194, .8);
  border-radius: 11px;
  background:
    linear-gradient(96deg, rgba(241, 228, 216, .83), rgba(255, 250, 246, .7) 45%, rgba(236, 222, 210, .78));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.workflow-cta-decoration {
  position: absolute;
  left: clamp(18px, 7.8vw, 82px);
  bottom: -9px;
  width: clamp(88px, 12vw, 132px);
  color: rgba(194, 137, 108, .42);
}

.workflow-cta-decoration svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-cta-content {
  position: relative;
  z-index: 1;
  max-width: 670px;
  padding: clamp(28px, 3.5vw, 42px) 22px;
}

.workflow-cta-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.34rem);
  font-weight: 500;
  line-height: 1.23;
  color: #40413e;
  margin: 0 0 7px;
}

.workflow-cta-content p {
  color: #635e5a;
  font-size: .98rem;
  line-height: 1.62;
  margin: 0 auto clamp(16px, 2vw, 21px);
}

@media (max-width: 760px) {
  .workflow-page {
    padding-top: 42px;
  }

  .workflow-step {
    display: block;
    padding: 27px 22px 31px;
  }

  .workflow-step::before {
    display: none;
  }

  .workflow-step-number {
    margin-bottom: 22px;
  }

  .workflow-step-content h2 {
    font-size: clamp(2.25rem, 12.5vw, 2.8rem);
  }

  .workflow-note-grid {
    grid-template-columns: 1fr;
  }

  .workflow-cta-decoration {
    opacity: .36;
    left: -9px;
  }
}


/* Kontakt-Unterseite */
.contact-page {
  padding: clamp(45px, 6vw, 68px) 0 clamp(64px, 8vw, 96px);
}

.contact-page-heading {
  max-width: 820px;
  text-align: center;
}

.contact-page-heading .eyebrow {
  margin-bottom: clamp(13px, 2vw, 18px);
}

.contact-page-heading h1 {
  font-size: clamp(3.45rem, 7.4vw, 6.35rem);
  line-height: .94;
  letter-spacing: -.057em;
}

.contact-page-accent {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: clamp(21px, 2.8vw, 28px) auto clamp(19px, 2.5vw, 25px);
}

.contact-page-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(.98rem, 1.25vw, 1.06rem);
  line-height: 1.76;
}

.contact-page-main {
  margin-top: clamp(46px, 6vw, 70px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(264px, .75fr) minmax(430px, 1.25fr);
  align-items: start;
  gap: clamp(23px, 3.2vw, 40px);
}

.contact-page-aside {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

.contact-page-details,
.contact-page-form-card {
  background: rgba(255, 250, 246, .7);
  border: 1px solid rgba(223, 205, 194, .86);
  border-radius: 17px;
}

.contact-page-details {
  padding: clamp(27px, 3vw, 38px);
}

.contact-page-details h2,
.contact-page-form-card h2 {
  color: #313634;
  font-size: clamp(2rem, 3.5vw, 2.62rem);
  letter-spacing: -.03em;
  margin-bottom: clamp(22px, 2.4vw, 29px);
}

.contact-page-detail {
  padding: 0 0 19px;
  margin: 0 0 19px;
  border-bottom: 1px solid rgba(230, 216, 207, .92);
}

.contact-page-detail span {
  display: block;
  color: var(--accent-dark);
  font-size: .77rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.contact-page-detail p {
  color: #484846;
  line-height: 1.62;
  margin: 0;
}

.contact-page-availability {
  color: #716963;
  font-size: .91rem;
  line-height: 1.72;
  margin: 4px 0 0;
}

.contact-page-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(205px, 28vw, 305px);
  background: #f1e7de;
  border-radius: 17px;
  border: 1px solid rgba(223, 205, 194, .7);
}

.contact-page-media .pstw-cover-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-page-media.focus-top img { object-position: center top; }
.contact-page-media.focus-bottom img { object-position: center bottom; }
.contact-page-media.focus-left img { object-position: left center; }
.contact-page-media.focus-right img { object-position: right center; }

.contact-page-media-placeholder {
  height: 100%;
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.contact-page-media-placeholder svg {
  width: min(80%, 260px);
  color: rgba(195, 134, 108, .42);
  transform: translateY(16px);
}

.contact-page-media-placeholder svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-form-card {
  padding: clamp(29px, 4vw, 48px);
  box-shadow: 0 21px 62px rgba(70, 50, 38, .045);
}

.contact-page-form-intro {
  color: #6e6661;
  line-height: 1.72;
  max-width: 590px;
  margin: -11px 0 clamp(22px, 3vw, 30px);
}

.contact-page-message {
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 15px 18px;
  font-size: .92rem;
  line-height: 1.6;
}

.contact-page-message.success {
  color: #4d5d4d;
  background: rgba(223, 234, 220, .53);
  border: 1px solid rgba(135, 158, 128, .36);
}

.contact-page-message.error {
  color: #7d5045;
  background: rgba(242, 225, 218, .52);
  border: 1px solid rgba(201, 133, 111, .37);
}

.contact-page-form {
  position: relative;
}

.contact-page-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.contact-page-form label:not(.contact-page-consent) {
  display: block;
  color: #625d59;
  font-size: .89rem;
  margin-bottom: 18px;
}

.contact-page-form label > span {
  display: block;
  margin-bottom: 8px;
}

.contact-page-form input[type="text"],
.contact-page-form input[type="email"],
.contact-page-form input[type="tel"],
.contact-page-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(223, 205, 194, .95);
  background: #fffaf6;
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  font-size: .96rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-page-form textarea {
  min-height: 158px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 133, 111, .1);
}

.contact-page-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #706862;
  font-size: .83rem;
  line-height: 1.62;
  margin: 5px 0 25px;
}

.contact-page-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  border: 1px solid rgba(201, 133, 111, .6);
  border-radius: 3px;
  background: #fffaf6;
  position: relative;
  cursor: pointer;
}

.contact-page-consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-page-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-page-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-page-submit p {
  font-size: .8rem;
  color: #8c817a;
  margin: 0;
}

.contact-page-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-page-note {
  margin-top: clamp(46px, 6vw, 70px);
}

.contact-page-note-card {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(295px, .9fr);
  align-items: center;
  gap: clamp(30px, 5.2vw, 72px);
  padding: clamp(34px, 5vw, 60px) clamp(27px, 6vw, 78px);
  border: 1px solid rgba(223, 205, 194, .83);
  border-radius: 17px;
  background:
    radial-gradient(circle at 12% 48%, rgba(201, 133, 111, .09), transparent 32%),
    rgba(255, 250, 246, .57);
}

.contact-page-note-card h2 {
  color: #393b38;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.09;
  letter-spacing: -.037em;
}

.contact-page-note-card > p {
  color: #655f5b;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-page-grid,
  .contact-page-note-card {
    grid-template-columns: 1fr;
  }

  .contact-page-aside {
    order: 2;
  }

  .contact-page-form-card {
    order: 1;
  }

  .contact-page-media {
    min-height: clamp(210px, 47vw, 300px);
  }
}

@media (max-width: 620px) {
  .contact-page {
    padding-top: 36px;
  }

  .contact-page-fields-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-page-submit {
    display: block;
  }

  .contact-page-submit p {
    margin-top: 14px;
  }
}

.contact-page-consent a {
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(159, 98, 79, .4);
  transition: border-color .2s ease, color .2s ease;
}

.contact-page-consent a:hover {
  color: var(--accent);
  border-color: var(--accent);
}


/* Funktionales Formular im Startseiten-Hero */
.contact-form {
  position: relative;
}

.hero-form-message {
  margin-top: -8px;
  margin-bottom: 22px;
}

.hero-form-consent {
  margin-top: 2px;
  margin-bottom: 24px;
}

.hero-form-consent span {
  display: block;
  margin: 0;
}

.hero-form-consent a {
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(159, 98, 79, .4);
  transition: border-color .2s ease, color .2s ease;
}

.hero-form-consent a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Startseitenformular: Checkbox-Haken exakt zentrieren */
.hero-form-consent input[type="checkbox"]:checked::after {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  transform: translate(-50%, -58%) rotate(45deg);
  transform-origin: center;
}

/* =========================================================
   Unterseite: Häufige Fragen
   ========================================================= */

.faq-page {
  padding: clamp(50px, 6vw, 76px) 0 clamp(68px, 8vw, 102px);
  background:
    radial-gradient(circle at 50% 5%, rgba(201, 133, 111, .07), transparent 25%),
    linear-gradient(180deg, #fbf6f1 0%, #fcf8f4 100%);
}

.faq-page-heading {
  max-width: 870px;
  margin: 0 auto clamp(48px, 6vw, 70px);
  text-align: center;
}

.faq-page-heading .eyebrow,
.faq-crisis .eyebrow,
.faq-page-cta .eyebrow,
.faq-page-aside-card .eyebrow {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 clamp(10px, 1.2vw, 15px);
}

.faq-page-heading h1 {
  color: #2c302f;
  font-size: clamp(4.45rem, 9vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.052em;
}

.faq-page-accent {
  display: block;
  width: 44px;
  height: 1px;
  margin: clamp(24px, 3vw, 31px) auto clamp(21px, 2.5vw, 28px);
  background: rgba(201, 133, 111, .72);
}

.faq-page-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #625d59;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.77;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(245px, 288px) minmax(0, 1fr);
  gap: clamp(27px, 4.6vw, 62px);
  align-items: start;
  max-width: 1090px;
}

.faq-page-aside {
  position: sticky;
  top: 118px;
}

.faq-page-aside-card {
  border: 1px solid rgba(223, 205, 194, .88);
  border-radius: 16px;
  padding: clamp(27px, 3vw, 35px) clamp(23px, 2.7vw, 30px);
  background: rgba(255, 250, 246, .58);
}

.faq-page-aside-card h2 {
  color: #353936;
  font-size: clamp(2.15rem, 3.4vw, 2.62rem);
  line-height: 1.05;
  letter-spacing: -.038em;
  margin-bottom: 17px;
}

.faq-page-aside-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: .94rem;
  margin: 0 0 23px;
}

.faq-page-aside-card .button-primary {
  width: 100%;
  justify-content: center;
  padding-left: 17px;
  padding-right: 17px;
}

.faq-page-groups {
  min-width: 0;
}

.faq-page-group + .faq-page-group {
  margin-top: clamp(44px, 5.6vw, 62px);
}

.faq-page-group-head {
  display: flex;
  gap: 21px;
  align-items: flex-start;
  margin-bottom: clamp(18px, 2.4vw, 27px);
}

.faq-page-group-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent);
  font-size: 1.42rem;
  line-height: 1.1;
  margin: 8px 0 0;
}

.faq-page-group-head h2 {
  font-size: clamp(2.25rem, 3.7vw, 2.92rem);
  color: #323735;
  line-height: 1.1;
  margin-bottom: 8px;
}

.faq-page-group-head div > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.faq-accordion {
  border-top: 1px solid rgba(223, 205, 194, .9);
}

.faq-item {
  border-bottom: 1px solid rgba(223, 205, 194, .9);
  background: transparent;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(21px, 2.5vw, 27px) 3px;
  color: #373a38;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.48rem, 2.32vw, 1.76rem);
  font-weight: 500;
  line-height: 1.24;
  transition: color .2s ease;
}

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

.faq-item summary:hover {
  color: var(--accent-dark);
}

.faq-item summary i {
  position: relative;
  display: block;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 133, 111, .42);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-item summary i::before {
  width: 12px;
  height: 1px;
}

.faq-item summary i::after {
  width: 1px;
  height: 12px;
}

.faq-item[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 clamp(44px, 6vw, 70px) clamp(23px, 2.7vw, 30px) 3px;
}

.faq-answer p {
  color: #665f5b;
  line-height: 1.78;
  font-size: clamp(.95rem, 1.05vw, 1rem);
  margin: 0;
}

.faq-crisis {
  margin-top: clamp(60px, 8vw, 90px);
}

.faq-crisis-card {
  max-width: 1090px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(320px, 1.22fr);
  gap: clamp(25px, 4vw, 60px);
  padding: clamp(32px, 5vw, 52px) clamp(27px, 5vw, 59px);
  border-radius: 17px;
  border: 1px solid rgba(201, 133, 111, .26);
  background: rgba(244, 235, 228, .52);
}

.faq-crisis-title h2 {
  color: #343936;
  font-size: clamp(2.05rem, 3.5vw, 2.72rem);
  line-height: 1.12;
}

.faq-crisis-text p {
  color: #625d59;
  line-height: 1.73;
  margin: 0;
}

.faq-crisis-text p + p {
  margin-top: 15px;
  color: #494743;
}

.faq-page-cta {
  margin-top: clamp(42px, 5.7vw, 62px);
}

.faq-page-cta-card {
  max-width: 1090px;
  text-align: center;
  padding: clamp(38px, 5.5vw, 58px) clamp(25px, 7vw, 94px);
  border-radius: 17px;
  border: 1px solid rgba(223, 205, 194, .84);
  background:
    radial-gradient(circle at 18% 50%, rgba(201, 133, 111, .07), transparent 33%),
    rgba(255, 250, 246, .54);
}

.faq-page-cta-card h2 {
  font-size: clamp(2.25rem, 4.6vw, 3.42rem);
  color: #343937;
  margin: 0 auto 15px;
  max-width: 750px;
}

.faq-page-cta-card > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0 auto clamp(19px, 2.5vw, 26px);
}

@media (max-width: 900px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-page-aside {
    position: static;
    order: 2;
    margin-top: 18px;
  }

  .faq-page-aside-card .button-primary {
    width: auto;
  }

  .faq-crisis-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .faq-page {
    padding-top: 40px;
  }

  .faq-page-group-head {
    gap: 13px;
  }

  .faq-item summary {
    font-size: 1.42rem;
    padding: 19px 0;
  }

  .faq-answer {
    padding-right: 4px;
  }
}


/* ==========================================================
   Rechtliche Seiten – Impressum & Datenschutzerklärung
   ========================================================== */

.legal-page {
  padding: clamp(46px, 6vw, 74px) 0 clamp(74px, 9vw, 115px);
  background:
    radial-gradient(circle at 86% 13%, rgba(201, 133, 111, .075), transparent 27%),
    linear-gradient(180deg, rgba(251, 246, 241, 1), rgba(255, 250, 246, .84));
}

.legal-heading {
  max-width: 1090px;
  text-align: center;
}

.legal-heading h1 {
  color: #343936;
  font-size: clamp(3.45rem, 7vw, 5.7rem);
  font-weight: 400;
  line-height: .98;
  margin: clamp(12px, 2vw, 18px) auto clamp(18px, 2.6vw, 25px);
}

.legal-accent {
  width: 1px;
  height: clamp(44px, 6vw, 66px);
  background: rgba(201, 133, 111, .76);
  display: block;
  margin: 0 auto clamp(17px, 2.2vw, 22px);
}

.legal-intro {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.78;
}

.legal-content {
  margin-top: clamp(52px, 7vw, 82px);
}

.legal-layout {
  max-width: 1090px;
  display: grid;
  grid-template-columns: minmax(240px, 302px) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: clamp(90px, 11vw, 118px);
}

.legal-aside-card {
  padding: clamp(28px, 3.6vw, 37px) clamp(23px, 3.2vw, 30px);
  border: 1px solid rgba(223, 205, 194, .9);
  border-radius: 18px;
  background: rgba(255, 250, 246, .78);
}

.legal-aside-card h2 {
  font-size: clamp(2.05rem, 3vw, 2.45rem);
  color: #343936;
  line-height: 1.12;
  margin: 15px 0 15px;
}

.legal-aside-card > p:not(.eyebrow) {
  color: #655e59;
  line-height: 1.75;
  margin: 0;
}

.legal-aside-card .text-link {
  display: inline-flex;
  margin-top: 22px;
}

.legal-sections {
  min-width: 0;
}

.legal-section {
  padding: 0 0 clamp(29px, 4vw, 38px);
  margin: 0 0 clamp(29px, 4vw, 38px);
  border-bottom: 1px solid rgba(226, 213, 204, .82);
}

.legal-section h2 {
  margin: 0 0 clamp(13px, 2vw, 17px);
  font-size: clamp(2.12rem, 3.3vw, 2.68rem);
  line-height: 1.14;
  color: #343936;
}

.legal-section p {
  margin: 0;
  color: #625d59;
  line-height: 1.82;
  font-size: clamp(.95rem, 1.05vw, 1rem);
}

.legal-section-soft {
  border: 1px solid rgba(223, 205, 194, .82);
  border-radius: 17px;
  padding: clamp(27px, 4vw, 36px);
  background:
    radial-gradient(circle at 87% 30%, rgba(201, 133, 111, .07), transparent 31%),
    rgba(244, 235, 228, .34);
}

.legal-section-soft h2 {
  font-size: clamp(2rem, 3.1vw, 2.4rem);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 21px;
}

.privacy-page .legal-page,
.privacy-page {
  background:
    radial-gradient(circle at 13% 11%, rgba(201, 133, 111, .075), transparent 27%),
    linear-gradient(180deg, rgba(251, 246, 241, 1), rgba(255, 250, 246, .84));
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
    order: 2;
  }
}

@media (max-width: 620px) {
  .legal-page {
    padding-top: 40px;
  }

  .legal-heading h1 {
    font-size: clamp(3rem, 16vw, 3.7rem);
  }

  .legal-section h2 {
    font-size: 2rem;
  }
}



@media (max-width: 767px) {
  .topic-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 19px;
  }
}
