/* ═══════════════════════════════════════════════════════
   BAY & SAMONTE MARTIAL ARTS — style.css
   Design: Weiß/Schwarz, Grau-Akzente, Montserrat
   Fonts: self-hosted (DSGVO-konform, kein Google CDN)
   ═══════════════════════════════════════════════════════ */

/* Self-hosted fonts — no data leak to Google */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --accent:        #555555;
  --accent-dim:    rgba(80,80,80,0.10);
  --accent-hover:  #333333;

  /* Page colours (white theme) */
  --bg:         #ffffff;
  --bg-alt:     #f4f4f4;
  --bg-card:    #ffffff;
  --bg-dark:    #111111;   /* footer, page-hero dark strip */

  /* Text */
  --text:       #111111;
  --text-muted: #666666;
  --text-faint: #767676;  /* WCAG AA: 4.54:1 contrast on white */

  /* z-index scale (replaces 8 ad-hoc values) */
  --z-base:    1;
  --z-sticky:  100;
  --z-nav:     1000;
  --z-modal:   2000;
  --z-toast:   3000;

  /* Borders */
  --border:     rgba(0,0,0,0.09);

  /* Hero stays dark */
  --hero-bg:    #0a0a0a;
}

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #333;
  color: #fff;
  padding: 0.8rem 1.5rem;
  z-index: var(--z-toast);
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── FOCUS STYLES ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

/* Over hero: dark text/links */
nav .brand         { color: #f0f0f0; }
nav .sub           { color: rgba(255,255,255,0.55); }
nav .nav-links a   { color: rgba(255,255,255,0.65); }
nav .nav-links a:hover { color: #C8102E; }
nav .hamburger span{ background: #f0f0f0; }

/* After scroll / non-hero pages */
nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
nav.scrolled .brand         { color: var(--text); }
nav.scrolled .sub           { color: var(--text-muted); }
nav.scrolled .nav-links a   { color: var(--text-muted); }
nav.scrolled .nav-links a:hover { color: #C8102E; }
nav.scrolled .hamburger span{ background: var(--text); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
  transition: background 0.3s, padding 0.3s;
}
nav.scrolled .nav-logo-img {
  background: transparent;
  padding: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.nav-logo-text .sub {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a.active { color: var(--accent) !important; }

.nav-cta {
  background: #333333 !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #222222 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-nav);
  flex-direction: column;
  padding: 3rem 4vw;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO (index only, dark background) ─────────────────── */
#home {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* nav height */
  padding-bottom: 1rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 25% 15%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 75% 85%, rgba(85,85,85,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #050505 0%, #141414 50%, #050505 100%);
}
/* Hero video — already B&W from Veo, no extra filter needed */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* slight contrast boost for crisper silhouette */
  filter: contrast(1.08);
  pointer-events: none;
}
/* Asymmetric gradient overlay: heavy dark on left where text sits,
   transitions to fully transparent right so boxer + light source pop */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 30%,
      rgba(0,0,0,0.40) 55%,
      rgba(0,0,0,0.10) 80%,
      rgba(0,0,0,0) 100%
    ),
    /* Subtle top + bottom vignette for nav and stats readability */
    linear-gradient(180deg,
      rgba(0,0,0,0.40) 0%,
      transparent 18%,
      transparent 75%,
      rgba(0,0,0,0.50) 100%
    );
}
/* Subtle film-grain noise overlay — pure CSS, no image needed */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
  margin: auto 0; /* vertical centering in column flex */
  flex-shrink: 1;
}

/* Desktop layout: left-aligned hero — leaves video's right side
   (boxer + bright window) visually clean & unobstructed */
@media (min-width: 900px) {
  #home {
    align-items: flex-start;
  }
  .hero-content {
    text-align: left;
    margin-left: 6vw;
    margin-right: auto;
    padding-left: 0;
    max-width: 620px;
  }
  .hero-logo-mark {
    justify-content: flex-start;
  }
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  /* Stats also align left for consistency — use #home for higher specificity
     to beat the base .hero-stats { justify-content: center } rule */
  #home .hero-stats {
    justify-content: flex-start;
    padding-left: 6vw;
    gap: 3rem;
  }
  /* Google badge moves to left for consistency */
  #home .hero-google-review {
    align-self: flex-start;
    margin-left: 6vw;
  }
  /* Scroll-hint stays centered (arrow points down — natural center) */
  .scroll-hint {
    align-self: center;
  }
}

/* Mobile: shift video so boxer (positioned at ~70-85% horizontally in source)
   stays visible in portrait crop — slight right-bias to capture light source */
@media (max-width: 899px) {
  .hero-video {
    object-position: 75% center;
  }
  .hero-video-overlay {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.60) 35%,
        rgba(0,0,0,0.72) 70%,
        rgba(0,0,0,0.78) 100%
      );
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.05s forwards;
}

.hero-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.12s forwards;
}
.hero-logo-mark img,
.hero-logo-mark video {
  object-fit: contain;
  border-radius: 4px;
}
.hero-logo-mark img {
  width: 130px;
  height: 130px;
}
.hero-logo-mark video {
  display: none;
}
.hero-logo-mark canvas {
  width: 240px;
  height: auto;
}
.hero-logo-mark img {
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f0f0f0;
  opacity: 0;
  animation: fadeUp 0.5s 0.2s forwards;
}
.hero-title span { color: var(--accent); }

.hero-subtitle {
  margin-top: 1rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.5s 0.3s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s 0.4s forwards;
}

.btn-primary {
  display: inline-block;
  background: #333333;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #222222; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-1px); }

/* btn-ghost on white background */
.btn-ghost-dark {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.2);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost-dark:hover { border-color: var(--text); transform: translateY(-1px); }

.hero-stats {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 0.5rem 0 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0; /* never shrink stats */
  opacity: 0;
  animation: fadeUp 0.5s 0.5s forwards;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.8rem;
  color: #f0f0f0;
  line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-google-review {
  position: relative;
  z-index: var(--z-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.6s forwards;
  transition: border-color 0.2s;
}
.hero-google-review:hover { border-color: rgba(255,255,255,0.3); }
.hero-google-stars {
  color: #FBBC04;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.hero-google-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-hint {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.7s forwards;
  cursor: pointer;
}
.scroll-hint span {
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  animation: scrollPulse 2.5s infinite;
  display: inline-block;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); color: rgba(255,255,255,0.5); }
  50% { opacity: 1; transform: translateY(5px); color: #C8102E; }
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 9rem 4vw 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(80,80,80,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: var(--z-base); }
.page-hero-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'Space Grotesk', 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  letter-spacing: 0.04em;
  color: #f0f0f0;
}
.page-hero-title span { color: var(--accent); }
.page-hero-sub {
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 560px;
}

/* ── SECTION BASE ───────────────────────────────────────── */
section { padding: 4.5rem 4vw; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--accent); }

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ── STANDORTE ──────────────────────────────────────────── */
#standorte {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.standorte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2rem;
}

.standort-card {
  background: var(--bg-card);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.standort-map {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 3px;
  margin-top: 1.25rem;
  border: 1px solid var(--border);
}
.standort-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.4s;
}
.standort-card:hover .standort-map iframe {
  filter: grayscale(0);
}

.standort-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s;
}
.standort-card:hover::before { height: 100%; }
.standort-card:hover { background: #fafafa; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.standort-nr {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  position: absolute;
  top: 1rem; right: 1.5rem;
  user-select: none;
}

.standort-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.standort-city {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.standort-address {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.standort-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s, color 0.2s;
}
.standort-map-link:hover { opacity: 1; color: var(--accent); }
.standort-map-link::after { content: '→'; margin-left: 4px; }

/* ── PROGRAMM ───────────────────────────────────────────── */
#programm { background: var(--bg); }

.program-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}

.program-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.program-card {
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
  border: 1px solid var(--border);
}
.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.program-card:hover { background: #ebebeb; }
.program-card:hover::after { transform: scaleX(1); }

.program-icon { font-size: 1.8rem; line-height: 1; }

.program-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 3px;
  margin: -0.5rem 0 0;
}
.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.3s, transform 0.4s;
}
.program-card:hover .program-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.program-card.has-img { padding-top: 1.5rem; }

.program-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

.program-age {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.program-arrow {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.program-card:hover .program-arrow { opacity: 1; }

/* ── KURSPLAN ───────────────────────────────────────────── */
#kursplan {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kursplan-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}

.kursplan-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.kursplan-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
}

.kursplan-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.kursplan-table th {
  background: var(--bg-dark);
  color: #f0f0f0;
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
}

.kursplan-table th:first-child {
  width: 90px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.kursplan-table td {
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.85rem;
  min-height: 56px;
}

.kursplan-table td:first-child {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  background: var(--bg-alt);
  white-space: nowrap;
}

.kursplan-table tr:hover td:not(:first-child) { background: #fafafa; }

.kurs-slot {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kurs-slot-name {
  font-weight: 500;
  color: var(--text);
  font-size: 0.85rem;
}
.kurs-slot-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.kurs-slot-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 1px 5px;
  border-radius: 1px;
  margin-top: 2px;
  width: fit-content;
}

.kurs-slot-link {
  text-decoration: none;
  display: block;
}
.kurs-slot-link:hover .kurs-slot-name { color: var(--accent); }

.kurs-slot-merged {
  background: var(--bg-card) !important;
  vertical-align: middle !important;
  text-align: center;
}

.kursplan-standort-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
}
.kursplan-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.kursplan-tab.active {
  background: var(--bg-dark);
  color: #f0f0f0;
  border-color: var(--bg-dark);
}
.kursplan-tab:hover:not(.active) { border-color: var(--text-muted); color: var(--text); }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-left: 3px solid var(--accent);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.modal-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.modal-body {
  padding: 2rem 2.5rem 2.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.modal-body ul { list-style: none; margin: 1rem 0; }
.modal-body ul li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.modal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.modal-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.modal-cta:hover { background: var(--accent-hover); }

/* ── TRAINER ────────────────────────────────────────────── */
#trainer, .section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trainer-carousel-wrap {
  position: relative;
}
/* Arrows no longer needed — 3-column grid shows all trainers at once */
.trainer-arrow { display: none; }

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.trainers-grid .trainer-card {
  box-sizing: border-box;
}

.trainer-card {
  background: var(--bg-card);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.trainer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.trainer-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(0.3);
  transition: filter 0.3s;
}
.trainer-card:hover .trainer-photo { filter: grayscale(0); }

.trainer-more {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.trainer-card:hover .trainer-more { opacity: 1; }

.trainer-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.trainer-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trainer-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.trainer-bio {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.trainer-stat {
  background: var(--bg-alt);
  padding: 1.2rem 1rem;
  text-align: center;
}
.trainer-stat .num {
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}
.trainer-stat .num span { color: var(--accent); }
.trainer-stat .lbl {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── PREISE ─────────────────────────────────────────────── */
#preise { background: var(--bg); }

.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2rem;
}

.price-card {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.price-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.price-card.featured {
  background: #222222;
  border-color: #333333;
}
.price-card.featured .price-label,
.price-card.featured .price-type,
.price-card.featured .price-desc,
.price-card.featured .price-note,
.price-card.featured .price-period { color: rgba(255,255,255,0.75); }
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-badge { background: rgba(255,255,255,0.12); color: #fff; }

.price-badge {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.price-type {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-label {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.price-desc {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.price-note {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.prices-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-alt);
}
.prices-note a { color: var(--accent); text-decoration: none; }
.prices-note strong { color: var(--text); }

/* ── KONTAKT ────────────────────────────────────────────── */
#kontakt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 2rem;
  align-items: start;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2rem;
}
.contact-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-item-value { font-size: 1rem; color: var(--text); }
.contact-item-value a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--accent); }

.contact-standorte { display: flex; flex-direction: column; gap: 1rem; }

.contact-standort {
  padding: 1.5rem;
  background: var(--bg-card);
  border-left: 2px solid var(--border);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-standort:hover { border-left-color: var(--accent); }

.contact-standort-city {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.contact-standort-addr { font-size: 0.9rem; color: var(--text-muted); }

/* Form */
.form-group { margin-bottom: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--text-faint); }
select option { background: var(--bg-card); color: var(--text); }
textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.5rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

.form-success {
  display: none;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  color: var(--text);
  font-size: 0.9rem;
  margin-top: 1rem;
  background: var(--accent-dim);
}

/* ── MULTI-STEP FORM ──────────────────────────────────── */
.msf-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.msf-progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.msf-step-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}
.msf-step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.msf-hidden {
  display: none !important;
}

/* Interest cards grid */
.msf-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.msf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.3rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  user-select: none;
}
.msf-card:hover {
  border-color: var(--text-faint);
  transform: translateY(-1px);
}
.msf-card.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.msf-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.msf-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  text-align: center;
}

/* Navigation row */
.msf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.msf-back {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.msf-back:hover {
  color: var(--text);
}
.msf-btn-next {
  width: auto;
  padding: 1rem 2.5rem;
}

/* Error message */
.msf-error {
  color: var(--accent);
  font-size: 0.8rem;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}

/* ── KURS DETAIL PAGES ──────────────────────────────────── */
.kurs-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  margin-top: 2rem;
  align-items: start;
}

.kurs-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}
.kurs-body h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
}
.kurs-body p { margin-bottom: 1rem; }
.kurs-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.kurs-body ul li {
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.kurs-body ul li:last-child { border-bottom: none; }
.kurs-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.kurs-sidebar { position: sticky; top: 100px; }

.kurs-info-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.kurs-info-box h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.kurs-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.kurs-info-row:last-child { border-bottom: none; }
.kurs-info-row span:first-child { color: var(--text-muted); }
.kurs-info-row span:last-child { color: var(--text); font-weight: 500; }

.kurs-cta-box {
  background: var(--bg-dark);
  padding: 2rem;
  text-align: center;
}
.kurs-cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.kurs-cta-box .btn-primary { width: 100%; text-align: center; display: block; }

.kurs-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2rem;
}

/* ── TRAINER MODAL ──────────────────────────────────────── */
.trainer-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.trainer-modal-overlay.open { opacity: 1; pointer-events: all; }

.trainer-modal {
  background: var(--bg);
  max-width: 700px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s;
}
.trainer-modal-overlay.open .trainer-modal { transform: translateY(0); }

.trainer-modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1.5rem 0 0;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: var(--z-sticky);
  line-height: 1;
}
.trainer-modal-close:hover { color: var(--text); }

.trainer-modal-inner {
  padding: 3rem;
}

.trainer-modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 2rem;
  filter: grayscale(0.2);
}

.trainer-modal-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trainer-modal-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.trainer-modal-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.trainer-modal-text p { margin-bottom: 1rem; }
.trainer-modal-text ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}
.trainer-modal-text li {
  margin-bottom: 0.3rem;
}

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal-content ul {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 4vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #f0f0f0;
}
.footer-brand small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-top: 0.25rem;
}

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: #f0f0f0; }

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-social a:hover { color: #f0f0f0; }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.footer-copy a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-copy a:hover { color: rgba(255,255,255,0.7); }

.footer-signature {
  text-align: center;
  padding: 1rem 4vw 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 1.5rem;
}
.footer-signature a {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-signature a:hover {
  color: rgba(255,255,255,0.5);
}

/* ── INLINE UTILITY CLASSES (extracted from inline styles) ── */
.inline-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.inline-link:hover { color: var(--accent-hover); }

.inline-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.inline-icon-link:hover { color: var(--accent-hover); }

.inline-separator {
  margin: 0 0.8rem;
  color: var(--border);
}

.kursplan-footnote {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.price-currency { font-size: 1.5rem; }

.trainer-card.clickable { cursor: pointer; }
.price-card.clickable { cursor: pointer; }

.price-card.featured .trainer-more { color: rgba(255,255,255,0.7); }

/* ── MODAL UTILITY CLASSES (extracted from inline styles) ── */
.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.9rem 0;
}
.preise-modal-inner { padding: 3rem; }
.preise-modal-cta   { margin-top: 2rem; }

/* CTA section (extracted from inline styles) */
.cta-section {
  background: var(--bg-dark);
  padding: 6rem 4vw;
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section .section-label {
  color: rgba(255,255,255,0.4);
}
.cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #f0f0f0;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.cta-subline {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cta-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
}

/* Contact form helper (extracted from inline) */
.contact-info .section-title.size-sm { font-size: clamp(2rem, 4vw, 3rem); }
.contact-item-note {
  margin-top: 1rem;
}
.contact-item-note .contact-item-value {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-head {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-head .divider { margin-left: auto; margin-right: auto; }
.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.reviews-google-badge:hover {
  background: var(--bg);
  border-color: var(--accent);
}
.reviews-stars {
  color: #f5b400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.review-card .review-stars {
  font-size: 0.95rem;
  line-height: 1;
  color: #f5b400;
}
.review-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  gap: 0.5rem;
}
.review-author {
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}
.review-date {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.55rem;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
a.review-date:hover { color: var(--accent); }
.reviews-more-link {
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.reviews-more-link:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-card { padding: 1.4rem; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-head .divider { margin-left: auto; margin-right: auto; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  padding-right: 2.5rem;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 0 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  animation: faqSlide 0.25s ease-out;
}
.faq-answer p { margin: 0; }
.faq-answer a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-help {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.faq-help a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.faq-help a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-item summary { font-size: 0.9rem; padding: 1.1rem 0; padding-right: 2.5rem; }
}

/* ── FLOATING INSTAGRAM BUTTON ──────────────────────────── */
.floating-insta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Instagram gradient */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-insta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(220,39,67,0.4), 0 2px 6px rgba(0,0,0,0.16);
}
.floating-insta svg { display: block; }

/* On mobile the sticky CTA bar occupies the bottom edge — lift the
   Instagram button above it so they never overlap */
@media (max-width: 768px) {
  .floating-insta { bottom: calc(48px + 0.9rem); right: 1rem; width: 46px; height: 46px; }
}

@media print {
  .floating-insta { display: none !important; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Progressive enhancement: hidden state only applies when JS is active
   (html.js added inline in <head>). No JS → content stays fully visible. */
.fade-in {
  transition: opacity 0.7s, transform 0.7s;
}
.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.program-card, .standort-card, .price-card {
  transition: opacity 0.5s, transform 0.5s;
}
.js .program-card, .js .standort-card, .js .price-card {
  opacity: 0;
  transform: translateY(20px);
}
.program-card.visible, .standort-card.visible, .price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MICRO-INTERACTIONS ─────────────────────────────────── */

/* 3D Card tilt on hover (program cards) */
.program-card {
  transition: opacity 0.5s, transform 0.5s;
  will-change: transform;
}
.program-card:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(2deg) translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Magnetic button feel */
.btn-primary, .btn-ghost, .btn-ghost-dark, .nav-cta, .modal-cta {
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Standort card hover lift */
.standort-card {
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
}
.standort-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* Price card hover */
.price-card {
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Trainer card hover */
.trainer-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Nav link underline animation */
.nav-links a:not(.nav-cta)::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #C8102E;
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

/* Smooth image zoom on hover */
.program-img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.program-card:hover .program-img img {
  transform: scale(1.08);
}

/* Blog card image zoom */
.blog-card-img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

/* ── VIEW TRANSITIONS ──────────────────────────────────── */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: fade-out 0.15s ease-in;
}
::view-transition-new(root) {
  animation: fade-in 0.2s ease-out;
}
@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes fade-in-vt {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── PRINT STYLESHEET ──────────────────────────────────── */
@media print {
  nav, .mobile-menu, .hamburger, .sticky-mobile-cta,
  .scroll-hint, .hero-bg, .hero-grid,
  .modal-overlay, .trainer-modal-overlay, .preise-modal-overlay,
  .footer-social, .btn-primary, .btn-ghost, .btn-ghost-dark,
  .hero-google-review, .standort-map, .program-arrow { display: none !important; }

  body { background: #fff !important; color: #000 !important; font-size: 12pt; padding: 0; }
  section { padding: 1.5rem 0 !important; }
  #home { min-height: auto !important; height: auto !important; background: #fff !important; padding: 1rem 0 !important; }
  .hero-content { color: #000 !important; }
  .hero-title, .hero-stat .num { color: #000 !important; }
  .hero-subtitle, .hero-eyebrow, .hero-stat .label { color: #333 !important; }
  .hero-title span { color: #333 !important; }

  .page-hero { background: #fff !important; padding: 2rem 0 !important; }
  .page-hero-title, .page-hero-label { color: #000 !important; }
  .page-hero-sub { color: #333 !important; }

  .kursplan-table { font-size: 9pt; }
  .kursplan-table th { background: #eee !important; color: #000 !important; }
  .kurs-slot { border: 1px solid #ccc !important; }

  .price-card { border: 1px solid #ccc !important; break-inside: avoid; }
  .program-card { break-inside: avoid; }
  .trainer-card { break-inside: avoid; }

  footer { background: #fff !important; color: #000 !important; border-top: 1px solid #ccc; }
  footer a { color: #000 !important; }

  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  nav a[href]::after, footer a[href]::after, .nav-logo a::after { content: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

@media (max-width: 1200px) {
  .kurs-more-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .prices-grid   { grid-template-columns: repeat(2, 1fr); }
  .kursplan-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  .kurs-content { grid-template-columns: 1fr; gap: 3rem; }
  .kurs-sidebar { position: static; }
  .trainers-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-stats { gap: 2rem; }
  .hero-eyebrow { margin-bottom: 0.5rem; font-size: 0.55rem; }
  .hero-logo-mark { margin-bottom: 0.5rem; }
  .hero-logo-mark img,
  .hero-logo-mark video { width: 140px; height: auto; }
  .hero-subtitle { margin-top: 0.5rem; }
  .hero-actions { margin-top: 0.8rem; }
  .scroll-hint { padding-bottom: 0.8rem; }
  section     { padding: 3.5rem 4vw; }

  .standorte-grid  { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
  .trainers-grid .trainer-card {
    padding: 1.2rem 1.2rem 1rem;
  }
  .trainers-grid .trainer-card .trainer-header { gap: 0.8rem; margin-bottom: 0; }
  .trainers-grid .trainer-card .trainer-photo { width: 50px; height: 50px; }
  .trainers-grid .trainer-card .trainer-tag { font-size: 0.5rem; padding: 0.25rem 0.6rem; margin-bottom: 0.5rem; }
  .trainers-grid .trainer-card .trainer-name { font-size: 1.1rem; line-height: 1.1; }
  .trainers-grid .trainer-card .trainer-title { font-size: 0.65rem; margin-bottom: 0.8rem; }
  .trainers-grid .trainer-card .trainer-bio {
    font-size: 0.8rem; line-height: 1.5; margin-bottom: 1rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .trainers-grid .trainer-card .trainer-stats { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
  .trainers-grid .trainer-card .trainer-stat { padding: 0.6rem 0.3rem; }
  .trainers-grid .trainer-card .trainer-stat .num { font-size: 1.2rem; }
  .trainers-grid .trainer-card .trainer-stat .lbl { font-size: 0.5rem; }
  .trainers-grid .trainer-card .trainer-more { margin-top: 0.6rem; }
  .programs-grid   { grid-template-columns: repeat(2, 1fr); }
  .prices-grid     { grid-template-columns: repeat(2, 1fr); }
  .price-card      { padding: 1.5rem 1.2rem; }
  .price-badge     { margin-bottom: 1rem; font-size: 0.45rem; padding: 0.2rem 0.5rem; }
  .price-type      { font-size: 0.5rem; margin-bottom: 0.3rem; }
  .price-label     { font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.15; }
  .price-amount    { font-size: 1.7rem; }
  .price-period    { font-size: 0.6rem; }
  .price-desc      { font-size: 0.7rem; line-height: 1.5; }
  .price-note      { font-size: 0.55rem; }
  .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .form-row        { grid-template-columns: 1fr; }
  .msf-cards       { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .msf-card        { padding: 1rem 0.6rem; }
  .msf-card-icon   { font-size: 1.2rem; }
  .msf-card-label  { font-size: 0.6rem; }
  .program-intro   { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner    { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-links    { flex-wrap: wrap; gap: 1rem; }
  .footer-social   { margin-bottom: 0; }
  .kurs-more-grid  { grid-template-columns: repeat(2, 1fr); }

  /* ── KURSPLAN MOBILE DAY-TABS ───────────────── */
  .kursplan-wrapper .kursplan-table { display: none; }
  .kp-mobile { display: block; }
}

/* ── KURSPLAN MOBILE VIEW (component styles) ──────────── */
.kp-mobile { display: none !important; }
@media (max-width: 768px) {
  .kp-mobile { display: block !important; }
}

.kp-mobile-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-bottom: 1rem;
  scrollbar-width: none;
}
.kp-mobile-tabs::-webkit-scrollbar { display: none; }

.kp-mobile-tab {
  flex: 1 0 auto;
  min-width: 44px;
  padding: 0.6rem 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.kp-mobile-tab.active {
  background: var(--bg-dark);
  color: #f0f0f0;
  border-color: var(--bg-dark);
}
.kp-mobile-tab:hover:not(.active) {
  border-color: var(--text-muted);
  color: var(--text);
}

.kp-mobile-panel {
  display: none;
}
.kp-mobile-panel.active {
  display: block;
}

.kp-mobile-dayname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.kp-mobile-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: border-color 0.2s;
}
a.kp-mobile-card:hover {
  border-color: var(--accent);
}

.kp-mobile-card--merged {
  border-left: 3px solid var(--accent);
}

.kp-mobile-card-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.kp-mobile-card-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
.kp-mobile-card-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 1px 5px;
  border-radius: 1px;
  margin-top: 2px;
  width: fit-content;
}

.kp-mobile-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── STICKY MOBILE CTA ─────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-modal);
    background: #333333;
    padding: 0;
  }
  .sticky-mobile-cta a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 0.5rem;
    white-space: nowrap;
  }
  body { padding-bottom: 48px; }
}

@media (max-width: 480px) {
  /* programs-grid bleibt 2 Spalten — kompakter padding/text */
  .programs-grid    { gap: 1px; }
  .program-card     { padding: 1rem 0.8rem; gap: 0.5rem; }
  .program-img img  { width: 100%; height: auto; }
  .program-name     { font-size: 0.8rem; letter-spacing: 0; line-height: 1.15; }
  .program-arrow    { display: none; }
  .trainer-stats    { grid-template-columns: 1fr 1fr; }
  .kurs-more-grid   { grid-template-columns: 1fr; }
  .hero-stats       { gap: 1rem; flex-wrap: nowrap; justify-content: center; padding-bottom: 1.5rem; }
  .hero-stat .num   { font-size: 1.6rem; }
  .hero-stat .label { font-size: 0.5rem; letter-spacing: 0.12em; }
  .kursplan-standort-tabs { flex-wrap: wrap; }
}

/* ── BLOG ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 3rem;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-bottom: 0.8rem;
}
.blog-card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.blog-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-link:hover { color: var(--accent-hover); }
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}
.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.article-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.article-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.article-content ul,
.article-content ol {
  margin: 0.5rem 0 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.article-content li { margin-bottom: 0.4rem; }
.article-content strong { color: var(--text); font-weight: 500; }
.article-meta {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.article-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--bg-alt);
  border-radius: 4px;
  text-align: center;
}
.article-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.article-cta .btn-primary { display: inline-block; }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
