/* Marco Wenk Tennis - professional coaching site */

:root {
  --ink: #141414;
  --ink-soft: #3d3d3d;
  --muted: #6f6f6f;
  --line: rgba(20, 20, 20, 0.09);
  --paper: #f7f6f3;
  --paper-2: #efece6;
  --surface: #ffffff;
  --accent: #f0a500;
  --accent-hot: #e87722;
  --accent-deep: #c45f12;
  --ball: #d4e157;
  --ball-seam: #2a2a2a;
  --hero-overlay: linear-gradient(
    180deg,
    rgba(12, 10, 8, 0.28) 0%,
    rgba(12, 10, 8, 0.48) 42%,
    rgba(12, 10, 8, 0.86) 100%
  );
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4rem;
  --max: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.accent-word {
  color: var(--accent-hot);
  background: linear-gradient(
    120deg,
    var(--accent) 0%,
    var(--accent-hot) 40%,
    #ffd56a 50%,
    var(--accent-hot) 60%,
    var(--accent) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accentShimmer 5s ease-in-out infinite;
}

/* -- Emoji balls & motion -- */
.emoji-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
  user-select: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}

.emoji-ball--sm {
  font-size: 1.15rem;
  filter: none;
}

.emoji-ball--lg {
  font-size: 2.2rem;
}

.emoji-ball--spin {
  animation: ballSpin 4.5s linear infinite;
  display: inline-block;
}

.emoji-ball--bounce {
  animation: ballBounce 1.6s var(--ease) infinite;
  display: inline-block;
}

.emoji-ball--float {
  animation: ballFloat 3.8s ease-in-out infinite;
  display: inline-block;
}

.emoji-ball--rally {
  animation: ballRally 3.2s var(--ease) infinite;
  display: inline-block;
}

/* -- Ambient emoji trail -- */
.ball-trail {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.emoji-ball--a,
.emoji-ball--b,
.emoji-ball--c,
.emoji-ball--d {
  position: absolute;
  opacity: 0.45;
}

.emoji-ball--a {
  left: 8%;
  top: 18%;
  font-size: 1.1rem;
  animation: driftA 14s ease-in-out infinite;
}

.emoji-ball--b {
  right: 12%;
  top: 55%;
  font-size: 0.9rem;
  animation: driftB 18s ease-in-out infinite;
}

.emoji-ball--c {
  left: 70%;
  top: 78%;
  font-size: 0.8rem;
  opacity: 0.35;
  animation: driftC 16s ease-in-out infinite;
}

.emoji-ball--d {
  left: 42%;
  top: 12%;
  font-size: 0.85rem;
  opacity: 0.35;
  animation: driftD 20s ease-in-out infinite;
}

.serve-arc {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 6%;
  top: 32%;
  border: 1.5px dashed rgba(232, 119, 34, 0.22);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: serveArc 6s ease-in-out infinite;
  opacity: 0.7;
}

/* -- Nav -- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(247, 246, 243, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  animation: navIn 0.8s var(--ease) both;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__mark {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__name {
  font-size: 0.95rem;
}

.nav__links {
  display: none;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover {
  color: var(--accent-deep);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.05rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #1a1208;
  transition: transform 0.3s var(--ease), filter 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px -10px rgba(232, 119, 34, 0.7);
}

.nav__cta:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.05);
}

@media (min-width: 720px) {
  .nav__links {
    display: flex;
  }
}

/* -- Hero -- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?auto=format&fit=crop&w=2400&q=80")
      center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease) both;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero__court {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(90deg, transparent 11%, rgba(240, 165, 0, 0.18) 11.2%, rgba(240, 165, 0, 0.18) 11.5%, transparent 11.7%),
    linear-gradient(90deg, transparent 88.3%, rgba(240, 165, 0, 0.18) 88.5%, rgba(240, 165, 0, 0.18) 88.8%, transparent 89%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0.12) 51%, transparent 52%);
  opacity: 0.55;
  animation: courtPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero__ball {
  position: absolute;
  right: clamp(8%, 12vw, 16%);
  bottom: 28%;
  z-index: 2;
  width: auto;
  height: auto;
}

.hero__rally {
  position: absolute;
  right: 6%;
  bottom: 22%;
  width: min(38vw, 22rem);
  height: 7rem;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 70%, rgba(240, 165, 0, 0.35), transparent 0.35rem),
    radial-gradient(circle at 50% 25%, rgba(212, 225, 87, 0.45), transparent 0.28rem),
    radial-gradient(circle at 88% 65%, rgba(232, 119, 34, 0.4), transparent 0.32rem);
  opacity: 0;
  animation: rallyDots 3.2s var(--ease) infinite;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 0 4.5rem;
}

.hero__brand {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero__title {
  margin: 0 0 1.15rem;
  font-size: clamp(2.4rem, 7.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 14ch;
  color: #fff;
  animation: fadeUp 0.9s var(--ease) 0.22s both;
}

.hero__title .accent-word {
  -webkit-text-fill-color: unset;
  background: none;
  color: var(--accent);
  animation: none;
  text-shadow: 0 0 24px rgba(240, 165, 0, 0.35);
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 350;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  animation: fadeUp 0.9s var(--ease) 0.34s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.9s var(--ease) 0.46s both;
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.35rem;
  border-radius: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #1a1208;
  box-shadow: 0 10px 28px -14px rgba(232, 119, 34, 0.85);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240, 165, 0, 0.08);
}

.btn--lg {
  min-height: 3.25rem;
  padding: 0 1.75rem;
  font-size: 1.05rem;
}

/* -- Trust strip -- */
.trust {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0;
  display: grid;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2.75rem 0;
  }
}

.trust__item {
  text-align: left;
  animation: fadeUp 0.8s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

.trust__item:nth-child(1) { animation-delay: 0.05s; }
.trust__item:nth-child(2) { animation-delay: 0.12s; }
.trust__item:nth-child(3) { animation-delay: 0.19s; }
.trust__item:nth-child(4) { animation-delay: 0.26s; }

.trust__item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 350;
}

.trust__item strong {
  color: var(--ink);
  font-weight: 600;
}

.trust__num {
  margin: 0 !important;
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.1;
}

/* -- Stars -- */
.stars {
  display: inline-flex;
  gap: 0.18rem;
}

.stars span {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--accent);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: starPop 0.55s var(--ease) both, starTwinkle 2.8s ease-in-out infinite;
}

.stars span:nth-child(2) { animation-delay: 0.05s, 0.3s; }
.stars span:nth-child(3) { animation-delay: 0.1s, 0.6s; }
.stars span:nth-child(4) { animation-delay: 0.15s, 0.9s; }
.stars span:nth-child(5) { animation-delay: 0.2s, 1.2s; }

.stars--lg span {
  width: 1.15rem;
  height: 1.15rem;
}

/* -- Sections -- */
.section {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 0;
}

.section--intro {
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 2.5rem, 42rem);
}

/* -- Section bands for clearer rhythm -- */
.band {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 7vw, 5rem);
}

.band--soft {
  background:
    linear-gradient(180deg, rgba(239, 236, 230, 0.65) 0%, rgba(247, 246, 243, 0.2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band--training .section--intro {
  padding-top: clamp(4.5rem, 10vw, 7rem);
}

.band--training .offerings {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.band .section {
  padding-top: clamp(4.5rem, 10vw, 7rem);
}

.band .section + .features,
.band .infos,
.band .results {
  margin-bottom: 0.5rem;
}

/* -- Leistungspfad -- */
.path {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
}

@media (min-width: 900px) {
  .path {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
  }

  .path::before {
    content: "";
    position: absolute;
    top: 2.1rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hot));
    opacity: 0.45;
    z-index: 0;
  }
}

.path__step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  animation: fadeUp 0.75s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.path__step:nth-child(2) { animation-delay: 0.08s; }
.path__step:nth-child(3) { animation-delay: 0.16s; }

.path__emoji {
  font-size: 1.75rem;
  line-height: 1;
  display: inline-block;
  animation: emojiPop 2.8s ease-in-out infinite;
}

.path__step:nth-child(2) .path__emoji { animation-delay: 0.35s; }
.path__step:nth-child(3) .path__emoji { animation-delay: 0.7s; }

.path__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1208;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  box-shadow: 0 8px 20px -12px rgba(232, 119, 34, 0.8);
}

.path__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.path__body p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 350;
  line-height: 1.5;
}

.path__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.path__body li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding-left: 0.9rem;
  position: relative;
}

.path__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent-hot);
}

/* -- Individueller Planungsprozess -- */
.flow {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    position: relative;
  }

  .flow::before {
    content: "";
    position: absolute;
    top: 2.35rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hot));
    opacity: 0.35;
    z-index: 0;
  }
}

.flow__step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  justify-items: start;
  padding: 1.35rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  animation: fadeUp 0.75s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.flow__step:nth-child(2) { animation-delay: 0.06s; }
.flow__step:nth-child(3) { animation-delay: 0.12s; }
.flow__step:nth-child(4) { animation-delay: 0.18s; }

.flow__icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: emojiPop 2.8s ease-in-out infinite;
}

.flow__step:nth-child(2) .flow__icon { animation-delay: 0.25s; }
.flow__step:nth-child(3) .flow__icon { animation-delay: 0.5s; }
.flow__step:nth-child(4) .flow__icon { animation-delay: 0.75s; }

.flow__icon svg {
  display: none;
}

.flow__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

.flow__step h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.flow__step p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 350;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (min-width: 900px) {
  .flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.15rem;
    right: -0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid var(--accent-hot);
    border-right: 2px solid var(--accent-hot);
    transform: rotate(45deg);
    opacity: 0.7;
    z-index: 2;
  }
}

/* -- Wochenstruktur -- */
.week {
  margin-top: 2.5rem;
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  overflow-x: auto;
}

.week__player {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  margin: 0 0 1.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.week__player-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.week__player strong {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.week__player em {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 450;
}

.week__axis {
  display: grid;
  grid-template-columns: 2.6rem repeat(6, minmax(3.2rem, 1fr));
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding-left: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.04em;
}

.week__axis span:first-child {
  visibility: hidden;
}

.week__grid {
  display: grid;
  gap: 0.55rem;
  min-width: 34rem;
}

.week__day {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.55rem;
  align-items: stretch;
  min-height: 4.2rem;
}

.week__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.week__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
  border-radius: 0.75rem;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.035) 0,
      rgba(20, 20, 20, 0.035) calc(100% / 6 - 1px),
      transparent calc(100% / 6 - 1px),
      transparent calc(100% / 6)
    );
  border: 1px solid rgba(20, 20, 20, 0.05);
  min-height: 4.2rem;
}

.week__block {
  grid-column: var(--start) / span var(--span);
  align-self: center;
  margin: 0.35rem 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  display: grid;
  gap: 0.1rem;
  animation: fadeUp 0.7s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.week__block strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.week__block span {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}

.week__block em {
  font-style: normal;
  font-size: 0.72rem;
  opacity: 0.8;
  font-weight: 450;
}

.week__block--group {
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.92), rgba(232, 119, 34, 0.92));
  color: #1a1208;
  box-shadow: 0 10px 22px -16px rgba(196, 95, 18, 0.9);
}

.week__block--single {
  background: linear-gradient(135deg, #1f2a24, #0f1a14);
  color: #fff;
  box-shadow: 0 10px 22px -16px rgba(15, 26, 20, 0.85);
}

.week__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 450;
}

.week__dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  margin-right: 0.4rem;
  vertical-align: -0.05rem;
}

.week__dot--group {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
}

.week__dot--single {
  background: #1a241e;
}

/* -- Intro photos -- */
.intro-shots {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 28rem);
  margin: clamp(2.75rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.55rem;
  border-radius: 1rem;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 55%, #f6d27a 100%) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 18px 40px -28px rgba(196, 95, 18, 0.55),
    0 0 0 1px rgba(20, 20, 20, 0.04);
}

.intro-shots__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  border-radius: 0.65rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  opacity: 0;
  transform: translateY(1.1rem) scale(0.96);
  animation: shotRise 0.85s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

.intro-shots__item:nth-child(2) {
  animation-delay: 0.12s;
}

.intro-shots__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.intro-shots__item:last-child img {
  object-position: center 30%;
}

.intro-shots__item:hover img {
  transform: scale(1.04);
}

@media (min-width: 720px) {
  .intro-shots {
    width: min(100% - 2.5rem, 34rem);
    gap: 0.85rem;
    padding: 0.65rem;
  }
}

@keyframes shotRise {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* -- Coach photos & team -- */
.coach__profile {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.coach__photo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.coach__profile .section__title {
  margin-bottom: 0;
}

.coach__profile .eyebrow {
  margin-bottom: 0.35rem;
}

.team {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.team__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.team .section__text {
  margin-bottom: 1.75rem;
}

.team__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team__grid {
    grid-template-columns: repeat(2, minmax(0, 18rem));
  }
}

.team__card {
  margin: 0;
}

.team__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 0.85rem;
}

.team__card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.team__card em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 350;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section__text {
  margin: 0;
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 38rem;
  font-weight: 350;
}

/* -- Detail triggers -- */
.detail-triggers {
  width: min(100% - 2.5rem, var(--max));
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* -- Modals -- */
body.modal-open {
  overflow: hidden;
}

.modal {
  width: min(100% - 1.5rem, 52rem);
  max-height: min(90svh, 52rem);
  margin: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px -36px rgba(20, 20, 20, 0.55);
  overflow-x: hidden;
  overflow-y: auto;
}

.modal::backdrop {
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.modal__bar .eyebrow {
  margin: 0;
}

.modal__close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.modal__close:hover {
  background: #fff;
  border-color: var(--accent);
}

.modal__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.modal__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 350;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 40rem;
}

.modal .sessions {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 720px) {
  .modal .sessions {
    grid-template-columns: 1fr;
  }
}

.modal .path {
  margin-top: 0.5rem;
}

.modal .path--modal {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .modal .path--modal {
    grid-template-columns: 1fr;
  }
}

.modal .path--modal::before,
.modal .path--modal .path__step:not(:last-child)::after {
  display: none;
}

.modal .session__steps li,
.modal .path__step {
  animation: none;
}

/* -- Einblick in die Stunde -- */
.sessions {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.25rem);
}

@media (min-width: 960px) {
  .sessions {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.session h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.session__meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.session__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 350;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 28rem;
}

.session__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.session__steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  animation: fadeUp 0.7s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

.session__steps li:nth-child(2) { animation-delay: 0.04s; }
.session__steps li:nth-child(3) { animation-delay: 0.08s; }
.session__steps li:nth-child(4) { animation-delay: 0.12s; }
.session__steps li:nth-child(5) { animation-delay: 0.16s; }

.session__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  padding-top: 0.15rem;
}

.session__steps strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.session__steps span:not(.session__num) {
  display: block;
  font-size: 0.9rem;
  font-weight: 350;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* -- Offerings -- */
.offerings {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offering {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.25rem;
  row-gap: 0.35rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
  animation: fadeUp 0.75s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.offering:nth-child(1) { animation-delay: 0.04s; }
.offering:nth-child(2) { animation-delay: 0.1s; }
.offering:nth-child(3) { animation-delay: 0.16s; }
.offering:nth-child(4) { animation-delay: 0.22s; }

.offering:hover {
  transform: translateX(0.35rem);
}

.offering:hover .offering__icon {
  transform: rotate(-8deg) scale(1.12);
  animation: iconSwing 0.55s var(--ease);
}

.offering__icon {
  grid-row: 1 / span 2;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.65rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 0.15rem;
  transition: transform 0.4s var(--ease);
}

.offering__icon svg {
  display: none;
}

.offering h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.offering p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  font-weight: 350;
}

@media (min-width: 900px) {
  .offerings {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    border-top: none;
  }

  .offering {
    border-top: 1px solid var(--line);
  }

  .offering:nth-child(odd) {
    padding-right: 1rem;
  }
}

/* -- Feature cards -- */
.features {
  margin-top: 2.75rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .features {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.35rem;
  }

  .feature {
    grid-column: span 2;
  }

  .feature:nth-child(4),
  .feature:nth-child(5) {
    grid-column: span 3;
  }
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem 1.5rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s var(--ease);
  min-height: 100%;
  animation: fadeUp 0.75s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.feature:nth-child(1) { animation-delay: 0.04s; }
.feature:nth-child(2) { animation-delay: 0.1s; }
.feature:nth-child(3) { animation-delay: 0.16s; }
.feature:nth-child(4) { animation-delay: 0.1s; }
.feature:nth-child(5) { animation-delay: 0.18s; }

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 119, 34, 0.35);
  box-shadow: 0 18px 40px -28px rgba(196, 95, 18, 0.45);
}

.feature:hover .feature__icon {
  animation: iconSwing 0.55s var(--ease);
}

.feature__top {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.feature__top--logos {
  gap: 1rem;
  flex-wrap: wrap;
}

.feature__logo {
  width: auto;
  height: 2rem;
  max-width: 8.5rem;
  object-fit: contain;
}

.feature__logo--btv {
  height: 2.35rem;
  max-width: 10.5rem;
}

.feature__logo--aced {
  height: 1.15rem;
  max-width: 9rem;
}

.feature__logo--kirschbaum {
  height: 1.65rem;
  max-width: 7.5rem;
}

.feature__logo--msv {
  height: 1.85rem;
  max-width: 4.5rem;
}

.feature--verband {
  padding-top: 1.15rem;
}

.brand-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  margin: 0 0 0.35rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #f3f6f2 0%, #e8efe6 100%);
  border: 1px solid rgba(15, 46, 31, 0.08);
}

.brand-bar__logo {
  width: auto;
  height: 2.4rem;
  max-width: 7.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-bar__logo--btv {
  height: 2.55rem;
  max-width: 8.5rem;
}

.brand-bar__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-bar__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brand-bar__text strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.aside-brand {
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.aside-brand__logo {
  width: auto;
  height: 2.4rem;
  max-width: 8.5rem;
  object-fit: contain;
}

.feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  display: none;
}

.feature h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 350;
  line-height: 1.5;
  flex: 1;
}

.feature__partners {
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.feature__cta {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}

.feature:hover .feature__cta {
  color: var(--accent-hot);
}

/* -- Coach -- */
.coach {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 860px) {
  .coach {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }
}

.creds {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.creds li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 450;
  letter-spacing: -0.01em;
  animation: fadeRight 0.7s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}

.creds li:nth-child(1) { animation-delay: 0.02s; }
.creds li:nth-child(2) { animation-delay: 0.06s; }
.creds li:nth-child(3) { animation-delay: 0.1s; }
.creds li:nth-child(4) { animation-delay: 0.14s; }
.creds li:nth-child(5) { animation-delay: 0.18s; }
.creds li:nth-child(6) { animation-delay: 0.22s; }
.creds li:nth-child(7) { animation-delay: 0.26s; }
.creds li:nth-child(8) { animation-delay: 0.3s; }

.creds__icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.creds__icon svg {
  display: none;
}

.coach__aside {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 860px) {
  .coach__aside {
    padding: 0.25rem 0 0;
    border-top: none;
    border-left: 2px solid var(--accent);
    padding-left: clamp(1.25rem, 3vw, 2rem);
  }
}

.coach__aside-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

.coach__aside-label--spaced {
  margin-top: 2rem;
}

.coach__stat {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

.coach__stat--sm {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: -0.035em;
}

.coach__stat-sub {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 350;
}

/* -- Reviews -- */
.rating-bar {
  margin-top: 2.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 720px) {
  .rating-bar {
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
  }
}

.rating-bar__score p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating-bar__num {
  display: block;
  font-size: clamp(3rem, 7vw, 4.25rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-bar__meters {
  display: grid;
  gap: 0.55rem;
}

.meter {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.meter i {
  display: block;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.08);
  position: relative;
  overflow: hidden;
}

.meter i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  animation: meterFill 1.2s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.reviews {
  margin-top: 2.5rem;
  display: grid;
  gap: 0;
}

.review {
  margin: 0;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.review:first-child {
  border-top: 1px solid var(--line);
}

.review blockquote {
  margin: 1rem 0 1.35rem;
}

.review blockquote p {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--ink);
  max-width: 42rem;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: #1a1208;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
}

.review figcaption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.review figcaption em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 350;
  margin-top: 0.1rem;
}

@media (min-width: 900px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2.5rem;
  }

  .review {
    border-top: 1px solid var(--line);
    border-bottom: none;
    padding: 2rem 0 0;
  }

  .review:first-child {
    border-top: 1px solid var(--line);
  }

  .review + .review {
    border-left: 1px solid var(--line);
    padding-left: 2.5rem;
  }
}

/* -- Results -- */
.results {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .results {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.result h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.result__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.result__logo {
  width: auto;
  height: 2.35rem;
  max-width: 8.5rem;
  object-fit: contain;
}

.result__logo--dtb {
  height: 2.5rem;
  max-width: 9rem;
}

.result__logo--btv {
  height: 2.2rem;
  max-width: 8rem;
}

.result ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.result li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 450;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  padding-left: 1.1rem;
}

.result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

/* -- Praxis / Infos -- */
.infos {
  margin-top: 2.75rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.info {
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .infos {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    border-top: none;
  }

  .info {
    border-top: 1px solid var(--line);
  }

  .info--ages {
    grid-column: 1 / -1;
  }
}

.info h3 {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.info p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 350;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 36rem;
}

.info p strong {
  color: var(--ink);
  font-weight: 600;
}

.locations {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.locations li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 0.95rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.locations li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.locations__crest {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.locations__crest--olympia {
  border-radius: 0.55rem;
}

.locations__text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.locations strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.locations span {
  font-size: 0.95rem;
  font-weight: 350;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .info--locations {
    grid-column: 1 / -1;
  }
}

.ages {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.35rem;
}

.ages li {
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0 0.85rem 0 0;
  border-right: 1px solid var(--line);
  line-height: 1.2;
  animation: agePop 0.55s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.ages li:nth-child(1) { animation-delay: 0.02s; }
.ages li:nth-child(2) { animation-delay: 0.06s; }
.ages li:nth-child(3) { animation-delay: 0.1s; }
.ages li:nth-child(4) { animation-delay: 0.14s; }
.ages li:nth-child(5) { animation-delay: 0.18s; }
.ages li:nth-child(6) { animation-delay: 0.22s; }
.ages li:nth-child(7) { animation-delay: 0.26s; }
.ages li:nth-child(8) { animation-delay: 0.3s; }

.ages li:last-child {
  border-right: none;
  padding-right: 0;
}

.ages li:hover {
  color: var(--accent-hot);
}

/* -- Fokus-Warm-up -- */
.focus {
  margin-top: clamp(2rem, 5vw, 3rem);
  width: min(100%, 34rem);
}

.focus__hud {
  display: flex;
  gap: 2rem;
  margin: 0 0 1rem;
}

.focus__stat {
  margin: 0;
  display: grid;
  gap: 0.1rem;
}

.focus__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.focus__stat strong {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.focus__stage {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(#16221d, #16221d) padding-box,
    linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 55%, #f6d27a 100%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 40px -28px rgba(196, 95, 18, 0.55);
}

.focus__canvas {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  touch-action: none;
  cursor: pointer;
}

@media (min-width: 720px) {
  .focus__canvas {
    aspect-ratio: 4 / 3;
  }
}

.focus__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(9, 17, 14, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  overflow-y: auto;
}

.focus__overlay[hidden] {
  display: none;
}

.focus__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.focus__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.focus__text {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.85);
  max-width: 22rem;
}

.focus__result {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  width: min(100%, 22rem);
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.focus__result[hidden] {
  display: none;
}

.focus__result li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.focus__result strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.focus__result em {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-style: normal;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.focus__result span {
  font-size: 0.8rem;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.7);
}

.focus__hint {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 350;
  color: var(--muted);
}

.focus__legend {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.focus__legend li {
  display: grid;
  gap: 0.1rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
}

.focus__legend strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.focus__legend span {
  font-size: 0.88rem;
  font-weight: 350;
  color: var(--ink-soft);
}

.focus__note {
  margin: 1.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 350;
  line-height: 1.5;
  color: var(--muted);
  max-width: 34rem;
}

/* -- CTA -- */
.cta {
  position: relative;
  z-index: 1;
  margin: clamp(4.5rem, 10vw, 7.5rem) 0 0;
  padding: clamp(4.5rem, 10vw, 7rem) 1.25rem;
  background:
    radial-gradient(60% 90% at 85% 20%, rgba(240, 165, 0, 0.18), transparent 55%),
    radial-gradient(50% 80% at 10% 80%, rgba(232, 119, 34, 0.12), transparent 50%),
    linear-gradient(180deg, #ebe6de 0%, var(--paper) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  text-align: center;
  overflow: hidden;
  animation: ctaGlow 8s ease-in-out infinite;
}

.cta__ball {
  position: absolute;
  left: 12%;
  top: 28%;
  width: auto;
  height: auto;
  opacity: 0.95;
  font-size: 2rem;
}

.cta__ball--2 {
  left: auto;
  right: 14%;
  top: 58%;
  font-size: 1.35rem;
  opacity: 0.8;
  animation-delay: 0.35s;
}

.cta__inner {
  position: relative;
  max-width: 34rem;
  margin: 0 auto;
}

.cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cta p {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  font-weight: 350;
}

/* -- Footer -- */
.footer {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.footer__copy,
.footer__link {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 350;
}

.footer__link:hover {
  color: var(--accent-deep);
}

/* -- Animations -- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-0.85rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.06); }
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ballSpin {
  to { transform: rotate(360deg); }
}

@keyframes ballBounce {
  0%,
  100% {
    transform: translateY(0) scale(1, 1);
  }
  35% {
    transform: translateY(-42px) scale(1, 1);
  }
  50% {
    transform: translateY(0) scale(1.12, 0.82);
  }
  65% {
    transform: translateY(-18px) scale(1, 1);
  }
  80% {
    transform: translateY(0) scale(1.06, 0.9);
  }
}

@keyframes ballFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(18px, -22px) rotate(120deg);
  }
  70% {
    transform: translate(-10px, -8px) rotate(240deg);
  }
}

@keyframes ballRally {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1, 1);
  }
  20% {
    transform: translate(-70px, -55px) rotate(90deg) scale(1, 1);
  }
  35% {
    transform: translate(-120px, -10px) rotate(160deg) scale(1.08, 0.88);
  }
  55% {
    transform: translate(-40px, -70px) rotate(260deg) scale(1, 1);
  }
  75% {
    transform: translate(10px, -20px) rotate(320deg) scale(1.06, 0.9);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1, 1);
  }
}

@keyframes rallyDots {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
  20% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.85;
  }
  80% {
    opacity: 0.35;
  }
}

@keyframes serveArc {
  0%,
  100% {
    transform: rotate(-12deg) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: rotate(18deg) scale(1.08);
    opacity: 0.75;
  }
}

@keyframes accentShimmer {
  0%,
  100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes courtPulse {
  0%,
  100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}

@keyframes starPop {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes starTwinkle {
  0%,
  100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.25); transform: scale(1.08); }
}

@keyframes meterFill {
  from { width: 0; }
  to { width: var(--w, 0%); }
}

@keyframes driftA {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 120px); }
}

@keyframes driftB {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, -90px); }
}

@keyframes driftC {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -70px); }
}

@keyframes driftD {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 80px) scale(1.2); }
}

@keyframes iconSwing {
  0% { transform: rotate(0deg) scale(1); }
  40% { transform: rotate(-14deg) scale(1.1); }
  100% { transform: rotate(-8deg) scale(1.06); }
}

@keyframes emojiPop {
  0%,
  100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.08); }
}

@keyframes agePop {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.15);
  }
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px -14px rgba(232, 119, 34, 0.85);
  }
  50% {
    box-shadow: 0 12px 34px -10px rgba(232, 119, 34, 1);
  }
}

.btn--primary {
  animation: btnPulse 2.8s ease-in-out infinite;
}

.hero .btn--primary {
  animation: fadeUp 0.9s var(--ease) 0.46s both, btnPulse 2.8s ease-in-out 1.4s infinite;
}

.reveal {
  animation: fadeUp 0.9s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 18%;
}

.review {
  animation: fadeUp 0.8s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}

.review:nth-child(2) { animation-delay: 0.08s; }
.review:nth-child(3) { animation-delay: 0.16s; }

.result li {
  animation: fadeRight 0.55s var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.result li:nth-child(1) { animation-delay: 0.02s; }
.result li:nth-child(2) { animation-delay: 0.06s; }
.result li:nth-child(3) { animation-delay: 0.1s; }
.result li:nth-child(4) { animation-delay: 0.14s; }
.result li:nth-child(5) { animation-delay: 0.18s; }
.result li:nth-child(6) { animation-delay: 0.22s; }

@supports not (animation-timeline: view()) {
  .reveal,
  .trust__item,
  .offering,
  .feature,
  .creds li,
  .ages li,
  .review,
  .result li,
  .intro-shots__item,
  .session__steps li {
    animation: fadeUp 0.9s var(--ease) 0.05s both;
  }

  .intro-shots__item:nth-child(2) {
    animation-delay: 0.14s;
  }

  .meter i::after {
    animation: meterFill 1.2s var(--ease) 0.2s both;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__media,
  .hero__ball,
  .hero__rally,
  .cta__ball,
  .emoji-ball,
  .flow__icon,
  .path__emoji,
  .ball-trail,
  .serve-arc,
  .accent-word,
  .btn--primary {
    transform: none !important;
    animation: none !important;
  }

  .ball-trail {
    display: none;
  }

  .accent-word {
    background: none;
    -webkit-text-fill-color: var(--accent-hot);
    color: var(--accent-hot);
  }
}

@media (max-width: 720px) {
  .hero__ball,
  .hero__rally,
  .serve-arc {
    display: none;
  }

  .cta__ball {
    opacity: 0.45;
    left: auto;
    right: 8%;
    top: 12%;
  }

  .cta__ball--2 {
    display: none;
  }
}
