/**
 * Erol Fahrschule — Custom Styles
 * City-Fahrschule inspired design
 */

:root {
  /* Design tokens from theme.json */
  --erol-yellow: #FFD400;
  --erol-yellow-deep: #E5BE00;
  --erol-yellow-light: rgba(255, 212, 0, 0.12);
  --erol-black: #0A0A0A;
  --erol-ink: #111111;
  --erol-paper: #141414;
  --erol-paper-deep: #1A1A1A;
  --erol-gray: #888880;
  --erol-gray-light: #333330;
  --erol-blue: #4499FF;
  --erol-blue-light: rgba(0, 102, 255, 0.12);
  --erol-green: #33BB77;
  --erol-green-light: rgba(0, 170, 102, 0.12);

  /* Spacing — CI: keine Abrundungen (Logo-konforme Eckigkeit) */
  --r-card: 0px;
  --r-pill: 0px;
  --r-md:   0px;

  /*
   * Fluid Type Scale — clamp(min, slope·vw + intercept, max)
   * Formel: slope = (max−min)/(1280−320), intercept = min − slope·320
   * Skaliert linear von 320px (Smartphone) bis 1280px (Desktop).
   * Unterhalb 320px fixiert auf min, oberhalb 1280px fixiert auf max.
   *
   * Ausnahme: --fs-label & --fs-micro bleiben fix —
   *   Interfacetext unter 12px braucht keine Fluid-Skalierung.
   */

  /* Labels / Micro — fix */
  --fs-micro:  10px;
  --fs-label:  11px;

  /* Fließtext-Skala — fluid */
  /* 12 → 13px: slope 0.104vw, intercept 11.67px */
  --fs-xs:   clamp(12px, 0.104vw + 11.67px, 13px);

  /* 13 → 15px: slope 0.208vw, intercept 12.33px */
  --fs-sm:   clamp(13px, 0.208vw + 12.33px, 15px);

  /* 14 → 16px: slope 0.208vw, intercept 13.33px */
  --fs-base: clamp(14px, 0.208vw + 13.33px, 16px);

  /* 15 → 18px: slope 0.313vw, intercept 14px */
  --fs-md:   clamp(15px, 0.313vw + 14px, 18px);

  /* 16 → 20px: slope 0.417vw, intercept 14.67px */
  --fs-lg:   clamp(16px, 0.417vw + 14.67px, 20px);

  /* 18 → 24px: slope 0.625vw, intercept 16px */
  --fs-xl:   clamp(18px, 0.625vw + 16px, 24px);

  /* 22 → 30px: slope 0.833vw, intercept 19.33px */
  --fs-2xl:  clamp(22px, 0.833vw + 19.33px, 30px);

  /* 26 → 38px: slope 1.25vw, intercept 22px */
  --fs-3xl:  clamp(26px, 1.25vw + 22px, 38px);

  /* 32 → 48px: slope 1.667vw, intercept 26.67px */
  --fs-4xl:  clamp(32px, 1.667vw + 26.67px, 48px);

  /* 40 → 64px: slope 2.5vw, intercept 32px */
  --fs-5xl:  clamp(40px, 2.5vw + 32px, 64px);

  /* 48 → 80px: slope 3.333vw, intercept 37.33px */
  --fs-6xl:  clamp(48px, 3.333vw + 37.33px, 80px);

  /* Hero Titel (dvh-basiert für Viewporthöhe) */
  --fs-hero-title: clamp(20px, 2.6dvh, 38px);

  /* Display / Foto-Schriftzug */
  --fs-display: clamp(60px, 9vw, 140px);

  /* Heading aliases — fehlten bisher */
  --fs-h2: clamp(28px, 2.083vw + 21.33px, 44px);
  --fs-h3: clamp(22px, 1.25vw + 18px, 30px);
}

/* ———————————————————————————————————
   GLOBAL RESETS
   ——————————————————————————————————— */
* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--erol-black);
  color: rgba(255, 255, 255, 0.85);
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

/* ———————————————————————————————————
   BUTTONS
   ——————————————————————————————————— */
.btn-yellow,
.btn-dark,
.btn-outline,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-yellow {
  background: var(--erol-yellow);
  color: var(--erol-black);
}

.btn-yellow:hover {
  background: #ffde4a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(255, 212, 0, 0.5);
}

.btn-dark {
  background: var(--erol-black);
  color: var(--erol-yellow);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-pill {
  border-radius: var(--r-pill);
}

.btn-lg {
  padding: 15px 28px;
  font-size: var(--fs-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--fs-xs);
}

.btn-full {
  width: 100%;
}

/* Button SVG Icons */
.btn-yellow svg,
.btn-dark svg,
.btn-outline svg,
.btn-outline-dark svg {
  flex-shrink: 0;
}

/* ———————————————————————————————————
   CARDS
   ——————————————————————————————————— */
.erol-card {
  background: var(--erol-paper-deep);
  border-radius: var(--r-card);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease;
}

.erol-card:hover {
  border-color: rgba(255, 212, 0, 0.3);
}

/* ———————————————————————————————————
   YELLOW SLAB (Feature sections)
   ——————————————————————————————————— */
.yellow-slab {
  background:
    linear-gradient(135deg, var(--erol-yellow) 0%, var(--erol-yellow-deep) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.02) 40px,
      rgba(0, 0, 0, 0.02) 80px
    );
  color: var(--erol-black);
  padding: 60px 32px;
  position: relative;
  overflow: hidden;
}

.yellow-slab::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.yellow-slab h2 {
  font-size: var(--fs-5xl);
  margin-bottom: 24px;
}

/* ———————————————————————————————————
   HERO — Fullscreen (Transvex-Style)
   ——————————————————————————————————— */

.erol-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  padding-top: 64px; /* Nav-Höhe */
}

/* Hintergrundbild */
.erol-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

/* Canvas (ohne Bild) */
.erol-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Overlay — links dunkel, rechts offen für Bild */
.erol-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.75) 40%, rgba(5,5,5,0.25) 70%, transparent 100%),
    linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
}

/* Gelber Akzentbalken ganz oben (unter Nav) */
.erol-hero-topbar {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--erol-yellow);
  z-index: 3;
}

/* Content — links ausgerichtet */
.erol-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(48px, 8dvh, 80px) clamp(32px, 5vw, 72px);
}

.erol-hero-eyebrow-text {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--erol-yellow);
  margin: 0 0 16px;
}

/* ——— Google Rating Badge im Hero ——— */
.erol-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  margin-bottom: 28px;
}

.erol-hero-rating:hover .erol-hero-rating-score {
  color: var(--erol-yellow);
}

.erol-hero-rating-g {
  flex-shrink: 0;
}

.erol-hero-rating-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.erol-hero-rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.erol-hero-rating-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.erol-hero-rating-score {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.erol-hero-rating-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.erol-hero-title {
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 900;
}

.erol-hero-title .hl {
  background: var(--erol-yellow);
  color: var(--erol-black);
  padding: 0 8px 4px;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.erol-hero-lede {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 46ch;
  margin: 0 0 32px;
}

/* CTA Button — wie "See How It Works" im Screenshot */
.erol-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.erol-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.erol-hero-cta-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.erol-hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #25D366;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.erol-hero-wa-btn:hover {
  background: #1ebd5a;
}

/* "FAHREN" Schriftzug rechts unten */
.erol-hero-photo-label {
  position: absolute;
  bottom: clamp(120px, 18dvh, 180px);
  right: clamp(24px, 5vw, 72px);
  z-index: 2;
  line-height: 1;
  text-align: right;
  will-change: transform;
}

.erol-hero-photo-label span {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.8vw, 22px);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroLabelFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.erol-hero-photo-label strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-display);
  color: rgba(255,212,0,0.15);
  letter-spacing: -0.02em;
  line-height: 0.85;
  clip-path: inset(100% 0 0 0);
  animation: heroLabelClip 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

@keyframes heroLabelFade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroLabelClip {
  to { clip-path: inset(0% 0 0 0); }
}

/* Stats-Leiste */
.erol-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.erol-hero-stat {
  flex: 1;
  padding: clamp(16px, 2.5dvh, 24px) clamp(24px, 4vw, 48px);
}

.erol-hero-stat strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.erol-hero-stat span {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.erol-hero-stat-divider {
  width: 1px;
  height: clamp(32px, 4dvh, 48px);
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Slide Navigation */
.erol-hero-slide-nav {
  position: absolute;
  bottom: clamp(80px, 12dvh, 100px);
  right: clamp(24px, 4vw, 48px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.erol-hero-slide-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.erol-hero-slide-btn--active,
.erol-hero-slide-btn:hover {
  background: var(--erol-yellow);
  border-color: var(--erol-yellow);
  color: var(--erol-black);
}

.erol-hero-slide-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  margin-left: 4px;
}

/* ——— Responsive ——— */
@media (max-width: 860px) {
  /* Hero: kein Fullscreen auf Mobile, normaler Content-Flow */
  .erol-hero {
    height: auto;
    min-height: unset;
    justify-content: flex-start;
  }

  .erol-hero-content {
    flex: unset;
    padding: 48px 20px 32px;
    max-width: 100%;
    display: block;
  }

  .erol-hero-photo-label {
    display: none;
  }

  /* Stats-Bar: horizontal scrollbar statt wrapping */
  .erol-hero-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .erol-hero-stats::-webkit-scrollbar {
    display: none;
  }

  .erol-hero-stat {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 14px 16px;
  }

  .erol-hero-stat-divider {
    display: none;
  }

  .erol-hero-slide-nav {
    display: none;
  }
}

/* Card-Shrink-Effekt: alle Sektionen bekommen transform-origin */
.erol-hero,
.erol-slab,
.erol-standort,
.erol-reviews,
.erol-classes,
.erol-theory,
.erol-faq,
.erol-reviews-section,
.erol-contact,
.erol-instagram-section {
  transform-origin: top center;
  will-change: transform, opacity;
}

/* ———————————————————————————————————
   TOP NAVIGATION
   ——————————————————————————————————— */
.erol-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.erol-nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 212, 0, 0.12);
}

.erol-nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* LEFT: Nav Links */
.erol-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.erol-nav-link {
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
  position: relative;
}

/* Desktop Rich Hover: gelber Unterstrich-Balken */
.erol-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--erol-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .erol-nav-link:hover {
    color: #fff;
  }

  .erol-nav-link:hover::after {
    transform: scaleX(1);
  }
}

.erol-nav-link.is-active {
  background: var(--erol-yellow);
  color: var(--erol-black);
  font-weight: 700;
}

/* CENTER: Logo */
.erol-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.erol-nav-logo img,
.erol-nav-logo .custom-logo {
  height: 36px;
  width: auto;
  display: block;
}

/* RIGHT: Action Buttons */
.erol-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.erol-nav-actions .erol-nav-social {
  margin-left: 0;
  gap: 8px;
}

.erol-nav-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.erol-nav-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.erol-nav-btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--erol-black);
  background: var(--erol-yellow);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.erol-nav-btn-filled:hover {
  background: #ffde4a;
}

/* Mobile Burger */
.erol-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.erol-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile Sidebar */
.erol-nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  padding: 72px 28px 40px;
  background: #0a0a0a;
  gap: 4px;
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.erol-nav-mobile.is-open {
  transform: translateX(0);
}

.erol-nav-sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.erol-nav-sidebar-close:hover {
  color: #fff;
}

.erol-nav-mobile a {
  padding: 12px 0;
  font-size: var(--fs-md);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.erol-nav-mobile a:hover {
  color: #fff;
}

.erol-nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--erol-yellow);
  color: var(--erol-black);
  text-align: center;
  font-weight: 700;
}

.erol-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}

.erol-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .erol-nav-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .erol-nav-links,
  .erol-nav-actions {
    display: none;
  }

  .erol-nav-burger {
    display: flex;
  }

  .erol-nav-logo {
    justify-content: flex-start;
  }

  .erol-nav-logo img,
  .erol-nav-logo .custom-logo {
    height: 38px;
  }
}

/* Burger → X Animation */
.erol-nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.erol-nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.erol-nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ———————————————————————————————————
   SECTIONS
   ——————————————————————————————————— */
.erol-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) 32px;
}

.erol-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.erol-section-header h2 {
  font-size: var(--fs-5xl);
  margin-bottom: 16px;
}

.erol-section-lead {
  font-size: var(--fs-xl);
  color: var(--erol-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ———————————————————————————————————
   YELLOW SLAB
   ——————————————————————————————————— */
.erol-slab {
  background: var(--erol-yellow);
  color: var(--erol-black);
}

.erol-slab-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.erol-slab-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.erol-slab-left h2 {
  font-size: var(--fs-2xl);
  line-height: 1.1;
  color: var(--erol-black);
  max-width: 20ch;
}

.erol-slab-left svg {
  display: none;
}

.erol-slab-right p {
  font-size: var(--fs-base);
  color: rgba(10, 10, 10, 0.75);
  margin: 0 0 16px;
  max-width: 56ch;
  line-height: 1.6;
}

.erol-slab-right p b,
.erol-slab-right p strong {
  color: var(--erol-black);
}

/* ———————————————————————————————————
   ABOUT SECTION — weiß
   ——————————————————————————————————— */
.erol-about {
  background: #fff;
  padding: clamp(48px, 5vw, 72px) 32px;
}

.erol-about-inner {
  max-width: 860px;
  margin: 0 auto;
}

.erol-about--has-image .erol-about-inner {
  max-width: 1280px;
  display: flex;
  align-items: stretch;
  gap: clamp(32px, 4vw, 64px);
}

.erol-about-content {
  flex: 1;
  min-width: 0;
}

.erol-about-image {
  flex: 0 0 clamp(320px, 44%, 580px);
	    align-content: flex-end;
}

.erol-about-image img {
  width: 100%;
  height: 50%;
  min-height: 420px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.erol-about-badge {
  margin-bottom: 20px;
}

.erol-about-inner h2 {
  font-size: var(--fs-h2);
  color: var(--erol-black);
  line-height: 1.2;
  max-width: 26ch;
  margin: 0 0 28px;
}

.erol-about-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.erol-about-body p {
  font-size: var(--fs-base);
  color: #555;
  line-height: 1.7;
  margin: 0;
  max-width: 72ch;
}

@media (max-width: 767px) {
  .erol-about--has-image .erol-about-inner {
    flex-direction: column;
  }
  .erol-about-image {
    flex: none;
    width: 100%;
  }
}

/* ———————————————————————————————————
   REVIEWS (Legacy — bleibt für reviews-head)
   ——————————————————————————————————— */
.erol-reviews {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) 32px;
  position: relative;
}

.erol-reviews-head {
  text-align: center;
  margin-bottom: 40px;
}

.erol-reviews-head h2 {
  font-size: var(--fs-4xl);
  margin-bottom: 16px;
}

/* ———————————————————————————————————
   STANDORT CARD
   ——————————————————————————————————— */
.erol-standort {
  padding: clamp(48px, 5vw, 72px) 32px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 212, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 212, 0, 0.03) 0%, transparent 50%),
    var(--erol-black);
}

.erol-standort-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.erol-standort-card {
  background: var(--erol-paper-deep);
  border-radius: var(--r-card);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.erol-standort-head {
  margin-bottom: 40px;
}

.diagonal-badge {
  display: inline-block;
  background: var(--erol-yellow);
  color: var(--erol-black);
  padding: 6px 16px;
  border-radius: var(--r-md);
  font-size: 18px !important;
  font-style: italic !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.erol-standort-head h3 {
  font-size: var(--fs-4xl);
}

.erol-standort-head h3 span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.erol-standort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.erol-standort-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.erol-standort-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.erol-standort-row strong {
  display: block;
  font-weight: 700;
  font-size: var(--fs-base);
  margin-bottom: 4px;
  color: #fff;
}

.erol-standort-row span {
  display: block;
  font-size: var(--fs-base);
  color: var(--erol-gray);
  line-height: 1.6;
}

.erol-standort-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ———————————————————————————————————
   CLASSES ACCORDION
   ——————————————————————————————————— */
/* ———————————————————————————————————
   KLASSEN — LIST LAYOUT
   ——————————————————————————————————— */
.erol-classes {
  background: #fff;
  padding: clamp(48px, 5vw, 72px) 0;
}

.erol-classes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.erol-classes-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* Sidebar */
.erol-classes-sidebar {
  position: sticky;
  top: 100px;
}

.erol-classes-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--erol-yellow);
  background: var(--erol-black);
  display: inline-block;
  padding: 4px 10px 5px;
  margin-bottom: 20px;
}

.erol-classes-sidebar h2 {
  font-size: var(--fs-h2);
  color: var(--erol-black);
  line-height: 1.15;
  margin: 0 0 16px;
}

.erol-classes-sub {
  font-size: var(--fs-base);
  color: #555;
  line-height: 1.65;
  margin: 0 0 28px;
}

.erol-classes-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--erol-black);
  color: var(--erol-yellow);
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 900;
  text-decoration: none;
  padding: 13px 22px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  margin-bottom: 14px;
  width: 100%;
  justify-content: center;
}

.erol-classes-cta:hover {
  background: #1a1a1a;
}

.erol-classes-cta-sec {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--erol-black);
  text-decoration: none;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.erol-classes-cta-sec:hover {
  opacity: 1;
}

/* List */
.erol-classes-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--erol-black);
}

.erol-cl-row {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
}

.erol-cl-row:hover {
  background: rgba(0, 0, 0, 0.02);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.erol-cl-row:hover .erol-cl-arrow {
  color: var(--erol-black);
  transform: translateX(4px);
}

.erol-cl-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.25);
  padding-top: 4px;
  letter-spacing: 0.05em;
}

.erol-cl-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.erol-cl-id {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--erol-yellow);
  color: var(--erol-black);
  padding: 3px 8px 4px;
}

.erol-cl-age {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: #888;
}

.erol-cl-new {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: #25D366;
  color: #fff;
  padding: 2px 7px 3px;
}

.erol-cl-row--new {
  background: rgba(37, 211, 102, 0.04);
}

.erol-cl-main h3 {
  font-size: var(--fs-xl);
  color: var(--erol-black);
  margin: 0 0 6px;
  line-height: 1.2;
}

.erol-cl-main p {
  font-size: var(--fs-sm);
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 55ch;
}

.erol-cl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.erol-cl-tags span {
  font-size: var(--fs-xs);
  color: #555;
  background: rgba(0, 0, 0, 0.06);
  padding: 3px 10px;
  font-weight: 500;
}

.erol-cl-arrow {
  color: rgba(0, 0, 0, 0.2);
  padding-top: 4px;
  transition: color 0.15s, transform 0.15s;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .erol-classes-layout {
    grid-template-columns: 1fr;
  }

  .erol-classes-sidebar {
    position: static;
  }

  .erol-classes-cta {
    width: auto;
  }
}

@media (max-width: 540px) {
  .erol-cl-row {
    grid-template-columns: 36px 1fr 24px;
    gap: 12px;
    padding: 22px 0;
  }
}

/* ———————————————————————————————————
   FAQ
   ——————————————————————————————————— */
.erol-faq {
  padding: clamp(48px, 5vw, 72px) 32px;
  background: #fff;
  position: relative;
}

.erol-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.erol-faq-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.erol-faq-head h2 {
  font-size: var(--fs-4xl);
  max-width: 18ch;
  color: var(--erol-black);
}

.erol-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--erol-black);
}

.erol-faq-item {
  background: transparent;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: background 0.15s;
}

.erol-faq-item.is-open {
  background: rgba(0, 0, 0, 0.02);
}

.erol-faq-item > button {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--erol-black);
  background: none;
  border: none;
  cursor: pointer;
}

.erol-faq-chev {
  width: 28px;
  height: 28px;
  background: var(--erol-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.15s;
  color: var(--erol-yellow);
}

.erol-faq-item.is-open .erol-faq-chev {
  transform: rotate(45deg);
  background: var(--erol-yellow);
  color: var(--erol-black);
}

.erol-faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #555;
  line-height: 1.65;
  animation: accIn 0.2s ease;
  max-width: 70ch;
}

.erol-faq-item.is-open .erol-faq-answer {
  display: block;
}

.erol-faq-answer p {
  margin: 0;
}

/* ———————————————————————————————————
   THEORY
   ——————————————————————————————————— */
.erol-theory {
  padding: clamp(48px, 5vw, 72px) 32px;
  background:
    linear-gradient(135deg, #1a1a1a 0%, var(--erol-black) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255, 212, 0, 0.02) 20px,
      rgba(255, 212, 0, 0.02) 40px
    );
  position: relative;
}

.erol-theory::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.erol-theory-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.erol-theory-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* LEFT */
.erol-theory-head {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.erol-theory-head h2 {
  font-size: var(--fs-4xl);
  color: #fff;
  margin: 0;
}

.erol-theory-head p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: var(--fs-base);
}

.erol-theory-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Instructor bar */
.erol-theory-instructor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-top: 8px;
}

.erol-theory-instructor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--erol-yellow);
  color: var(--erol-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.erol-theory-instructor-info {
  flex: 1;
}

.erol-theory-instructor-info b {
  display: block;
  font-size: var(--fs-base);
  color: #fff;
  margin-bottom: 2px;
}

.erol-theory-instructor-info span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.erol-theory-instructor-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--erol-yellow);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.erol-theory-instructor-call:hover {
  opacity: 1;
}

/* RIGHT — Instagram Card */
.erol-theory-ig-card {
  background: var(--erol-paper-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--erol-yellow);
  border-radius: var(--r-card);
  padding: 28px 24px;
  position: sticky;
  top: 120px;
}

.erol-theory-ig-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.erol-theory-ig-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.erol-theory-ig-label {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--erol-yellow);
}

.erol-theory-ig-card h3 {
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.erol-theory-ig-card > p {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0 0 20px;
}

.erol-theory-ig-card > p strong {
  color: #fff;
}

.erol-theory-ig-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
}

.erol-theory-ig-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.erol-theory-ig-step span {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: var(--erol-yellow);
  color: var(--erol-black);
  font-size: var(--fs-label);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.erol-theory-ig-step p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.erol-theory-ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--erol-yellow);
  color: var(--erol-black);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-base);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  margin-bottom: 12px;
}

.erol-theory-ig-btn:hover {
  background: #ffde4a;
  transform: translateY(-1px);
}

.erol-theory-ig-note {
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .erol-theory-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .erol-theory-ig-card {
    position: static;
  }
}

.erol-theory-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color 0.15s, transform 0.15s;
}

.erol-theory-card:hover {
  border-color: var(--erol-yellow);
  transform: translateX(2px);
}

.erol-theory-date {
  text-align: center;
  padding: 8px 0;
  background: var(--erol-black);
  color: var(--erol-yellow);
  border-radius: var(--r-md);
}

.erol-theory-date b {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1;
}

.erol-theory-date span {
  display: block;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
  opacity: 0.7;
}

.erol-theory-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.erol-theory-day {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--erol-gray);
  font-weight: 600;
}

.erol-theory-body b {
  font-size: var(--fs-md);
  font-weight: 600;
}

.erol-theory-slots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: var(--fs-xs);
  color: var(--erol-gray);
  font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 500px) {
  .erol-theory-card {
    grid-template-columns: 56px 1fr;
  }
  .erol-theory-card > a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ———————————————————————————————————
   CONTACT
   ——————————————————————————————————— */
.erol-contact {
  padding: clamp(48px, 5vw, 72px) 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 212, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    var(--erol-black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.erol-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(255, 255, 255, 0.02) 100px,
      rgba(255, 255, 255, 0.02) 101px
    );
  pointer-events: none;
}

.erol-contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.erol-contact-left h2 {
  font-size: var(--fs-4xl);
  color: #fff;
  margin: 16px 0 16px;
}

.erol-contact-left > p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 40ch;
}

.erol-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.erol-contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.erol-contact-methods a:hover {
  border-color: var(--erol-yellow);
}

.erol-contact-ico {
  display: none;
}

.erol-contact-ico--wa {
  display: none;
}

.erol-contact-methods b {
  display: block;
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
}

.erol-contact-methods span {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.erol-form,
.erol-contact-success {
  background: var(--erol-paper-deep);
  padding: 32px;
  border-radius: var(--r-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.cf7-placeholder {
  text-align: center;
  padding: 40px;
  background: var(--erol-paper-deep);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 800px) {
  .erol-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ———————————————————————————————————
   FOOTER
   ——————————————————————————————————— */
.erol-footer {
  background: var(--erol-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 32px 24px;
  border-top: 4px solid var(--erol-yellow);
}

.erol-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.erol-footer-brand {
  grid-row: 1 / 3;
}

.erol-footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.erol-footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 28ch;
  margin: 0;
}

.erol-footer-col h4 {
  font-size: var(--fs-xs);
  color: var(--erol-yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.erol-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.erol-footer-col li {
  padding: 3px 0;
  font-size: var(--fs-sm);
}

.erol-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.erol-footer-col a:hover {
  color: var(--erol-yellow);
}

.erol-footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .erol-footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }

  .erol-footer-brand {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .erol-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .erol-footer-brand {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

/* ———————————————————————————————————
   PAGE CONTENT
   ——————————————————————————————————— */
.erol-page-wrapper {
  max-width: 1160px;
  margin: 120px auto 80px;
  padding: 0 32px;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-size: var(--fs-5xl);
}

.page-content {
  line-height: 1.8;
  font-size: var(--fs-lg);
}

/* ———————————————————————————————————
   REVIEWS SECTION
   ——————————————————————————————————— */
.erol-reviews-section {
  background: #0f1b2d;
  padding: clamp(48px, 5vw, 72px) 0;
}

.erol-reviews-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ——— Google Badge (wie Referenzbild) ——— */
.erol-gbadge {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #162236;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 36px;
  text-decoration: none;
  margin-bottom: 48px;
  max-width: 520px;
  transition: background 0.15s;
}

.erol-gbadge:hover {
  background: #1a2a3f;
}

.erol-gbadge-g {
  flex-shrink: 0;
}

.erol-gbadge-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.erol-gbadge-score {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.erol-gbadge-score span {
  font-size: var(--fs-xl);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.erol-gbadge-sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
}

/* ——— Review Cards ——— */
.erol-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.erol-review-card {
  background: #162236;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.2s;
}

.erol-review-card:hover {
  border-color: rgba(255,212,0,0.25);
}

.erol-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.erol-review-stars {
  display: flex;
  gap: 3px;
}

.erol-review-g {
  opacity: 0.7;
}

.erol-review-text {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  font-style: italic;
}

.erol-review-author {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.erol-reviews-cta {
  text-align: center;
  padding-top: 8px;
}

.erol-reviews-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.erol-reviews-cta-link:hover {
  color: #fff;
}

/* ———————————————————————————————————
   INSTAGRAM SECTION
   ——————————————————————————————————— */
.erol-instagram-section {
  background: var(--erol-ink);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.erol-instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--erol-yellow) 0%, transparent 60%);
}

.erol-instagram-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.erol-instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.erol-ig-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--erol-yellow);
  margin-bottom: 10px;
}

.erol-ig-label span {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  letter-spacing: 0;
}

.erol-instagram-header h2 {
  font-size: var(--fs-4xl);
  color: #fff;
  margin: 0 0 6px;
}

.erol-instagram-header p {
  font-size: var(--fs-sm);
  color: var(--erol-gray);
  margin: 0;
  max-width: 44ch;
}

.erol-ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.erol-ig-follow-btn:hover {
  border-color: var(--erol-yellow);
  color: var(--erol-yellow);
}

/* Feed-Wrap: nimmt Plugin-Output auf */
.erol-instagram-feed-wrap {
  width: 100%;
}

/* Smash Balloon Overrides — CI-konform */
.erol-instagram-feed-wrap .sbi_follow_btn,
.erol-instagram-feed-wrap #sbi_load .sbi_load_btn {
  background: var(--erol-yellow) !important;
  color: var(--erol-black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
}

/* Admin Setup-Notice */
.erol-ig-setup-notice {
  background: var(--erol-paper-deep);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--erol-yellow);
  padding: 32px 36px;
  max-width: 680px;
}

.erol-ig-setup-icon {
  color: var(--erol-yellow);
  margin-bottom: 16px;
  opacity: 0.7;
}

.erol-ig-setup-notice h3 {
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0 0 10px;
}

.erol-ig-setup-notice p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
}

.erol-ig-setup-notice ol {
  padding-left: 20px;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.erol-ig-setup-notice li {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.erol-ig-setup-notice strong {
  color: #fff;
}

.erol-ig-setup-notice code {
  background: rgba(255,212,0,0.12);
  color: var(--erol-yellow);
  padding: 1px 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
}

.erol-ig-setup-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--erol-yellow);
  color: var(--erol-black);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.erol-ig-setup-btn:hover {
  background: #ffde4a;
}

@media (max-width: 640px) {
  .erol-instagram-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ———————————————————————————————————
   SOCIAL MEDIA ICONS
   ——————————————————————————————————— */
.erol-nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.erol-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.erol-nav-social a:hover {
  color: var(--erol-yellow);
}

.erol-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.erol-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, transform 0.2s ease;
}

.erol-footer-social a:hover {
  color: var(--erol-yellow);
  transform: translateY(-2px);
}

/* ———————————————————————————————————
   RESPONSIVE
   ——————————————————————————————————— */
@media (max-width: 800px) {
  .erol-slab-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .erol-slab-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .erol-standort-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .erol-hero-title {
    font-size: clamp(18px, 5.5vw, 28px);
  }

  .erol-hero-cta {
    flex-direction: column;
  }

  .erol-card {
    padding: 24px;
  }

  .yellow-slab {
    padding: 40px 24px;
  }

  .erol-section-inner {
    padding: 40px 20px;
  }

  .erol-standort-card {
    padding: 32px 24px;
  }

  .erol-footer-grid {
    grid-template-columns: 1fr;
  }

  .erol-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .erol-reviews-grid {
    grid-template-columns: 1fr;
  }

  .erol-instagram-placeholder {
    grid-template-columns: repeat(2, 1fr);
  }

  .erol-nav-social {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Horizontales Padding global verkleinern */
  .erol-about,
  .erol-faq,
  .erol-theory,
  .erol-standort,
  .erol-contact,
  .erol-team,
  .erol-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .erol-standort-card {
    padding: 24px 16px;
  }

  .erol-hero-content {
    padding: 20px 16px 16px;
  }

  /* Hero Titel größer auf kleinen Screens */
  .erol-hero-title {
    font-size: clamp(24px, 7.5vw, 34px);
    margin-bottom: 14px;
  }

  /* Hero Lede kompakter */
  .erol-hero-lede {
    font-size: var(--fs-base);
    margin-bottom: 20px;
  }

  /* Google Rating kleiner */
  .erol-hero-rating {
    gap: 10px;
    margin-bottom: 18px;
  }

  .erol-hero-rating-g svg {
    width: 28px;
    height: 28px;
  }

  .erol-hero-rating-stars svg {
    width: 13px;
    height: 13px;
  }

  .erol-hero-rating-score {
    font-size: var(--fs-xl);
  }

  /* CTA Buttons gestapelt */
  .erol-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .erol-hero-cta-btn,
  .erol-hero-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Google Review Badge */
  .erol-gbadge {
    padding: 20px;
    gap: 16px;
  }

  .erol-contact-inner,
  .erol-reviews-inner,
  .erol-instagram-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ———————————————————————————————————
   DARK THEME — FORM FIELDS (CF7 & native)
   ——————————————————————————————————— */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  color: #fff;
  padding: 12px 14px;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-base);
  transition: border-color 0.15s;
  outline: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--erol-yellow);
  background: rgba(255, 212, 0, 0.04);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.wpcf7 input[type="submit"],
.wpcf7-submit {
  background: var(--erol-yellow);
  color: var(--erol-black);
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: #ffde4a;
  transform: translateY(-1px);
}

/* CF7 Select */
.wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7 select:focus {
  border-color: var(--erol-yellow);
  background-color: rgba(255, 212, 0, 0.04);
}

/* CF7 Labels */
.wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

/* DSGVO Checkbox */
.erol-form-dsgvo {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: var(--fs-xs) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 4px;
}

.erol-form-dsgvo input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--erol-yellow);
  margin-top: 2px;
}

.erol-form-dsgvo a {
  color: var(--erol-yellow);
  text-decoration: none;
}

/* CF7 Validation */
.wpcf7-not-valid-tip {
  font-size: var(--fs-xs);
  color: #ff6b6b;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: var(--fs-sm);
  border-left: 3px solid var(--erol-yellow);
  background: rgba(255,212,0,0.06);
  color: rgba(255,255,255,0.8);
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-acceptance-missing {
  border-color: #ff6b6b;
  background: rgba(255,107,107,0.06);
}

/* ———————————————————————————————————
   DARK THEME — PAGE CONTENT
   ——————————————————————————————————— */
.page-content,
.erol-page-wrapper {
  color: rgba(255, 255, 255, 0.85);
}

.page-content a {
  color: var(--erol-yellow);
}

.page-content a:hover {
  color: var(--erol-yellow-deep);
}

/* ———————————————————————————————————
   DARK THEME — NAV BURGER ICON
   ——————————————————————————————————— */
.erol-nav-burger {
  color: rgba(255, 255, 255, 0.85);
}

/* ———————————————————————————————————
   VEHICLE VIDEO SECTION
   ——————————————————————————————————— */
/* ———————————————————————————————————
   FAHRSCHULWECHSEL — Scroll-driven
   ——————————————————————————————————— */
.erol-switch {
  position: relative;
  height: 280vh;
}

.erol-switch-track {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--erol-black);
}

/* Background Glow */
.erol-switch-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.erol-switch-bg-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,212,0,0.07) 0%, transparent 70%);
  will-change: transform;
  transition: transform 0.08s linear;
}

.erol-switch-bg-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255,212,0,0.2) 30%, rgba(255,212,0,0.2) 70%, transparent 100%);
}

/* Content */
.erol-switch-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 72px);
  margin: 0 auto;
}

.erol-switch-header {
  margin-bottom: 48px;
}

.erol-switch-hook {
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(255,255,255,0.6);
  margin: 20px 0 0;
  line-height: 1.45;
}

.erol-switch-hook strong {
  color: #fff;
  display: block;
}

/* Steps */
.erol-switch-steps {
  position: relative;
  min-height: 180px;
  margin-bottom: 40px;
}

.erol-switch-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.erol-switch-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.erol-switch-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--erol-yellow);
  margin-bottom: 14px;
  opacity: 0.8;
}

.erol-switch-step h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
}

.erol-switch-step p {
  font-size: clamp(15px, 1.25vw, 18px);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0;
}

/* Progress Dots */
.erol-switch-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  align-items: center;
}

.erol-switch-dot {
  height: 3px;
  width: 28px;
  background: rgba(255,255,255,0.15);
  transition: background 0.35s ease, width 0.35s ease;
  border-radius: 2px;
}

.erol-switch-dot.is-active {
  background: var(--erol-yellow);
  width: 48px;
}

/* CTA */
.erol-switch-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--erol-yellow);
  color: var(--erol-black);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: var(--fs-base);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}

@media (hover: hover) and (pointer: fine) {
  .erol-switch-cta:hover {
    background: #ffde4a;
    transform: translateY(-2px);
  }
}

/* Responsive */
@media (max-width: 860px) {
  .erol-switch {
    height: 250vh;
  }
  .erol-switch-steps {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .erol-switch {
    height: 230vh;
  }
  .erol-switch-steps {
    min-height: 220px;
  }
  .erol-switch-hook {
    font-size: var(--fs-md);
  }
  .erol-switch-step h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .erol-switch-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ———————————————————————————————————
   VEHICLE VIDEO SECTION — FULLWIDTH
   ——————————————————————————————————— */
.erol-vehicles {
  background: var(--erol-black);
  padding: 0;
}

.erol-vehicles-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.erol-vehicles-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.erol-vehicles-head .diagonal-badge {
  background: var(--erol-yellow);
  color: var(--erol-black);
  padding: 5px 14px 6px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: italic;
  transform: skewX(-10deg);
  display: inline-block;
  margin-bottom: 16px;
}

.erol-vehicles-head .diagonal-badge span {
  display: inline-block;
  transform: skewX(10deg);
}

.erol-vehicles-head h2 {
  font-size: var(--fs-h2);
  color: #fff;
  margin: 0 0 12px;
}

.erol-vehicles-head p {
  font-size: var(--fs-base);
  color: var(--erol-gray);
  max-width: 44ch;
  margin: 0 auto;
}

/* Vollbreite Grid — kein padding */
.erol-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 100%;
}

@media (min-width: 1024px) {
  .erol-vehicles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.erol-vehicle-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: #111;
  cursor: pointer;
}

.erol-vehicle-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.erol-vehicle-video,
.erol-vehicle-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.erol-vehicle-card:hover .erol-vehicle-video,
.erol-vehicle-card--image:hover img {
  transform: scale(1.06);
}

.erol-vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.15) 45%,
    transparent 100%
  );
  transition: opacity 0.3s;
}

.erol-vehicle-card:hover .erol-vehicle-overlay {
  opacity: 0.7;
}

/* Fullscreen-Button (erscheint beim Hover) */
.erol-vehicle-expand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  background: rgba(255, 212, 0, 0.95);
  color: var(--erol-black);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.erol-vehicle-card:hover .erol-vehicle-expand {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.erol-vehicle-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--erol-yellow);
  color: var(--erol-black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px 5px;
  transform: skewX(-8deg);
  display: inline-block;
  z-index: 2;
}

.erol-vehicle-label span {
  display: inline-block;
  transform: skewX(8deg);
}

/* ——— Video Lightbox ——— */
.erol-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.erol-video-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.erol-video-lightbox video {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.erol-video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  font-family: 'Archivo Black', sans-serif;
}

.erol-video-lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .erol-vehicle-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .erol-vehicles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .erol-vehicle-card {
    aspect-ratio: 3 / 4;
  }
}

/* ———————————————————————————————————
   TEAM SECTION
   ——————————————————————————————————— */
.erol-team {
  background: #fff;
  padding: clamp(48px, 5vw, 72px) 32px;
}

.erol-team-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.erol-team-badge {
  margin-bottom: 20px;
}

.erol-team h2 {
  font-size: var(--fs-4xl);
  color: var(--erol-black);
  margin: 0 0 16px;
  line-height: 1.2;
}

.erol-team-intro {
  font-size: var(--fs-lg);
  color: #555;
  max-width: 50ch;
  margin: 0 0 48px;
}

.erol-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.erol-team-card {
  background: var(--erol-paper-deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s, transform 0.2s;
}

.erol-team-card:hover {
  border-color: rgba(255, 212, 0, 0.3);
  transform: translateY(-4px);
}

.erol-team-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--erol-black);
}

.erol-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.erol-team-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.erol-team-content {
  padding: 24px;
}

.erol-team-content h3 {
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
}

.erol-team-role {
  font-size: var(--fs-sm);
  color: var(--erol-yellow);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .erol-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .erol-team-intro {
    margin-bottom: 32px;
  }
}

/* ———————————————————————————————————
   STATS-BAR SWIPE HINT (Mobile)
   ——————————————————————————————————— */
@media (max-width: 860px) {
  .erol-hero-stats {
    position: relative;
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
  }
}

/* ———————————————————————————————————
   PREFERS-REDUCED-MOTION
   Alle Hero-Animationen deaktivieren für
   Nutzer mit Bewegungs-Einschränkungen.
   ——————————————————————————————————— */
@media (prefers-reduced-motion: reduce) {
  /* Hero Label Animationen */
  .erol-hero-photo-label span {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .erol-hero-photo-label strong {
    animation: none;
    clip-path: inset(0% 0 0 0);
  }

  /* FAQ / Accordion */
  .erol-faq-answer {
    animation: none;
  }

  /* Nav Underline */
  .erol-nav-link::after {
    transition: none;
  }

  /* Team Card */
  .erol-team-card {
    transition: none;
  }

  /* Vehicle Card */
  .erol-vehicle-video,
  .erol-vehicle-card--image img,
  .erol-vehicle-expand {
    transition: none;
  }

  /* Vehicle Lightbox */
  .erol-video-lightbox {
    transition: none;
  }

  /* Buttons */
  .btn-yellow:hover,
  .btn-dark:hover,
  .erol-theory-ig-btn:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE AUDIT — alle Sektionen
   ═══════════════════════════════════════ */

/* ——— SLAB ——— */
@media (max-width: 860px) {
  .erol-slab-inner {
    padding: 28px 20px;
    gap: 16px;
  }
}

/* ——— CLASSES ——— */
@media (max-width: 540px) {
  /* Labels wrappen statt zu überlaufen */
  .erol-cl-top {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Label-Tag kompakter */
  .erol-cl-id {
    font-size: 10px;
    padding: 2px 6px 3px;
  }

  /* Beschreibungstext etwas kleiner */
  .erol-cl-main p {
    font-size: var(--fs-xs);
  }
}

/* ——— THEORY ——— */
@media (max-width: 540px) {
  /* Instructor-Bar umbrechend */
  .erol-theory-instructor {
    flex-wrap: wrap;
  }

  .erol-theory-instructor-call {
    width: 100%;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }

  /* IG-Card Padding reduzieren */
  .erol-theory-ig-card {
    padding: 20px 16px;
  }
}

/* ——— STANDORT ——— */
@media (max-width: 480px) {
  /* CTA-Buttons stapeln */
  .erol-standort-cta {
    flex-direction: column;
  }

  .erol-standort-cta .btn-yellow,
  .erol-standort-cta .btn-outline-dark {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Standort-Rows enger */
  .erol-standort-row {
    gap: 12px;
    margin-bottom: 16px;
  }
}

/* ——— KONTAKT ——— */
@media (max-width: 480px) {
  /* Lange E-Mail / Telefon nicht überlaufen */
  .erol-contact-methods b {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

}

/* ——— FOOTER ——— */
@media (max-width: 860px) {
  .erol-footer {
    padding: 48px 24px 20px;
  }
}

/* ——— FAQ ——— */
@media (max-width: 480px) {
  /* Frage-Text nicht abschneiden */
  .erol-faq-item > button {
    font-size: var(--fs-base);
    gap: 12px;
  }

  .erol-faq-chev {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
}

/* ——— ÜBER UNS ——— */
@media (max-width: 480px) {
  .erol-about {
    padding: clamp(32px, 5vw, 48px) 16px;
  }
}

/* ——— GOOGLE BADGE (Reviews) ——— */
@media (max-width: 480px) {
  .erol-gbadge {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .erol-gbadge-score {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ———————————————————————————————————
   KONTAKT ICONS — Mobile
   ——————————————————————————————————— */
@media (max-width: 860px) {
  .erol-contact-ico,
  .erol-contact-ico--wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: none;
    color: var(--erol-yellow);
  }

  .erol-contact-ico--wa {
    color: #25D366;
  }

  .erol-contact-methods a {
    gap: 12px;
    padding: 14px 0;
  }
}

/* ———————————————————————————————————
   ANFRAGEFORMULAR — Mobile
   ——————————————————————————————————— */
@media (max-width: 860px) {
  /* Formular unter Kontaktdaten */
  .erol-contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .erol-form,
  .erol-contact-success {
    padding: 24px 20px;
  }

  /* Größere Touch-Targets für Inputs */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 14px 16px;
    font-size: 16px; /* Verhindert Auto-Zoom auf iOS */
  }

  /* Submit-Button fullwidth */
  .wpcf7 input[type="submit"],
  .wpcf7-submit {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* Label lesbarer */
  .wpcf7 label {
    font-size: var(--fs-base);
    margin-bottom: 16px;
  }
}

/* ———————————————————————————————————
   BACK TO TOP
   ——————————————————————————————————— */
.erol-back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--erol-yellow);
  color: var(--erol-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.erol-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.erol-back-to-top:hover {
  background: #fff;
}
