/* The Human Edge — Design 2026 · SOKO-TEAM */
:root {
  --navy: oklch(0.28 0.05 240);
  --navy-deep: oklch(0.2 0.04 240);
  --gold: oklch(0.72 0.09 75);
  --gold-bright: oklch(0.82 0.1 85);
  --bg: oklch(0.98 0.008 85);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.96 0.012 85);
  --section-gray: oklch(0.94 0.008 240);
  --text: oklch(0.28 0.05 240);
  --muted: oklch(0.48 0.03 240);
  --line: oklch(0.28 0.05 240 / 0.1);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px oklch(0.28 0.05 240 / 0.08);
  --shadow-lg: 0 32px 80px oklch(0.2 0.04 240 / 0.14);
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1140px, calc(100% - clamp(1.25rem, 4vw, 3rem)));
  --narrow: min(680px, calc(100% - clamp(1.25rem, 4vw, 3rem)));
  /* Gleicher Abstand oben/unten wie Zitat-Section */
  --section-pad-y: clamp(1.5rem, 3.5vw, 2.25rem);
  --section-inner-pad-y: clamp(1.35rem, 3vw, 1.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 3.75rem);
}

body.site-body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.2vw + 0.95rem, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.narrow {
  width: var(--narrow);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* —— Topbar: durchgehend weiß, feste Höhe (kein Scroll-Umschalten) —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 0;
  padding: env(safe-area-inset-top, 0) clamp(0.75rem, 2vw, 1.25rem) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  min-height: 3.5rem;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0;
  position: relative;
}

.topbar__brand {
  flex-shrink: 0;
}

.topbar__brand img {
  width: clamp(44px, 6vw, 52px);
  height: clamp(44px, 6vw, 52px);
  object-fit: contain;
}

.topbar__menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  gap: clamp(0.35rem, 1.2vw, 1rem);
}

.topbar__nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.35rem);
}

.topbar__nav a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  text-shadow: none;
  transition: color 0.2s, border-color 0.2s;
}

.topbar__nav a:hover {
  color: var(--navy);
  border-color: var(--gold);
}

.topbar__toggle {
  display: none;
}

/* —— Hero: Farbe links, Bild rechts mit Übergang —— */
.hero {
  position: relative;
  min-height: min(70vh, 680px);
  color: oklch(0.99 0.005 85);
  overflow: clip;
  margin-top: 0;
  padding-top: clamp(1.25rem, 3.5vh, 2rem);
  isolation: isolate;
}

.hero__color {
  position: absolute;
  inset: 0;
  right: auto;
  width: clamp(36rem, 56vw, 58rem);
  background:
    linear-gradient(
      165deg,
      oklch(0.24 0.05 240) 0%,
      oklch(0.3 0.05 240) 52%,
      oklch(0.34 0.05 240) 100%
    );
  z-index: 0;
}

.hero__color::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(-6rem, -10vw, -3rem);
  bottom: 0;
  width: clamp(10rem, 24vw, 20rem);
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    oklch(0.28 0.05 240 / 0.92) 18%,
    oklch(0.28 0.05 240 / 0.62) 42%,
    oklch(0.28 0.05 240 / 0.28) 68%,
    oklch(0.28 0.05 240 / 0.08) 86%,
    transparent 100%
  );
  opacity: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__blend {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      var(--navy-deep) 0%,
      var(--navy-deep) clamp(16%, 20vw, 24%),
      oklch(0.2 0.04 240 / 0.94) clamp(26%, 30vw, 34%),
      oklch(0.2 0.04 240 / 0.72) clamp(36%, 42vw, 44%),
      oklch(0.2 0.04 240 / 0.48) clamp(46%, 52vw, 52%),
      oklch(0.2 0.04 240 / 0.26) clamp(54%, 60vw, 60%),
      oklch(0.2 0.04 240 / 0.1) clamp(64%, 68vw, 70%),
      oklch(0.2 0.04 240 / 0.03) clamp(72%, 76vw, 78%),
      transparent clamp(80%, 86vw, 90%)
    ),
    linear-gradient(
      180deg,
      transparent 58%,
      oklch(0.99 0.005 85 / 0.35) 78%,
      var(--bg) 100%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: min(62vh, 600px);
  width: min(100%, clamp(36rem, 56vw, 58rem));
  padding: clamp(3rem, 8vh, 4.25rem) clamp(1.5rem, 4vw, 2.5rem);
  padding-left: clamp(2.5rem, 9vw, 5.5rem);
  padding-bottom: clamp(1rem, 2.5vh, 1.5rem);
}

/* Desktop: keine Kachel — Text direkt auf Navy; Mobil: Kachel in Media Query */
.hero__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, clamp(22rem, 42vw, 38rem));
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero__title,
.hero__lead,
.hero__sub {
  text-shadow: 0 1px 20px oklch(0.12 0.04 240 / 0.5);
}

.hero__eyebrow {
  margin: 0 0 clamp(1rem, 2.5vh, 1.35rem);
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold-bright);
}

.hero__eyebrow,
.hero__meta {
  text-shadow: 0 1px 16px oklch(0.12 0.04 240 / 0.45);
}

.hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 4.6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero__lead {
  margin: clamp(1.1rem, 2.5vh, 1.4rem) 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: oklch(0.95 0.01 85 / 0.9);
  max-width: 40ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  margin: clamp(1.35rem, 3vh, 1.65rem) 0 clamp(0.85rem, 2vh, 1.1rem);
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
}

.hero__meta-sep {
  color: var(--gold);
  opacity: 0.75;
  font-weight: 700;
  user-select: none;
}

.hero__sub {
  margin: 0;
  color: oklch(0.92 0.01 85 / 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.35rem, 3vh, 1.75rem);
}

.hero__coach {
  display: block;
  margin: auto 0 0;
  padding-top: clamp(2.5rem, 7vh, 4.25rem);
  max-width: none;
  font-size: clamp(0.72rem, 1.15vw, 0.84rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--gold-bright);
  text-decoration: none;
  text-shadow: 0 1px 16px oklch(0.12 0.04 240 / 0.45);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.hero__coach:hover {
  color: oklch(0.9 0.1 85);
  opacity: 0.95;
}

.hero__coach:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Desktop: Button einzeilig, gleiche Höhe, nebeneinander */
@media (min-width: 901px) {
  .hero__actions {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(1rem, 2vw, 1.35rem);
  }

  .hero__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0 clamp(1.25rem, 2.2vw, 1.75rem);
    white-space: nowrap;
    line-height: 1.2;
    flex-shrink: 0;
  }

  .hero .btn--stack {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    padding-inline: clamp(1.35rem, 2.5vw, 1.85rem);
    white-space: nowrap;
  }

  .hero .btn--stack .btn__line,
  .hero .btn--stack .btn__sub,
  .hero .btn--stack .btn__price {
    display: inline;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 800;
    opacity: 1;
  }

  .hero .btn--stack .btn__vat {
    display: inline;
    font-size: clamp(0.58rem, 0.95vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.88;
  }

  .hero .btn--stack .btn__sub::before {
    content: "·";
    margin-inline: 0.45rem;
    font-weight: 700;
    opacity: 0.75;
  }

  /* Bild nach rechts schieben, Navy links breiter — Gesichter weg vom Text */
  .hero__color {
    width: clamp(38rem, 54vw, 60rem);
  }

  .hero__content {
    width: min(100%, clamp(38rem, 54vw, 60rem));
  }

  .hero--landscape .hero__media,
  .hero--landscape .hero__photo {
    object-position: center 42%;
    background-position: center 42%;
  }

  .hero--landscape .hero__color::after {
    right: clamp(-8rem, -12vw, -4rem);
    width: clamp(14rem, 28vw, 24rem);
    background: linear-gradient(
      90deg,
      var(--navy) 0%,
      oklch(0.28 0.05 240 / 0.9) 14%,
      oklch(0.28 0.05 240 / 0.58) 36%,
      oklch(0.28 0.05 240 / 0.24) 58%,
      oklch(0.28 0.05 240 / 0.07) 78%,
      transparent 100%
    );
  }

  .hero--landscape .hero__blend {
    background:
      linear-gradient(
        90deg,
        var(--navy-deep) 0%,
        var(--navy-deep) clamp(18%, 22vw, 28%),
        oklch(0.2 0.04 240 / 0.9) clamp(30%, 34vw, 38%),
        oklch(0.2 0.04 240 / 0.62) clamp(40%, 46vw, 48%),
        oklch(0.2 0.04 240 / 0.36) clamp(50%, 56vw, 56%),
        oklch(0.2 0.04 240 / 0.16) clamp(60%, 66vw, 66%),
        oklch(0.2 0.04 240 / 0.05) clamp(70%, 74vw, 76%),
        transparent clamp(82%, 88vw, 92%)
      ),
      linear-gradient(
        180deg,
        transparent 55%,
        oklch(0.99 0.005 85 / 0.28) 76%,
        var(--bg) 100%
      );
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.btn--ghost {
  color: oklch(0.98 0.005 85);
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.22);
}

.btn--ghost:hover {
  background: oklch(1 0 0 / 0.16);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn--stack {
  flex-direction: column;
  gap: 0.2rem;
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.2;
  text-align: center;
}

.btn__line {
  display: block;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 800;
}

.btn__sub {
  display: block;
  font-size: clamp(0.7rem, 1.4vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.hero .btn--stack .btn__price {
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  font-weight: 800;
}

.hero .btn--stack .btn__vat {
  font-size: clamp(0.55rem, 2vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.btn--block {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}

/* Abwechselnde Flächen – nie zwei gleiche Hintergründe hintereinander */
.section--surface {
  background: var(--surface);
}

.section--canvas {
  background: var(--bg);
}

.section--gray {
  background: var(--section-gray);
}

.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: oklch(0.98 0.005 85);
}

.section-kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.section-title.light {
  color: oklch(0.98 0.005 85);
}

.light-muted {
  color: oklch(0.9 0.02 85 / 0.75);
  margin: 0 0 2rem;
}

.anmeldung__panel {
  text-align: center;
}

.anmeldung__title {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: oklch(0.98 0.005 85);
}

.anmeldung__title-vat {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: oklch(0.95 0.02 85 / 0.9);
  vertical-align: middle;
}

.anmeldung__layout {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.anmeldung__lead {
  display: flex;
  justify-content: center;
}

.anmeldung__pitch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  max-width: 100%;
}

.anmeldung__copy {
  flex: 0 0 auto;
  max-width: 36ch;
  margin-inline: auto;
  text-align: center;
}

.anmeldung__intro {
  margin: 0;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  color: oklch(0.95 0.02 85 / 0.9);
  text-wrap: balance;
}

.anmeldung__limit {
  margin: clamp(0.9rem, 2.2vw, 1.35rem) 0 0;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: oklch(0.98 0.005 85);
  text-wrap: balance;
}

.anmeldung__spots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  margin: 0;
  padding: 0;
}

.anmeldung__spots--badge {
  flex: 0 0 auto;
  padding: 0.75rem 1.1rem 0.85rem;
  min-width: 7.5rem;
  background: oklch(1 0 0 / 0.07);
  border: 2px solid oklch(0.82 0.1 85 / 0.45);
  border-radius: var(--radius-sm);
  box-shadow:
    0 12px 32px oklch(0 0 0 / 0.24),
    inset 0 1px 0 oklch(1 0 0 / 0.12);
  transform: rotate(-2.5deg);
}

.anmeldung__spots-num {
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
}

.anmeldung__spots-label {
  font-size: clamp(0.72rem, 1.3vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: oklch(0.9 0.02 85 / 0.82);
}

.anmeldung__form-block {
  text-align: left;
}

.anmeldung__form-head {
  margin: 0 0 clamp(0.85rem, 2vw, 1.1rem);
  padding-top: 0;
  border-top: none;
}

.anmeldung__form-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: oklch(0.98 0.005 85);
}

.anmeldung__form-sub {
  margin: 0.35rem 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.02rem);
  line-height: 1.4;
  color: oklch(0.9 0.02 85 / 0.8);
}

#anmeldung .form-grid {
  text-align: left;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .anmeldung__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
    align-items: stretch;
  }

  .anmeldung__lead {
    justify-content: center;
    align-items: center;
    padding: clamp(0.35rem, 1.5vw, 0.75rem) clamp(0.5rem, 2vw, 1rem);
  }

  .anmeldung__pitch {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    width: 100%;
    max-width: 26rem;
  }

  .anmeldung__copy {
    flex: none;
    max-width: 22rem;
  }

  .anmeldung__intro,
  .anmeldung__title-vat {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
  }

  .anmeldung__limit {
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  }

  .anmeldung__spots--badge {
    padding: 0.9rem 1.35rem 1rem;
    min-width: 9rem;
    transform: rotate(-3deg);
  }

  .anmeldung__spots-num {
    font-size: clamp(3rem, 5.5vw, 4rem);
  }

  .anmeldung__spots-label {
    font-size: clamp(0.78rem, 1.2vw, 0.9rem);
    letter-spacing: 0.08em;
  }

  .anmeldung__form-block {
    padding-left: clamp(1.35rem, 3vw, 2rem);
    border-left: 1px solid oklch(1 0 0 / 0.15);
  }
}

/* —— Pull-Quote (unter Hero) —— */
.section--quote {
  padding-block: var(--section-pad-y);
  overflow: visible;
}

.section--quote .wrap {
  overflow: visible;
}

.pull-quote {
  position: relative;
  margin: 0 auto;
  padding: var(--section-inner-pad-y) clamp(2.5rem, 6vw, 3.75rem);
  width: min(100%, clamp(42rem, 92vw, 56rem));
  max-width: none;
  border: none;
  text-align: center;
  overflow: visible;
}

.pull-quote::before,
.pull-quote::after {
  position: absolute;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.85;
  color: oklch(0.28 0.05 240 / 0.13);
  pointer-events: none;
  user-select: none;
}

.pull-quote::before {
  content: "\201E";
  top: clamp(-0.85rem, -3vh, -0.45rem);
  left: clamp(-1.75rem, -4vw, -0.65rem);
  font-size: clamp(3.5rem, 10vw, 6.25rem);
}

.pull-quote::after {
  content: "\201C";
  right: clamp(-1.75rem, -4vw, -0.65rem);
  bottom: clamp(-0.95rem, -3vh, -0.5rem);
  font-size: clamp(3.1rem, 9vw, 5.75rem);
}

.pull-quote__setup,
.pull-quote__punch {
  position: relative;
  z-index: 1;
}

.pull-quote__setup {
  margin: 0;
  font-size: clamp(0.95rem, 1.65vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}

.pull-quote__punch {
  margin: clamp(0.65rem, 1.5vh, 0.9rem) 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

@media (min-width: 901px) {
  .pull-quote__setup,
  .pull-quote__punch {
    white-space: nowrap;
  }
}

.pull-quote__punch strong {
  color: var(--navy-deep);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem;
  text-wrap: balance;
}

/* —— Split: Bild links volle Spalte (Nutzen) —— */
.section--split-full {
  padding: 0;
  background: var(--section-gray);
}

.split-full {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  min-height: clamp(16rem, 30vw, 24rem);
}

.split-full__media {
  position: relative;
  margin: 0;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.65rem, 1.8vw, 1.1rem) clamp(1rem, 2.5vw, 1.5rem);
  background: linear-gradient(165deg, oklch(0.14 0.02 240) 0%, oklch(0.08 0.01 240) 100%);
  overflow: hidden;
}

.split-full__frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  background: oklch(0.08 0.01 240);
}

.split-full__frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(22rem, 58vh);
  vertical-align: middle;
}

/* Verlauf: oben nur am Fot Rand, unten + rechts; links frei für Motiv-Text */
.split-full__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      oklch(0.08 0.01 240) 0%,
      oklch(0.08 0.01 240 / 0.7) 4%,
      transparent 12%
    ),
    linear-gradient(
      to top,
      oklch(0.08 0.01 240) 0%,
      oklch(0.08 0.01 240 / 0.9) 10%,
      transparent 24%
    ),
    linear-gradient(
      to left,
      oklch(0.08 0.01 240) 0%,
      oklch(0.08 0.01 240 / 0.88) 6%,
      transparent 18%
    );
}

.split-full__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  background: var(--section-gray);
  padding-block: var(--section-pad-y);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.split-full__inner {
  width: min(100%, 30rem);
  margin-inline: auto;
  padding-block: var(--section-inner-pad-y);
}

.split-full__inner .section-title {
  margin: 0;
}

.split-full__inner .flow-list {
  margin-top: 1rem;
  gap: 0.7rem;
}

.split-full__inner .takeaway {
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
}

@media (min-width: 901px) {
  .split-full__inner .takeaway {
    white-space: nowrap;
  }

  /* Nutzen: gleiche Spalten, Schräge via SVG-Clip (nur Desktop) */
  #nutzen .split-full {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
    align-items: stretch;
    min-height: clamp(16rem, 30vw, 24rem);
  }

  #nutzen .split-full__media {
    background: var(--section-gray);
    align-items: center;
    justify-content: center;
    padding-block: clamp(1.35rem, 3.2vw, 2.1rem);
    padding-inline: 0;
    overflow: visible;
    z-index: 2;
  }

  #nutzen .split-full__frame {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: clamp(16rem, 32vw, 24rem);
    margin: 0;
    line-height: 0;
    overflow: hidden;
    background: oklch(0.08 0.01 240);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    filter: none;
  }

  #nutzen .split-full__frame img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    min-height: 0;
    margin: 0;
    object-fit: cover;
    object-position: 42% 24%;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
  }

  #nutzen .split-full__fade {
    display: none;
  }

  #nutzen .split-full__content {
    position: relative;
    z-index: 0;
    justify-content: flex-start;
    align-items: center;
    margin-inline-start: 0;
    padding-block: clamp(1.35rem, 3.2vw, 2.1rem);
    /* Basis + ca. 3 Buchstabenbreiten der Überschrift (section-title) */
    --nutzen-title-size: clamp(1.85rem, 4vw, 2.6rem);
    padding-inline-start: calc(
      clamp(0.85rem, 2vw, 1.35rem) + 3 * 0.5 * var(--nutzen-title-size)
    );
    padding-inline-end: clamp(1.25rem, 3vw, 2.5rem);
  }

  #nutzen .split-full__inner {
    width: min(100%, 30rem);
    margin-inline: 0;
    max-width: none;
  }

  /* Zielgruppe: Spiegel zu Nutzen — Text links, Bild rechts mit Schräge (nur Desktop) */
  #zielgruppe .split-full {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
    align-items: center;
    min-height: 0;
  }

  #zielgruppe .split-full__content {
    background: var(--bg);
    justify-content: flex-end;
    align-items: center;
    min-height: 0;
    z-index: 0;
    margin-inline-start: 0;
    --zielgruppe-pad-y: clamp(1.65rem, 3.75vw, 2.35rem);
    padding-block: var(--zielgruppe-pad-y);
    --zielgruppe-title-size: clamp(1.85rem, 4vw, 2.6rem);
    padding-inline-start: clamp(1.25rem, 3vw, 2.5rem);
    /* wie Nutzen: Abstand zur Schräge, Text Richtung Bild */
    padding-inline-end: calc(
      clamp(0.85rem, 2vw, 1.35rem) + 3 * 0.5 * var(--zielgruppe-title-size)
    );
  }

  #zielgruppe .split-full__inner {
    width: min(100%, 30rem);
    margin-inline: 0;
    max-width: none;
  }

  #zielgruppe .split-full__media {
    background: var(--bg);
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding-inline: 0;
    padding-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
    overflow: visible;
    z-index: 2;
  }

  #zielgruppe .split-full__frame {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: clamp(17rem, 33vw, 25.5rem);
    margin: 0;
    line-height: 0;
    overflow: hidden;
    background: oklch(0.08 0.01 240);
    /* Spiegel zu Nutzen: oben volle Breite, unten schräg eingezogen (linke Kante) */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    filter: none;
  }

  #zielgruppe .split-full__frame img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    min-height: 0;
    margin: 0;
    object-fit: cover;
    object-position: 50% 72%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  }

  #zielgruppe .split-full__fade {
    display: none;
  }
}

/* Text links (3/5), Bild rechts (2/5) — Zielgruppe */
.section--split-full--reverse {
  background: var(--bg);
}

.split-full--reverse {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  min-height: 0;
  align-items: stretch;
}

.section--split-full--reverse .split-full__content {
  background: var(--bg);
}

/* Motiv randlos in der Spalte (kein Cream-Streifen oben/unten) */
.split-full--reverse .split-full__media--plain {
  display: block;
  padding: 0;
  margin: 0;
  min-height: 100%;
  height: 100%;
  background: none;
  overflow: hidden;
  line-height: 0;
}

.split-full--reverse .split-full__media--plain img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

/* —— Split (Standard) —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  margin: 0;
  overflow: visible;
}

.split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px oklch(0.28 0.05 240 / 0.12);
  object-fit: cover;
  object-position: center center;
}

/* Bild mit eingebettetem Text im Motiv – vollständig zeigen */
.split__media--crop-start img {
  object-fit: contain;
  object-position: left center;
  background: var(--surface-2);
}

/* Fließende Listen statt Kacheln */
.flow-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.flow-list li {
  padding-left: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  border-left: 2px solid var(--gold);
}

.flow-list--audience li {
  font-size: 1.05rem;
}

.flow-list--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 2rem;
}

.flow-list--inline li {
  border-left: none;
  padding-left: 0;
  font-weight: 500;
  color: var(--muted);
}

.flow-list--inline li::before {
  content: "· ";
  color: var(--gold);
  font-weight: 800;
}

.takeaway {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--muted);
}

/* —— Programm-Ablauf mit Symbolen (wie Roth-Seite) —— */
.timeline-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 0.5rem;
  align-items: start;
  position: relative;
}

@media (min-width: 901px) {
  .timeline-flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.25rem;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      transparent 0%,
      oklch(0.72 0.09 75 / 0.22) 12%,
      oklch(0.72 0.09 75 / 0.38) 50%,
      oklch(0.72 0.09 75 / 0.22) 88%,
      transparent 100%
    );
    pointer-events: none;
  }
}

.timeline-flow__day {
  width: min(100%, 20.5rem);
  margin-inline: auto;
  justify-self: center;
}

.timeline-flow__day-title {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.timeline-flow__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.timeline-flow__track::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), oklch(0.72 0.09 75 / 0.25));
  border-radius: 2px;
}

.timeline-slot {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.timeline-slot:last-child {
  padding-bottom: 0;
}

.timeline-slot__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 2px solid oklch(0.72 0.09 75 / 0.45);
  color: var(--navy);
  box-shadow: 0 4px 16px oklch(0.28 0.05 240 / 0.06);
  position: relative;
  z-index: 1;
}

.timeline-slot__icon svg {
  width: 22px;
  height: 22px;
}

.timeline-slot__body time {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.timeline-slot__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.timeline-slot__note {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.timeline-slot__note sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

/* —— Inklusive / Organisierst du —— */
.inclusive-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.inclusive-split__col {
  width: min(100%, 20.5rem);
  margin-inline: 0;
  border: none;
}

.inclusive-split__col:first-child {
  justify-self: end;
}

.inclusive-split__col:last-child {
  justify-self: start;
}

.inclusive-split__bridge {
  --inclusive-arrow-h: clamp(5rem, 22vh, 9.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  padding: 0 clamp(0.35rem, 1.2vw, 0.65rem);
  color: oklch(0.62 0.012 240);
}

.inclusive-split__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 0;
}

.inclusive-split__arrow {
  display: block;
  flex: none;
  width: clamp(4rem, 7.5vw, 6.75rem);
  height: var(--inclusive-arrow-h);
  margin: 0;
  filter: drop-shadow(0 2px 5px oklch(0.4 0.02 240 / 0.12))
    drop-shadow(0 6px 14px oklch(0.55 0.015 240 / 0.1));
}

/* Leeren SVG-Rand überlappen — Pfeile direkt untereinander */
.inclusive-split__arrow--right {
  margin-top: calc(var(--inclusive-arrow-h) * -0.42);
}

.inclusive-split__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.inclusive-split__col .flow-list {
  margin-top: 0;
  gap: 0.75rem;
}

.inclusive-split__list--placeholder li {
  color: var(--muted);
}

/* —— Referenzen —— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.1rem, 2.5vw, 1.35rem)
    clamp(1.25rem, 2.8vw, 1.5rem);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: oklch(0.98 0.005 85);
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-card__mark {
  display: block;
  margin: 0 0 0.65rem;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  user-select: none;
}

.testimonial-card__quote {
  margin: 0;
  flex: 1 1 auto;
  width: 100%;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: clamp(0.82rem, 1.35vw, 0.92rem);
  line-height: 1.55;
  color: oklch(0.96 0.01 85 / 0.95);
}

.testimonial-card__rule {
  width: min(100%, 12rem);
  height: 1px;
  margin: clamp(0.85rem, 2.2vw, 1.1rem) auto;
  background: oklch(0.98 0.005 85 / 0.28);
}

.testimonial-card__author {
  display: flex;
  width: 100%;
  align-self: stretch;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.testimonial-card__photo {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.testimonial-card__byline {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
  line-height: 1.35;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.testimonial-card__name,
.testimonial-card__place {
  display: inline;
  vertical-align: baseline;
}

.testimonial-card__name {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.testimonial-card__place {
  font-size: clamp(0.75rem, 1.2vw, 0.82rem);
  font-weight: 500;
  line-height: 1.35;
  color: oklch(0.9 0.02 85 / 0.88);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Referenzen: Mobile-Slider —— */
.testimonial-slider__viewport {
  position: relative;
}

.testimonial-slider__dots {
  display: none;
}

@media (max-width: 900px) {
  .testimonial-slider__viewport {
    margin-inline: calc(-1 * clamp(0.65rem, 3.5vw, 0.85rem));
    overflow: hidden;
  }

  .testimonial-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding-inline: clamp(0.65rem, 3.5vw, 0.85rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonial-slider__track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-slider__track .testimonial-card {
    flex: 0 0 min(86vw, 20.5rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: auto;
  }

  .testimonial-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-bottom: 0.15rem;
  }

  .testimonial-slider__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: oklch(0.48 0.03 240 / 0.35);
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  }

  .testimonial-slider__dot.is-active {
    transform: scale(1.2);
    background: oklch(0.48 0.03 240 / 0.65);
  }

  .testimonial-slider__dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
}

/* —— Über Eric Adler (ein Block, ohne Kacheln) —— */
.about-eric {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  max-width: min(100%, 56rem);
  margin-inline: auto;
  text-align: left;
}

.about-eric__figure {
  position: relative;
  margin: 0;
  width: min(100%, 15rem);
}

.about-eric__figure::before {
  content: "";
  position: absolute;
  inset: auto auto -0.55rem -0.55rem;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--gold);
  z-index: 0;
}

.about-eric__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--surface);
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.about-eric__figure--placeholder .about-eric__photo {
  object-fit: contain;
  background: var(--surface-2);
}

.about-eric__content {
  display: grid;
  gap: 1rem;
}

.about-eric__lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.about-eric__content p {
  margin: 0;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  line-height: 1.65;
  color: var(--muted);
}

.about-eric__content p strong {
  color: var(--text);
  font-weight: 700;
}

.about-eric sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
  font-weight: 800;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

.about-eric__highlights {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
}

.about-eric__highlights li {
  position: relative;
  padding-left: 1rem;
  font-size: clamp(0.86rem, 1.3vw, 0.94rem);
  line-height: 1.45;
  color: var(--text);
  border-left: 2px solid var(--gold);
}

/* —— Form —— */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

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

.form-field span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: oklch(0.72 0.09 75 / 0.6);
  box-shadow: 0 0 0 4px oklch(0.72 0.09 75 / 0.15);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0.12rem 0 0;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent__text {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.form-consent__text a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#anmeldung .form-consent__text {
  color: oklch(0.9 0.02 85 / 0.88);
}

#anmeldung .form-consent__text a {
  color: var(--gold-bright);
}

#anmeldung .form-consent {
  margin-top: -0.15rem;
}

/* —— Formular-Bestätigung (Modal) —— */
body.has-modal {
  overflow: hidden;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.form-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.12 0.03 240 / 0.55);
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(34rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: oklch(0.98 0.005 85);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  outline: none;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.form-modal.is-visible .form-modal__dialog {
  transform: scale(1);
}

.form-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: oklch(1 0 0 / 0.08);
  color: oklch(0.98 0.005 85 / 0.85);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.form-modal__close:hover {
  background: oklch(1 0 0 / 0.14);
  color: var(--gold-bright);
}

.form-modal__title {
  margin: 0 0 1rem;
  padding-right: 2rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.form-modal__text {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.55;
  color: oklch(0.95 0.02 85 / 0.92);
}

.form-modal__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.9 0.02 85 / 0.65);
}

.form-modal__email {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--gold-bright);
  word-break: break-word;
}

.form-modal__hint {
  margin: 0;
  font-size: 0.88rem;
  color: oklch(0.9 0.02 85 / 0.7);
}

/* —— Price —— */
.price-card {
  display: inline-grid;
  gap: 0.35rem;
  padding: 0;
}

.price-card__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__amount {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.price-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card .btn {
  margin-top: 1rem;
}

/* —— FAQ —— */
.faq {
  display: grid;
  gap: 0.5rem;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  padding: 1.1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq__item p + p {
  margin-top: 0.65rem;
}

.faq__item a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq__item a:hover {
  color: var(--gold);
}

/* —— Danke-Seite —— */
.site-body--thank-you {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-body--thank-you .site-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site-body--thank-you .thank-you {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site-body--thank-you .bottombar {
  flex-shrink: 0;
  margin-top: auto;
}

.thank-you__banner {
  position: relative;
  min-height: clamp(10rem, 28vw, 16rem);
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.site-body--thank-you .thank-you__banner {
  flex: 0 0 auto;
  height: clamp(10rem, 30vh, 18rem);
  min-height: 0;
}

.thank-you__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      oklch(0.2 0.04 240 / 0.2) 0%,
      oklch(0.2 0.04 240 / 0.35) 55%,
      oklch(0.2 0.04 240 / 0.12) 82%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 62%,
      oklch(0.98 0.008 85 / 0.45) 82%,
      var(--bg) 100%
    );
}

.thank-you__body {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
}

.site-body--thank-you .thank-you__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: clamp(1.25rem, 3vh, 2rem) clamp(1rem, 4vw, 1.5rem);
}

.thank-you__title {
  margin: 0;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  text-wrap: balance;
}

.thank-you__event {
  margin: clamp(0.85rem, 2vw, 1.15rem) 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 700;
  color: var(--gold);
}

.thank-you__text {
  margin: clamp(1rem, 2.5vw, 1.35rem) auto clamp(1.5rem, 3vw, 2rem);
  max-width: 42rem;
  font-size: clamp(0.98rem, 1.6vw, 1.06rem);
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

.site-body--thank-you .thank-you__text {
  margin: clamp(0.75rem, 2vh, 1.15rem) auto clamp(1rem, 2.5vh, 1.5rem);
}

@media (max-width: 900px) {
  .site-body--thank-you .thank-you__banner {
    height: clamp(8rem, 30vh, 12rem);
  }

  .site-body--thank-you .thank-you__body {
    padding: 0.85rem clamp(1rem, 4vw, 1.25rem);
  }

  .site-body--thank-you .thank-you__title {
    font-size: clamp(1.4rem, 5.5vw, 1.75rem);
  }

  .site-body--thank-you .thank-you__event {
    margin-top: 0.65rem;
    font-size: 0.9rem;
  }

  .site-body--thank-you .thank-you__text {
    margin: 0.75rem auto 1rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

.btn--cta-long.btn--stack .btn__line {
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.35;
  text-wrap: balance;
  white-space: normal;
}

.cta-final .btn--cta-long {
  max-width: min(100%, 36rem);
  margin-inline: auto;
}

/* —— CTA —— */
.cta-final {
  background:
    radial-gradient(ellipse 100% 80% at 50% 120%, oklch(0.72 0.09 75 / 0.2), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: oklch(0.98 0.005 85);
}

.cta-final__intro,
.cta-final__line,
.cta-final__note {
  color: oklch(0.9 0.02 85 / 0.8);
}

.cta-final__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.cta-final__question {
  margin: 0.5rem 0 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta-final__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

/* —— Nach oben —— */
.scroll-top {
  position: fixed;
  right: clamp(0.85rem, 2.5vw, 1.35rem);
  bottom: calc(clamp(0.85rem, 2.5vw, 1.35rem) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 1px solid oklch(1 0 0 / 0.22);
  border-radius: 50%;
  background: var(--navy);
  color: oklch(0.98 0.005 85);
  box-shadow: 0 8px 24px oklch(0.2 0.04 240 / 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition:
    opacity 0.25s var(--ease),
    visibility 0.25s var(--ease),
    transform 0.25s var(--ease),
    background 0.2s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy-deep);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.scroll-top__icon {
  display: block;
}

/* —— Footer —— */
.bottombar {
  padding: 1.35rem 0 calc(1.35rem + env(safe-area-inset-bottom));
  background: var(--navy-deep);
  color: oklch(0.85 0.02 85 / 0.7);
  font-size: 0.85rem;
}

.bottombar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bottombar__legal {
  display: flex;
  gap: 1.25rem;
}

.bottombar__legal a {
  text-decoration: none;
  transition: color 0.2s;
}

.bottombar__legal a:hover {
  color: oklch(0.98 0.005 85);
}

/* —— Responsive (nur Mobil ≤900px, Desktop unverändert) —— */
@media (max-width: 900px) {
  html,
  .site-body {
    overflow-x: clip;
  }

  .section {
    padding-block: clamp(1.75rem, 4.5vw, 2.5rem);
  }

  .section--split-full {
    padding: 0;
  }


  #zielgruppe.section--split-full--reverse {
    padding: 0;
    margin-top: 0;
  }

  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .topbar__inner {
    min-height: 3.25rem;
  }

  .topbar__brand img {
    width: 48px;
    height: 48px;
  }

  .split-full {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-full__inner {
    width: 100%;
    max-width: none;
  }

  .split-full__content {
    padding-block: var(--section-pad-y);
    padding-inline: clamp(1rem, 5vw, 1.35rem);
  }

  .split-full__inner .takeaway {
    white-space: normal;
  }

  /* Nutzen: nur das Foto, ohne schwarze Box */
  #nutzen .split-full__media {
    min-height: auto;
    padding: 0;
    background: none;
    overflow: visible;
  }

  #nutzen .split-full__frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    background: transparent;
    line-height: 0;
    clip-path: none;
    -webkit-clip-path: none;
    overflow: visible;
  }

  #nutzen .split-full__frame img {
    position: static;
  }

  #nutzen .split-full__fade {
    display: none;
  }

  #nutzen .split-full__frame img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    object-fit: contain;
  }

  /* Zielgruppe: Bild zuerst, volle Breite (ohne Schräge) */
  #zielgruppe .split-full__content {
    order: 2;
  }

  #zielgruppe .split-full__media {
    order: 1;
    min-height: auto;
    padding: 0;
    margin-top: 0;
    background: none;
    overflow: visible;
  }

  #nutzen + #zielgruppe {
    margin-top: 0;
  }

  #zielgruppe .split-full__frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    background: transparent;
    line-height: 0;
    clip-path: none;
    -webkit-clip-path: none;
    overflow: visible;
  }

  #zielgruppe .split-full__fade {
    display: none;
  }

  #zielgruppe .split-full__frame img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
    clip-path: none;
    -webkit-clip-path: none;
  }

  .split,
  .split--reverse,
  .timeline-flow,
  .form-grid,
  .flow-list--inline {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  /* Zitat */
  .section--quote {
    padding-top: clamp(0.35rem, 1.5vw, 0.55rem);
    padding-bottom: clamp(1.75rem, 4.5vw, 2.5rem);
  }

  .pull-quote {
    padding: clamp(0.65rem, 2vw, 0.9rem) clamp(2rem, 8vw, 2.5rem) clamp(0.5rem, 1.5vw, 0.75rem);
    text-align: center;
  }

  .pull-quote::before {
    top: 0.1rem;
    left: clamp(0.15rem, 2vw, 0.5rem);
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .pull-quote::after {
    right: clamp(0.15rem, 2vw, 0.5rem);
    bottom: 0;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .pull-quote__setup,
  .pull-quote__punch {
    white-space: normal;
    text-wrap: pretty;
    text-align: center;
  }

  /* Programm */
  #programm.section {
    padding-top: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  #programm .section-head {
    margin-bottom: 1rem;
  }

  #programm .section-title {
    text-align: center;
  }

  .timeline-flow {
    gap: clamp(2rem, 7vw, 2.75rem);
    justify-items: center;
  }

  .timeline-flow__day {
    width: 100%;
    max-width: 22rem;
    text-align: left;
  }

  .timeline-flow__day-title {
    margin-bottom: 1.25rem;
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.35;
    text-align: center;
    color: var(--gold);
  }

  .timeline-flow__day {
    max-width: min(100%, 26rem);
  }

  /* Icon + Uhrzeit links, Titel + Text rechts (kompakter) */
  .timeline-slot {
    grid-template-columns: 3.5rem 1fr;
    column-gap: 0.75rem;
    row-gap: 0.1rem;
    padding-bottom: 1rem;
    align-items: start;
    text-align: left;
  }

  .timeline-slot__body {
    display: contents;
  }

  .timeline-slot__icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 40px;
    height: 40px;
  }

  .timeline-slot__icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-slot__body time {
    grid-column: 1;
    grid-row: 2;
    margin: 0.2rem 0 0;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .timeline-slot__title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .timeline-slot__note {
    grid-column: 2;
    grid-row: 2;
    margin: 0.12rem 0 0;
  }

  .timeline-flow__track::before {
    display: block;
    left: 27px;
  }

  .testimonial-grid:not(.testimonial-slider__track) {
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .about-eric {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .about-eric__figure {
    width: min(100%, 12.5rem);
    margin-inline: auto;
  }

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

  /* Inklusive */
  .inclusive-split {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 2.75rem);
  }

  .inclusive-split__bridge {
    display: none;
  }

  .inclusive-split__col:first-child,
  .inclusive-split__col:last-child {
    justify-self: center;
  }

  .inclusive-split__col {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .inclusive-split__title {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    text-align: center;
  }

  /* Nur Überschriften zentriert, Inhalt links */
  .hero__panel {
    text-align: left;
  }

  .hero__title {
    text-align: center;
  }

  .hero__meta {
    justify-content: flex-start;
  }

  .hero__actions {
    align-items: stretch;
  }

  .split-full__inner .section-title,
  #faq .section-title {
    text-align: center;
  }

  .anmeldung__title,
  .anmeldung__form-title {
    text-align: center;
  }

  .split-full__inner .takeaway {
    text-align: left;
  }

  .split-full__inner .flow-list li,
  .inclusive-split .flow-list li {
    text-align: left;
    border-left: 2px solid var(--gold);
    padding-left: 1.1rem;
  }

  .inclusive-split .flow-list--placeholder li {
    border-left-color: oklch(0.72 0.09 75 / 0.45);
  }

  .split-full__inner .flow-list li::before,
  .inclusive-split .flow-list li::before {
    content: none;
    display: none;
  }

  /* Anmeldung & Modal */
  .anmeldung__layout {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 3vw, 1rem);
  }

  .anmeldung__copy {
    flex: 0 0 auto;
    max-width: none;
  }

  .anmeldung__pitch {
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 1rem);
  }

  .anmeldung__limit {
    margin-top: 0.4rem;
  }

  .anmeldung__spots--badge {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .anmeldung__form-block {
    padding-left: 0;
    border-left: none;
  }

  .anmeldung__form-head {
    margin-top: 0;
    padding-top: clamp(0.75rem, 3vw, 1rem);
    border-top: 1px solid oklch(1 0 0 / 0.15);
    text-align: center;
  }

  .anmeldung__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .anmeldung__form-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }

  .form-modal {
    padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
    align-items: flex-end;
  }

  .form-modal__dialog {
    width: 100%;
    max-height: min(88vh, calc(100dvh - 1.5rem));
    padding: 1.35rem 1.15rem 1.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .form-modal.is-visible .form-modal__dialog {
    transform: none;
  }

  .form-modal__title {
    font-size: 1.45rem;
    padding-right: 1.75rem;
  }

  .form-modal__email {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  /* FAQ & CTA */
  .faq__item summary {
    padding: 1rem 2.25rem 1rem 0;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    line-height: 1.4;
  }

  .cta-final .btn--lg {
    width: 100%;
    max-width: 22rem;
  }

  .bottombar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .topbar__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
  }

  .topbar__toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--navy);
    border-radius: 999px;
  }

  .topbar__nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    min-width: min(16rem, 78vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: none;
  }

  .topbar__nav a {
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border-bottom: none;
    color: var(--navy-deep);
    text-shadow: none;
  }

  .topbar__nav a {
    color: var(--navy-deep);
    text-shadow: none;
  }

  .topbar__nav a:hover {
    color: var(--navy);
    background: oklch(0.72 0.09 75 / 0.1);
  }

  .topbar__nav.is-open {
    display: flex;
  }

  .hero {
    display: block;
    min-height: 0;
    margin-top: 0;
    padding-top: clamp(1rem, 3vw, 1.35rem);
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  }

  .hero__color,
  .hero__media,
  .hero__photo,
  .hero__blend {
    display: none;
  }

  .hero + .section--quote {
    margin-top: 0;
    background: var(--surface);
  }

  .hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: clamp(1.15rem, 4vw, 1.65rem) clamp(1rem, 4vw, 1.25rem) clamp(1.35rem, 4.5vw, 1.85rem);
    align-items: stretch;
  }

  .hero__panel {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
  }

  .hero__meta {
    justify-content: center;
  }

  .hero__coach {
    margin-top: clamp(1.15rem, 4vw, 1.5rem);
    padding-top: 0;
    font-size: clamp(0.62rem, 2.65vw, 0.76rem);
    letter-spacing: 0;
  }

  .hero__title,
  .hero__lead,
  .hero__sub {
    text-shadow: none;
  }

  .hero__title {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(1.45rem, 8vw, 2.15rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-align: center;
  }

  .hero__lead {
    max-width: none;
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.45;
  }

  .hero__meta {
    font-size: clamp(0.72rem, 3.2vw, 0.8rem);
    gap: 0.2rem 0.4rem;
    margin-bottom: 0.75rem;
  }

  .hero__sub {
    font-size: clamp(0.88rem, 3.5vw, 0.95rem);
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
  }

  .timeline-flow__day {
    max-width: 100%;
  }

  .inclusive-split {
    gap: 1.75rem;
  }

  .flow-list--audience li {
    font-size: 0.98rem;
  }
}
