@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic-variable.woff2") format("woff2");
  font-weight: 300 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-variable.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: oklch(0.985 0.006 85);
  --ink: oklch(0.3 0.035 200);
  --ink-2: oklch(0.38 0.03 200);
  --ink-3: oklch(0.4 0.03 200);
  --ink-body: oklch(0.33 0.03 200);
  --muted: oklch(0.48 0.03 200);
  --link: oklch(0.42 0.07 195);
  --link-hover: oklch(0.34 0.07 200);
  --eyebrow: oklch(0.45 0.06 195);

  --grad-primary: linear-gradient(120deg, oklch(0.44 0.07 200), oklch(0.54 0.085 165));
  --shadow-btn: 0 14px 30px -14px oklch(0.4 0.08 190 / 0.8);
  --shadow-card: 0 30px 60px -40px oklch(0.3 0.05 220 / 0.45);
  --shadow-image: 0 40px 80px -40px oklch(0.3 0.05 220 / 0.55);

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --wrap: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
  --section-y: clamp(60px, 8vw, 110px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
  border-radius: 6px;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--ink);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.label-violet {
  color: oklch(0.45 0.06 280);
}

.grad-text {
  font-style: italic;
  background: linear-gradient(100deg, oklch(0.45 0.08 195), oklch(0.5 0.09 160) 50%, oklch(0.5 0.08 300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Schaltflächen */

.btn {
  display: inline-block;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  color: #fff;
}

.btn-light {
  color: oklch(0.32 0.04 200);
  background: oklch(1 0 0 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.8);
}

.btn-light:hover {
  color: oklch(0.32 0.04 200);
  background: oklch(1 0 0 / 0.8);
}

.btn-sm {
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Kopfbereich */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, oklch(0.985 0.006 85 / 0.92), oklch(0.985 0.006 85 / 0.78));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(0.9 0.02 180 / 0.6);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.brand-blob {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%;
  background: linear-gradient(140deg, oklch(0.78 0.07 165), oklch(0.62 0.07 200) 55%, oklch(0.7 0.06 290));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: oklch(0.42 0.03 200);
  transition: background-color 0.25s;
}

.main-nav a:hover {
  text-decoration: none;
  color: oklch(0.42 0.03 200);
  background: oklch(0.93 0.03 170 / 0.7);
}

.main-nav a[aria-current="page"] {
  color: oklch(0.3 0.05 200);
  background: oklch(0.92 0.04 170 / 0.8);
}

.main-nav .nav-cta {
  margin-left: 8px;
  padding: 11px 20px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, oklch(0.46 0.07 200), oklch(0.55 0.08 168));
  box-shadow: 0 6px 18px -8px oklch(0.45 0.08 190 / 0.7);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: linear-gradient(120deg, oklch(0.42 0.07 200), oklch(0.51 0.08 168));
}

/* Unterseiten-Kopf mit Welle */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(90px, 10vw, 140px);
}

.page-hero h1 {
  font-weight: 400;
  font-size: clamp(calc(38px * 2 / 3), calc((5vw - 2px) * 2 / 3), calc(62px * 2 / 3));
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.page-hero-lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(50px, 7vw, 100px);
  display: block;
}

.hero-wave path {
  fill: var(--bg);
}

/* Start: Einstieg */

.hero-start {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 85% 20%, oklch(0.88 0.05 300 / 0.75), transparent 70%),
    radial-gradient(55% 60% at 10% 90%, oklch(0.87 0.06 165 / 0.8), transparent 70%),
    linear-gradient(160deg, oklch(0.95 0.03 170), oklch(0.95 0.03 80) 55%, oklch(0.93 0.035 310));
}

.hero-start-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 56px;
  align-items: center;
  padding-top: clamp(56px, 9vw, 120px);
  padding-bottom: clamp(120px, 14vw, 190px);
}

.hero-start-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-start-text .eyebrow {
  color: oklch(0.42 0.05 195);
}

.hero-start h1 {
  font-weight: 400;
  font-size: clamp(calc(38px * 2 / 3), calc((5.4vw - 2px) * 2 / 3), calc(70px * 2 / 3));
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-start-lead {
  max-width: 520px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

.hero-reach {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 15px;
  color: var(--ink-3);
}

.hero-reach strong {
  width: 100%;
  font-weight: 600;
  color: var(--ink);
}

.hero-reach a {
  font-weight: 600;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1.08;
}

.hero-media-blob {
  position: absolute;
  inset: -6%;
  border-radius: 62% 38% 54% 46% / 45% 55% 45% 55%;
  background: linear-gradient(150deg, oklch(0.8 0.07 170 / 0.55), oklch(0.82 0.06 300 / 0.55));
  transform: rotate(-8deg);
}

.hero-media-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 48% 52% 44% 56% / 56% 44% 56% 44%;
  box-shadow: var(--shadow-image);
}

.hero-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.glass-card {
  position: absolute;
  left: -4%;
  bottom: 6%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 270px;
  padding: 18px 22px;
  border-radius: 22px;
  background: oklch(1 0 0 / 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -24px oklch(0.3 0.05 220 / 0.5);
}

.glass-card .label {
  color: var(--eyebrow);
}

.glass-card-main {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
}

.glass-card-sub {
  font-size: 14px;
  line-height: 1.45;
  color: oklch(0.42 0.03 200);
}

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(90px, 11vw, 160px);
  overflow: hidden;
}

.hero-waves svg {
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 115%;
  height: 100%;
}

.hero-waves .wave-a {
  animation: waveA 14s ease-in-out infinite alternate;
}

.hero-waves .wave-b {
  animation: waveB 18s ease-in-out infinite alternate;
}

.hero-waves .wave-a path {
  fill: oklch(0.9 0.04 175 / 0.8);
}

.hero-waves .wave-b path {
  fill: oklch(0.93 0.03 300 / 0.8);
}

.hero-waves .wave-c path {
  fill: var(--bg);
}

@keyframes waveA {
  0% { transform: translateX(0); }
  100% { transform: translateX(-80px); }
}

@keyframes waveB {
  0% { transform: translateX(-60px); }
  100% { transform: translateX(20px); }
}

/* Start: Orientierung */

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.orientation {
  padding-top: clamp(40px, 6vw, 80px);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2,
.h2 {
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
  align-items: start;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 30px 30px;
  color: var(--ink);
  transition: transform 0.35s;
}

.card:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-6px);
}

.card-sage {
  border-radius: 32px 32px 32px 8px;
  background: linear-gradient(160deg, oklch(0.95 0.035 165), oklch(0.97 0.015 90));
  border: 1px solid oklch(0.9 0.03 165);
}

.card-sand {
  margin-top: clamp(0px, 4vw, 56px);
  border-radius: 32px;
  background: linear-gradient(160deg, oklch(0.95 0.03 80), oklch(0.95 0.03 30 / 0.6));
  border: 1px solid oklch(0.9 0.03 70);
}

.card-lilac {
  border-radius: 32px 32px 8px 32px;
  background: linear-gradient(160deg, oklch(0.94 0.03 300), oklch(0.96 0.02 250));
  border: 1px solid oklch(0.9 0.03 300);
}

.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

.card-sage .card-num { color: oklch(0.5 0.07 170); }
.card-sand .card-num { color: oklch(0.55 0.08 60); }
.card-lilac .card-num { color: oklch(0.5 0.07 300); }

.card h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}

.card-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--link);
}

/* Start: Behandlungsschwerpunkte */

.focus {
  background: linear-gradient(180deg, oklch(0.985 0.006 85), oklch(0.95 0.03 170) 30%, oklch(0.94 0.03 200) 70%, oklch(0.985 0.006 85));
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 56px;
  align-items: center;
}

.focus-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.focus-text p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
}

.pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill {
  padding: 18px 26px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.75);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.pill:nth-child(1) { align-self: flex-start; }
.pill:nth-child(2) { align-self: center; }
.pill:nth-child(3) { align-self: flex-end; }

.pill-accent {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 18px 28px;
  color: #fff;
  background: linear-gradient(120deg, oklch(0.44 0.07 200), oklch(0.52 0.085 165) 60%, oklch(0.52 0.07 290));
}

.pill-accent small {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Start: Zitat */

.quote-block {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.quote-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quote-sign img {
  width: 190px;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.quote-sign span {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Über mich */

.about-hero {
  background: linear-gradient(165deg, oklch(0.94 0.035 165), oklch(0.96 0.02 85) 60%, oklch(0.985 0.006 85));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 56px;
  align-items: center;
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(90px, 10vw, 140px);
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-hero-text p {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
}

.arch {
  justify-self: center;
  width: min(100%, 400px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 200px 200px 40px 40px;
  box-shadow: 0 40px 80px -40px oklch(0.3 0.05 220 / 0.5);
}

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

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: flex-start;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: var(--section-y);
}

.side {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, oklch(0.95 0.03 80), oklch(0.95 0.03 300 / 0.6));
}

.side-card p {
  font-size: 16px;
  line-height: 1.6;
}

.side-card .serif-line {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}

.article {
  flex: 2 1 460px;
  min-width: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-body);
}

.article h2 {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.article p {
  text-wrap: pretty;
}

.article blockquote.bar {
  margin: 10px 0;
  padding: 6px 0 6px 28px;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, oklch(0.6 0.08 170), oklch(0.6 0.07 300)) 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: oklch(0.35 0.045 200);
}

.soft-box {
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, oklch(0.94 0.035 165), oklch(0.95 0.03 300 / 0.8));
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.45;
  color: oklch(0.32 0.045 200);
}

.article .btn-row {
  margin-top: 12px;
}

/* Über Verhaltenstherapie */

.vt-hero {
  background:
    radial-gradient(50% 80% at 90% 10%, oklch(0.88 0.05 300 / 0.7), transparent 70%),
    linear-gradient(165deg, oklch(0.95 0.03 80), oklch(0.95 0.03 165) 70%, oklch(0.985 0.006 85));
}

.vt-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 56px;
  align-items: center;
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(100px, 11vw, 150px);
}

.vt-hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vt-hero h1 {
  font-size: clamp(calc(36px * 2 / 3), calc((5vw - 2px) * 2 / 3), calc(62px * 2 / 3));
  line-height: 1.06;
}

.vt-hero h1 em {
  font-style: italic;
  color: oklch(0.45 0.07 185);
}

.blob-image {
  justify-self: center;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 48% 52% 44% 56% / 56% 44% 56% 44%;
  box-shadow: var(--shadow-image);
}

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

.text-col {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-body);
}

.text-col p {
  text-wrap: pretty;
}

.text-col .lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
}

.text-col .soft-box {
  margin: 14px 0;
}

.vt-intro {
  padding-top: clamp(30px, 4vw, 56px);
  padding-bottom: 20px;
}

.breakout {
  --breakout-w: min(calc((100vw - 2 * var(--pad-x)) * 2 / 3), calc(1000px * 2 / 3));
  width: var(--breakout-w);
  max-width: none;
  margin: 18px 0 18px calc((100% - var(--breakout-w)) / 2);
}

.breakout img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.shape-a img {
  border-radius: 32px 32px 32px 120px;
}

.shape-b img {
  border-radius: 120px 32px 32px 32px;
}

.steps-section {
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

.steps-section h2 {
  margin-bottom: 48px;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
  align-items: start;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
}

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
}

.step h3 {
  font-weight: 500;
  font-size: 23px;
  line-height: 1.25;
}

.step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}

.step-1 {
  background: linear-gradient(170deg, oklch(0.95 0.035 165), oklch(0.98 0.01 120));
}

.step-1 .step-num {
  background: linear-gradient(140deg, oklch(0.55 0.08 165), oklch(0.46 0.07 200));
}

.step-2 {
  margin-top: clamp(0px, 4vw, 52px);
  background: linear-gradient(170deg, oklch(0.95 0.03 120), oklch(0.97 0.02 85));
}

.step-2 .step-num {
  background: linear-gradient(140deg, oklch(0.6 0.08 130), oklch(0.5 0.07 180));
}

.step-3 {
  margin-top: clamp(0px, 1.5vw, 18px);
  background: linear-gradient(170deg, oklch(0.96 0.03 80), oklch(0.96 0.02 330 / 0.7));
}

.step-3 .step-num {
  background: linear-gradient(140deg, oklch(0.62 0.08 60), oklch(0.52 0.07 330));
}

.step-4 {
  margin-top: clamp(0px, 5vw, 68px);
  background: linear-gradient(170deg, oklch(0.95 0.03 300), oklch(0.96 0.02 250));
}

.step-4 .step-num {
  background: linear-gradient(140deg, oklch(0.55 0.07 300), oklch(0.46 0.07 240));
}

.vt-outro {
  padding-top: 10px;
  padding-bottom: var(--section-y);
}

.outro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.outro-grid .text-col {
  flex: 2 1 460px;
  margin: 0;
}

.outro-grid .arch {
  flex: 1 1 280px;
  max-width: 380px;
}

/* Kontakt */

.contact-hero {
  background:
    radial-gradient(60% 80% at 0% 0%, oklch(0.88 0.05 165 / 0.8), transparent 70%),
    linear-gradient(165deg, oklch(0.95 0.03 300), oklch(0.96 0.02 85) 70%, oklch(0.985 0.006 85));
}

.contact-hero h1 {
  max-width: 780px;
}

.map-hero {
  background: linear-gradient(165deg, oklch(0.95 0.03 200), oklch(0.95 0.03 165) 55%, oklch(0.985 0.006 85));
}

.flex-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding-top: clamp(20px, 4vw, 50px);
  padding-bottom: var(--section-y);
}

.form-card {
  flex: 2 1 460px;
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 32px;
  background: #fff;
  border: 1px solid oklch(0.92 0.02 180);
  box-shadow: var(--shadow-card);
}

.form-card h2 {
  margin-bottom: 22px;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 32px);
  letter-spacing: -0.015em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
}

.field input,
.field textarea {
  font: inherit;
  font-weight: 400;
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid oklch(0.88 0.02 190);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: oklch(0.55 0.08 180);
  box-shadow: 0 0 0 4px oklch(0.85 0.06 175 / 0.5);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-3);
}

.consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: oklch(0.48 0.07 190);
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.form-foot small {
  font-size: 14px;
  color: var(--ink-3);
}

/* Fluent Forms: an unser Design angepasst */

.fluentform .ff-el-group {
  margin-bottom: 18px;
}

.fluentform .ff-el-input--label label,
.fluentform label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
}

.fluentform .ff-el-is-required .ff_asterik {
  color: oklch(0.55 0.16 25);
}

.fluentform input.ff-el-form-control,
.fluentform textarea.ff-el-form-control,
.fluentform select.ff-el-form-control {
  font: inherit;
  font-weight: 400;
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid oklch(0.88 0.02 190);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fluentform textarea.ff-el-form-control {
  line-height: 1.55;
}

.fluentform input.ff-el-form-control:focus,
.fluentform textarea.ff-el-form-control:focus {
  border-color: oklch(0.55 0.08 180);
  box-shadow: 0 0 0 4px oklch(0.85 0.06 175 / 0.5);
}

.fluentform .ff-el-form-check-label,
.fluentform .ff_tc_label {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-3);
  cursor: pointer;
}

.fluentform .ff_tc_checkbox {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.fluentform input.ff-el-form-check-input {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: oklch(0.48 0.07 190);
}

.fluentform button.ff-btn-submit {
  display: inline-block;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--shadow-btn);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fluentform button.ff-btn-submit:hover {
  color: #fff;
  transform: translateY(-2px);
}

.fluentform .ff_submit_btn_wrapper {
  margin-top: 4px;
}

.fluentform .ff-message-success,
.fluentform .ff-success-message-wrap {
  padding: 40px 10px;
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 10px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success .dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(140deg, oklch(0.78 0.07 165), oklch(0.7 0.06 290));
}

.form-success h2 {
  margin: 0;
  font-weight: 400;
  font-size: 34px;
}

.form-success p {
  font-size: 17px;
  color: var(--ink-3);
}

.info-col {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: 28px;
}

.info-sage {
  background: linear-gradient(160deg, oklch(0.94 0.035 165), oklch(0.96 0.02 85));
}

.info-lilac {
  background: linear-gradient(160deg, oklch(0.95 0.03 300), oklch(0.97 0.015 250));
}

.info-card .serif-line {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.info-card p {
  font-size: 16px;
  line-height: 1.55;
}

.info-card .text-md {
  font-size: 17px;
  line-height: 1.6;
}

.info-card .big-tel {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.info-card .more {
  font-size: 15px;
  font-weight: 600;
}

.map-section {
  align-items: stretch;
}

.map-section .info-card {
  padding: 30px;
}

.map {
  position: relative;
  flex: 2 1 460px;
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  border-radius: 32px 32px 32px 120px;
  background:
    radial-gradient(50% 70% at 20% 30%, oklch(0.9 0.05 165 / 0.8), transparent 70%),
    radial-gradient(50% 70% at 85% 75%, oklch(0.92 0.04 300 / 0.7), transparent 70%),
    oklch(0.93 0.02 180);
  box-shadow: 0 30px 60px -40px oklch(0.3 0.05 220 / 0.5);
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) hue-rotate(-10deg);
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.map-consent p {
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Rechtliches */

.legal {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(56px, 8vw, 100px);
  font-size: 17px;
  line-height: 1.7;
}

.legal h1 {
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

.legal-item strong {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.legal-note {
  padding: 18px 22px;
  border-radius: 18px;
  background: oklch(0.95 0.04 80);
  font-size: 15px;
  color: oklch(0.4 0.04 70);
}

/* Fußbereich */

.site-footer {
  position: relative;
  margin-top: 130px;
  color: oklch(0.95 0.01 180);
  background: linear-gradient(150deg, oklch(0.3 0.04 205), oklch(0.33 0.05 230) 60%, oklch(0.34 0.05 280));
}

.footer-wave {
  position: absolute;
  left: 0;
  top: -89px;
  width: 100%;
  height: 90px;
  display: block;
}

.footer-wave path {
  fill: oklch(0.3 0.04 205);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: oklch(0.88 0.02 190);
}

.footer-col .label {
  color: oklch(0.78 0.06 170);
}

.footer-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
  color: oklch(0.95 0.01 180);
}

.footer-role {
  color: oklch(0.85 0.02 190);
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 18px;
  padding-bottom: 28px;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  font-size: 13px;
  color: oklch(0.78 0.02 200);
}

/* Dezentes Einblenden */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}

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

.js .card.reveal.is-visible {
  transition: opacity 0.9s var(--ease), transform 0.35s;
}

.js .card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-waves .wave-a,
  .hero-waves .wave-b {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .btn {
    transition: none;
  }
}

/* Schmale Bildschirme: Wellenversätze aufheben */

@media (max-width: 700px) {
  .card-sand,
  .step-2,
  .step-3,
  .step-4 {
    margin-top: 0;
  }

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .site-header {
    position: relative;
  }

  .hero-media {
    aspect-ratio: auto;
  }

  .hero-media-blob {
    bottom: auto;
    aspect-ratio: 1 / 1.08;
  }

  .hero-media-image {
    position: relative;
    aspect-ratio: 1 / 1.08;
  }

  .glass-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -56px 14px 0;
  }

  .pill,
  .pill-accent {
    font-size: 21px;
  }
}
