/* Cleaned CSS: auto-pruned based on selectors found in your HTML/JS files.
   Source: style.css
   Note: dynamic classes (added at runtime) may require manual keep-list. */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap");

:root {
  --brand-600: #77296f;

  --purple-700: #4b1d52;
  --purple-600: #77296f;
  --purple-500: #8d3a86;
  --purple-200: #ead7f0;
  --purple-100: #f6eff8;

  --bg: #fbfafc;
  --surface: #ffffff;
  --surface-2: #f6f3f8;

  --text: #1f1b22;
  --muted: #5f5463;
  --muted-2: #7a6f7e;

  --accent: #caa7ff;
  --accent-2: #a7f3d0;

  --border: rgba(31, 27, 34, .10);

  --shadow-sm: 0 8px 20px rgba(20, 10, 25, .08);
  --shadow-md: 0 18px 50px rgba(20, 10, 25, .12);

  --radius-lg: 18px;
  --radius-xl: 26px;

  --nav-bg: rgba(119, 41, 111, 0.78);
  --ash: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(202, 167, 255, .35), transparent 60%),
    radial-gradient(800px 480px at 85% 0%, rgba(119, 41, 111, .18), transparent 55%),
    radial-gradient(900px 600px at 50% 120%, rgba(167, 243, 208, .18), transparent 60%),
    var(--bg);
  line-height: 1.6;
  letter-spacing: -0.2px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.6px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--brand-600);
  margin-bottom: .8rem;
}

.lp2-gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

/* kleines, feines Logo */
.logo-icon {
  height: 38px;
  opacity: 0.9;   /* 🔥 NICHT größer */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* dezenter Effekt */
.logo:hover .logo-icon {
  
  filter: brightness(1.1);
	opacity: 1;
  transform: scale(1.05);
}

/* Text optional leicht veredeln */
.logo-text {
  letter-spacing: 0.3px;
}

.pr-gallery-image {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 220px; /* <- feste Höhe sorgt für gleiche Boxen */
  background: rgba(255,255,255,0.04);
  height: 240px;
  transition: transform 0.4s ease;
}

.pr-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 DAS ist der wichtigste Punkt */
  object-position: center;
  display: block;
}

.pr-gallery-card:hover .pr-gallery-image img {
  transform: scale(1.05);
}

.lp2-gallery-caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
}

.lp2-gallery-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.lp2-gallery-text {
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .lp2-gallery {
    grid-template-columns: 1fr;
  }

  .lp2-gallery-img {
    aspect-ratio: 16 / 10;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand-600), #5b2a72);
  color: #fff;
  box-shadow: 0 12px 30px rgba(119, 41, 111, .28);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(119, 41, 111, .33);
}

.btn.secondary {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(119, 41, 111, .22);
  color: var(--brand-600);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.primary-large {
  background: rgba(255, 255, 255, .92);
  color: var(--brand-600);
  padding: 1.1rem 1.6rem;
  font-weight: 750;
  box-shadow: 0 18px 60px rgba(255, 255, 255, .18);
}

.btn.primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(20, 10, 25, .14);
}

#nav-menu {
  padding: 20px 20px 0 20px;
  position: fixed;
  top: 0px;
  width:100%;
  z-index: 1000;
}

#nav-menu .container {
  background: var(--nav-bg);
  border-radius: 18px;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14);

  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  height: 90px;
}

.logo {
  margin-right: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.6px;
}

.nav-start,
.nav-end,
.menu-bar,
.right-container {
  display: flex;
  align-items: center;
}

.menu {
  position: relative;
}

.menu-bar {
  display: flex;
  align-items: center;
}

.menu-bar li {
  position: relative;
}

.nav-link,
.dropdown-btn {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.4px;
  padding: .4rem .55rem;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
}

.menu-bar .nav-link:hover,
.menu-bar .dropdown-btn:hover {
  background: rgba(255, 255, 255, .14);
}

.directphonecall {
  margin-right: 10px;
}

.directphonecall a {
  color: #fff;
  opacity: .92;
}

.directphonecall a:hover {
  opacity: 1;
}

#hamburger {
  display: none;
  padding: .1rem;
  margin-left: 1rem;
  color: #fff; /* makes SVG (fill=currentColor) white by default */
}

/* Ensure inline burger SVG always follows the button color */
#hamburger svg { display: block; }
#hamburger svg path { fill: currentColor; }

.custom-arrow {
  border: solid rgba(255, 255, 255, .9);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 10px;
  transition: transform .2s ease;
  transform: rotate(45deg);
}

.custom-dropdown-btn[aria-expanded="true"] .custom-arrow {
  transform: rotate(-135deg);
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  position: absolute;
  top: 44px;
  z-index: 20;

  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: .14s ease-in-out;

  box-shadow: 0 22px 70px rgba(20, 10, 25, .18);
  border: 1px solid rgba(31, 27, 34, .10);
  overflow: hidden;
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dropdown ul {
  padding: 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.dropdown-title {
  padding: .6rem 1.1rem .3rem;
  color: var(--muted-2);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 800;
}

.dropdown-link {
  display: flex;
  gap: .5rem;
  padding: .55rem .6rem;
  border-radius: 10px;
  color: var(--text);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}

.dropdown-link:hover {
  background: rgba(119, 41, 111, .08);
  color: var(--brand-600);
  transform: translateX(2px);
}

.dropdown-link-title {
  font-weight: 700;
}

.bg-image {
  background-image: url("8161.jpg");
  filter: blur(153px);
  -webkit-filter: blur(153px);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bcont-text p:not(.socialinvite) {

  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.bcont-text .socialinvite {
      display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
    margin-top: 0;
    padding: 12px 24px;
    background: rgba(119, 41, 111, 0.8);
    border-radius: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.bcont-text .socialinvite:hover { 
      background: rgba(119, 41, 111, 1);
    transform: translateX(2px);
}

.hero {
      background: var(--purple-700);
      position: relative;
      overflow: hidden;
    }

.hero::before {
      content: "";
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139,58,134,0.45) 0%, transparent 70%);
      top: -200px; right: -150px;
      pointer-events: none;
    }

.hero::after {
      content: "";
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(202,167,255,0.1) 0%, transparent 70%);
      bottom: -80px; left: 200px;
      pointer-events: none;
    }

.hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 420px 1fr;
      max-width: 1160px;
      margin: 0 auto;
      padding: 72px 56px;
      gap: 72px;
      align-items: center;
      min-height: 560px;
    }

.hero-photo-col {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.hero-photo-col::before {
      content: "";
      position: absolute;
      width: calc(100% + 28px);
      height: calc(100% + 28px);
      border-radius: 50%;
      border: 2px dashed rgba(202,167,255,0.35);
      animation: spinRing 18s linear infinite;
      pointer-events: none;
    }

.hero-photo-col::after {
      content: "";
      position: absolute;
      width: calc(100% + 56px);
      height: calc(100% + 56px);
      border-radius: 50%;
      border: 1px solid rgba(202,167,255,0.12);
      pointer-events: none;
    }

@keyframes spinRing {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

.photo-circle {
      width: 360px;
      height: 360px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      z-index: 1;
      box-shadow:
        0 0 0 6px rgba(202,167,255,0.15),
        0 24px 64px rgba(0,0,0,0.35);
    }

.photo-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

.hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.hero-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--purple-200);
      opacity: 0.75;
      margin-bottom: 24px;
    }

.hero-breadcrumb a {
      color: inherit;
      text-decoration: none;
    }

.hero-breadcrumb a:hover { opacity: 1; color: #fff; }

.hero-breadcrumb span { opacity: 0.5; }

.hero-name {
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 500;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 12px;
    }

.hero-subtitle {
      font-family: "Playfair Display", serif;
      font-size: 19px;
      font-style: italic;
      font-weight: 400;
      color: var(--purple-200);
      margin-bottom: 32px;
      line-height: 1.4;
    }

.hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 42px;
    }

.hero-tag {
      padding: 5px 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(202,167,255,0.25);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 400;
      color: var(--purple-200);
      letter-spacing: 0.03em;
    }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-solid {
      display: inline-block;
      padding: 13px 28px;
      background: var(--accent);
      color: var(--purple-700);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s;
    }

.btn-solid:hover { background: #d4b8ff; transform: translateY(-1px); }

.btn-outline {
      display: inline-block;
      padding: 12px 28px;
      border: 1.5px solid rgba(202,167,255,0.4);
      color: var(--purple-200);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 6px;
      transition: border-color 0.2s, color 0.2s;
    }

.btn-outline:hover { border-color: var(--accent); color: #fff; }

.page-wrap { max-width: 1160px; margin: 0 auto; padding: 0 56px; }

.section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--brand-600);
      margin-bottom: 14px;
    }

.section-label::before {
      content: "";
      width: 20px; height: 2px;
      background: var(--brand-600);
      border-radius: 2px;
    }

.section-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(30px, 3.2vw, 42px);
      font-weight: 500;
      line-height: 1.18;
      color: var(--text);
      margin-bottom: 24px;
    }

.bio-section {
      padding: 88px 0 80px;
      border-bottom: 1px solid var(--border);
    }

.bio-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 72px;
      align-items: start;
    }

.bio-body p {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.78;
      margin-bottom: 16px;
      font-weight: 400;
    }

.bio-body p:last-child { margin-bottom: 0; }

.spec-card {
      background: var(--purple-100);
      border: 1px solid var(--purple-200);
      border-radius: 10px;
      padding: 32px 28px;
    }

.spec-card h4 {
      font-family: "Playfair Display", serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 20px;
    }

.spec-list { list-style: none; }

.spec-list li {
      display: flex;
      align-items: baseline;
      gap: 10px;
      padding: 9px 0;
      font-size: 13.5px;
      color: var(--muted);
      border-bottom: 1px solid var(--purple-200);
      font-weight: 400;
    }

.spec-list li:last-child { border-bottom: none; padding-bottom: 0; }

.spec-list li::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--brand-600);
      flex-shrink: 0;
      margin-top: 3px;
    }

.approach-section {
      padding: 88px 0;
      background: var(--purple-700);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

.approach-section::before {
      content: "";
      position: absolute;
      width: 800px; height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(202,167,255,0.07) 0%, transparent 65%);
      top: -300px; right: -200px;
      pointer-events: none;
    }

.approach-header {
      margin-bottom: 56px;
    }

.approach-header .section-label { color: var(--accent); }

.approach-header .section-label::before { background: var(--accent); }

.approach-header .section-title { color: #fff; }

.approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

.approach-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(202,167,255,0.15);
      border-radius: 16px;
      padding: 40px 32px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

.approach-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
        rgba(202,167,255,0.08) 0%,
        rgba(119,41,111,0.0) 60%,
        rgba(202,167,255,0.06) 100%
      );
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: inherit;
    }

.approach-card::after {
      content: "";
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 3px;
      background: linear-gradient(180deg, var(--accent), var(--purple-500));
      border-radius: 0 2px 2px 0;
      transform: scaleY(0);
      transform-origin: center;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

.approach-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(202,167,255,0.35);
      transform: translateY(-4px);
    }

.approach-card:hover::before { opacity: 1; }

.approach-card:hover::after  { transform: scaleY(1); }

.card-num {
      font-family: "Playfair Display", serif;
      font-size: 52px;
      font-weight: 600;
      line-height: 1;
      color: rgba(202,167,255,0.12);
      margin-bottom: 16px;
      display: block;
      transition: color 0.3s;
      user-select: none;
    }

.approach-card:hover .card-num {
      color: rgba(202,167,255,0.25);
    }

.approach-card h4 {
      font-family: "Playfair Display", serif;
      font-size: 21px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.25;
    }

.approach-card p {
      font-size: 14px;
      color: var(--purple-200);
      line-height: 1.75;
      opacity: 0.85;
    }

.approach-card {
      opacity: 0;
      transform: translateY(30px);
      animation: cardReveal 0.6s ease forwards;
    }

.approach-card:nth-child(1) { animation-delay: 0.1s; }

.approach-card:nth-child(2) { animation-delay: 0.25s; }

.approach-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes cardReveal {
      to { opacity: 1; transform: translateY(0); }
    }

.personal-strip {
      background: var(--purple-700);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }

.personal-strip::after {
      content: "";
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(202,167,255,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }

.strip-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

.strip-item {
      padding: 0 40px 0 0;
      border-right: 1px solid rgba(255,255,255,0.1);
      margin-right: 40px;
    }

.strip-item:last-child {
      border-right: none;
      margin-right: 0;
      padding-right: 0;
    }

.strip-item-label {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

.strip-item h4 {
      font-family: "Playfair Display", serif;
      font-size: 21px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3;
    }

.strip-item p {
      font-size: 14px;
      color: var(--purple-200);
      line-height: 1.72;
      opacity: 0.85;
    }

.qualifications-section {
      padding: 88px 0;
      border-bottom: 1px solid var(--border);
    }

.qual-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 88px;
      align-items: start;
    }

.qual-aside {
      position: sticky;
      top: 40px;
    }

.qual-aside .section-title {
      font-size: 32px;
      margin-bottom: 14px;
    }

.qual-aside p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

.timeline { display: flex; flex-direction: column; }

.tl-item {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 20px;
      padding-bottom: 36px;
    }

.tl-item:last-child { padding-bottom: 0; }

.tl-spine {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 5px;
    }

.tl-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: #fff;
      border: 2.5px solid var(--brand-600);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

.tl-item:not(:last-child) .tl-spine::after {
      content: "";
      flex: 1;
      width: 2px;
      background: var(--purple-200);
      margin-top: 5px;
      border-radius: 2px;
    }

.tl-body h4 {
      font-family: "Playfair Display", serif;
      font-size: 19px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 8px;
    }

.tl-body p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.72;
    }

.tl-badge {
      display: inline-block;
      margin-top: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-600);
      background: var(--purple-100);
      border: 1px solid var(--purple-200);
      padding: 3px 10px;
      border-radius: 100px;
    }

.cta-section {
      padding: 88px 0;
      background: var(--surface-2);
      text-align: center;
    }

.cta-inner {
      max-width: 540px;
      margin: 0 auto;
    }

.cta-inner .section-label { justify-content: center; }

.cta-inner .section-label::before { display: none; }

.cta-inner .section-title { margin-bottom: 16px; }

.cta-inner p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 36px;
    }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-purple {
      display: inline-block;
      padding: 14px 32px;
      background: var(--brand-600);
      color: #fff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s;
    }

.btn-purple:hover { background: var(--purple-500); transform: translateY(-1px); }

.btn-outline-purple {
      display: inline-block;
      padding: 13px 32px;
      border: 1.5px solid var(--brand-600);
      color: var(--brand-600);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }

.btn-outline-purple:hover { background: var(--brand-600); color: #fff; }

@keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

.hero-breadcrumb { animation: fadeUp 0.55s ease both 0.05s; }

.hero-name       { animation: fadeUp 0.55s ease both 0.15s; }

.hero-subtitle   { animation: fadeUp 0.55s ease both 0.25s; }

.hero-tags       { animation: fadeUp 0.55s ease both 0.35s; }

.hero-actions    { animation: fadeUp 0.55s ease both 0.45s; }

.hero-photo-col  { animation: fadeUp 0.65s ease both 0.2s; }

@media (max-width: 900px){
.page-wrap { padding: 0 24px; }

.hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 24px;
        gap: 40px;
        min-height: auto;
      }

.hero-photo-col { justify-content: center; }

.photo-circle { width: 260px; height: 260px; }

.hero-text { text-align: center; }

.hero-breadcrumb { justify-content: center; }

.hero-tags { justify-content: center; }

.hero-actions { justify-content: center; }

.bio-grid          { grid-template-columns: 1fr; gap: 36px; }

.approach-grid     { grid-template-columns: 1fr; }

.strip-grid        { grid-template-columns: 1fr; gap: 36px; }

.strip-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 32px 0; margin: 0; }

.strip-item:last-child { border-bottom: none; padding-bottom: 0; }

.qual-layout       { grid-template-columns: 1fr; gap: 40px; }

.qual-aside        { position: static; }
}

.therapy-hero {
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: var(--radius-xl);
  padding: 7rem 0 5.5rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(900px 500px at 20% 0%, rgba(202, 167, 255, .35), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(255, 255, 255, .18), transparent 55%),
    linear-gradient(135deg, var(--purple-700), var(--brand-600) 55%, #5b2a72);

  box-shadow: 0 28px 80px rgba(20, 10, 25, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.therapy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
  transform: translateX(-120%);
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {

  0%,
  55% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

.therapy-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.9px;
  margin-bottom: 1.2rem;
  text-shadow: 0 12px 35px rgba(0, 0, 0, .22);
}

.cta-section {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem 1.4rem;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cta-section h3 {
  color: var(--brand-600);
  margin-bottom: .4rem;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.page-praxis {
  --pr-p700: #4b1d52;
  --pr-p600: #77296f;
  --pr-p500: #8d3a86;
  --pr-p200: #ead7f0;
  --pr-p100: #f6eff8;
  --pr-bg:   #fbfafc;
  --pr-surf: #ffffff;
  --pr-s2:   #f6f3f8;
  --pr-text: #1f1b22;
  --pr-mut:  #5f5463;
  --pr-mut2: #7a6f7e;
  --pr-acc:  #caa7ff;
  --pr-acc2: #a7f3d0;
  --pr-bdr:  rgba(31,27,34,.10);

  font-family: "DM Sans", sans-serif;
  background: var(--pr-bg);
  color: var(--pr-text);
  line-height: 1.65;
  font-weight: 400;
}

.page-praxis .pr-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-praxis .pr-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pr-p600);
  margin-bottom: 12px;
}

.page-praxis .pr-label::before {
  content: "";
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.page-praxis .pr-label.light { color: var(--pr-acc); }

.page-praxis .pr-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.16;
  color: var(--pr-text);
  margin-bottom: 14px;
}

.page-praxis .pr-title.light { color: #fff; }

.page-praxis .pr-lead {
  font-size: 15.5px;
  color: var(--pr-mut);
  line-height: 1.75;
  max-width: 580px;
  font-weight: 300;
}

.page-praxis .pr-lead.light { color: var(--pr-p200); opacity: .9; }

.page-praxis .pr-section-head { margin-bottom: 52px; }

.page-praxis .pr-btn {
  display: inline-block;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
}

.page-praxis .pr-btn-accent {
  background: var(--pr-acc);
  color: var(--pr-p700);
  padding: 13px 28px;
}

.page-praxis .pr-btn-accent:hover { background: #d4b8ff; transform: translateY(-1px); }

.page-praxis .pr-btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(202,167,255,.35);
  color: var(--pr-p200);
  padding: 12px 28px;
}

.page-praxis .pr-btn-ghost:hover { border-color: var(--pr-acc); color: #fff; }

.page-praxis .pr-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(202,167,255,.4);
  color: var(--pr-p200);
  padding: 11px 24px;
}

.page-praxis .pr-btn-outline:hover { border-color: var(--pr-acc); color: #fff; }

.page-praxis .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.page-praxis .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-praxis .pr-hero {
  background: var(--pr-p700);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-praxis .pr-hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,58,134,.5) 0%, transparent 70%);
  top: -260px; right: -160px;
  pointer-events: none;
}

.page-praxis .pr-hero::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,167,255,.09) 0%, transparent 70%);
  bottom: -100px; left: 80px;
  pointer-events: none;
}

.page-praxis .pr-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 64px;
}

.page-praxis .pr-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.07;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.page-praxis .pr-tagline {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--pr-p200);
  margin-bottom: 40px;
  line-height: 1.55;
  max-width: 520px;
}

.page-praxis .pr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-praxis .pr-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

.page-praxis .pr-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(202,167,255,.15);
  border-radius: 12px;
  padding: 18px 28px;
  text-align: center;
  min-width: 148px;
  backdrop-filter: blur(4px);
}

.page-praxis .pr-stat-val {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.page-praxis .pr-stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--pr-p200);
  opacity: .75;
  letter-spacing: .04em;
}

.page-praxis .pr-subnav {
  background: var(--pr-surf);
  border-bottom: 1px solid var(--pr-bdr);
  position: sticky;
  top: 0;
  z-index: 90;
}

.page-praxis .pr-subnav-inner {
  display: flex;
}

.page-praxis .pr-navlink {
  display: inline-block;
  padding: 17px 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--pr-mut);
  text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.page-praxis .pr-navlink:hover { color: var(--pr-p600); }

.page-praxis .pr-navlink.active { color: var(--pr-p600); border-bottom-color: var(--pr-p600); }

.page-praxis .pr-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--pr-bdr);
  background: var(--pr-bg);
}

.page-praxis .pr-section.pr-tinted { background: var(--pr-s2); }

.page-praxis .pr-section.pr-dark {
  background: var(--pr-p700);
  border-bottom-color: rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.page-praxis .pr-section.pr-dark::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,58,134,.4) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.page-praxis .pr-icon-box {
  width: 44px; height: 44px;
  background: var(--pr-p100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.page-praxis .pr-icon-box svg {
  width: 20px; height: 20px;
  stroke: var(--pr-p600);
  fill: none;
}

.page-praxis .pr-three-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.page-praxis .pr-feature-card {
  background: var(--pr-surf);
  border: 1px solid var(--pr-bdr);
  border-radius: 14px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-praxis .pr-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pr-p600), var(--pr-acc));
}

.page-praxis .pr-feature-card:hover {
  box-shadow: 0 10px 32px rgba(119,41,111,.09);
  transform: translateY(-3px);
  border-color: var(--pr-p200);
}

.page-praxis .pr-feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--pr-text);
  margin-bottom: 10px;
}

.page-praxis .pr-feature-card p {
  font-size: 14px;
  color: var(--pr-mut);
  line-height: 1.72;
  font-weight: 300;
}

.page-praxis .pr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  position: relative;
}

.page-praxis .pr-gallery-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s;
}

.page-praxis .pr-gallery-card:hover { transform: translateY(-4px); }

.page-praxis .pr-gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(202,167,255,.15), rgba(139,58,134,.2));
  border: 1px solid rgba(202,167,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-praxis .pr-gallery-placeholder svg {
  width: 40px; height: 40px;
  stroke: rgba(202,167,255,.45);
}

.page-praxis .pr-gallery-lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--pr-p200);
  opacity: .75;
  text-align: center;
  letter-spacing: .03em;
}

.page-praxis .pr-philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.page-praxis .pr-quote {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--pr-p600);
  line-height: 1.65;
  border-left: 3px solid var(--pr-p600);
  padding-left: 20px;
  margin-top: 32px;
  opacity: .85;
}

.page-praxis .pr-phil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.page-praxis .pr-phil-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--pr-bdr);
  align-items: start;
}

.page-praxis .pr-phil-list li:last-child { border-bottom: none; }

.page-praxis .pr-phil-num {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-p600);
  opacity: .5;
  padding-top: 2px;
  letter-spacing: .05em;
}

.page-praxis .pr-phil-list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--pr-text);
  margin-bottom: 6px;
}

.page-praxis .pr-phil-list p {
  font-size: 13.5px;
  color: var(--pr-mut);
  line-height: 1.7;
  font-weight: 300;
}

.page-praxis .pr-four-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.page-praxis .pr-fac-card {
  background: var(--pr-surf);
  border: 1px solid var(--pr-bdr);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-praxis .pr-fac-card:hover {
  box-shadow: 0 8px 28px rgba(119,41,111,.09);
  transform: translateY(-3px);
  border-color: var(--pr-p200);
}

.page-praxis .pr-fac-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--pr-text);
  margin-bottom: 8px;
}

.page-praxis .pr-fac-card p {
  font-size: 13.5px;
  color: var(--pr-mut);
  line-height: 1.68;
  font-weight: 300;
}

.page-praxis .pr-services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.page-praxis .pr-service-card {
  background: var(--pr-surf);
  border: 1px solid var(--pr-bdr);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-praxis .pr-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pr-p600), var(--pr-acc));
}

.page-praxis .pr-service-card::after {
  content: attr(data-n);
  position: absolute;
  bottom: -10px; right: 12px;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 600;
  color: var(--pr-p100);
  line-height: 1;
  pointer-events: none;
  transition: color .25s;
}

.page-praxis .pr-service-card:hover {
  box-shadow: 0 10px 32px rgba(119,41,111,.1);
  transform: translateY(-3px);
  border-color: var(--pr-p200);
}

.page-praxis .pr-service-card:hover::after { color: var(--pr-p200); }

.page-praxis .pr-service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--pr-text);
  margin-bottom: 10px;
}

.page-praxis .pr-service-card p {
  font-size: 13.5px;
  color: var(--pr-mut);
  line-height: 1.7;
  font-weight: 300;
}

.page-praxis .pr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  position: relative;
}

.page-praxis .pr-contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(202,167,255,.15);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: background .25s, border-color .25s;
}

.page-praxis .pr-contact-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(202,167,255,.35);
}

.page-praxis .pr-contact-icon {
  width: 42px; height: 42px;
  background: rgba(202,167,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-praxis .pr-contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--pr-acc);
  fill: none;
}

.page-praxis .pr-contact-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.page-praxis .pr-contact-main {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.page-praxis .pr-contact-sub {
  font-size: 13px;
  color: var(--pr-p200);
  opacity: .75;
  font-weight: 300;
}

.page-praxis .pr-hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.page-praxis .pr-hours-table {
  margin-top: 32px;
  background: var(--pr-surf);
  border-radius: 12px;
  border: 1px solid var(--pr-bdr);
  overflow: hidden;
}

.page-praxis .pr-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--pr-bdr);
  font-size: 14px;
  transition: background .15s;
}

.page-praxis .pr-hours-row:last-child { border-bottom: none; }

.page-praxis .pr-hours-row:hover { background: var(--pr-p100); }

.page-praxis .pr-hours-row span { color: var(--pr-mut); font-weight: 300; }

.page-praxis .pr-hours-row strong { color: var(--pr-text); font-weight: 500; }

.page-praxis .pr-hours-row em { color: var(--pr-mut2); font-style: italic; }

.page-praxis .pr-hours-row.pr-closed { opacity: .5; }

.page-praxis .pr-hours-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-praxis .pr-info-card {
  background: var(--pr-surf);
  border: 1px solid var(--pr-bdr);
  border-radius: 12px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}

.page-praxis .pr-info-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pr-p600);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s ease;
}

.page-praxis .pr-info-card:hover::before { transform: scaleY(1); }

.page-praxis .pr-info-card:hover { border-color: var(--pr-p200); }

.page-praxis .pr-info-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--pr-text);
  margin-bottom: 6px;
}

.page-praxis .pr-info-card p {
  font-size: 13.5px;
  color: var(--pr-mut);
  line-height: 1.68;
  font-weight: 300;
}

.page-praxis .pr-cta-final {
  background: var(--pr-p700);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-praxis .pr-cta-final::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,58,134,.45) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-praxis .pr-cta-inner {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.page-praxis .pr-cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-praxis .pr-cta-inner p {
  font-size: 15px;
  color: var(--pr-p200);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 36px;
  opacity: .9;
}

@media (max-width: 1024px){
.page-praxis .pr-four-grid    { grid-template-columns: repeat(2,1fr); }

.page-praxis .pr-services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
.page-praxis .pr-wrap           { padding: 0 24px; }

.page-praxis .pr-subnav         { display: none; }

.page-praxis .pr-hero-inner     { grid-template-columns: 1fr; gap: 40px; }

.page-praxis .pr-stats          { flex-direction: row; flex-wrap: wrap; }

.page-praxis .pr-stat           { flex: 1 1 120px; }

.page-praxis .pr-three-grid     { grid-template-columns: 1fr; }

.page-praxis .pr-gallery-grid   { grid-template-columns: 1fr 1fr; }

.page-praxis .pr-philosophy-layout { grid-template-columns: 1fr; gap: 40px; }

.page-praxis .pr-contact-grid   { grid-template-columns: 1fr; }

.page-praxis .pr-hours-layout   { grid-template-columns: 1fr; gap: 40px; }

.page-praxis .pr-section        { padding: 64px 0; }
}

@media (max-width: 600px){
.page-praxis .pr-hero           { padding: 64px 0 56px; }

.page-praxis .pr-gallery-grid   { grid-template-columns: 1fr; }

.page-praxis .pr-four-grid      { grid-template-columns: 1fr; }

.page-praxis .pr-services-grid  { grid-template-columns: 1fr; }

.page-praxis .pr-stats          { flex-direction: column; }
}

.page-therapie {
  --st-p700: #4b1d52;
  --st-p600: #77296f;
  --st-p500: #8d3a86;
  --st-p200: #ead7f0;
  --st-p100: #f6eff8;
  --st-bg:   #fbfafc;
  --st-surf: #ffffff;
  --st-s2:   #f6f3f8;
  --st-text: #1f1b22;
  --st-mut:  #5f5463;
  --st-mut2: #7a6f7e;
  --st-acc:  #caa7ff;
  --st-acc2: #a7f3d0;
  --st-bdr:  rgba(31,27,34,.10);

  font-family: "DM Sans", sans-serif;
  background: var(--st-bg);
  color: var(--st-text);
  line-height: 1.65;
  font-weight: 400;
}

.page-therapie .st-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-therapie .st-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--st-p600);
  margin-bottom: 12px;
}

.page-therapie .st-label::before {
  content: "";
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.page-therapie .st-label.light { color: var(--st-acc); }

.page-therapie .st-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.16;
  color: var(--st-text);
  margin-bottom: 14px;
}

.page-therapie .st-title.light { color: #fff; }

.page-therapie .st-lead {
  font-size: 15.5px;
  color: var(--st-mut);
  line-height: 1.75;
  max-width: 600px;
  font-weight: 300;
}

.page-therapie .st-lead.light { color: var(--st-p200); opacity: .9; }

.page-therapie .st-section-head { margin-bottom: 52px; }

.page-therapie .st-btn {
  display: inline-block;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
}

.page-therapie .st-btn-accent {
  background: var(--st-acc);
  color: var(--st-p700);
  padding: 13px 28px;
}

.page-therapie .st-btn-accent:hover { background: #d4b8ff; transform: translateY(-1px); }

.page-therapie .st-btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(202,167,255,.35);
  color: var(--st-p200);
  padding: 12px 28px;
}

.page-therapie .st-btn-ghost:hover { border-color: var(--st-acc); color: #fff; }

.page-therapie .st-btn-dark {
  background: var(--st-p600);
  color: #fff;
  padding: 14px 32px;
  white-space: nowrap;
}

.page-therapie .st-btn-dark:hover { background: var(--st-p500); transform: translateY(-1px); }

.page-therapie .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.page-therapie .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-therapie .st-hero {
  background: var(--st-p700);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-therapie .st-hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,58,134,.5) 0%, transparent 70%);
  top: -260px; right: -160px;
  pointer-events: none;
}

.page-therapie .st-hero::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,167,255,.09) 0%, transparent 70%);
  bottom: -100px; left: 80px;
  pointer-events: none;
}

.page-therapie .st-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 64px;
}

.page-therapie .st-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.07;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.page-therapie .st-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,167,255,.12);
  border: 1px solid rgba(202,167,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--st-p200);
  letter-spacing: .03em;
  margin-bottom: 24px;
}

.page-therapie .st-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--st-acc2);
  flex-shrink: 0;
  animation: st-pulse 2.4s ease-in-out infinite;
}

@keyframes st-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.75); }
}

.page-therapie .st-tagline {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--st-p200);
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 540px;
}

.page-therapie .st-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

.page-therapie .st-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

.page-therapie .st-metric {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(202,167,255,.15);
  border-radius: 12px;
  padding: 18px 28px;
  text-align: center;
  min-width: 148px;
  backdrop-filter: blur(4px);
}

.page-therapie .st-metric-val {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
  display: block;
}

.page-therapie .st-metric-lbl {
  font-size: 11px;
  color: var(--st-p200);
  opacity: .75;
  letter-spacing: .04em;
  display: block;
}

.page-therapie .st-subnav {
  background: var(--st-surf);
  border-bottom: 1px solid var(--st-bdr);
  position: sticky;
  top: 0;
  z-index: 90;
}

.page-therapie .st-subnav-inner {
  display: flex;
}

.page-therapie .st-navlink {
  display: inline-block;
  padding: 17px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--st-mut);
  text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.page-therapie .st-navlink:hover { color: var(--st-p600); }

.page-therapie .st-navlink.active { color: var(--st-p600); border-bottom-color: var(--st-p600); }

.page-therapie .st-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--st-bdr);
  background: var(--st-bg);
}

.page-therapie .st-section.st-tinted { background: var(--st-s2); }

.page-therapie .st-definition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.page-therapie .st-def-card {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 16px;
  padding: 44px 40px;
}

.page-therapie .st-def-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 14px;
}

.page-therapie .st-def-card > p {
  font-size: 15px;
  color: var(--st-mut);
  line-height: 1.78;
  margin-bottom: 28px;
  font-weight: 300;
}

.page-therapie .st-def-card h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--st-p600);
  margin-bottom: 16px;
}

.page-therapie .st-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-therapie .st-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  color: var(--st-mut);
  font-weight: 300;
  line-height: 1.5;
}

.page-therapie .st-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--st-p600);
  flex-shrink: 0;
  margin-top: 6px;
}

.page-therapie .st-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-therapie .st-media-card {
  grid-column: 1 / -1;
  height: 175px;
  border-radius: 12px;
  border: 1px solid var(--st-bdr);
  background: linear-gradient(135deg, var(--st-p200), var(--st-p100));
  position: relative;
  overflow: hidden;
}

.page-therapie .st-media-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(75,29,82,.85));
  color: #fff;
  font-size: 12.5px;
  font-style: italic;
  padding: 24px 16px 14px;
}

.page-therapie .st-principle {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 12px;
  padding: 22px 18px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-therapie .st-principle:hover {
  box-shadow: 0 8px 28px rgba(119,41,111,.1);
  transform: translateY(-3px);
  border-color: var(--st-p200);
}

.page-therapie .st-icon-box {
  width: 36px; height: 36px;
  background: var(--st-p100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.page-therapie .st-icon-box svg {
  width: 16px; height: 16px;
  stroke: var(--st-p600);
  fill: none;
}

.page-therapie .st-principle h4 {
  font-family: "Playfair Display", serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 5px;
}

.page-therapie .st-principle p {
  font-size: 12.5px;
  color: var(--st-mut2);
  line-height: 1.6;
  font-weight: 300;
}

.page-therapie .st-indications-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.page-therapie .st-indication {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 14px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.page-therapie .st-indication::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--st-p600), var(--st-acc));
}

.page-therapie .st-indication:hover {
  box-shadow: 0 8px 32px rgba(119,41,111,.09);
  transform: translateY(-3px);
}

.page-therapie .st-indication h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 20px;
}

.page-therapie .st-ind-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.page-therapie .st-ind-list li {
  font-size: 14px;
  color: var(--st-mut);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--st-bdr);
}

.page-therapie .st-ind-list li:last-child { border-bottom: none; }

.page-therapie .st-ind-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--st-p500);
  flex-shrink: 0;
  opacity: .6;
}

.page-therapie .st-quote {
  background: var(--st-p700);
  border-radius: 14px;
  padding: 36px 48px;
  position: relative;
  overflow: hidden;
}

.page-therapie .st-quote::before {
  content: "\"";
  font-family: "Playfair Display", serif;
  font-size: 140px;
  color: rgba(202,167,255,.12);
  position: absolute;
  top: -20px; left: 20px;
  line-height: 1;
  pointer-events: none;
}

.page-therapie .st-quote p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--st-p200);
  line-height: 1.65;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-therapie .st-methods-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.page-therapie .st-method-card {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-therapie .st-method-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--st-p600), var(--st-acc));
}

.page-therapie .st-method-card::after {
  content: attr(data-index);
  position: absolute;
  bottom: -12px; right: 16px;
  font-family: "Playfair Display", serif;
  font-size: 96px;
  font-weight: 600;
  color: var(--st-p100);
  line-height: 1;
  pointer-events: none;
  transition: color .25s;
}

.page-therapie .st-method-card:hover {
  box-shadow: 0 10px 32px rgba(119,41,111,.1);
  transform: translateY(-3px);
  border-color: var(--st-p200);
}

.page-therapie .st-method-card:hover::after { color: var(--st-p200); }

.page-therapie .st-method-icon {
  width: 40px; height: 40px;
  background: var(--st-p100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.page-therapie .st-method-icon svg {
  width: 20px; height: 20px;
  stroke: var(--st-p600);
}

.page-therapie .st-method-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 10px;
}

.page-therapie .st-method-card > p {
  font-size: 14px;
  color: var(--st-mut);
  line-height: 1.72;
  margin-bottom: 20px;
  font-weight: 300;
}

.page-therapie .st-method-card .st-list li {
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--st-bdr);
}

.page-therapie .st-method-card .st-list li:last-child { border-bottom: none; }

.page-therapie .st-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.page-therapie .st-option-card {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s, transform .25s;
}

.page-therapie .st-option-card:hover {
  box-shadow: 0 10px 36px rgba(119,41,111,.09);
  transform: translateY(-3px);
}

.page-therapie .st-option-card.st-highlight {
  background: var(--st-p700);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.page-therapie .st-option-card.st-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(139,58,134,.5) 0%, transparent 70%);
  pointer-events: none;
}

.page-therapie .st-option-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 6px;
}

.page-therapie .st-option-card.st-highlight h3 { color: #fff; }

.page-therapie .st-price-sub { font-size: 13px; color: var(--st-mut2); font-weight: 300; display: block; }

.page-therapie .st-option-card.st-highlight .st-price-sub { color: var(--st-p200); opacity: .8; }

.page-therapie .st-option-card > p { font-size: 14px; color: var(--st-mut); line-height: 1.72; font-weight: 300; }

.page-therapie .st-option-card.st-highlight > p { color: var(--st-p200); opacity: .85; }

.page-therapie .st-cost-box {
  background: var(--st-s2);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid var(--st-bdr);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-therapie .st-option-card.st-highlight .st-cost-box { background: rgba(255,255,255,.08); border-color: rgba(202,167,255,.2); }

.page-therapie .st-cost-label { font-size: 12px; color: var(--st-mut2); font-weight: 400; }

.page-therapie .st-option-card.st-highlight .st-cost-label { color: var(--st-p200); opacity: .7; }

.page-therapie .st-price-val {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--st-text);
  line-height: 1.1;
}

.page-therapie .st-option-card.st-highlight .st-price-val { color: #fff; }

.page-therapie .st-price-val sup { font-size: 14px; font-weight: 300; }

.page-therapie .st-price-note { font-size: 11.5px; color: var(--st-mut2); font-weight: 300; }

.page-therapie .st-option-card.st-highlight .st-price-note { color: var(--st-p200); opacity: .6; }

.page-therapie .st-sub-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--st-p600);
  margin-bottom: 12px;
}

.page-therapie .st-option-card.st-highlight .st-sub-title { color: var(--st-acc); }

.page-therapie .st-kasse-list { list-style: none; }

.page-therapie .st-kasse-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px solid var(--st-bdr);
}

.page-therapie .st-kasse-list li:last-child { border-bottom: none; }

.page-therapie .st-kasse-name { color: var(--st-mut); font-weight: 300; }

.page-therapie .st-kasse-amt  { font-weight: 500; color: var(--st-text); }

.page-therapie .st-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: s;
}

.page-therapie .st-steps li {
  font-size: 13.5px;
  color: var(--st-mut);
  font-weight: 300;
  display: flex;
  gap: 10px;
  line-height: 1.55;
  counter-increment: s;
}

.page-therapie .st-steps li::before {
  content: counter(s);
  width: 20px; height: 20px;
  background: var(--st-p100);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  color: var(--st-p600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.page-therapie .st-info-p { font-size: 13.5px; color: var(--st-mut); line-height: 1.68; font-weight: 300; }

.page-therapie .st-option-card.st-highlight .st-info-p { color: var(--st-p200); opacity: .85; }

.page-therapie .st-info-p a { color: var(--st-p600); text-decoration: none; border-bottom: 1px solid currentColor; }

.page-therapie .st-option-card.st-highlight .st-info-p a { color: var(--st-acc); }

.page-therapie .st-note {
  background: var(--st-p100);
  border-left: 3px solid var(--st-p600);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--st-mut);
  font-weight: 300;
  line-height: 1.6;
}

.page-therapie .st-costs-cta {
  background: var(--st-surf);
  border: 1px solid var(--st-bdr);
  border-radius: 16px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.page-therapie .st-costs-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--st-text);
  margin-bottom: 8px;
}

.page-therapie .st-costs-cta p { font-size: 14px; color: var(--st-mut); font-weight: 300; line-height: 1.65; }

.page-therapie .st-cta-final {
  background: var(--st-p700);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-therapie .st-cta-final::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,58,134,.45) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-therapie .st-cta-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.page-therapie .st-cta-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px,3.5vw,40px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-therapie .st-cta-inner p {
  font-size: 15px;
  color: var(--st-p200);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 36px;
  opacity: .9;
}

@media (max-width: 960px){
.page-therapie .st-wrap             { padding: 0 24px; }

.page-therapie .st-subnav-inner     { overflow-x: auto; }

.page-therapie .st-hero-inner       { grid-template-columns: 1fr; gap: 40px; }

.page-therapie .st-metrics          { flex-direction: row; flex-wrap: wrap; }

.page-therapie .st-metric           { flex: 1 1 120px; }

.page-therapie .st-definition-grid  { grid-template-columns: 1fr; }

.page-therapie .st-principles-grid  { grid-template-columns: 1fr 1fr; }

.page-therapie .st-indications-grid { grid-template-columns: 1fr; }

.page-therapie .st-methods-grid     { grid-template-columns: 1fr; }

.page-therapie .st-pricing-grid     { grid-template-columns: 1fr; }

.page-therapie .st-costs-cta        { grid-template-columns: 1fr; text-align: center; }

.page-therapie .st-section          { padding: 64px 0; }
}

@media (max-width: 600px){
.page-therapie .st-hero             { padding: 64px 0 56px; }

.page-therapie .st-subnav           { display: none; }

.page-therapie .st-principles-grid  { grid-template-columns: 1fr; }

.page-therapie .st-cta-inner        { padding: 0 24px; }
}

.footer-modern {
  background: linear-gradient(135deg, var(--brand-600) 0%, #5a1f56 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-brand h2 {
  font-size: 42px;
  font-weight: 850;
  margin-bottom: 12px;
  background: linear-gradient(to right, #ffffff, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .tagline {
  font-size: 18px;
  color: #e9d5ff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand .description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
}

.footer-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--brand-600);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28);
}

.footer-cta .cta-button span {
  transition: transform .2s ease;
}

.footer-cta .cta-button:hover span {
  transform: translateX(4px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nav-column h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #e9d5ff;
}

.nav-column a {
  display: block;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  padding: 8px 0;
  transition: transform .2s ease, color .2s ease;
}

.nav-column a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 24px 40px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

@media (max-width: 1024px){
#hamburger {
    display: block;
  }

.directphonecall {
    display: block;
  }

.menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(75, 29, 82, .96);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 1000;
  }

.menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

.menu-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 110px 24px 40px;
  }

.menu-bar>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

.dropdown {
    position: static;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

.dropdown.active {
    display: block;
  }

.dropdown-link {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
  }

.dropdown-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    transform: none;
  }

.footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 32px 32px;
  }

.footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
.right-container {
    display: none;
  }

.therapy-hero {
    padding: 6rem 0 4.5rem;
    margin: 1.4rem .8rem;
  }

.btn {
    width: 100%;
    max-width: 320px;
  }

.footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.lp-hero{
  position: relative;
  background: 
    linear-gradient(rgba(20,10,25,0.55), rgba(20,10,25,0.55)),
    url("praxis-gespraechsraum-systemische-psychotherapie.jpeg") center / cover no-repeat;
  margin-top: -109px; /* matches your old hero overlap */
  padding: 150px 0 72px;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;

  background:
    radial-gradient(900px 500px at 20% 0%, rgba(202, 167, 255, .35), transparent 60%),
    radial-gradient(800px 480px at 85% 0%, rgba(119, 41, 111, .20), transparent 55%),
    linear-gradient(135deg, rgba(75,29,82,.96), rgba(119,41,111,.92));
}

.lp-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(167,243,208,.12);
}

.lp-hero h1{
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.lp-hero-actions{
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.lp-scroll{
  margin-top: 1.6rem;
  opacity: .85;
  font-weight: 750;
}

.lp-scroll a{
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}

.lp-scroll a:hover{ color:#fff; }

.lp-muted{
  color: var(--muted-2);
  margin-top: 1rem;
  font-size: .95rem;
}

@media (max-width: 600px){
.lp-hero{ padding: 138px 0 58px; min-height: 600px; }

.lp-mini-cta .btn{ width: 100%; max-width: 360px; }
}

.lp-hero-alt{
  margin-top: -109px;
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(202,167,255,.22), transparent 60%),
    radial-gradient(800px 520px at 82% 18%, rgba(167,243,208,.14), transparent 60%),
    linear-gradient(180deg, rgba(251,250,252,1) 0%, rgba(251,250,252,.92) 40%, rgba(251,250,252,1) 100%);
}

.lp-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(119,41,111,1), rgba(202,167,255,1), rgba(167,243,208,1));
  z-index: 2000;
}

.lp-hero-bg{ position:absolute; inset:0; pointer-events:none; }

.lp-blob{
  position:absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .85;
  transform: translate3d(0,0,0);
}

.lp-blob-1{
  width: 560px; height: 560px;
  left: -140px; top: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(202,167,255,.70), rgba(119,41,111,.10) 60%, transparent 72%);
  animation: blobFloat1 12s ease-in-out infinite;
}

.lp-blob-2{
  width: 520px; height: 520px;
  right: -160px; top: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(167,243,208,.55), rgba(202,167,255,.12) 60%, transparent 72%);
  animation: blobFloat2 14s ease-in-out infinite;
}

@keyframes blobFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px, -18px) scale(1.03); }
}

@keyframes blobFloat2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-28px, 22px) scale(1.04); }
}

.lp-grid-noise{
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(31,27,34,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,27,34,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 15%, rgba(0,0,0,.9), rgba(0,0,0,.1) 58%, transparent 70%);
  opacity: .35;
}

.lp-hero-alt-inner{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.4rem;
  align-items: start;
  position: relative;
  z-index: 2;

  /* parallax vars */
  --mx: .5;
  --my: .5;
}

.lp-hero-left{
  padding-top: 10px;
}

.lp-hero-badge-alt{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(119,41,111,.14);
  box-shadow: 0 10px 30px rgba(20,10,25,.08);
  color: var(--brand-600);
  font-weight: 850;
  font-size: .92rem;
  backdrop-filter: blur(10px);
}

.lp-hero-title{
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  margin: 1rem 0 .9rem;
  letter-spacing: -0.9px;
  color: var(--text);
}

.lp-underline{
  background: linear-gradient(90deg, rgba(202,167,255,.65), rgba(167,243,208,.35));
  border-radius: 10px;
  padding: 0 .25rem;
}

.lp-hero-lead-alt{
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.35rem;
}

.lp-hero-actions{
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.lp-hero-links{
  display:flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin: .8rem 0 1.1rem;
}

.lp-deeplink{
  color: var(--brand-600);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid rgba(119,41,111,.35);
  padding-bottom: 2px;
  opacity: .9;
}

.lp-deeplink:hover{ opacity: 1; transform: translateY(-1px); }

.lp-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
  margin-top: 1rem;
}

.lp-stat{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 44px rgba(20,10,25,.08);
}

.lp-stat-num{
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.6px;
}

.lp-stat-label{
  font-size: .9rem;
  color: var(--muted-2);
  font-weight: 700;
}

.lp-hero-right{ position: relative; }

.lp-glass-card{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
  padding: 1.5rem 1.35rem;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.lp-glass-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 260px at calc(var(--mx)*100%) calc(var(--my)*100%),
      rgba(202,167,255,.55),
      rgba(167,243,208,.22) 45%,
      transparent 70%);
  opacity: .75;
  pointer-events:none;
}

.lp-glass-card h3{
  color: var(--text);
  margin-bottom: .55rem;
}

.lp-glass-top{
  display:flex;
  gap:.5rem;
  margin-bottom: .8rem;
}

.lp-glass-chip{
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(119,41,111,.08);
  border: 1px solid rgba(119,41,111,.12);
  color: var(--brand-600);
  font-weight: 900;
  font-size: .85rem;
}

.lp-glass-chip.subtle{
  background: rgba(255,255,255,.55);
  color: var(--muted);
  font-weight: 800;
}

.lp-choice-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1rem 0 1.1rem;
  position: relative;
  z-index: 2;
}

.lp-choice{
  padding: .85rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(31,27,34,.10);
  background: rgba(255,255,255,.78);
  color: var(--text);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.lp-choice:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(20,10,25,.10);
  border-color: rgba(119,41,111,.25);
}

.lp-choice.is-selected{
  background: rgba(119,41,111,.08);
  border-color: rgba(119,41,111,.32);
}

.lp-glass-cta{ position: relative; z-index: 2; }

.lp-choice-hint{
  margin-top: .65rem;
  color: var(--muted-2);
  font-size: .92rem;
  font-weight: 700;
}

.lp-mini-strip{
  margin-top: .9rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
}

.lp-mini-item{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 16px;
  padding: .9rem 1rem;
  box-shadow: 0 14px 44px rgba(20,10,25,.08);
}

.lp-mini-k{
  display:block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand-600);
}

.lp-mini-v{
  display:block;
  margin-top: .25rem;
  font-weight: 800;
  color: var(--muted);
}

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px){
.lp-hero-alt-inner{ grid-template-columns: 1fr; }

.lp-stats{ grid-template-columns: 1fr; }

.lp-mini-strip{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
.lp-choice-grid{ grid-template-columns: 1fr; }

.lp-hero-actions{ justify-content: center; }

.lp-hero-left{ text-align:center; }

.lp-hero-links{ justify-content: center; }
}

.lp2-wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp2-section{
  padding: 5.5rem 0;
  position: relative;
}

.lp2-split{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.4rem;
  align-items: start;
}

.lp2-split-tight{ grid-template-columns: 1.1fr .9fr; }

.lp2-col{ min-width: 0; }

.lp2-aside{ min-width: 0; }

.lp2-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: .9rem;
}

.lp2-eyebrow::before{
  content:"";
  width: 18px; height: 2px;
  background: var(--brand-600);
  border-radius: 2px;
}

.lp2-eyebrow.light{
  color: rgba(255,255,255,.88);
}

.lp2-eyebrow.light::before{ background: rgba(255,255,255,.7); }

.lp2-title{
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.9px;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: .9rem;
}

.lp2-title.light{ color: #fff; }

.lp2-lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 70ch;
}

.lp2-lead.light{ color: rgba(255,255,255,.84); }

.lp2-inline-links{
  display:flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin: 1.1rem 0 1.3rem;
}

.lp2-link{
  font-weight: 900;
  color: var(--suface2);
  border-bottom: 1px solid rgba(119,41,111,.35);
  padding-bottom: 2px;
  opacity: .9;
}

.lp2-link:hover{ opacity: 1; transform: translateY(-1px); }

.lp2-link.light{
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,255,255,.35);
}

.lp2-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.lp2-card{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 20px;
  box-shadow: 0 18px 70px rgba(20,10,25,.08);
  padding: 1.5rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.lp2-card-accent{
  border-color: rgba(202,167,255,.55);
  box-shadow: 0 28px 90px rgba(119,41,111,.12);
}

.lp2-card-top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  margin-bottom: .7rem;
}

.lp2-badge{
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(119,41,111,.08);
  border: 1px solid rgba(119,41,111,.12);
  color: var(--brand-600);
  font-weight: 900;
  font-size: .85rem;
}

.lp2-mini{
  color: var(--muted-2);
  font-weight: 800;
  font-size: .9rem;
}

.lp2-list{
  padding-left: 1.1rem;
  margin-top: .3rem;
  color: var(--muted);
}

.lp2-list li{ margin: .45rem 0; }

.lp2-pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .4rem;
}

.lp2-pill{
  padding: .5rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(119,41,111,.14);
  background: rgba(119,41,111,.06);
  color: var(--brand-600);
  font-weight: 900;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.lp2-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(20,10,25,.10);
  border-color: rgba(119,41,111,.28);
}

.lp2-pill.is-active{
  background: rgba(119,41,111,.10);
  border-color: rgba(119,41,111,.35);
}

.lp2-pill.static{
  cursor: default;
}

.lp2-pill.static:hover{
  transform: none;
  box-shadow: none;
}

.lp2-note{
  margin-top: .9rem;
  color: var(--muted-2);
  font-weight: 800;
}

.lp2-cta-row{
  display:flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.lp2-sticky{
  position: sticky;
  top: 110px;
  display:grid;
  gap: .9rem;
}

.lp2-preview, .lp2-portrait{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(31,27,34,.10);
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
  background: rgba(255,255,255,.80);
}

.lp2-preview img, .lp2-portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.lp2-preview-placeholder, .lp2-portrait-ph{
  min-height: 340px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(600px 360px at 30% 20%, rgba(202,167,255,.35), transparent 60%),
    radial-gradient(600px 360px at 80% 70%, rgba(167,243,208,.18), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
  border: 1px dashed rgba(119,41,111,.22);
}

.lp2-ph-title{
  font-weight: 950;
  color: var(--brand-600);
  text-align:center;
  font-size: 1.15rem;
}

.lp2-ph-sub{
  color: var(--muted-2);
  text-align:center;
  font-weight: 800;
  margin-top: .25rem;
}

.lp2-quote{
  border-radius: 18px;
  padding: 1.1rem 1.1rem;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(31,27,34,.10);
  box-shadow: 0 18px 70px rgba(20,10,25,.08);
}

.lp2-quote p{
  font-style: italic;
  font-weight: 800;
  color: var(--text);
}

.lp2-quote span{
  display:block;
  margin-top: .35rem;
  color: var(--muted-2);
  font-weight: 800;
  font-size: .95rem;
}

.lp2-mini-stack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.lp2-mini-card{
  border-radius: 18px;
  padding: .95rem 1rem;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(31,27,34,.10);
  box-shadow: 0 18px 70px rgba(20,10,25,.08);
}

.lp2-mini-k{
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand-600);
}

.lp2-mini-v{
  margin-top: .25rem;
  font-weight: 900;
  color: var(--muted);
}

.lp2-praxis{
  color: #fff;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(202,167,255,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(167,243,208,.10), transparent 60%),
    linear-gradient(135deg, rgba(75,29,82,.96), rgba(119,41,111,.92));
  overflow:hidden;
}

.lp2-praxis::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 340px at 40% 30%, rgba(255,255,255,.10), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity:.7;
  transform: translateX(-120%);
  animation: lp2Sheen 9s ease-in-out infinite;
  pointer-events:none;
}

@keyframes lp2Sheen{
  0%,55%{ transform: translateX(-120%); }
  70%,100%{ transform: translateX(120%); }
}

.lp2-feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.lp2-feature{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(202,167,255,.16);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 80px rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.lp2-feature:hover{
  transform: translateY(-4px);
  border-color: rgba(202,167,255,.32);
  background: rgba(255,255,255,.10);
}

.lp2-feature h3{ color: #fff; margin: .4rem 0 .45rem; }

.lp2-feature p{ color: rgba(255,255,255,.82); }

.lp2-ic{
  width: 52px; height: 52px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight: 950;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(202,167,255,.20);
}

.lp2-gallery{
  margin-top: 1.1rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
}

.lp2-gallery-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  min-height: 190px;
  display:grid;
  place-items:center;
  backdrop-filter: blur(10px);
  transition: transform .22s ease;
}

.lp2-gallery-item:hover{ transform: translateY(-4px); }

.lp2-gallery-ph{
  font-weight: 900;
  color: rgba(255,255,255,.85);
}

.lp2-panel{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
  padding: 1.5rem 1.35rem;
}

.lp2-panel-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:.8rem;
  margin-bottom: .7rem;
}

.lp2-callout{
  margin-top: .9rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(119,41,111,.06);
  border: 1px solid rgba(119,41,111,.12);
  color: var(--muted);
  font-weight: 800;
}

.lp2-steps{
  margin-top: 1.2rem;
  display:grid;
  gap: .85rem;
}

.lp2-step{
  display:flex;
  gap: .9rem;
  align-items:flex-start;
  border-radius: 18px;
  padding: 1rem 1.05rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,27,34,.10);
  box-shadow: 0 14px 44px rgba(20,10,25,.08);
}

.lp2-step-n{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 950;
  color: var(--brand-600);
  background: rgba(202,167,255,.22);
  border: 1px solid rgba(119,41,111,.12);
}

.lp2-step-t{
  font-weight: 950;
  color: var(--text);
}

.lp2-step-d{
  color: var(--muted);
  font-weight: 700;
  margin-top: .2rem;
}

.lp2-signature{
  padding: 1.1rem 1.15rem;
  border-top: 1px solid rgba(31,27,34,.10);
  background: rgba(255,255,255,.82);
}

.lp2-sign-name{
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.4px;
}

.lp2-sign-sub{
  margin-top: .2rem;
  color: var(--muted-2);
  font-weight: 800;
}

.lp2-final{
  padding: 3.5rem 0 4.2rem;
}

.lp2-final-card{
  border-radius: 26px;
  padding: 1.7rem 1.6rem;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(202,167,255,.30), transparent 60%),
    linear-gradient(135deg, rgba(75,29,82,.96), rgba(119,41,111,.92));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 90px rgba(20,10,25,.18);
  display:flex;
  gap: 1.2rem;
  align-items:center;
  justify-content: space-between;
  color:#fff;
}

.lp2-final-card h3{
  margin-bottom: .35rem;
  font-size: 1.6rem;
}

.lp2-final-card p{
  color: rgba(255,255,255,.86);
  font-weight: 700;
  max-width: 64ch;
}

.lp2-final-right{
  display:flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content:flex-end;
}

@media (max-width: 1024px){
.lp2-split, .lp2-split-tight{ grid-template-columns: 1fr; }

.lp2-feature-grid{ grid-template-columns: 1fr; }

.lp2-gallery{ grid-template-columns: 1fr; }

.lp2-mini-stack{ grid-template-columns: 1fr; }

.lp2-sticky{ position: static; }

.lp2-final-card{ flex-direction: column; text-align:center; }

.lp2-final-right{ justify-content:center; }
}

.kontakt-page{
  position: relative;
}

.kontakt-wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.kontakt-hero{
  padding: 120px 0 70px;
  margin-top: -109px; /* gleiches Verhalten wie bei deinen Hero-Sektionen */
  position: relative;
}

.kontakt-hero .bs-text{
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text);
}

.kontakt-hero .bs-text h1{
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.8px;
  margin: .6rem 0 .8rem;
  color: var(--text);
}

.kontakt-hero .bs-text p{
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.kontakt-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.2rem;
  align-items: start;
  margin-top: 1.4rem;
}

.contactside{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
  padding: 1.6rem 1.45rem;
}

.kontakt-aside{
  position: sticky;
  top: 110px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31,27,34,.10);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
  padding: 1.4rem 1.35rem;
}

.kontakt-aside > h3{
  margin-bottom: 1rem;
  color: var(--brand-600);
  letter-spacing: -0.4px;
}

.contactdetails{
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}

.contactdetails .conc1,
.contactdetails .conc2,
.contactdetails .conc3,
.contactdetails .conc4{
  background: rgba(119,41,111,.05);
  border: 1px solid rgba(119,41,111,.10);
  border-radius: 16px;
  padding: 1rem 1rem;
}

.contactdetails h3{
  margin-bottom: .35rem;
  color: var(--text);
  font-weight: 850;
}

.contactdetails p{
  color: var(--muted);
  font-weight: 700;
}

.contactdetails a{
  color: var(--brand-600);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kontakt-form{
  margin-top: 1rem;
  display: grid;
  gap: .65rem;
}

.kontakt-form label{
  font-weight: 850;
  color: var(--text);
  margin-top: .3rem;
}

.kontakt-form input,
.kontakt-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31,27,34,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-weight: 650;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus{
  border-color: rgba(119,41,111,.35);
  box-shadow: 0 0 0 6px rgba(202,167,255,.25);
}

.kontakt-form button{
  margin-top: .6rem;
  justify-content: center;
}

.lagegraz{
  margin-top: 2.2rem;
  text-align: center;
}

.lagegraz h3{
  color: var(--brand-600);
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.lagegraz p{
  max-width: 78ch;
  margin: 0 auto 1.2rem;
  color: var(--muted);
  font-weight: 650;
}

.map-wrap{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(31,27,34,.10);
  box-shadow: 0 24px 80px rgba(20,10,25,.10);
}

.map-wrap iframe{
  display:block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 1024px){
.kontakt-grid{ grid-template-columns: 1fr; }

.kontakt-aside{ position: static; }
}

/* =====================================================
   HERO BACKGROUND – CINEMATIC
===================================================== */

.lp-hero-alt {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f0f14;
}

/* Background Image */
.lp-hero-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("praxis-gespraechsraum-systemische-psychotherapie.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.75) contrast(1.05);
  transform: scale(1.03);
  z-index: 0;
}

/* Dark elegant overlay */
.lp-hero-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(18, 16, 30, 0.85) 0%,
      rgba(28, 22, 45, 0.75) 35%,
      rgba(28, 22, 45, 0.55) 60%,
      rgba(18, 16, 30, 0.85) 100%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(119, 41, 111, 0.25),
      transparent 60%
    );
  z-index: 1;
}

/* Ensure content is above background */
.lp-hero-alt-inner {
  position: relative;
  z-index: 2;
}


/* =====================================================
   LANDING HERO – PREMIUM CINEMATIC VERSION
===================================================== */

.lp-hero-alt {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f0f14;
}

/* ------------------------------
   Background Image Layer
------------------------------ */

.lp-hero-alt::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("systemische-psychotherapie-background.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;

  filter: brightness(0.65) contrast(1.05);
  transform: scale(1.04);

  z-index: 0;
}

/* ------------------------------
   Dark Elegant Overlay
------------------------------ */

.lp-hero-alt::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(12, 10, 18, 0.95) 0%,
      rgba(12, 10, 18, 0.85) 35%,
      rgba(12, 10, 18, 0.60) 60%,
      rgba(12, 10, 18, 0.85) 100%
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(119, 41, 111, 0.25),
      transparent 60%
    );

  z-index: 1;
}

/* ------------------------------
   Content Above Background
------------------------------ */

.lp-hero-alt-inner {
  position: relative;
  z-index: 2;
}

/* ------------------------------
   Text Optimization
------------------------------ */

.lp-hero-title {
  color: #ffffff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.lp-hero-lead-alt {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lp-hero-badge-alt {
  color: #ffffff;
}

/* ------------------------------
   Optional: Subtle Glass Area (nur links)
------------------------------ */

.lp-hero-left {
  background: rgba(20, 16, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   NAV + HERO: Harmonischer Glass Blend (Landingpage)
   Greift nur, wenn direkt nach der Nav die lp-hero-alt kommt
===================================================== */

/* Nav-Container etwas transparenter + glassy */
#nav-menu{
  transition: transform .2s ease, background .2s ease, filter .2s ease;
}

#nav-menu .container{
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

/* Landingpage: Nav soll mehr ins Hero "verschmelzen" */
#nav-menu + .lp-hero-alt{
  /* optional: leicht mehr “überlappen” */
  margin-top: -110px;
  padding-top: 160px;
}

#nav-menu + .lp-hero-alt ~ * { /* nichts */ }

/* Nur wenn wir auf der Landing sind (Nav gefolgt von Hero) */
#nav-menu:has(+ .lp-hero-alt) .container{
  background: rgba(255, 255, 255, 0.08);   /* statt hartes Lila */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

/* Links & Buttons: weiterhin klar lesbar */
#nav-menu:has(+ .lp-hero-alt) .nav-link,
#nav-menu:has(+ .lp-hero-alt) .dropdown-btn,
#nav-menu:has(+ .lp-hero-alt) .logo,
#nav-menu:has(+ .lp-hero-alt) .directphonecall a{
  color: rgba(255,255,255,.92);
}

#nav-menu:has(+ .lp-hero-alt) .menu-bar .nav-link:hover,
#nav-menu:has(+ .lp-hero-alt) .menu-bar .dropdown-btn:hover{
  background: rgba(255,255,255,.12);
}

/* Kontakt-CTA bleibt Premium, aber weniger “Block” */
#nav-menu:has(+ .lp-hero-alt) .btn.primary{
  box-shadow: 0 14px 40px rgba(0,0,0,.20);
}

/* Sticky-State: beim Scroll minimal kräftiger (damit’s stabil bleibt) */
#nav-menu:has(+ .lp-hero-alt) .container.scrolled{
      background: var(--nav-bg);
      border-color: rgba(255, 255, 255, .10);
      box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
}


/* =========================
   ONLINE-THERAPIE PAGE
   ========================= */

.page-online{
  background: var(--bg);
}

.page-online .is-active{
  background: rgba(255,255,255,.14);
}

.on-wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 900px){
  .on-wrap{ padding: 0 24px; }
}

/* HERO */
.on-hero{
  margin-top: -109px;
  padding: 150px 0 72px;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(202,167,255,.28), transparent 60%),
    radial-gradient(800px 520px at 82% 18%, rgba(167,243,208,.16), transparent 60%),
    linear-gradient(135deg, rgba(75,29,82,.96), rgba(119,41,111,.92));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.on-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-120%);
  animation: onSheen 8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes onSheen{
  0%,55%{ transform: translateX(-120%); }
  70%,100%{ transform: translateX(120%); }
}

.on-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 960px){
  .on-hero{ padding: 140px 0 64px; }
  .on-hero-grid{ grid-template-columns: 1fr; gap: 18px; }
}

.on-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(202,167,255,.22);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: -.2px;
}

.on-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(167,243,208,.12);
}

.on-hero h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.9px;
  margin: 16px 0 14px;
  text-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.on-underline{
  background: linear-gradient(90deg, rgba(202,167,255,.55), rgba(167,243,208,.25));
  border-radius: 10px;
  padding: 0 .28rem;
}

.on-lead{
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 18px;
}

.on-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 16px;
}

.on-trust{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}

.on-chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: .9rem;
}

/* Right glass */
.on-glass{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(202,167,255,.22);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.on-glass::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 260px at 75% 20%,
      rgba(202,167,255,.35),
      rgba(167,243,208,.16) 45%,
      transparent 70%);
  opacity: .9;
  pointer-events:none;
}

.on-glass-top{
  display:flex;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.on-mini{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.90);
  font-weight: 850;
  font-size: .9rem;
}

.on-mini.subtle{
  background: rgba(0,0,0,.14);
  border-color: rgba(255,255,255,.10);
  font-weight: 800;
  opacity: .9;
}

.on-steps{
  list-style:none;
  display:flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.on-steps li{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.on-n{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(202,167,255,.18);
  border: 1px solid rgba(202,167,255,.25);
  font-weight: 900;
}

.on-t{
  font-weight: 900;
  letter-spacing: -.3px;
}

.on-d{
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  line-height: 1.55;
  margin-top: 2px;
}

.on-note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 2;
  font-size: .95rem;
}

/* Sections */
.on-section{
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.on-section.on-tinted{
  background: var(--surface-2);
}

@media (max-width: 900px){
  .on-section{ padding: 64px 0; }
}

.on-head{
  margin-bottom: 40px;
}

.on-label{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 10px;
}

.on-label::before{
  content:"";
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.on-head h2{
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.on-sub{
  color: var(--muted);
  max-width: 70ch;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 300;
}

.on-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

@media (max-width: 960px){
  .on-grid-3{ grid-template-columns: 1fr; }
}

.on-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 10px 32px rgba(119,41,111,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.on-card::before{
  content:"";
  position:absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--accent));
}

.on-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(119,41,111,.10);
  border-color: rgba(119,41,111,.18);
}

.on-ic{
  width: 40px; height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(119,41,111,.08);
  border: 1px solid rgba(119,41,111,.12);
  color: var(--brand-600);
  font-weight: 900;
  margin-bottom: 12px;
}

.on-card h3{
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.on-card p{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* Split panels */
.on-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 960px){
  .on-split{ grid-template-columns: 1fr; }
}

.on-panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 28px;
}

.on-panel.soft{
  background: rgba(255,255,255,.82);
  border-color: rgba(119,41,111,.14);
}

.on-panel h3{
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.on-list{
  list-style:none;
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.on-list li{
  display:flex;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.on-list li::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
  flex-shrink: 0;
  margin-top: 7px;
  opacity: .8;
}

.on-mini-cta{
  margin-top: 16px;
}

/* Callout row */
.on-callout{
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid rgba(119,41,111,.14);
  border-radius: 18px;
  padding: 26px 26px;
  display:flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 32px rgba(20,10,25,.06);
}

.on-callout h3{
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.on-callout p{
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 70ch;
}

@media (max-width: 900px){
  .on-callout{ flex-direction: column; align-items: flex-start; }
  .on-callout .btn{ width: 100%; max-width: 360px; }
}

/* FAQ */
.on-faq{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.on-faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(20,10,25,.05);
}

.on-faq-item summary{
  cursor: pointer;
  font-weight: 850;
  color: var(--text);
  list-style: none;
}

.on-faq-item summary::-webkit-details-marker{ display:none; }

.on-faq-body{
  padding-top: 10px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.on-final-cta{
  margin-top: 26px;
  text-align: center;
  background: linear-gradient(135deg, rgba(119,41,111,.10), rgba(202,167,255,.12));
  border: 1px solid rgba(119,41,111,.12);
  border-radius: 22px;
  padding: 34px 26px;
}

.on-final-cta h3{
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.on-final-cta p{
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
}


/* === MOBILE PATCH: Lesbarkeit + keine schwarzen Defaults === */
@media (max-width: 768px) {

  /* verhindert horizontales Wackeln – erst Debug, dann behalten */
  html, body { overflow-x: hidden; }

  /* Grundlesbarkeit */
  body {
    color: #F2EFFF;               /* hell auf dunklem Lila/Gradient */
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
  }

  /* Falls einzelne Bereiche "zurück auf schwarz" fallen */
  p, li, span, small, label, input, textarea, button, a {
    color: inherit;
  }

  /* Titel: klarer, “geführt”, weniger AI-flach */
  h1, h2, h3 {
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  /* dezente, moderne Unterstreichung (besser als text-decoration) */
  h2, h3 {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255,255,255,0.22);
  }

  /* Links auf Mobile besser erkennbar */
  a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.28);
  }
  a:hover { border-bottom-color: rgba(255,255,255,0.55); }
}


@media (max-width: 768px) {

  /* Container darf NICHT breiter als Viewport werden */
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Header/Nav: sauber im Viewport */
  #nav-menu, header {
    width: 100%;
    max-width: 100%;
  }

  /* Menüzeile darf umbrechen statt overflowen */
  .menu-bar {
    display: flex;
    flex-wrap: wrap;      /* wichtig */
    gap: 10px;
    justify-content: flex-start;
    max-width: 100%;
  }

  /* Buttons/Links sollen nicht „überstehen“ */
  .menu-bar > li,
  .nav-link,
  .dropdown-btn {
    max-width: 100%;
  }

  /* Wenn du irgendwo white-space: nowrap hast, killt es Mobile */
  .nav-link, .dropdown-btn {
    white-space: normal;
  }

  /* Dropdowns müssen innerhalb des Screens bleiben */
  .dropdown {
    width: min(92vw, 420px);
    max-width: 92vw;
    left: 0;
    right: auto;
    box-sizing: border-box;
  }

  /* Falls dein Dropdown innen feste Breiten hat */
  .dropdown ul, .dropdown li, .dropdown a {
    max-width: 100%;
    white-space: normal;
  }
}