/* Lokale Schriften */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

/* Akzent-Spektrum: kräftigeres Cyan, gleiche dunkle Flächen */
:root {
  --bg: #050506;
  --bg-elev: #0c0c0e;
  --bg-alt: #080809;
  --text: #e4e4e8;
  --muted: #8e8e9a;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #1ab8e0;
  --accent-bright: #5ee6ff;
  --accent-deep: #1490b4;
  --accent-dim: rgba(26, 200, 235, 0.26);
  --accent-faint: rgba(26, 200, 235, 0.11);
  --tone-yellow: #fffc00;
  --hero-cta-pink: #fda7df;
  --radius-sharp: 2px;
  --radius-soft: 6px;
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 72px;
  --header-float-top: 1rem;
  --header-offset: calc(var(--header-float-top) + var(--header-h) + 0.85rem);
  /* Zusatzabstand Titelbereich unter der Navbar (Unterseiten ohne Hero) */
  --subpage-top-extra: 1.875rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* Seiten ohne Hero: Abstand für fixierte Navigation */
main:not(:has(.hero)) {
  padding-top: calc(var(--header-offset) + var(--subpage-top-extra));
}

/* Unterseiten dürfen main-padding-top nicht überschreiben (war: zu wenig Abstand zur Navbar) */
main.wrap.legal,
main.wrap.vpl-page,
main.wrap.price-page,
main.wrap.team-page,
main.wrap.video-page,
main.wrap.wechsel-page,
main.wrap.simulator-page {
  padding-top: calc(var(--header-offset) + var(--subpage-top-extra));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 300;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header: fixiert über dem Inhalt (Hero-Video), Glasoptik ohne schwarzen Vollbalken */
.site-header {
  position: fixed;
  top: var(--header-float-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(1120px, calc(100% - 1.5rem));
  background: rgba(5, 5, 6, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(26, 200, 235, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  position: relative;
  margin: 0 auto;
  padding: 0.7rem 1.25rem 0.85rem;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__bar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.site-header__insta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__insta:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.site-header__insta-svg {
  display: block;
}

.site-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.site-logo__img {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(240px, 58vw);
}

.site-logo:hover .site-logo__img {
  opacity: 0.92;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  justify-content: flex-end;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  box-shadow: 0 6px 0 var(--text), 0 -6px 0 var(--text);
}

@media (hover: hover) {
  .nav-toggle:hover .nav-toggle__bar {
    background: #fff;
    box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-header__bar-end {
    flex: 0 0 auto;
    gap: 0.4rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    background: rgba(12, 12, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    padding: 1rem 1.25rem 1.25rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(1.02);
}

.hero__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #07080c 0%, #050506 55%, #030304 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(195deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.46) 72%),
    linear-gradient(110deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(26, 200, 235, 0.09), transparent 55%);
}

/* Sonnenaufgang / Lens-Flare (unter dem Overlay, über dem Video) */
.hero__flares {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__flare--dawn {
  width: 120%;
  height: 55%;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 70% 55% at 50% 100%,
    rgba(255, 214, 170, 0.42) 0%,
    rgba(255, 160, 96, 0.12) 45%,
    transparent 72%
  );
  filter: blur(48px);
  opacity: 0.85;
}

.hero__flare--rim {
  width: 140%;
  height: 42%;
  bottom: -8%;
  left: -20%;
  background: radial-gradient(
    ellipse 55% 45% at 70% 0%,
    rgba(26, 200, 235, 0.34) 0%,
    rgba(26, 200, 235, 0.08) 42%,
    transparent 68%
  );
  filter: blur(56px);
  opacity: 0.65;
}

.hero__flare--blue {
  width: 55%;
  height: 70%;
  top: 5%;
  right: -12%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(110, 230, 255, 0.28) 0%,
    rgba(26, 200, 235, 0.06) 50%,
    transparent 70%
  );
  filter: blur(52px);
  opacity: 0.55;
}

/* Textur-Layer: feines Punktgitter + Körnung */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__texture--dots {
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px);
  background-size: 10px 10px;
}

.hero__texture--grain {
  opacity: 0.048;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--header-offset) 1.35rem 3rem;
  width: 100%;
}

.hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.hero__title {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
}

.hero__title-line {
  display: block;
}

.hero__title-line--1 {
  font-size: clamp(2.1rem, 6.5vw, 3.35rem);
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero__title-line--2 {
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  letter-spacing: 0.03em;
  margin-top: 0.3rem;
  color: var(--accent-bright);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
  margin: 0 0 1.6rem;
  font-size: 1rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.hero__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.hero__icon-link:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.hero__icon-link .bi {
  font-size: 1.28rem;
  line-height: 1;
}

.hero__fsm-form {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.hero__fsm-form .btn {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sharp);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.btn--ghost {
  border-color: rgba(26, 200, 235, 0.58);
  color: var(--accent-bright);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--accent-faint);
}

.btn--standorte {
  color: var(--hero-cta-pink);
  background: transparent;
  border-color: rgba(253, 167, 223, 0.72);
  box-shadow: 0 0 0 1px rgba(253, 167, 223, 0.12);
}

.btn--standorte:hover {
  color: #fff;
  background: rgba(253, 167, 223, 0.16);
  border-color: var(--hero-cta-pink);
  box-shadow: 0 0 0 1px rgba(253, 167, 223, 0.22);
}

/* Sektionen */
.section-band {
  position: relative;
  padding: clamp(3.25rem, 7vw, 4.75rem) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-offset);
}

/* Sektionswechsel: dezente Farbakzente (Magenta / Cyan / Gold) */
.section-band--tone1 {
  border-top: 1px solid rgba(255, 95, 155, 0.26);
  background: linear-gradient(165deg, rgba(42, 10, 31, 0.35) 0%, #050506 100%);
}

.section-band--tone1 .section-eyebrow {
  color: rgba(255, 130, 185, 0.88);
}

.section-band--tone1 .section-title {
  color: var(--text);
}

.section-band--tone1 .section-lead {
  color: rgba(200, 200, 208, 0.9);
}

.section-band--tone1 .section-lead a {
  color: rgba(255, 165, 205, 0.98);
}

.section-band--tone1 .card--rule {
  border-left-color: rgba(255, 95, 150, 0.55);
}

.section-band--tone1 .location-card {
  border-top-color: rgba(255, 95, 150, 0.55);
}

.section-band--tone1 .review {
  border-left-color: rgba(255, 95, 150, 0.55);
}

.section-band--tone2 {
  border-top: 1px solid rgba(0, 188, 176, 0.2);
  background: linear-gradient(165deg, rgba(2, 22, 28, 0.42) 0%, #050506 100%);
}

.section-band--tone2 .section-eyebrow {
  color: rgba(72, 188, 178, 0.82);
}

.section-band--tone2 .section-title {
  color: var(--text);
}

.section-band--tone2 .section-lead {
  color: rgba(200, 200, 208, 0.9);
}

.section-band--tone2 .section-lead a {
  color: rgba(95, 210, 200, 0.92);
}

.section-band--tone2 .card--rule {
  border-left-color: rgba(0, 165, 155, 0.48);
}

.section-band--tone2 .location-card {
  border-top-color: rgba(0, 165, 155, 0.48);
}

.section-band--tone2 .review {
  border-left-color: rgba(0, 165, 155, 0.48);
}

.section-band--tone3 {
  border-top: 1px solid rgba(255, 252, 0, 0.28);
  background: linear-gradient(165deg, rgba(42, 40, 0, 0.28) 0%, #050506 100%);
}

.section-band--tone3 .section-eyebrow {
  color: var(--tone-yellow);
}

.section-band--tone3 .section-title {
  color: var(--text);
}

.section-band--tone3 .section-lead {
  color: rgba(200, 200, 208, 0.9);
}

.section-band--tone3 .section-lead a {
  color: var(--tone-yellow);
}

.section-band--tone3 .card--rule {
  border-left-color: rgba(255, 252, 0, 0.55);
}

.section-band--tone3 .location-card {
  border-top-color: rgba(255, 252, 0, 0.55);
}

.section-band--tone3 .review {
  border-left-color: rgba(255, 252, 0, 0.55);
}

/* Büros: Hintergrundkarte + leichter Layer */
.section-band--buros.section-band--tone3 {
  background: linear-gradient(
    165deg,
    rgba(36, 34, 0, 0.52) 0%,
    rgba(10, 10, 0, 0.4) 38%,
    #020203 100%
  );
  border-top-color: rgba(255, 252, 0, 0.38);
}

.section-band--buros .section-eyebrow {
  color: var(--tone-yellow);
}

.section-band--buros .section-title {
  text-shadow: 0 0 40px rgba(255, 252, 0, 0.16);
}

.section-band--buros .section-lead {
  color: rgba(210, 208, 215, 0.94);
}

.section-band--buros .section-lead a {
  color: var(--tone-yellow);
}

.section-band--buros .section-lead a:hover {
  color: #fff;
}

.section-band--buros .location-card {
  border-top-color: rgba(255, 252, 0, 0.72);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 252, 0, 0.22);
}

.section-band--buros .section-band__bg {
  filter: brightness(0.52) saturate(0.78);
}

.section-band--buros .section-band__scrim {
  background: linear-gradient(
    185deg,
    rgba(12, 9, 3, 0.78) 0%,
    rgba(4, 3, 2, 0.9) 42%,
    rgba(1, 1, 2, 0.98) 100%
  );
}

/* Startseite (mit Hero): leicht aufgehellter Darkmode (etwas dunkler als vorige Iteration) */
main:has(.hero) .section-band {
  border-top-color: rgba(255, 255, 255, 0.12);
}

main:has(.hero) .section-band--tone1 {
  border-top-color: rgba(255, 110, 160, 0.28);
  background: linear-gradient(165deg, rgba(44, 16, 34, 0.38) 0%, #0a0a0e 100%);
}

main:has(.hero) .section-band--tone2 {
  border-top-color: rgba(0, 175, 165, 0.22);
  background: linear-gradient(165deg, rgba(4, 28, 34, 0.44) 0%, #0a0a0e 100%);
}

main:has(.hero) .section-band--tone3 {
  border-top-color: rgba(255, 240, 70, 0.3);
  background: linear-gradient(165deg, rgba(48, 44, 14, 0.3) 0%, #0a0a0e 100%);
}

main:has(.hero) .section-band--buros.section-band--tone3 {
  background: linear-gradient(
    165deg,
    rgba(40, 36, 12, 0.44) 0%,
    rgba(14, 12, 6, 0.34) 40%,
    #08080c 100%
  );
  border-top-color: rgba(255, 240, 90, 0.32);
}

main:has(.hero) .section-band--buros .section-band__bg {
  filter: brightness(0.56) saturate(0.8);
}

main:has(.hero) .section-band--buros .section-band__scrim {
  background: linear-gradient(
    185deg,
    rgba(14, 12, 6, 0.72) 0%,
    rgba(6, 5, 4, 0.86) 42%,
    rgba(4, 4, 6, 0.95) 100%
  );
}

.section-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-band__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/braunschweig-map-dark.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) saturate(0.95);
}

.section-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(5, 5, 6, 0.55) 0%,
    rgba(5, 5, 6, 0.82) 45%,
    rgba(5, 5, 6, 0.92) 100%
  );
}

.section-band--buros .section-band__content {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 1.65rem);
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  line-height: 1.12;
  color: var(--text);
  font-weight: 400;
}

.section-lead {
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

/* Sanftes Einblenden beim Scrollen (siehe footer.js) */
main .section-band .wrap,
main .price-section,
main .team-section,
main .video-section {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

main .section-band.is-inview .wrap,
main .price-section.is-inview,
main .team-section.is-inview,
main .video-section.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  main .section-band .wrap,
  main .price-section,
  main .team-section,
  main .video-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}

.intro-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  padding: 1.35rem 1.25rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.card--rule {
  border-left: 3px solid var(--accent);
  padding-left: 1.35rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.card__intro {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.card__outro {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card__note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.checklist {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.35rem;
}

/* Standorte */
.locations {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 700px) {
  .locations {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  border-top: 2px solid var(--accent);
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.location-card__photo {
  position: relative;
  margin: 0;
  height: 252px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.location-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 6, 0.92) 0%,
    rgba(5, 5, 6, 0.35) 42%,
    rgba(12, 28, 38, 0.55) 100%
  );
  pointer-events: none;
}

.location-card__body {
  padding: 1.25rem 1.2rem 1.35rem;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.location-card address {
  font-style: normal;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
}

.location-card dl {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.location-card dt {
  font-weight: 600;
  color: var(--text);
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-card dt:first-child {
  margin-top: 0;
}

.location-card dd {
  margin: 0.2rem 0 0;
}

/* Rückfragen: Team-Bild + Kontakt */
.contact-split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.65rem);
  align-items: start;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.contact-split .card {
  padding: 1rem 1.05rem;
}

@media (min-width: 860px) {
  .contact-split {
    grid-template-columns: minmax(200px, min(28vw, 280px)) 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
  }

  .contact-yasar-card.card,
  .contact-split__panel.card {
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
  }

  .contact-split__panel.card {
    display: flex;
    flex-direction: column;
  }

  .contact-yasar-card__fill,
  .contact-split__panel-fill {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
  }
}

.contact-yasar-card.card {
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: center;
}

.contact-yasar-card__media {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 0.75rem;
  aspect-ratio: 876 / 1024;
  flex: 0 1 auto;
  overflow: hidden;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.contact-yasar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-yasar-card .contact-split__headline {
  margin: 0 0 0.4rem;
}

.contact-yasar-card__tagline {
  margin: 0;
  padding: 0 0.15rem;
  font-size: 0.88rem;
  line-height: 1.42;
  color: var(--muted);
}

.contact-split__panel {
  margin: 0;
}

.contact-split .contact-split__headline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  line-height: 1.12;
}

.contact-split__intro {
  margin: 0 0 0.75rem;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.95rem;
}

.contact-details {
  margin: 0;
}

.contact-details__row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.25rem 0.85rem;
  padding: 0.45rem 0 0.6rem;
  border-bottom: 1px solid var(--line);
}

.contact-details__row:first-of-type {
  padding-top: 0;
}

.contact-details__row:last-of-type {
  border-bottom: none;
  padding-bottom: 0.35rem;
}

.contact-details dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: start;
  padding-top: 0.2rem;
  padding-bottom: 0.15rem;
}

.contact-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
  line-height: 1.4;
}

.contact-details dd a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.contact-details dd a:hover {
  color: #fff;
  opacity: 0.9;
  text-decoration: underline;
}

.contact-details__hint {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 520px) {
  .contact-details__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-bottom: 0.65rem;
  }

  .contact-details__row:last-of-type {
    padding-bottom: 0.4rem;
  }

  .contact-details dt {
    padding-top: 0;
    padding-bottom: 0.25rem;
  }
}

/* Rückfragen: Mobil — Kontaktfeld zuerst, Yasar-Karte darunter */
@media (max-width: 859px) {
  .contact-split {
    gap: 1.1rem;
  }

  .contact-split__panel {
    order: 1;
  }

  .contact-yasar-card {
    order: 2;
  }

  .contact-yasar-card__media {
    max-width: min(180px, 52vw);
  }

  .contact-yasar-card__fill,
  .contact-split__panel-fill {
    display: none;
  }
}

/* Führerschein-Kacheln: Raster, kantig */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tile {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 0.85rem 0.5rem;
  background: var(--bg-elev);
  border: none;
  border-radius: 0;
  font: inherit;
  font-family: var(--font-body);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.tile:hover {
  background: #121214;
  text-decoration: none;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .tile:hover {
    transform: translateY(-2px);
  }
}

.tile:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: -2px;
  z-index: 1;
}

.tile__code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tile--full {
  grid-column: 1 / -1;
  min-height: 76px;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.tile--full .tile__label {
  margin-top: 0;
}

.tile--half {
  grid-column: span 3;
}

@media (max-width: 640px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .tile,
  .tile--half,
  .tile--full {
    grid-column: 1 / -1;
    min-height: 72px;
  }

  .tile--full {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Führerscheinklassen: Blau/Grün (tone2) */
.section-band--tone2 .tile {
  background: linear-gradient(
    155deg,
    rgba(2, 18, 24, 0.98) 0%,
    rgba(1, 10, 16, 0.99) 100%
  );
  color: rgba(220, 236, 240, 0.95);
  border: 1px solid rgba(18, 78, 90, 0.52);
}

.section-band--tone2 .tile:hover {
  background: linear-gradient(
    155deg,
    rgba(6, 42, 52, 0.95) 0%,
    rgba(3, 28, 38, 0.98) 100%
  );
  text-decoration: none;
}

.section-band--tone2 .tile__label {
  color: rgba(95, 175, 188, 0.88);
}

.section-band--tone2 .tile__code {
  color: rgba(52, 145, 165, 0.94);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .section-band--tone2 .tile:hover {
    box-shadow:
      0 0 0 1px rgba(32, 155, 175, 0.38),
      0 6px 20px rgba(0, 0, 0, 0.48);
  }

  .section-band--tone2 .tile:hover .tile__code {
    color: rgba(95, 205, 220, 0.95);
  }

  .section-band--tone2 .tile:hover .tile__label {
    color: rgba(120, 200, 212, 0.9);
  }
}

.section-band--tone2 .tile:focus-visible {
  outline-color: rgba(45, 175, 195, 0.65);
}

/* Bewertungen: Laufband */
.reviews-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 60ch;
}

.reviews-marquee {
  position: relative;
  margin: 0 -0.25rem;
  padding: 0.25rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}

.reviews-marquee__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-marquee__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.reviews-marquee__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.reviews-marquee__viewport.is-dragging .review {
  pointer-events: none;
}

.reviews-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee {
    mask-image: none;
  }
}

.review--slide {
  flex: 0 0 min(300px, 78vw);
  max-width: 340px;
  min-height: 100%;
}

.review {
  margin: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-deep);
  border-radius: 0;
  padding: 1rem 1rem 1rem 1.1rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .review:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.review__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
  margin: 0 0 0.55rem;
}

.review__stars {
  flex-shrink: 0;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.92;
  line-height: 1;
}

.review__name {
  font-weight: 600;
  color: var(--text);
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.review__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-band--tone1 .reviews-note,
.section-band--tone2 .reviews-note,
.section-band--tone3 .reviews-note {
  color: var(--muted);
}

.section-band--tone3 .review__stars {
  color: var(--tone-yellow);
}

/* Klassen-Info (Dialog, OLED / Seitenlook) */
.class-modal {
  max-width: min(92vw, 32rem);
  padding: 0;
  border: 1px solid rgba(26, 200, 235, 0.28);
  border-radius: var(--radius-sharp);
  background:
    linear-gradient(165deg, rgba(26, 200, 235, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, #0a0a0d 0%, #050506 100%);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.65),
    0 32px 64px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(26, 200, 235, 0.06);
}

.class-modal::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.class-modal__inner {
  position: relative;
  padding: 1.85rem 1.4rem 1.35rem;
  border-top: 3px solid var(--accent);
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 12px 12px;
}

.class-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sharp);
  background: rgba(5, 5, 6, 0.85);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.class-modal__close:hover {
  background: rgba(26, 200, 235, 0.15);
  border-color: rgba(26, 200, 235, 0.45);
  color: #fff;
}

.class-modal__title {
  margin: 0 0 1rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #e8f8ff;
  text-shadow: 0 0 24px rgba(26, 200, 235, 0.25);
}

.class-modal__body {
  font-size: 0.95rem;
  line-height: 1.58;
  color: rgba(228, 228, 232, 0.88);
}

.class-modal__body strong {
  color: var(--accent-bright);
  font-weight: 600;
}

.class-modal__body p {
  margin: 0 0 0.85rem;
}

.class-modal__body p:last-child {
  margin-bottom: 0;
}

.class-modal__h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.class-modal__list {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  color: rgba(200, 200, 208, 0.9);
}

.class-modal__list li {
  margin-bottom: 0.4rem;
}

.class-modal__hint {
  font-size: 0.9rem;
  color: rgba(142, 142, 154, 0.95);
  font-style: italic;
  border-left: 2px solid rgba(26, 200, 235, 0.45);
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

.class-modal__footer {
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.class-modal__footer-line {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(142, 142, 154, 0.95);
}

.class-modal__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.class-modal__email {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.35;
}

.class-modal__action {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-sharp);
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.class-modal__action:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  text-decoration: none;
}

.class-modal__action--ghost {
  background: transparent;
  color: var(--accent-bright);
  border-color: rgba(26, 200, 235, 0.45);
}

.class-modal__action--ghost:hover {
  background: var(--accent-faint);
  border-color: rgba(110, 230, 255, 0.62);
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--bg);
}

.site-footer__bar {
  padding: 1.75rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
  opacity: 0.88;
  text-decoration: underline;
}

/* Preisliste */
.price-page {
  max-width: 880px;
  padding-bottom: 4rem;
}

.price-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 2.85rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.98);
}

.price-page__lead {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.price-page__note {
  margin: 0 0 2.25rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-elev);
  border-radius: var(--radius-sharp);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.price-section {
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.price-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
}

.price-section__sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
  color: rgba(255, 255, 255, 0.95);
}

.price-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.96rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  overflow: hidden;
}

.price-table tr {
  border-bottom: 1px solid var(--line);
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  width: 62%;
}

.price-table td {
  padding: 0.65rem 1rem;
  text-align: right;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  vertical-align: top;
  width: 38%;
}

@media (max-width: 520px) {
  .price-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table {
    min-width: 100%;
    table-layout: fixed;
  }

  .price-table th {
    width: 56%;
  }

  .price-table td {
    width: 44%;
    text-align: right;
  }
}

/* Verkehrsübungsplatz */
.vpl-page {
  max-width: 880px;
  padding-bottom: 4rem;
}

.vpl-intro {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

.vpl-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: 0.03em;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.05;
}

.vpl-intro__grid {
  display: grid;
  gap: 1.25rem 1.75rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .vpl-intro__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

.vpl-intro__lead {
  margin: 0;
  padding: 1.15rem 1.25rem;
  font-size: 1.04rem;
  line-height: 1.58;
  color: rgba(235, 236, 240, 0.94);
  background: linear-gradient(145deg, rgba(26, 200, 235, 0.08) 0%, rgba(5, 5, 6, 0.5) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sharp);
}

.vpl-intro__panel {
  margin: 0;
  padding: 1.1rem 1.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.vpl-intro__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 200, 235, 0.85);
}

.vpl-intro__meta {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(180, 182, 192, 0.95);
}

.vpl-intro__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent-bright);
  border-bottom: 1px solid rgba(26, 200, 235, 0.45);
}

.vpl-intro__cta:hover {
  color: #fff;
  border-bottom-color: var(--accent-bright);
  text-decoration: none;
}

.vpl-page__note {
  margin: 0 0 2rem;
  font-size: 0.92rem;
}

.vpl-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 639px) {
  .vpl-gallery {
    grid-template-columns: 1fr;
  }
}

.vpl-gallery__figure {
  margin: 0;
  min-width: 0;
}

.vpl-gallery__figure--tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.vpl-gallery__figure--tile .vpl-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vpl-gallery__figure--wide {
  grid-column: 1 / -1;
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 100%;
}

.vpl-gallery__img {
  display: block;
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .vpl-gallery__img {
    transition: none;
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .vpl-gallery__figure:hover .vpl-gallery__img {
    filter: grayscale(0) contrast(1.04);
  }
}

.vpl-gallery__img--plan {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vpl-section {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.vpl-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
}

.vpl-section h3.price-section__sub {
  margin-top: 1.25rem;
}

.vpl-section p,
.vpl-section li {
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.6;
}

.vpl-section__hint {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.vpl-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.vpl-list--compact li {
  margin-bottom: 0.5rem;
}

.vpl-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .vpl-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.vpl-highlight {
  padding: 1rem 1.1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  border-left: 3px solid var(--accent);
}

.vpl-highlight__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.vpl-highlight__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.vpl-hours {
  margin: 0 0 1rem;
}

.vpl-hours__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}

.vpl-hours__row:last-child {
  border-bottom: none;
}

.vpl-hours dt {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vpl-hours dd {
  margin: 0;
  color: var(--text);
}

.price-section__more {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.price-section__more a {
  font-weight: 600;
}

/* Startseite: Teaser Fahrschulwechsel */
.wechsel-teaser {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.55;
  max-width: 62ch;
}

.wechsel-teaser li {
  margin-bottom: 0.45rem;
}

.wechsel-teaser__cta {
  margin: 0;
}

.wechsel-teaser__cta .btn--primary {
  background: linear-gradient(165deg, rgba(18, 8, 11, 0.96) 0%, rgba(8, 4, 6, 0.98) 100%);
  color: rgba(215, 200, 204, 0.92);
  border-color: rgba(110, 42, 52, 0.45);
  box-shadow: none;
}

.wechsel-teaser__cta .btn--primary:hover {
  background: linear-gradient(165deg, rgba(28, 10, 14, 0.97) 0%, rgba(12, 5, 7, 0.99) 100%);
  border-color: rgba(130, 55, 65, 0.5);
  color: rgba(235, 228, 230, 0.96);
}

/* Unterseite Fahrschulwechsel */
.wechsel-page {
  max-width: 720px;
  padding-bottom: 4rem;
}

.wechsel-header {
  margin-bottom: 2rem;
}

.wechsel-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: 0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.08;
}

.wechsel-header__tagline {
  margin: 0.65rem 0 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.wechsel-section {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.wechsel-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
}

.wechsel-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.62;
  color: rgba(200, 200, 208, 0.95);
}

.wechsel-section p {
  margin: 0 0 1rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.58;
}

.wechsel-section p:last-child {
  margin-bottom: 0;
}

.wechsel-subhead {
  margin: 1.15rem 0 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.wechsel-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.58;
}

.wechsel-list li {
  margin-bottom: 0.65rem;
}

.wechsel-section--card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  border-left: 3px solid var(--accent);
}

.wechsel-section--inhaber {
  border-left-color: rgba(255, 95, 150, 0.65);
}

.wechsel-cta {
  padding: 1.5rem 1.25rem;
  margin: 2.25rem 0 2rem;
  background: linear-gradient(165deg, rgba(26, 200, 235, 0.09) 0%, rgba(8, 8, 10, 0.65) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
}

.wechsel-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
}

.wechsel-cta__text {
  margin: 0 0 1.2rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.55;
}

.wechsel-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.wechsel-back {
  margin: 0;
  font-size: 0.95rem;
}

.wechsel-back a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-bright);
}

.wechsel-back a:hover {
  text-decoration: underline;
}

/* Team */
.team-page {
  padding-bottom: 4rem;
}

.team-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.team-page__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 58ch;
}

.team-page .page-seo {
  margin-top: 0.75rem;
}

.team-intro {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.team-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.team-card__media {
  aspect-ratio: 1;
  background: var(--bg-alt);
  overflow: hidden;
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-card__img,
  .location-card:hover .location-card__photo img,
  .contact-yasar-card:hover .contact-yasar-card__img {
    filter: grayscale(0);
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .team-card__img,
  .location-card__photo img,
  .contact-yasar-card__img {
    filter: none;
    transition: none;
  }
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0.75rem 0.85rem 0.2rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.2;
}

.team-card__role {
  margin: 0;
  padding: 0 0.85rem 0.85rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

.team-hiring {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.65rem);
  border-left: 3px solid var(--accent);
}

.team-hiring h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  color: var(--text);
  font-weight: 400;
}

.team-hiring__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.team-hiring__text {
  margin: 0 0 0.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.team-hiring__rate {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 0.98rem;
}

.team-hiring__email-line {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.legal .email-obfuscated {
  color: inherit;
}

.contact-details dd .email-obfuscated {
  color: #fff;
}

/* YouTube-Videos (RSS, kein Einbettungs-iframe bis Zustimmung) */
.video-page {
  padding-bottom: 4rem;
  max-width: 960px;
}

.video-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.98);
}

.video-page__lead {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: min(88ch, 100%);
}

.video-page__info {
  margin: 0 0 1.75rem;
  max-width: min(88ch, 100%);
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.page-seo {
  margin: 0 0 1.75rem;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.price-page .page-seo {
  margin-top: -0.35rem;
}

.site-seo {
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 1.75rem) clamp(2.5rem, 6vw, 3.25rem);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.site-seo__text {
  margin: 0;
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}

.site-seo__text strong {
  color: rgba(228, 228, 232, 0.92);
  font-weight: 600;
}

.video-page__empty {
  color: var(--muted);
  padding: 1.5rem 0;
}

.video-page__channel {
  margin: 2rem 0 0;
  text-align: center;
}

.video-page__channel-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: none;
}

a.video-page__channel-link:hover,
a.video-page__channel-link:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  border-bottom: none;
}

.video-consent {
  margin-bottom: 2rem;
}

.video-consent__box {
  padding: 1.25rem 1.35rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sharp);
  max-width: 52ch;
}

.video-consent__text {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.video-consent__meta {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

.video-consent__meta a {
  color: rgba(220, 205, 170, 0.95);
  font-weight: 600;
}

.video-consent__btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius-sharp);
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  color: var(--accent-bright);
}

.video-consent__btn:hover {
  background: rgba(26, 200, 235, 0.28);
  color: #fff;
}

.video-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

a.video-card:hover,
a.video-card:focus-visible {
  text-decoration: none;
}

.video-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  overflow: hidden;
}

.video-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.youtube-consent-on .video-card__img {
  opacity: 1;
  filter: none;
}

.video-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(18, 18, 22, 0.92) 0%, rgba(8, 8, 10, 0.96) 100%);
  z-index: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.youtube-consent-on .video-card__ph {
  opacity: 0;
  visibility: hidden;
}

.video-card__ph-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
}

.video-card__body {
  padding: 1rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.video-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--text);
  line-height: 1.25;
  font-weight: 400;
}

.video-card__date {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Simulator-Unterseite */
.simulator-page {
  max-width: 880px;
  padding-bottom: 4rem;
}

.simulator-intro {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.simulator-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.05;
}

.simulator-intro__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.62;
  color: rgba(200, 200, 208, 0.95);
  max-width: 62ch;
}

.simulator-figure {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  padding: 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.simulator-figure__img {
  display: block;
  width: 100%;
  height: auto;
}

.simulator-figure__cap {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.simulator-section {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.simulator-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
}

.simulator-section p {
  margin: 0 0 1rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.6;
}

.simulator-section p:last-child {
  margin-bottom: 0;
}

.simulator-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: rgba(200, 200, 208, 0.95);
  line-height: 1.58;
}

.simulator-list li {
  margin-bottom: 0.45rem;
}

.simulator-section__cta {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.simulator-page .page-seo {
  margin-top: 0.5rem;
}

/* Rechtstext — padding-top nur über main (siehe main.wrap.legal), sonst kollidiert es mit Navbar-Abstand */
.wrap.legal {
  padding-bottom: 3rem;
  max-width: 720px;
}

.legal {
  max-width: 720px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 2.65rem);
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.03em;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.65rem);
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1.75rem;
  letter-spacing: 0.04em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a {
  word-break: break-word;
}

.legal-label {
  margin: 0.35rem 0 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--bg-elev);
}

.legal-label p {
  margin: 0 0 0.65rem;
}

.legal-label p:last-child {
  margin-bottom: 0;
}

.legal-label .email-obfuscated {
  color: inherit;
}
