/* Lokale Google Fonts */
@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Tap-Highlight entfernen */
button, a { -webkit-tap-highlight-color: transparent; }

:root {
  --ticker-height: 2.8rem; /* Reduced height for less dominance */
  --g900: #0d2618;
  --g800: #1a3d2e;
  --g700: #22502e;
  --g600: #2d6147;
  --g400: #4a8c68;
  --g100: #d8edd5;
  --g50:  #eef7ec;
  --o600: #c44d00;
  --o500: #e8610a;
  --o400: #f07830;
  --o100: #fde8d8;
  --white: #fafaf7;
  --cream: #f3f0e8;
  --ink:   #141410;
  --muted: #6a6a60;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: auto;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 5vw;
}
nav.scrolled {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,61,46,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 0.06em;
  color: var(--white); text-decoration: none;
  transition: color 0.3s; line-height: 1;
}
.nav-logo span { color: var(--o500); }
.nav-logo small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-top: 2px; line-height: 1.3;
}
nav.scrolled .nav-logo { color: var(--g800); }
nav.scrolled .nav-logo small { color: var(--ink); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--o500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--g800); }
nav.scrolled .nav-links a:hover { color: var(--g800); }
.nav-cta {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--o500); color: white;
  padding: 0.6rem 1.6rem; border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, opacity 0.2s ease;
}
.nav-cta:hover { background: var(--o600); transform: translateY(-1px); }
.nav-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--ticker-height));
  min-height: calc(100svh - var(--ticker-height));
  background: var(--g900);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 5vw clamp(4vh, 8vh, 12vh);
  background-image: url('./images/Hero-Bild.jpg');
  background-size: cover;
  background-position: center 85%;
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.07; }
.hero-line {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--g100);
  animation: lineSweep 8s ease-in-out infinite;
}
.hero-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 40%; animation-delay: 1.5s; }
.hero-line:nth-child(3) { top: 60%; animation-delay: 3s; }
.hero-line:nth-child(4) { top: 80%; animation-delay: 4.5s; }
@keyframes lineSweep {
  0%, 100% { opacity: 0; transform: scaleX(0); transform-origin: left; }
  30%, 70% { opacity: 1; transform: scaleX(1); }
}
.hero-bignumber {
  position: absolute; right: -2vw; bottom: -5vh;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18rem, 28vw, 38rem);
  line-height: 0.85; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  user-select: none; pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 5vw;
  width: 3px; height: 60vh;
  background: linear-gradient(to bottom, var(--o500), transparent);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,38,24,0.88) 0%, rgba(13,38,24,0.70) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 5rem; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 9rem);
  line-height: 0.98; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero h1 .accent { color: var(--o500); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.hero-sub-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-top: 2rem;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  max-width: 1200px;
}
.hero-sub {
  font-size: clamp(0.82rem, 0.9vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.75; max-width: 700px;
}
.hero-sub strong { color: white; font-weight: 500; }
.hero-btns { display: flex; gap: 1rem; flex-shrink: 0; align-self: flex-end; margin-left: auto; }
.btn-hero-primary {
  background: var(--o500); color: white;
  padding: clamp(0.7rem, 0.8vw, 1rem) clamp(1.5rem, 2vw, 2.5rem);
  font-size: clamp(0.72rem, 0.75vw, 0.85rem); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-hero-primary:hover { background: var(--o500); transform: translateY(-2px); }
.btn-hero-ghost {
  border: 1px solid rgba(255,255,255,0.8); color: rgba(255,255,255,0.95);
  padding: clamp(0.7rem, 0.8vw, 1rem) clamp(1.5rem, 2vw, 2.5rem);
  font-size: clamp(0.72rem, 0.75vw, 0.85rem); font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-hero-ghost:hover { border-color: white; color: white; background: rgba(255,255,255,0.07); }
.scroll-hint {
  position: absolute; right: 5vw; bottom: 8vh;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem; z-index: 2;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); writing-mode: vertical-rl;
}
.scroll-arrow {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--o500); overflow: hidden;
  min-height: var(--ticker-height);
  display: flex; align-items: center;
  padding: 0.8rem 0; white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tickerRoll 60s linear 1s infinite;
}
.ticker-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.92);
  margin: 0 2.5rem;
}
.ticker-inner span.dot { color: rgba(255,255,255,0.4); font-size: 0.6rem; vertical-align: middle; margin: 0 1rem; }
.ticker:hover .ticker-inner { animation-play-state: paused; }
@keyframes tickerRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
}

/* ─── STATEMENT ─────────────────────────────────────────────── */
.statement {
  padding: 4rem 5vw;
  background: var(--white);
}
.statement-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--o500); padding-top: 0.5rem;
}
.statement-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.6;
  color: var(--g800); letter-spacing: -0.01em;
}
.statement-text em { font-style: normal; color: var(--o500); }
.statement-text strong { font-weight: 700; }
.statement-boxes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4rem; margin-top: 0;
}
.statement-box {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 400; line-height: 1.7;
  color: var(--g800);
  border-top: 1px solid var(--g100);
  padding-top: 1.5rem;
}
.statement-box--mid em {
  font-style: italic; color: var(--o500);
}
.statement-box strong { font-weight: 700; }

/* ─── STATEMENT INTRO ─────────────────────────────────────────────── */
.statement-intro {
  padding: 4rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--g100);
}
.statement-intro .statement-question {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--o500);
  margin-top: 1rem;
}
.statement-intro .statement-bottom {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  max-width: 860px;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(26, 61, 46, 0.12);
}
.statement-intro .statement-sub {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--g700);
  margin-bottom: 0.9rem;
}
.statement-intro .statement-sub:last-child {
  margin-bottom: 0;
}

/* ─── SECTION BASE ─────────────────────────────────────────────── */
.section-header {
  display: block;
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.section-kicker {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--o500); margin-bottom: 1rem;
}
.section-title,
.offerings-bridge-title,
.ueber-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.section-title {
  color: var(--g800);
}
.section-link {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--g600); text-decoration: none;
  border-bottom: 1px solid var(--g400); padding-bottom: 2px;
  white-space: nowrap; transition: color 0.2s, border-color 0.2s;
}
.section-link:hover { color: var(--o500); border-color: var(--o500); }

/* ─── OPTION A ───────── */
.leistungen-alt { background: var(--cream); display: flow-root; padding-bottom: 3rem; }
.leistungen-alt-header { padding: 4rem 5vw 2rem; }
.la-intro-text { font-size: 0.9rem; font-weight: 300; color: var(--g800); line-height: 1.8; max-width: 800px; margin-top: 1rem; border-left: 3px solid var(--g800); padding-left: 1.2rem; }
.leistungen-intro { font-size: 0.9rem; font-weight: 400; color: var(--g800); line-height: 1.8; max-width: 800px; margin: 1rem 0 2rem; border-left: 3px solid var(--g100); padding-left: 1.2rem; }

/* ─── OPTION C ─────────────── */
.lc-mehr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 9.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--o500); background: none; border: 1px solid var(--o500); padding: 0.45rem 0.9rem; cursor: pointer; transition: background 0.2s, color 0.2s; margin-top: 0.5rem; font-family: 'Outfit', sans-serif; align-self: flex-start; }
.lc-mehr-btn:hover { background: var(--o500); color: white; }
.leistung-card:hover .lc-mehr-btn { border-color: white; color: white; }
.leistung-card:hover .lc-mehr-btn:hover { background: white; color: var(--o500); }
.lc-plus { font-size: 1rem; line-height: 1; transition: transform 0.3s; display: inline-block; }
.lc-mehr-btn.open .lc-plus { transform: rotate(45deg); }
.lc-expand { display: none; }
.lc-themes { list-style: none; padding: 0; margin-bottom: 1rem; }
.lc-themes li { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.7); padding: 0.3rem 0 0.3rem 1rem; position: relative; line-height: 1.5; }
.lc-themes li::before { content: '→'; position: absolute; left: 0; color: var(--o500); font-size: 0.7rem; top: 0.35rem; }
.lc-cta { display: inline-block; background: var(--o500); color: white; padding: 0.5rem 1.2rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; }

.lc-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 38, 24, 0.58);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lc-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lc-modal-dialog {
  width: min(760px, 100%);
  max-height: min(84vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(26, 61, 46, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.2rem;
  position: relative;
}

.lc-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--g800);
  margin: 0 2.5rem 1rem 0;
}

.lc-modal-helper {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--g700);
  margin: 0 0 1rem;
}

.lc-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: var(--g700);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lc-modal-close:hover {
  color: var(--o500);
}

.lc-modal .lc-themes {
  margin: 0 0 1rem;
}

.lc-modal .lc-themes li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--g700);
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-bottom: 1px solid rgba(26, 61, 46, 0.08);
}

.lc-modal .lc-themes li:last-child {
  border-bottom: none;
}

.lc-modal .lc-themes li::before {
  top: 0.55rem;
}

.lc-modal .lc-cta {
  margin-top: 0.8rem;
}

body.lc-modal-open {
  overflow: hidden;
}

/* ─── OPTON D ────────────────────────────────────────────── */
.leistungen { background: var(--cream); padding: 7rem 5vw 1rem 5vw; }
.leistungen .section-header {
  margin-bottom: 2rem;
  border-bottom: none;
  padding-bottom: 0;
}
.leistungen .leistungen-intro {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--g700);
  max-width: 860px;
  margin-top: 1rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  padding-top: 0.6rem;
  padding-left: 0;
  border-left: none;
  border-top: 1px solid rgba(26, 61, 46, 0.12);
}
.leistungen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.leistung-card {
  background: white; padding: 2.8rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.3s; cursor: default;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 100%;
}
.leistung-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--o500);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.leistung-card:hover { background: var(--g800); }
.leistung-card:hover::after { transform: scaleX(1); }
.leistung-card:hover .lc-num,
.leistung-card:hover .lc-title,
.leistung-card:hover .lc-text { color: white; }
.leistung-card:hover .lc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.leistung-card:hover .lc-arrow { color: var(--o500); }
.lc-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1;
  color: var(--g50); letter-spacing: 0.02em; margin-bottom: 1.5rem; transition: color 0.3s;
}
.lc-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 400;
  color: var(--g800); margin-bottom: 0.8rem; transition: color 0.3s;
}
.lc-text {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75;
  color: var(--g800); margin-bottom: 1.5rem; transition: color 0.3s;
}
.lc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.lc-tag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--g50); color: var(--g600); padding: 0.3rem 0.7rem;
  border-radius: 1px; transition: all 0.3s;
}
.lc-arrow { font-size: 1.3rem; color: var(--o500); display: block; transition: color 0.3s, transform 0.3s; }
.leistung-card:hover .lc-arrow { transform: translateX(6px); }

/* ─── OFFERINGS BRIDGE ───────────────────────────────────────── */
.offerings-bridge {
  background: var(--cream);
  padding: 4rem 5vw 3rem;
}

.offerings-bridge-title {
  color: var(--g800);
  margin: 0;
}

.offerings-bridge-text {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--g700);
  max-width: 860px;
  margin-top: 0.95rem;
  padding-top: 0.65rem;
  border-top: none;
}

/* ─── TRAINER BANNER ─────────────────────────────────────────── */
.leistungen-alt .trainer-banner { margin: 2rem 5vw 0; border-radius: 2px; }
.leistungen-alt .ndr-banner { margin: 2rem 5vw 0; border-radius: 2px; }
.trainer-banner { background: var(--g800); padding: 4rem 5vw; display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: center; margin-top: 2px; }
.trainer-banner-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 0.95; letter-spacing: 0.02em; color: white; margin: 0.8rem 0 1.2rem; }
.trainer-banner-desc { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.5rem; max-width: 500px; }
.trainer-banner-link { display: inline-block; background: var(--o500); color: white; padding: 0.8rem 2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.trainer-banner-link:hover { background: var(--o500); }
.trainer-banner-right { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); padding: 2.5rem; text-align: center; border-radius: 2px; }
.trainer-banner-badge-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.06em; color: var(--o500); margin-bottom: 0.8rem; }
.trainer-banner-badge-text { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── NICHT DAS RICHTIGE BANNER ──────────────────────────────── */
.ndr-banner { background: var(--o500); padding: 4rem 5vw; margin-top: 2px; }
.ndr-banner-content { max-width: 700px; }
.ndr-banner-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 1; letter-spacing: 0.03em; color: white; margin-bottom: 0.8rem; }
.ndr-banner-text { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; }
.ndr-banner-btn { display: inline-block; border: 1.5px solid white; color: white; padding: 0.8rem 2rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.ndr-banner-btn:hover { background: white; color: var(--o500); }
.la-block { display: grid; grid-template-columns: 1fr 1fr; margin: 0 5vw; }
.la-block-rev { direction: rtl; }
.la-block-rev > * { direction: ltr; }
.la-img { min-height: 320px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.la-img-dark { background: var(--g800); }
.la-img-mid { background: var(--g600); }
.la-img-light { background: var(--g100); }
.la-img-darkest { background: var(--g900); }
.la-img-label { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-style: italic; position: relative; z-index: 1; }
.la-img-label-dark { color: rgba(26,61,46,0.4); }
.la-num-bg { font-family: 'Bebas Neue', sans-serif; font-size: 10rem; font-weight: 700; color: rgba(255,255,255,0.04); position: absolute; bottom: -1.5rem; right: 0.5rem; line-height: 1; pointer-events: none; user-select: none; }
.la-num-bg-dark { color: rgba(26,61,46,0.06); }
.la-content { padding: 3.5rem 4vw; background: white; display: flex; flex-direction: column; justify-content: center; }
.la-content-cream { background: var(--cream); }
.la-content-dark { background: var(--g900); }
.la-kicker { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--o500); margin-bottom: 0.6rem; }
.la-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 0.95; letter-spacing: 0.02em; color: var(--g800); margin-bottom: 1.2rem; }
.la-content-dark .la-title { color: white; }
.la-desc { font-size: 0.88rem; font-weight: 300; color: var(--g800); line-height: 1.75; margin-bottom: 1.2rem; max-width: 420px; }
.la-content-dark .la-desc { color: rgba(255,255,255,0.55); }
.la-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.la-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: var(--g50); color: var(--g600); padding: 0.25rem 0.6rem; border-radius: 1px; }
.la-tag-dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.la-mehr-btn { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--o500); background: none; border: 1px solid var(--o500); padding: 0.5rem 1rem; cursor: pointer; transition: background 0.2s, color 0.2s; align-self: flex-start; font-family: 'Outfit', sans-serif; }
.la-mehr-btn:hover { background: var(--o500); color: white; }
.la-mehr-btn-light { color: white; border-color: white; }
.la-mehr-btn-light:hover { background: white; color: var(--o500); }
.la-plus { width: 18px; height: 18px; border-radius: 50%; background: var(--o500); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; flex-shrink: 0; transition: transform 0.3s; }
.la-mehr-btn.open .la-plus { transform: rotate(45deg); }


/* ─── ÜBER MICH ─────────────────────────────────────────────── */
.ueber { display: grid; grid-template-columns: 5fr 4fr; scroll-margin-top: 4rem; }
.ueber-text {
  background: var(--g800); padding: 4rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
}
.ueber-text .section-kicker { color: var(--o500); margin-bottom: 1rem; }
.ueber-title { color: white; margin-bottom: 2rem; white-space: nowrap; }
.ueber-title span { color: var(--o500); }
.ueber-body {
  font-size: clamp(0.9rem, 1.1vw, 1rem); font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.85); max-width: 700px; margin-bottom: 1.5rem;
}  
.ueber-body strong { color: white; font-weight: 500; }
.ueber-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.ueber-qual-grid { margin-top: 0.5rem; }
.ueber-badges-inline { display: flex; gap: 3rem; margin: 0.5rem 0 2rem 0; justify-content: center; }
.ueber-badges-inline .ueber-badge { flex: 0.6; text-align: center; padding: 0.7rem 0.5rem; }
.ueber-body-bridge { font-size: clamp(0.9rem, 1.1vw, 1rem); font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.85); border-left: 3px solid var(--o500); padding-left: 1rem; margin-bottom: 2rem; }
.ueber-body-bridge strong { color: white; font-weight: 600; }
.ueber-qual-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--o500); margin-bottom: 0.8rem; }
.ueber-qual-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.ueber-qual-item { border: 1px solid rgba(255,255,255,0.12); padding: 0.6rem 0.8rem; }
.ueber-qual-name { font-size: 0.88rem; font-weight: 600; color: white; display: block; margin-bottom: 0.15rem; }
.ueber-qual-sub { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.4); }
.ueber-chip {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  padding: 0.4rem 1rem; border-radius: 1px;
}
.btn-ueber {
  display: inline-block; align-self: flex-start;
  background: var(--o500); color: white;
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-ueber:hover { background: var(--o500); transform: translateY(-2px); }
.ueber-img {
  background: var(--g600); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ueber-img-placeholder {
  width: 100%; height: 100%; aspect-ratio: 4 / 5; min-height: 500px; max-height: 750px;
  background: linear-gradient(160deg, var(--g600) 0%, var(--g900) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.ueber-img-label {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.3);
}
.ueber-badges-row {
  position: absolute; bottom: 2rem; left: 1rem; right: 1rem;
  display: flex; gap: 2.2rem;
}
.ueber-badges-row .ueber-badge {
  flex: 1; text-align: center;
  padding: 0.7rem 0.5rem;
}
.ueber-badge-wrap { position: absolute; bottom: 2rem; left: 2rem; }
.ueber-badge {
  background: transparent; color: white;
  border: 1px solid white;
  padding: 1.2rem 1.5rem; border-radius: 2px; display: inline-block;
}
.ueber-badge .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; display: block; }
.ueber-badge .small { font-size: 0.88rem; font-weight: 300; letter-spacing: 0; opacity: 1; }

/* ─── WERTE / ANSATZ ─────────────────────────────────────────── */
.werte { background: var(--white); padding: 6rem 5vw; }
.werte-subtitle { font-size: 1rem; font-weight: 600; color: var(--o500); margin: 1rem 0 1rem; }
.werte-zitat { border-left: 3px solid var(--o500); padding: 0.6rem 1.5rem; margin-bottom: 1.5rem; }
.werte-zitat-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--o500); line-height: 1.5; }
.werte-intro { font-size: 0.95rem; font-weight: 300; color: var(--g800); line-height: 1.9; max-width: 750px; margin-bottom: 1.5rem; }
.dim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.7rem; margin-top: 1rem; margin-bottom: 1.5em; }
.dim-card { background: transparent; border: 2px solid var(--g800); padding: 1.5rem 0.8rem; position: relative; overflow: hidden; cursor: default; transition: border-color 0.3s, transform 0.2s; text-align: center; }
.dim-card:hover { border-color: var(--o500); transform: translateY(-4px); }
.dim-icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }
.dim-name { font-size: 0.95rem; font-weight: 600; color: var(--g800); font-family: 'Outfit', sans-serif; margin-bottom: 0.4rem; }
.dim-text { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ─── QUOTE BREAK ───────────────────────────────────────────── */
.quote-break {
  background: var(--o500); padding: 6rem 5vw;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.quote-break::before {
  content: '"'; position: absolute; top: -4rem; left: 3vw;
  font-family: 'Bebas Neue', sans-serif; font-size: 30rem; line-height: 1;
  color: rgba(0,0,0,0.06); user-select: none;
}
.quote-break blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic; font-weight: 400; color: white;
  line-height: 1.45; text-align: center; max-width: 900px; position: relative; z-index: 1;
}
.quote-break blockquote span {
  display: block; margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif; font-style: normal;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.75;
}

/* ─── MENTALE STÄRKE ─────────────────────────────────────────── */
.mental { background: var(--cream); padding: 6rem 5vw; }
.mental-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem;
  align-items: stretch; margin-top: 2.5rem;
}
.mental-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; color: var(--o500); line-height: 1.6;
  border-left: 3px solid var(--o500); padding-left: 1.4rem;
  margin-bottom: 2rem;
}
.mental-intro {
  font-size: 0.95rem; font-weight: 300; color: var(--g800);
  line-height: 1.9; margin-bottom: 1.5rem;
}
.mental-list { list-style: none; padding: 0; margin: 0; }
.mental-list li {
  font-size: 0.92rem; font-weight: 300; color: var(--g800);
  padding: 0.75rem 0 0.75rem 1.4rem; position: relative;
  border-bottom: 1px solid rgba(26,61,46,0.06); line-height: 1.6;
  transition: padding-left 0.2s;
}
.mental-list li:last-child { border-bottom: none; }
.mental-list li:hover { padding-left: 1.8rem; }
.mental-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--o500);
  font-size: 0.8rem; top: 0.85rem; transition: transform 0.2s;
}
.mental-list li:hover::before { transform: translateX(2px); }
.mental-list li strong { color: var(--g800); font-weight: 500; }
.mental-right { display: flex; }
.mental-box {
  background: rgba(26,61,46,0.04); border: 2px solid var(--g800);
  padding: 2.5rem 2.5rem 2rem; position: relative; border-radius: 2px;
  width: 100%; height: 100%; display: flex; flex-direction: column;
  justify-content: center;
}
.mental-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--o500); border-radius: 2px 2px 0 0;
}
.mental-box-kicker {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--o500); margin-bottom: 1.8rem;
}
.mental-box-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(26,61,46,0.08);
}
.mental-box-item:last-child { border-bottom: none; padding-bottom: 0; }
.mental-box-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: rgba(232,97,10,0.5); line-height: 1; flex-shrink: 0; width: 2rem;
  text-align: center;
}
.mental-box-name { font-size: 0.95rem; font-weight: 600; color: var(--g800); margin-bottom: 0.3rem; }
.mental-box-text { font-size: 0.88rem; font-weight: 300; color: var(--g800); opacity: 0.7; line-height: 1.7; }

/* ─── ABLAUF ────────────────────────────────────────────────── */
.ablauf { background: var(--g900); padding: 7rem 5vw; }
.ablauf .section-title { color: white; }
.ablauf .section-kicker { color: var(--o500); }
.ablauf-steps {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.ablauf-steps::before {
  content: ''; position: absolute; top: 2rem; left: 3rem; right: 3rem;
  height: 1.5px; background: var(--o500); opacity: 0.6;
}
.ablauf-step { padding: 0 1rem; text-align: center; position: relative; }
.step-dot {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--g800); border: 1.5px solid var(--o500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--o500); line-height: 1;
  position: relative; z-index: 1; transition: background 0.3s;
}
.ablauf-step:hover .step-dot { background: var(--o500); color: white; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.step-text { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* ─── REFERENZEN ────────────────────────────────────────────── */
.referenzen { background: var(--white); padding: 7rem 5vw; text-align: center; }
.referenzen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.referenz-card {
  background: var(--cream); padding: 2.5rem;
  border-radius: 2px; position: relative;
  border-top: 3px solid var(--o500); transition: border-color 0.3s;
}
.referenz-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; line-height: 1.75; color: var(--ink);
  margin-bottom: 1.5rem;
}
.referenz-quote::before { content: '„'; color: var(--o500); font-size: 2rem; line-height: 0; vertical-align: -0.6rem; margin-right: 0.2rem; }
.referenz-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ─── KOOPERATIONEN ─────────────────────────────────────────── */
.kooperationen { background: var(--white); padding: 2rem 5vw 3rem; text-align: center; border-bottom: 1px solid rgba(26,61,46,0.08); }
.koop-intro {
  font-size: 0.95rem; font-weight: 300; color: var(--g800);
  line-height: 1.8; max-width: 600px; margin: 1.5rem auto 3rem;
}
.koop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1100px; margin: 4rem auto 0;
}
.koop-item {
  border: 2px solid var(--g800); padding: 1.2rem 1.5rem;
  border-radius: 2px; text-align: center;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}
.koop-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; background: var(--o500); border-radius: 0 0 2px 2px;
}
.koop-item:hover { border-color: var(--o500); transform: translateY(-4px); }
a.koop-item { text-decoration: none; color: inherit; }
.koop-name {
  font-size: 0.95rem; font-weight: 600; color: var(--g800);
  letter-spacing: 0.02em; margin-bottom: 0.5rem;
}
.koop-sub {
  font-size: 0.78rem; font-weight: 300; color: var(--muted);
  line-height: 1.5;
}

/* ─── KONTAKT ───────────────────────────────────────────────── */
.kontakt { display: grid; grid-template-columns: 1fr 1fr; }
.kontakt-left {
  background: var(--cream); padding: 7rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
}
.kontakt-left .section-title { color: var(--g800); margin-bottom: 1.5rem; }
.kontakt-left p { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--muted); max-width: 460px; margin-bottom: 2.5rem; }
.kontakt-items { display: flex; flex-direction: column; gap: 1.2rem; }
.kontakt-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.ki-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--o100); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ki-text small {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--o500); margin-bottom: 0.2rem;
}
.ki-text strong { font-size: 0.9rem; font-weight: 400; color: var(--ink); }
.kontakt-right { background: var(--g800); padding: 5rem 5vw; display: flex; flex-direction: column; justify-content: center; }
.kontakt-form-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 0.04em;
  color: white; margin-bottom: 1.5rem;
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.4rem;
}
.form-row input:not([type="checkbox"]), .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 0; color: white;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-row input:not([type="checkbox"]):focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--o500); }
.form-row textarea { height: 80px; resize: none; }
.form-row select option { background: var(--g800); }
.form-submit {
  width: 100%; margin-top: 1rem; background: var(--o500); color: white;
  border: none; padding: 1.1rem; font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--o500); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
/* Optional field marker */
.optional-mark { color: rgba(255,255,255,0.35); font-weight: 300; }
.form-optional-note {
  font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.35);
  margin-top: 0.8rem; margin-bottom: 0;
}

/* Consent checkbox */
.form-row-consent { margin-top: 1rem; }
.form-row-consent .consent-label {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.75rem;
  align-items: center;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4); line-height: 1.5; cursor: pointer;
  margin-bottom: 0;
}
.consent-label input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 2px;
  background: transparent; cursor: pointer;
  position: relative; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.consent-label input[type="checkbox"]:hover {
  border-color: rgba(255,255,255,0.6);
}
.consent-label input[type="checkbox"]:checked {
  background: var(--o500); border-color: var(--o500);
}
.consent-label input[type="checkbox"]:checked::after {
  content: '✓'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 700; color: white; line-height: 1;
}
.consent-label a { color: var(--o500); text-decoration: underline; text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }
.consent-label a:hover { color: white; }
.form-feedback {
  margin-top: 1rem; font-size: 0.85rem; font-weight: 400; line-height: 1.5;
  min-height: 1.2rem;
}
.form-feedback-success { color: #4ade80; }
.form-feedback-error { color: #f87171; }

/* ─── LEGAL PAGES (Impressum, Datenschutz) ──────────────────── */
.legal-page {
  max-width: 800px; margin: 0 auto; padding: 8rem 5vw 5rem;
  font-family: 'Outfit', sans-serif; color: var(--g800);
}
.legal-page h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.02em; margin-bottom: 2rem; color: var(--g800);
}
.legal-page h2 {
  font-size: 1.1rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 0.8rem;
  color: var(--g800);
}
.legal-page h3 {
  font-size: 0.95rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem;
  color: var(--g800);
}
.legal-page p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.8; margin-bottom: 1rem;
  color: var(--ink);
}
.legal-page ul {
  padding-left: 1.2rem; margin-bottom: 1rem;
}
.legal-page ul li {
  font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: var(--ink);
  margin-bottom: 0.3rem;
}
.legal-page a { color: var(--o500); text-decoration: underline; }
.legal-page a:hover { color: var(--g800); }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--g900); padding: 3rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.06em;
  color: white; text-decoration: none;
}
.footer-logo span { color: var(--o500); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
footer .copyright { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */

/* Small laptops (≤1366px, e.g. 13-14" screens) */
@media (max-width: 1366px) {
  /* Hero: keep original text breaks and button alignment */
  .hero::before { height: 45vh; }
  .hero-sub-row { justify-content: flex-start; }
  .hero-btns { margin-left: clamp(1rem, 2.2vw, 2rem); }

  /* Grids: collapse wider layouts */
  .statement-top, .statement-bottom { grid-template-columns: 1fr 2fr; gap: 3rem; }
  .la-block { grid-template-columns: 1fr 1fr; }
  .ueber { grid-template-columns: 1fr 1fr; }
  .ablauf-steps { grid-template-columns: repeat(5, 1fr); }
  .trainer-banner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Tablets & narrow viewports (≤1024px) */
@media (max-width: 1024px) {
  /* Hero */
  .hero-sub-row { gap: 0.8rem; }
  .hero-btns { margin-left: auto; align-self: flex-end; }
  .hero-content { padding-top: 3rem; }

  /* Nav */
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.72rem; }

  /* Grids: go to fewer columns */
  .statement-boxes { grid-template-columns: 1fr; gap: 2rem; }
  .statement-top, .statement-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .la-block { grid-template-columns: 1fr; }
  .la-block-rev { direction: ltr; }
  .la-img { min-height: 200px; }
  .ueber { grid-template-columns: 1fr; }
  .ueber-img-placeholder { min-height: 300px; }
  .dim-grid { grid-template-columns: 1fr 1fr; }
  .ablauf-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .ablauf-steps::before { display: none; }
  .mental-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mental-box { padding: 2rem; }
  .referenzen-grid { grid-template-columns: 1fr 1fr; }
  .koop-grid { grid-template-columns: 1fr 1fr; }
  .trainer-banner { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt { grid-template-columns: 1fr; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  /* Hero */
  .hero { align-items: center; padding: 0 5vw; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 4rem); }
  .hero-sub { max-width: 100%; }
  .hero-sub-row { margin-top: 1.5rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; }
  .hero-content { padding-top: 6rem; }
  .hero::before { display: none; }
  .scroll-hint { display: none; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }

  /* Sections */
  .leistungen, .werte, .mental, .ablauf, .referenzen { padding: 4rem 5vw; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .dim-grid { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .referenzen-grid { grid-template-columns: 1fr; }
  .ueber-qual-items { grid-template-columns: 1fr; }
  .koop-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Über mich Mobile */
  .ueber { padding: 3rem 5vw; }
  .ueber-title { white-space: normal; font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .ueber-badges-inline { gap: 1rem; flex-wrap: wrap; }
  .ueber-badges-inline .ueber-badge { flex: 1 1 40%; }
  .ueber-qual-items { grid-template-columns: 1fr; }
  .ueber-slideshow { min-height: 400px; }

  /* Hero Mobile */
  .desktop-br { display: none; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { font-size: 0.95rem; line-height: 1.7; max-width: 100%; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-top: 1.5rem; }
  .hero-btns { margin-left: 0; flex-direction: row; width: 100%; gap: 0.75rem; }
  .btn-hero-primary, .btn-hero-ghost { flex: 1; font-size: 0.72rem; padding: 0.75rem 0.5rem; text-align: center; }

  /* Hamburger */
  .nav-hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: none; border: none; cursor: pointer; padding: 0; z-index: 101; }
  .nav-hamburger span { display: block; height: 2px; width: 100%; background: var(--o500); border-radius: 2px; transition: all 0.3s; }
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Mobile menu */
  .nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--g800); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
  .nav-mobile-menu.is-open { display: flex; }
  .nav-mobile-link { font-family: "Bebas Neue", sans-serif; font-size: 2rem; letter-spacing: 0.08em; color: white; text-decoration: none; transition: color 0.2s; }
  .nav-mobile-link:hover { color: var(--o500); }
  .nav-mobile-cta { margin-top: 1rem; background: var(--o500); color: white; padding: 0.8rem 2.5rem; font-size: 1.2rem; }

  /* Footer */
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}


/* Hamburger hidden on desktop */
.nav-hamburger { display: none; }
.nav-mobile-menu { display: none; }
/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
