:root {
  --ink: #25312e;
  --muted: #66736e;
  --paper: #fffaf4;
  --white: #ffffff;
  --sage: #dbe9dc;
  --mint: #a8d6c2;
  --coral: #ef8f7a;
  --sun: #f5c85d;
  --berry: #9f6b8f;
  --line: rgba(37, 49, 46, 0.14);
  --shadow: 0 24px 70px rgba(62, 87, 78, 0.18);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 200, 93, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 16%, rgba(168, 214, 194, 0.35), transparent 26rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  display: block;
  content: "";
  pointer-events: none;
}

body::before {
  top: 10rem;
  left: -7rem;
  width: 18rem;
  height: 27rem;
  border: 2px dashed rgba(159, 107, 143, 0.34);
  border-radius: 45% 55% 62% 38% / 40% 48% 52% 60%;
  transform: rotate(-13deg);
}

body::after {
  right: -8rem;
  bottom: 6rem;
  width: 22rem;
  height: 16rem;
  background: repeating-linear-gradient(
    -32deg,
    rgba(245, 200, 93, 0.24) 0,
    rgba(245, 200, 93, 0.24) 10px,
    transparent 10px,
    transparent 22px
  );
  border-radius: 52% 48% 45% 55% / 58% 40% 60% 42%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255, 250, 244, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(62, 87, 78, 0.1);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.site-header::after {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: -13px;
  width: min(380px, 40vw);
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--coral), var(--mint));
  content: "";
  opacity: 0.9;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-wordmark {
  width: 194px;
  max-width: 42vw;
  height: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 30px rgba(62, 87, 78, 0.12);
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.22);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}


.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
}

.main-nav a,
.call-link {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--muted);
}

.main-nav a:hover,
.call-link {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(62, 87, 78, 0.1);
}

.main-nav a:nth-child(1) {
  border-radius: 64% 36% 45% 55% / 50% 42% 58% 50%;
}

.main-nav a:nth-child(2) {
  border-radius: 38% 62% 58% 42% / 47% 55% 45% 53%;
}

.main-nav a:nth-child(3) {
  border-radius: 54% 46% 37% 63% / 46% 43% 57% 54%;
}

.main-nav a:nth-child(4) {
  border-radius: 48% 52% 60% 40% / 58% 46% 54% 42%;
}

.main-nav a:nth-child(5) {
  border-radius: 56% 44% 48% 52% / 44% 58% 42% 56%;
}

.call-link {
  white-space: nowrap;
  font-weight: 700;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.scroll-orbit {
  position: fixed;
  top: 26vh;
  left: 50%;
  z-index: 0;
  --cube-size: clamp(210px, 22vw, 340px);
  --cube-depth: calc(var(--cube-size) / 2);
  width: var(--cube-size);
  height: var(--cube-size);
  perspective: 900px;
  -webkit-perspective: 900px;
  pointer-events: none;
  opacity: 0.56;
  transform:
    translate3d(-50%, calc(var(--scroll-progress) * 14vh), 0)
    rotate(calc(var(--scroll-progress) * -10deg));
}

.speech-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform:
    rotateX(calc(-10deg + var(--scroll-progress) * 210deg))
    rotateY(calc(18deg + var(--scroll-progress) * 300deg))
    rotateZ(calc(var(--scroll-progress) * 16deg));
  transition: transform 80ms linear;
  will-change: transform;
}

.speech-cube span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(37, 49, 46, 0.08);
  border-radius: clamp(34px, 4.4vw, 58px);
  background:
    radial-gradient(circle at 50% 50%, var(--face-dot) 0 31%, transparent 31.6%),
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.9) 0 7%, transparent 15%),
    linear-gradient(145deg, #ffffff 0%, #fbfcf8 42%, #e8eee8 100%);
  box-shadow:
    inset 16px 18px 28px rgba(255, 255, 255, 0.95),
    inset -18px -20px 32px rgba(55, 72, 67, 0.16),
    inset 0 0 0 10px rgba(255, 255, 255, 0.34),
    0 34px 90px rgba(62, 87, 78, 0.25);
  color: rgba(27, 38, 35, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.48);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.speech-cube span::before {
  position: absolute;
  width: 64%;
  height: 64%;
  z-index: -1;
  border-radius: 50%;
  background: var(--face-dot, var(--mint));
  box-shadow:
    inset 0 14px 18px rgba(255, 255, 255, 0.34),
    inset 0 -16px 22px rgba(37, 49, 46, 0.18),
    inset 0 0 0 4px rgba(255, 255, 255, 0.28),
    0 7px 14px rgba(37, 49, 46, 0.14);
  content: "";
}

.speech-cube span::after {
  position: absolute;
  top: 24%;
  left: 31%;
  width: 19%;
  height: 9%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(1px);
  content: "";
}

.speech-cube span:nth-child(1) {
  --face-dot: #36a86b;
  transform: translateZ(var(--cube-depth));
}

.speech-cube span:nth-child(2) {
  --face-dot: #256fd5;
  transform: rotateY(90deg) translateZ(var(--cube-depth));
}

.speech-cube span:nth-child(3) {
  --face-dot: #e54c43;
  transform: rotateY(180deg) translateZ(var(--cube-depth));
}

.speech-cube span:nth-child(4) {
  --face-dot: #9b59c7;
  transform: rotateY(-90deg) translateZ(var(--cube-depth));
}

.speech-cube span:nth-child(5) {
  --face-dot: #58c1e8;
  transform: rotateX(90deg) translateZ(var(--cube-depth));
}

.speech-cube span:nth-child(6) {
  --face-dot: #f3bf34;
  transform: rotateX(-90deg) translateZ(var(--cube-depth));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 84px);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 6vw, 5rem) 4rem;
}

.letter-cloud {
  position: absolute;
  top: 10%;
  left: 43%;
  z-index: 0;
  width: 210px;
  height: 190px;
  pointer-events: none;
}

.letter-cloud span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 44% 56% 55% 45% / 45% 48% 52% 55%;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(88, 118, 106, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.letter-cloud span:nth-child(1) {
  top: 0;
  left: 44px;
  transform: rotate(-12deg);
}

.letter-cloud span:nth-child(2) {
  top: 58px;
  right: 0;
  background: rgba(245, 200, 93, 0.45);
  transform: rotate(8deg);
}

.letter-cloud span:nth-child(3) {
  bottom: 14px;
  left: 8px;
  background: rgba(168, 214, 194, 0.5);
  transform: rotate(13deg);
}

.letter-cloud span:nth-child(4) {
  bottom: 0;
  right: 48px;
  background: rgba(239, 143, 122, 0.28);
  transform: rotate(-5deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #58766a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.8ch;
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.15vw, 4rem);
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 1.06;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 12.6ch;
  font-size: clamp(2rem, 3.75vw, 3.58rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.16rem;
}

.lead {
  max-width: 650px;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 26px rgba(239, 143, 122, 0.28);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-visual::before {
  position: absolute;
  inset: 2.4rem -1rem -1rem 2rem;
  z-index: 0;
  border-radius: 44% 56% 58% 42% / 46% 46% 54% 54%;
  background: var(--sage);
  content: "";
}

.hero-visual::after {
  position: absolute;
  inset: auto 8% -2rem auto;
  z-index: 0;
  width: 56%;
  height: 34%;
  border: 2px solid rgba(159, 107, 143, 0.38);
  border-radius: 58% 42% 45% 55% / 44% 57% 43% 56%;
  content: "";
  transform: rotate(-10deg);
}

.shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.shape-arc {
  top: 0.4rem;
  right: 10%;
  width: 104px;
  height: 104px;
  border: 16px solid var(--sun);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.shape-dot-grid {
  left: 4%;
  bottom: 6%;
  width: 116px;
  height: 86px;
  opacity: 0.62;
  background-image: radial-gradient(var(--berry) 2px, transparent 2px);
  background-size: 16px 16px;
  transform: rotate(9deg);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(68vh, 580px);
  min-height: 390px;
  object-fit: cover;
  border-radius: 38% 62% 48% 52% / 50% 42% 58% 50%;
  box-shadow: var(--shadow);
}

.speech-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 64px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(62, 87, 78, 0.18);
  color: #58766a;
  font-weight: 800;
}

.bubble-one {
  top: 10%;
  left: -1rem;
  transform: rotate(-7deg);
}

.bubble-two {
  right: -0.8rem;
  bottom: 18%;
  background: var(--sun);
  color: var(--ink);
  transform: rotate(6deg);
}

.bubble-three {
  left: 18%;
  bottom: -0.6rem;
  min-width: 132px;
  background: #d8bed0;
  color: var(--ink);
  transform: rotate(-4deg);
}

.intro-band,
.section,
.contact-section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px 58px 8px 58px;
  background: rgba(255, 255, 255, 0.30);
  box-shadow: 0 22px 58px rgba(62, 87, 78, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.intro-band::before {
  position: absolute;
  top: -1.2rem;
  left: clamp(1rem, 8vw, 7rem);
  width: 150px;
  height: 54px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--mint);
  content: "";
}

.word-ribbon {
  position: absolute;
  right: 2rem;
  bottom: -1.2rem;
  display: flex;
  gap: 0.5rem;
  transform: rotate(-2deg);
}

.word-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(62, 87, 78, 0.12);
  color: #58766a;
  font-size: 0.9rem;
  font-weight: 800;
}

.intro-band p,
.split p,
.treatment-grid p,
.team-panel p,
.contact-section p,
.philosophy-grid p,
.question-panel p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.soft-number {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--coral);
  font-weight: 900;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section::before {
  position: absolute;
  top: 3.2rem;
  right: 0;
  width: 74px;
  height: 74px;
  border-radius: 42% 58% 64% 36% / 45% 43% 57% 55%;
  background: rgba(239, 143, 122, 0.2);
  content: "";
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px 38px 8px 38px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 44px rgba(62, 87, 78, 0.07);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px 46px 8px 46px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(62, 87, 78, 0.07);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

blockquote {
  margin: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 8px solid var(--mint);
  border-radius: 8px 42px 8px 42px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 42px rgba(62, 87, 78, 0.08);
  backdrop-filter: blur(14px) saturate(1.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-style: normal;
}

.treatment-section {
  position: relative;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.treatment-grid article,
.philosophy-grid article,
.info-grid article,
.therapy-split article,
.faq-list details,
.team-panel,
.contact-card,
.question-panel,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 46px rgba(62, 87, 78, 0.09);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.treatment-grid article,
.philosophy-grid article,
.info-grid article,
.therapy-split article,
.faq-list details {
  position: relative;
  min-height: 236px;
  padding: 1.2rem;
  overflow: hidden;
}

.treatment-grid article::after,
.philosophy-grid article::after,
.info-grid article::after,
.therapy-split article::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 84px;
  height: 84px;
  border-radius: 48% 52% 38% 62% / 44% 58% 42% 56%;
  background: rgba(168, 214, 194, 0.24);
  content: "";
}

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

.info-grid,
.therapy-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-grid ul,
.therapy-split ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.info-grid li + li,
.therapy-split li + li {
  margin-top: 0.4rem;
}

.wide-card {
  grid-column: 1 / -1;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  min-height: 0;
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: #58766a;
  content: "+";
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.treatment-grid ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.treatment-grid li + li {
  margin-top: 0.45rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.treatment-grid article:nth-child(2) .card-icon {
  background: var(--sun);
}

.treatment-grid article:nth-child(3) .card-icon {
  background: #d8bed0;
}

.treatment-grid article:nth-child(4) .card-icon {
  background: #f1b5a7;
}

.team-section {
  padding-top: clamp(1.5rem, 5vw, 4rem);
}

.team-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 760px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 8px 56px 8px 56px;
}

.team-panel::before {
  position: absolute;
  inset: auto 10% -24px 16%;
  height: 42px;
  border-radius: 50%;
  background: rgba(168, 214, 194, 0.22);
  filter: blur(16px);
  content: "";
  pointer-events: none;
}

.team-photo-frame {
  position: relative;
  flex: 0 0 auto;
  width: clamp(142px, 18vw, 190px);
  aspect-ratio: 0.82;
  margin: 0;
}

.team-photo-frame::before {
  position: absolute;
  inset: 14px -14px -16px 16px;
  z-index: -1;
  border-radius: 36% 64% 43% 57% / 57% 39% 61% 43%;
  background: linear-gradient(145deg, rgba(168, 214, 194, 0.5), rgba(216, 190, 208, 0.38));
  box-shadow: 18px 22px 42px rgba(62, 87, 78, 0.16);
  content: "";
  transform: rotate(4deg);
}

.team-photo {
  display: block;
  width: 100%;
  height: 100%;
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 36% 64% 43% 57% / 57% 39% 61% 43%;
  object-fit: cover;
  object-position: 52% 36%;
  box-shadow:
    0 20px 44px rgba(62, 87, 78, 0.22),
    0 5px 16px rgba(37, 49, 46, 0.12);
}

.team-initials {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--berry);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.question-panel {
  padding: 1.4rem;
  border-radius: 8px 44px 8px 44px;
}

.question-panel a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(231, 241, 234, 0.28);
  box-shadow: 0 24px 70px rgba(62, 87, 78, 0.1);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  right: -3rem;
  top: -3.5rem;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  opacity: 0.72;
}

.contact-section::after {
  position: absolute;
  left: 28%;
  bottom: -2.8rem;
  width: 190px;
  height: 92px;
  border: 2px dashed rgba(37, 49, 46, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(37, 49, 46, 0.1);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  color: #58766a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-list a {
  text-decoration: none;
}

.bot-safe-email {
  word-break: break-word;
}

.arrival-card {
  width: min(100%, 480px);
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px 42px 8px 42px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 44px rgba(62, 87, 78, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.arrival-card h3 {
  margin-bottom: 0.45rem;
}

.arrival-card .button {
  margin-top: 0.4rem;
}

.map-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.map-links .button {
  width: 100%;
  margin-top: 0;
}

.arrival-map {
  display: block;
  width: 100%;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 8px 34px 8px 34px;
  background: var(--paper);
}

.contact-card a:first-child {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.legal-main {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-page {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.legal-address {
  margin-bottom: 1rem;
  color: var(--muted);
  font-style: normal;
}

.legal-contact-list {
  max-width: 520px;
}

.legal-card h2,
.legal-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.legal-card a {
  color: var(--ink);
  font-weight: 800;
}

.legal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-card li + li {
  margin-top: 0.35rem;
}


@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .intro-band,
  .section-heading,
  .split,
  .treatment-grid article,
  .philosophy-grid article,
  .info-grid article,
  .therapy-split article,
  .faq-list details,
  .team-panel,
  .contact-card,
  .question-panel,
  .legal-card,
  .contact-section,
  .arrival-card {
    background: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 112px;
  }

  body::before,
  body::after,
  .site-header::after,
  .letter-cloud,
  .intro-band::before,
  .word-ribbon,
  .section::before {
    display: none;
  }

  .scroll-orbit {
    top: 34vh;
    left: 50%;
    --cube-size: 170px;
    opacity: 0.28;
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    min-height: 72px;
    padding: 0.72rem clamp(1rem, 5vw, 2rem);
    transition: min-height 180ms ease, padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .site-header.is-compact {
    min-height: 66px;
    padding-top: 0.52rem;
    padding-bottom: 0.52rem;
    background: rgba(255, 250, 244, 0.72);
    box-shadow: 0 12px 30px rgba(62, 87, 78, 0.12);
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

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

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

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav,
  .call-link {
    display: none;
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.8rem;
  }

  .site-header.is-menu-open .call-link {
    display: inline-flex;
    justify-self: start;
    margin-top: 0.5rem;
  }

  .site-header.is-compact .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-header.is-compact .brand-wordmark {
    width: 154px;
  }

  .hero,
  .intro-band,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .shape-arc,
  .shape-dot-grid,
  .bubble-three {
    display: none;
  }

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

  .philosophy-grid,
  .detailed-grid,
  .info-grid,
  .therapy-split {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-orbit {
    transform: none;
  }

  .speech-cube {
    transform: rotateX(-10deg) rotateY(18deg);
    transition: none;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
    gap: 0.62rem;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    width: 170px;
    max-width: calc(100vw - 128px);
  }

  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav,
  .call-link {
    display: none;
    max-height: none;
    margin-top: 0;
    opacity: 1;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
  }

  .site-header.is-menu-open .call-link {
    display: inline-flex;
  }

  .site-header.is-menu-open .main-nav {
    margin-top: 0.8rem;
  }

  .site-header.is-menu-open .call-link {
    margin-top: 0.5rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 9.3vw, 2.3rem);
  }

  .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(1.78rem, 8.15vw, 2.08rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.1;
  }

  .section-heading {
    padding: 1rem;
    border-radius: 8px 28px 8px 28px;
  }

  .section-heading h1,
  .section-heading h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 1.35rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .speech-bubble {
    min-width: 92px;
    min-height: 54px;
    font-size: 0.9rem;
  }

  .bubble-one {
    left: 0;
  }

  .bubble-two {
    right: 0;
  }

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

  .team-panel {
    align-items: flex-start;
  }

  .team-panel {
    align-items: flex-start;
  }

  .team-photo-frame {
    width: 118px;
  }
}

/* Test 2: farbenfreudigere, organischere Designstudie */
:root {
  --paper: #fff7ef;
  --mint: #94d9bc;
  --coral: #ff8b75;
  --sun: #ffd45e;
  --berry: #b86aa0;
  --sky: #8fd0f4;
  --leaf: #80c987;
  --lavender: #d6b4e8;
  --line: rgba(67, 84, 77, 0.16);
  --shadow: 0 30px 80px rgba(75, 96, 87, 0.18);
}

body {
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 212, 94, 0.34), transparent 22rem),
    radial-gradient(circle at 85% 11%, rgba(143, 208, 244, 0.36), transparent 24rem),
    radial-gradient(circle at 18% 48%, rgba(255, 139, 117, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 68%, rgba(148, 217, 188, 0.4), transparent 30rem),
    linear-gradient(155deg, #fff9f0 0%, #fff5ef 44%, #f4fff8 100%);
}

body::before {
  top: 7rem;
  left: -9rem;
  width: 24rem;
  height: 34rem;
  border: 3px dotted rgba(184, 106, 160, 0.28);
  border-radius: 58% 42% 66% 34% / 42% 64% 36% 58%;
}

body::after {
  right: -11rem;
  bottom: 3rem;
  width: 30rem;
  height: 22rem;
  background:
    repeating-linear-gradient(-28deg, rgba(255, 212, 94, 0.34) 0 12px, transparent 12px 26px),
    radial-gradient(circle, rgba(143, 208, 244, 0.2), transparent 65%);
  border-radius: 38% 62% 48% 52% / 62% 36% 64% 38%;
}

.site-header {
  background: rgba(255, 249, 240, 0.68);
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.site-header::after {
  height: 28px;
  border-radius: 44% 56% 50% 50% / 55% 45% 55% 45%;
  background: linear-gradient(90deg, var(--sun), var(--coral), var(--berry), var(--sky), var(--mint));
  box-shadow: 0 16px 36px rgba(184, 106, 160, 0.16);
}

.main-nav a,
.call-link,
.button,
.word-ribbon span,
.faq-list summary {
  border-radius: 58% 42% 56% 44% / 45% 58% 42% 55%;
}

.main-nav a:nth-child(2n),
.button.secondary {
  border-radius: 39% 61% 43% 57% / 58% 42% 60% 40%;
}

.main-nav a:hover,
.call-link {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(94, 114, 104, 0.14);
}

.hero {
  gap: clamp(2rem, 4vw, 4.2rem);
}

.hero-copy::before {
  position: absolute;
  top: -2.6rem;
  left: -2.2rem;
  z-index: -1;
  width: min(430px, 70vw);
  height: 72%;
  border-radius: 60% 40% 54% 46% / 44% 58% 42% 56%;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 212, 94, 0.22), transparent 38%),
    radial-gradient(circle at 78% 58%, rgba(148, 217, 188, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.12);
  content: "";
  filter: blur(0.1px);
}

.hero-copy h1 {
  color: #243833;
  text-shadow: 0 10px 32px rgba(148, 217, 188, 0.18);
}

.hero-visual::before {
  inset: 1rem -0.5rem -1.8rem 1.2rem;
  border-radius: 62% 38% 52% 48% / 42% 57% 43% 58%;
  background: linear-gradient(145deg, rgba(148, 217, 188, 0.55), rgba(214, 180, 232, 0.34));
}

.hero-visual::after {
  width: 66%;
  height: 42%;
  border-color: rgba(184, 106, 160, 0.36);
  border-radius: 45% 55% 62% 38% / 40% 62% 38% 60%;
}

.hero-visual img {
  border-radius: 48% 52% 41% 59% / 58% 38% 62% 42%;
  box-shadow: 0 34px 90px rgba(75, 96, 87, 0.22);
}

.speech-bubble {
  border-radius: 60% 40% 55% 45% / 44% 58% 42% 56%;
}

.bubble-one {
  background: rgba(255, 255, 255, 0.86);
  color: #4f7768;
}

.bubble-two {
  background: var(--sun);
}

.bubble-three {
  background: var(--lavender);
}

.intro-band,
.section-heading,
.split,
.treatment-grid article,
.philosophy-grid article,
.info-grid article,
.therapy-split article,
.faq-list details,
.team-panel,
.contact-card,
.question-panel,
.legal-card,
.contact-section,
.arrival-card {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 212, 94, 0.16), transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(148, 217, 188, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.25);
  box-shadow: 0 26px 70px rgba(75, 96, 87, 0.12);
}

.intro-band {
  border-radius: 7rem 1.2rem 6rem 1.2rem / 1.6rem 6rem 1.4rem 5rem;
}

.section-heading {
  border-radius: 12px 74px 20px 58px / 22px 38px 18px 44px;
}

.split,
.contact-section {
  border-radius: 78px 18px 88px 24px / 26px 84px 24px 72px;
}

blockquote,
.question-panel {
  border-radius: 34% 66% 18% 82% / 18% 38% 62% 82%;
}

.treatment-grid article:nth-child(1),
.philosophy-grid article:nth-child(3),
.info-grid article:nth-child(2),
.therapy-split article:nth-child(1) {
  border-radius: 28px 82px 24px 64px / 42px 30px 62px 26px;
}

.treatment-grid article:nth-child(2),
.philosophy-grid article:nth-child(4),
.info-grid article:nth-child(3),
.therapy-split article:nth-child(2) {
  border-radius: 82px 24px 68px 22px / 28px 64px 32px 70px;
}

.treatment-grid article:nth-child(3),
.philosophy-grid article:nth-child(1),
.info-grid article:nth-child(4),
.therapy-split article:nth-child(3) {
  border-radius: 18px 74px 92px 26px / 64px 26px 42px 30px;
}

.treatment-grid article:nth-child(4),
.philosophy-grid article:nth-child(2),
.info-grid article:nth-child(1) {
  border-radius: 76px 20px 26px 88px / 30px 72px 28px 58px;
}

.treatment-grid article::after,
.philosophy-grid article::after,
.info-grid article::after,
.therapy-split article::after {
  width: 124px;
  height: 124px;
  border-radius: 56% 44% 66% 34% / 36% 64% 42% 58%;
  background: var(--blob-color, rgba(148, 217, 188, 0.24));
}

.treatment-grid article:nth-child(1),
.philosophy-grid article:nth-child(1),
.info-grid article:nth-child(1),
.therapy-split article:nth-child(1) {
  --blob-color: rgba(143, 208, 244, 0.22);
}

.treatment-grid article:nth-child(2),
.philosophy-grid article:nth-child(2),
.info-grid article:nth-child(2),
.therapy-split article:nth-child(2) {
  --blob-color: rgba(255, 212, 94, 0.28);
}

.treatment-grid article:nth-child(3),
.philosophy-grid article:nth-child(3),
.info-grid article:nth-child(3),
.therapy-split article:nth-child(3) {
  --blob-color: rgba(214, 180, 232, 0.28);
}

.treatment-grid article:nth-child(4),
.philosophy-grid article:nth-child(4),
.info-grid article:nth-child(4) {
  --blob-color: rgba(255, 139, 117, 0.22);
}

.card-icon {
  border-radius: 54% 46% 60% 40% / 44% 58% 42% 56%;
  box-shadow: 0 12px 24px rgba(75, 96, 87, 0.12);
}

.treatment-grid article:nth-child(1) .card-icon { background: var(--sky); }
.treatment-grid article:nth-child(2) .card-icon { background: var(--sun); }
.treatment-grid article:nth-child(3) .card-icon { background: var(--lavender); }
.treatment-grid article:nth-child(4) .card-icon { background: var(--coral); color: #fff; }

.team-panel {
  border-radius: 86px 18px 72px 22px / 26px 66px 28px 64px;
  background:
    radial-gradient(circle at 22% 68%, rgba(148, 217, 188, 0.28), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(214, 180, 232, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.26);
}

.team-photo-frame::before {
  border-radius: 46% 54% 36% 64% / 62% 35% 65% 38%;
  background: linear-gradient(145deg, rgba(143, 208, 244, 0.44), rgba(255, 212, 94, 0.28), rgba(184, 106, 160, 0.28));
}

.team-photo {
  border-radius: 46% 54% 36% 64% / 62% 35% 65% 38%;
}

.faq-list details:nth-child(odd) {
  border-radius: 26px 72px 22px 54px / 40px 28px 62px 30px;
}

.faq-list details:nth-child(even) {
  border-radius: 72px 22px 58px 20px / 26px 62px 30px 58px;
}

.arrival-card,
.contact-card {
  border-radius: 20px 82px 26px 72px / 54px 24px 62px 28px;
}

.arrival-map {
  border-radius: 58% 42% 50% 50% / 42% 54% 46% 58%;
}

.scroll-orbit {
  opacity: 0.68;
}

@media (max-width: 960px) {
  .intro-band,
  .section-heading,
  .split,
  .contact-section,
  .team-panel,
  .arrival-card,
  .contact-card,
  .treatment-grid article,
  .philosophy-grid article,
  .info-grid article,
  .therapy-split article,
  .faq-list details {
    border-radius: 34px 18px 42px 20px / 22px 40px 20px 34px;
  }

  .hero-copy::before {
    width: 86vw;
    height: 62%;
  }
}


/* Test 2 Korrektur: Hero-Bild wieder klar rund statt Ei/Transparenzkante */
.hero-visual {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 42vw, 560px);
}

.hero-visual::before {
  inset: 7% 5% 1% 7%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(148, 217, 188, 0.34), rgba(143, 208, 244, 0.22));
  transform: rotate(-7deg) scale(1.04);
}

.hero-visual::after {
  inset: auto 2% 0 auto;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  opacity: 0.62;
  transform: rotate(-14deg);
}

.hero-visual img {
  width: min(100%, 560px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 34px 90px rgba(75, 96, 87, 0.22);
}

@media (max-width: 960px) {
  .hero-visual {
    min-height: auto;
    padding: 1.5rem 0 2rem;
  }

  .hero-visual::before {
    inset: 9% 4% 4% 8%;
    transform: rotate(-8deg) scale(1.02);
  }

  .hero-visual::after {
    inset: auto -2% 0 auto;
    width: 82%;
    height: 82%;
  }

  .hero-visual img {
    width: min(86vw, 430px);
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 50%;
  }
}

/* Test 2 Korrektur: organische Formen ohne störende Text-Überlagerung */
blockquote {
  position: relative;
  border-left: 0;
  border-radius: 34px 82px 28px 68px / 58px 30px 72px 28px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 212, 94, 0.18), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(148, 217, 188, 0.28), transparent 42%),
    rgba(255, 255, 255, 0.36);
  box-shadow: 0 20px 54px rgba(75, 96, 87, 0.11);
  overflow: hidden;
}

blockquote::before {
  position: absolute;
  top: -28px;
  left: -18px;
  width: 120px;
  height: 120px;
  border-radius: 46% 54% 62% 38% / 42% 58% 44% 56%;
  background: rgba(148, 217, 188, 0.22);
  content: "";
  pointer-events: none;
}

blockquote::after {
  position: absolute;
  right: -34px;
  bottom: -30px;
  width: 150px;
  height: 110px;
  border-radius: 56% 44% 38% 62% / 42% 58% 44% 56%;
  background: rgba(143, 208, 244, 0.18);
  content: "";
  pointer-events: none;
}

blockquote,
blockquote * {
  position: relative;
  z-index: 1;
}

.section-heading h1,
.section-heading h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 960px) {
  .split {
    gap: 1rem;
  }

  blockquote {
    padding: clamp(1.35rem, 6vw, 1.8rem);
    border-radius: 26px 56px 24px 48px / 42px 24px 54px 28px;
    font-size: clamp(1.25rem, 6.2vw, 1.62rem);
    line-height: 1.16;
  }

  blockquote::before {
    top: -36px;
    left: -30px;
    width: 118px;
    height: 118px;
  }

  blockquote::after {
    right: -42px;
    bottom: -34px;
    width: 132px;
    height: 104px;
  }

  .section-heading h2 {
    font-size: clamp(1.46rem, 6.25vw, 1.9rem);
    line-height: 1.12;
  }
}

@media (max-width: 430px) {
  .section-heading h2 {
    font-size: clamp(1.42rem, 5.8vw, 1.72rem);
  }

  blockquote {
    font-size: clamp(1.18rem, 5.55vw, 1.42rem);
  }
}

/* Test 2 Korrektur: Portrait ohne farbigen Schatten, nur weißer Rahmen */
.team-panel::before,
.team-photo-frame::before {
  display: none;
}

.team-photo {
  border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(62, 87, 78, 0.13);
}


/* Test 2 Korrektur: Hero-Titel rhythmischer und weniger blockig */
.hero-title {
  display: grid;
  gap: 0.1em;
  max-width: min(610px, 100%);
  font-size: clamp(2.25rem, 4.05vw, 3.82rem);
  line-height: 0.98;
}

.hero-title span {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-title span:nth-child(2) {
  position: relative;
  padding-right: 0.18em;
}

.hero-title span:nth-child(2)::after {
  position: absolute;
  right: -0.16em;
  bottom: 0.05em;
  z-index: -1;
  width: 1.35em;
  height: 0.46em;
  border-radius: 999px;
  background: rgba(255, 212, 94, 0.36);
  content: "";
  transform: rotate(-4deg);
}

.hero-title span:nth-child(3) {
  margin-left: clamp(0.4rem, 2.5vw, 1.4rem);
}

.hero-title span:nth-child(4) {
  margin-left: clamp(0.1rem, 1.2vw, 0.7rem);
}

@media (max-width: 620px) {
  .hero-title {
    gap: 0.08em;
    max-width: 9.8ch;
    font-size: clamp(2rem, 9.4vw, 2.48rem);
    line-height: 1.02;
  }

  .hero-title span:nth-child(3),
  .hero-title span:nth-child(4) {
    margin-left: 0;
  }

  .hero-title span:nth-child(2)::after {
    right: auto;
    left: 0.2em;
    width: 2.4em;
  }
}

/* Test 2 Korrektur: Hero-Titel auf iPhone ruhiger, Würfel weniger im Text */
@media (max-width: 620px) {
  .hero-title {
    max-width: 10.8ch;
    gap: 0.02em;
    font-size: clamp(1.86rem, 8.35vw, 2.22rem);
    line-height: 1.05;
  }

  .hero-title span {
    margin-left: 0 !important;
  }

  .hero-title span:nth-child(1),
  .hero-title span:nth-child(4) {
    max-width: 9.3ch;
  }

  .hero-title span:nth-child(2),
  .hero-title span:nth-child(3) {
    max-width: 8.8ch;
  }

  .scroll-orbit {
    top: 40vh;
    left: 64%;
    --cube-size: 132px;
    opacity: 0.2;
  }

  .hero-copy::before {
    top: -1.4rem;
    left: -1rem;
    width: 94vw;
    height: 50%;
  }
}

@media (min-width: 621px) and (max-width: 960px) {
  .scroll-orbit {
    top: 38vh;
    left: 62%;
    opacity: 0.24;
  }
}


/* Test 2 Korrektur: Hero-Titel ruhiger als Hauptzeile plus Zielgruppen-Label */
.hero-title {
  display: grid;
  gap: clamp(0.58rem, 1vw, 0.82rem);
  max-width: min(650px, 100%);
  line-height: 1;
}

.hero-title span {
  display: block;
  width: auto;
  max-width: 100%;
}

.hero-title .hero-title-main {
  max-width: 11.6ch;
  font-size: clamp(2.8rem, 5.6vw, 5.35rem);
  line-height: 0.94;
}

.hero-title .hero-title-sub {
  justify-self: start;
  width: fit-content;
  max-width: min(100%, 35rem);
  padding: 0.54rem 0.88rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px 999px 999px 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(234, 247, 239, 0.52));
  box-shadow: 0 14px 30px rgba(76, 106, 93, 0.1);
  color: #557a6b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero-title span:nth-child(2) {
  position: static;
  padding-right: 0.88rem;
}

.hero-title span:nth-child(2)::after {
  display: none;
}

.hero-title span:nth-child(3),
.hero-title span:nth-child(4) {
  margin-left: 0;
}

@media (max-width: 620px) {
  .hero-title {
    gap: 0.58rem;
    max-width: 100%;
  }

  .hero-title .hero-title-main {
    max-width: 9.9ch;
    font-size: clamp(2.28rem, 10.4vw, 2.72rem);
    line-height: 0.98;
  }

  .hero-title .hero-title-sub {
    max-width: 18rem;
    padding: 0.48rem 0.72rem 0.52rem;
    border-radius: 23px 999px 999px 23px;
    font-size: clamp(0.92rem, 4vw, 1rem);
    line-height: 1.24;
  }

  .scroll-orbit {
    top: 38vh;
    left: 68%;
    --cube-size: 124px;
    opacity: 0.18;
  }

  .hero-copy .lead {
    margin-top: 1.3rem;
  }
}


/* Test 2 Korrektur: Zielgruppen-Label darf mobil nicht von alten Umbruch-Regeln eingeengt werden */
@media (max-width: 620px) {
  .hero-title span.hero-title-main {
    width: auto;
    max-width: 9.9ch;
  }

  .hero-title span.hero-title-sub {
    width: auto;
    max-width: min(19.5rem, calc(100vw - 45px));
    padding-right: 0.76rem;
    white-space: normal;
  }
}


/* Test 2 Feinschliff: Zielgruppen-Label weicher und weniger kantig */
.hero-title .hero-title-sub {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

@media (max-width: 620px) {
  .hero-title span.hero-title-sub {
    border-radius: 999px;
  }
}


/* Test 2 Korrektur: Würfel mobil wieder größer und mittiger im Hintergrund */
@media (max-width: 620px) {
  .scroll-orbit {
    top: 34vh;
    left: 50%;
    --cube-size: clamp(188px, 54vw, 225px);
    opacity: 0.2;
    transform: translate3d(-50%, -50%, 0) rotateX(var(--cube-tilt-x)) rotateY(var(--cube-tilt-y));
  }
}

@media (max-width: 380px) {
  .scroll-orbit {
    top: 35vh;
    --cube-size: clamp(176px, 52vw, 204px);
  }
}


/* Test 2 Korrektur: mobile Würfel-Zentrierung mit korrekter Scroll-Transform */
@media (max-width: 620px) {
  .scroll-orbit {
    top: 34vh;
    left: 50%;
    --cube-size: clamp(188px, 54vw, 225px);
    opacity: 0.22;
    transform:
      translate3d(-50%, calc(var(--scroll-progress) * 10vh), 0)
      rotate(calc(var(--scroll-progress) * -8deg));
  }
}

@media (max-width: 380px) {
  .scroll-orbit {
    top: 35vh;
    --cube-size: clamp(176px, 52vw, 204px);
  }
}
