/* ═══════════════════════════════════════════════════════════════
   VAUN Bike-Detail Components  (Sight / Skyline / CAL 20)
   Section-Aufbau nach Steppenwolf-Tundra-Vorlage, Styling in VAUN-CI.
   Prefix:  .vbd-*  (vaun-bike-detail)
   Default: dark mode. Light wird via body.light überschrieben.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --vbd-color-grayish-green-60:    #7A8B7A;
  --vbd-color-cool-gray-60:        #A8AAB0;
  --vbd-color-grayish-green-80:    #5E6F5E;
  --vbd-color-cool-gray-80:        #8A8D92;
  --vbd-color-graphite-gray-80:    #3C3D40;
  --vbd-color-light-grayish-blue:  #A8B0BA;
  --vbd-color-amber:               #C6A062;

  --vbd-line-urban:    #1B5E91;
  --vbd-line-trekking: #5E8F70;
  --vbd-line-compact:  #E07A28;

  --vbd-bg:       #0e0e10;
  --vbd-surface:  rgba(255, 255, 255, 0.04);
  --vbd-border:   rgba(255, 255, 255, 0.10);
  --vbd-text:     #f5f5f5;
  --vbd-text-dim: rgba(245, 245, 245, 0.65);
  --vbd-mint:     var(--vaun-mint, #7cffcb);

  --vbd-radius-lg: 20px;
  --vbd-radius-md: 12px;
  --vbd-radius-sm: 6px;

  --vbd-section-y: clamp(48px, 8vw, 120px);
}

body.light {
  --vbd-bg:       #f5f5f5;
  --vbd-surface:  rgba(0, 0, 0, 0.04);
  --vbd-border:   rgba(0, 0, 0, 0.10);
  --vbd-text:     #1a1a1a;
  --vbd-text-dim: rgba(26, 26, 26, 0.7);
}

/* ───────────── Page wrapper ───────────── */
.vbd-page {
  background: var(--vbd-bg);
  color: var(--vbd-text);
  font-family: 'Anybody', sans-serif;
  min-height: 100dvh;
}

.vbd-container {
  width: min(1280px, 100% - clamp(24px, 5vw, 80px));
  margin-inline: auto;
}

/* ───────────── Eyebrow / Line-Tag ───────────── */
.vbd-line-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--vbd-surface);
  border: 1px solid var(--vbd-border);
}
.vbd-line-tag--urban    { color: var(--vbd-line-urban); }
.vbd-line-tag--trekking { color: var(--vbd-line-trekking); }
.vbd-line-tag--compact  { color: var(--vbd-line-compact); }

/* ═════════ 0. MEGA-HERO (Stigmata-Stil — Hintergrund = Bike-Farbe) ═════════ */
/* fixed: bleibt im Hintergrund — Card-Stack schiebt sich darüber.
   Ist deterministischer als sticky (sticky bricht oft an Container-overflow). */
.vbd-megahero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 8vw, 120px);
  background-color: var(--megahero-bg, #5E6F5E);
  color: var(--megahero-text, #ffffff);
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), color 0.6s ease;
}
.vbd-megahero > .vbd-container {
  width: 100%;
}
/* Mobile / Reduced-Motion: normales Verhalten, kein fixed */
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .vbd-megahero {
    position: relative;
    height: auto;
    min-height: auto;
  }
}

/* ═════════ CARD-STACK ═════════
   Alles ab Video wird in einem Wrapper gestapelt der sich beim Scrollen
   als "Card" über das fixed Mega-Hero schiebt.
   Header bleibt obendrauf (z-index 9999), Mega-Hero unter Card (z-index 1).
   margin-top: 100dvh damit die Card UNTER dem viewport startet und nach oben scrollt.
*/
.vbd-card-stack {
  position: relative;
  z-index: 2;
  margin-top: 100dvh;
  background-color: var(--vbd-bg);
  border-top-left-radius: clamp(16px, 2.5vw, 36px);
  border-top-right-radius: clamp(16px, 2.5vw, 36px);
  overflow: hidden;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.18);
}
body.light .vbd-card-stack {
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.08);
}
/* Video direkt am Card-Top */
.vbd-video-fullbleed {
  position: relative;
}
/* Mobile: kein fixed Mega-Hero → kein margin-top auf der Card */
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .vbd-card-stack {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
.vbd-megahero__title,
.vbd-megahero__substrip,
.vbd-megahero__value {
  color: var(--megahero-text, #ffffff);
}
.vbd-megahero__substrip-item + .vbd-megahero__substrip-item {
  border-left-color: color-mix(in srgb, var(--megahero-text, #fff) 35%, transparent);
}

.vbd-megahero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* Headline: ein Wort, allcaps, fett, weiß, riesig — wie STIGMATA */
.vbd-megahero__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

/* Sub-Strip: 2 Spalten mit Eyebrow/Value, vertikaler Trenner */
.vbd-megahero__substrip {
  display: inline-flex;
  align-items: stretch;
  margin: 0;
  color: #ffffff;
}
.vbd-megahero__substrip-item {
  padding: 0 clamp(20px, 3vw, 36px);
  text-align: center;
}
.vbd-megahero__substrip-item + .vbd-megahero__substrip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.vbd-megahero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 4px;
  font-weight: 600;
}
.vbd-megahero__value {
  font-family: 'ClashDisplay', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1;
}

/* Visual-Container: Bike zentriert, Picker rechts absolut */
.vbd-megahero__visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vbd-megahero__stage {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  position: relative;
}
.vbd-megahero__bike {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.4s ease;
  /* Boden-Shadow */
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}
.vbd-megahero__bike.is-fading { opacity: 0; }

/* Modifier: Bild auf farbigem Hintergrund mit weißem Studio-Bg "transparent" rendern.
   multiply: weiß × farbe = farbe (weißer Bild-Bg verschwindet), dunkles Bike bleibt sichtbar. */
.vbd-megahero__bike--blend {
  mix-blend-mode: multiply;
  /* Drop-Shadow filter funktioniert mit mix-blend nicht mehr — daher hier deaktivieren */
  filter: none;
}

/* Color-Picker rechts vertikal, nur Chips, keine Labels */
.vbd-megahero__swatch {
  position: absolute;
  right: clamp(8px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.vbd-megahero__swatch-btn {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  background-color: var(--chip, #555);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.vbd-megahero__swatch-btn:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.85);
}
.vbd-megahero__swatch-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.vbd-megahero__swatch-btn[aria-pressed="true"] {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.vbd-megahero__swatch-btn--placeholder {
  opacity: 0.5;
  cursor: not-allowed;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,0.25) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.25) 25%, transparent 25%);
  background-size: 6px 6px;
}
.vbd-megahero__swatch-btn--placeholder:hover { transform: none; }

/* Tooltip mit Farb-Namen (rechts daneben, nur on hover/focus) */
.vbd-megahero__swatch-btn::after {
  content: attr(data-vbd-tooltip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.vbd-megahero__swatch-btn:hover::after,
.vbd-megahero__swatch-btn:focus-visible::after {
  opacity: 1;
}

/* ── Swatch als 3. Spalte in der Eckdaten-Leiste (neben Laufradgröße) ── */
.vbd-megahero__substrip-item--swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vbd-megahero__substrip .vbd-megahero__swatch {
  position: static;
  transform: none;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  z-index: auto;
  margin: 0; /* überschreibt das mobile margin-top:32px der alten "unterm Bike"-Regel */
  min-height: clamp(20px, 2.2vw, 28px); /* vertikal auf Höhe der value-Texte */
}
.vbd-megahero__substrip .vbd-megahero__swatch-btn {
  width: 22px;
  height: 22px;
  border-width: 1.5px;
}
.vbd-megahero__substrip .vbd-megahero__swatch-btn[aria-pressed="true"] {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 2px 6px rgba(0, 0, 0, 0.3);
}
/* Tooltip in der Leiste nach unten klappen statt nach links */
.vbd-megahero__substrip .vbd-megahero__swatch-btn::after {
  right: auto;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
}

/* Mobile: Picker unters Bike, horizontal */
@media (max-width: 767px) {
  .vbd-megahero { padding: clamp(48px, 12vw, 80px) 0; }
  .vbd-megahero__swatch {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 32px;
  }
  .vbd-megahero__swatch-btn::after {
    right: auto;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
  }
}

/* ═════════ 0.5 VIDEO-FULLBLEED (zwischen Mega-Hero und nächster Section) ═════════ */
.vbd-video-fullbleed {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 85dvh;
  overflow: hidden;
  background: #000;
}
@media (max-width: 767px) {
  .vbd-video-fullbleed { aspect-ratio: 4 / 5; }
}
.vbd-video-fullbleed__media {
  position: absolute;
  inset: 0;
}
.vbd-video-fullbleed__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vbd-video-fullbleed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(32px, 6vw, 80px);
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.vbd-video-fullbleed__eyebrow {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
}
.vbd-video-fullbleed__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* Story-Text im Tab-Hero (intro-Absätze) */
.vbd-hero__story {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: clamp(16px, 2.5vw, 24px) 0;
  max-width: 56ch;
}
.vbd-hero__story p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--vbd-text-dim);
  margin: 0;
}
.vbd-hero__story p strong {
  color: var(--vbd-text);
  font-weight: 600;
}

/* Mini-Gallery im Tab-Hero rechts: Big-Image + Thumbs darunter */
/* WICHTIG: .vbd-hero__visual hat normalerweise aspect-ratio + overflow:hidden.
   Wenn drinnen eine Mini-Gallery liegt, müssen diese Constraints raus. */
.vbd-hero__visual:has(.vbd-hero-mini) {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}
.vbd-hero-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.vbd-hero-mini__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--vbd-radius-lg);
  overflow: hidden;
  background: var(--vbd-surface);
}
.vbd-hero-mini__stage .vbd-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vbd-hero-mini__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .vbd-hero-mini__thumbs { grid-template-columns: repeat(4, 1fr); }
}
.vbd-hero-mini__thumb {
  appearance: none;
  background: var(--vbd-surface);
  border: 2px solid transparent;
  padding: 0;
  aspect-ratio: 1;
  border-radius: var(--vbd-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.vbd-hero-mini__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vbd-hero-mini__thumb:hover { transform: translateY(-2px); }
.vbd-hero-mini__thumb[aria-current="true"] {
  border-color: var(--vbd-mint);
}
.vbd-hero-mini__thumb:focus-visible {
  outline: 2px solid var(--vbd-mint);
  outline-offset: 2px;
}

/* ═════════ 0.7 DETAIL-STRIP (5 Studio-Aufnahmen direkt unter Video) ═════════ */
.vbd-detail-strip {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  background: var(--vbd-bg);
}
.vbd-detail-strip__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.01em;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--vbd-text);
}
.vbd-detail-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 1.2vw, 14px);
  padding: 0 clamp(8px, 1.2vw, 14px);
}
@media (max-width: 991px) {
  .vbd-detail-strip__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .vbd-detail-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
.vbd-detail-strip__item {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--vbd-radius-md);
  background: var(--vbd-surface);
}
.vbd-detail-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vbd-detail-strip__item:hover img {
  transform: scale(1.04);
}

/* ═════════ 1. HERO ═════════ */
.vbd-hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}

.vbd-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 991px) {
  .vbd-hero__layout {
    grid-template-columns: 1fr;
  }
}

.vbd-hero__text { display: flex; flex-direction: column; gap: 18px; }

.vbd-hero__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 2.2vw, 28px);
}

.vbd-hero__subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--vbd-text-dim);
  margin: 0;
  max-width: 38ch;
  line-height: 1.5;
}

.vbd-hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--vbd-radius-lg);
  overflow: hidden;
  background: var(--vbd-surface);
}

.vbd-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.vbd-hero__image.is-fading { opacity: 0; }

/* ─── Color Swatch ─── */
.vbd-swatch {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(16px, 3vw, 28px);
}
.vbd-swatch__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vbd-text-dim);
}
.vbd-swatch__row { display: flex; flex-wrap: wrap; gap: 12px; }
.vbd-swatch__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--vbd-surface);
  border: 1px solid var(--vbd-border);
  border-radius: 999px;
  color: var(--vbd-text);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.vbd-swatch__btn:hover { border-color: var(--vbd-mint); transform: translateY(-1px); }
.vbd-swatch__btn:focus-visible { outline: 2px solid var(--vbd-mint); outline-offset: 2px; }
.vbd-swatch__btn[aria-pressed="true"] {
  border-color: var(--vbd-mint);
  background: rgba(124, 255, 203, 0.08);
}
.vbd-swatch__chip {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--chip, #555);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.vbd-swatch__btn--placeholder {
  opacity: 0.45;
  cursor: not-allowed;
}
.vbd-swatch__btn--placeholder .vbd-swatch__chip {
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.2) 25%, transparent 25%);
  background-size: 6px 6px;
}

/* ═════════ 2. TAB-BAR (Wave|Sport) ═════════ */
.vbd-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--vbd-surface);
  border: 1px solid var(--vbd-border);
  border-radius: 999px;
  width: fit-content;
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.vbd-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--vbd-text-dim);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.vbd-tab:hover { color: var(--vbd-text); }
.vbd-tab:focus-visible { outline: 2px solid var(--vbd-mint); outline-offset: 2px; }
.vbd-tab[aria-selected="true"] {
  background: var(--vbd-mint);
  color: #0e0e10;
}

/* ═════════ 3. INTRO-STRIP (Brand-Story) ═════════ */
.vbd-intro-strip {
  padding: var(--vbd-section-y) 0;
  border-top: 1px solid var(--vbd-border);
  border-bottom: 1px solid var(--vbd-border);
}
.vbd-intro-strip__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vbd-mint);
  margin: 0 0 14px;
}
.vbd-intro-strip__headline {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 26ch;
}
.vbd-intro-strip__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--vbd-text-dim);
  max-width: 60ch;
  margin: 0;
}

/* Principles */
.vbd-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 64px);
}
@media (max-width: 767px) {
  .vbd-principles { grid-template-columns: 1fr; }
}
.vbd-principles__item {
  padding: clamp(20px, 3vw, 32px);
  background: var(--vbd-surface);
  border: 1px solid var(--vbd-border);
  border-radius: var(--vbd-radius-md);
}
.vbd-principles__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 0 0 8px;
  color: var(--vbd-mint);
}
.vbd-principles__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--vbd-text-dim);
  margin: 0;
}

/* ═════════ 4. SPEC SECTION (Pillbar + Grid) ═════════ */
.vbd-spec-section { padding: var(--vbd-section-y) 0; }

.vbd-spec-section__header { margin-bottom: clamp(28px, 4vw, 48px); }
.vbd-spec-section__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.vbd-spec-section__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--vbd-text-dim);
  margin: 0;
  max-width: 60ch;
}

.vbd-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 991px) { .vbd-spec-grid { grid-template-columns: 1fr; } }

.vbd-spec-card {
  background: var(--vbd-surface);
  border: 1px solid var(--vbd-border);
  border-radius: var(--vbd-radius-md);
  padding: clamp(20px, 2.5vw, 32px);
}
.vbd-spec-card__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vbd-mint);
  margin: 0 0 18px;
}

.vbd-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.vbd-spec-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--vbd-border);
  font-size: 14px;
}
.vbd-spec-list__row:last-child { border-bottom: 0; }
.vbd-spec-list__key {
  color: var(--vbd-text-dim);
  letter-spacing: 0.02em;
}
.vbd-spec-list__val {
  font-weight: 600;
  color: var(--vbd-text);
  text-align: right;
}

/* ═════════ 5. GALLERY (Big-Image + Thumbs) ═════════ */
.vbd-gallery { padding: var(--vbd-section-y) 0; }

.vbd-gallery__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 0 clamp(20px, 3vw, 32px);
}

.vbd-gallery__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--vbd-radius-lg);
  overflow: hidden;
  background: var(--vbd-surface);
  margin-bottom: 16px;
}
.vbd-gallery__big {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.vbd-gallery__big.is-fading { opacity: 0; }

.vbd-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 991px) { .vbd-gallery__thumbs { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .vbd-gallery__thumbs { grid-template-columns: repeat(3, 1fr); } }

.vbd-gallery__thumb {
  appearance: none;
  border: 2px solid transparent;
  background: var(--vbd-surface);
  padding: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--vbd-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.vbd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vbd-gallery__thumb:hover { transform: translateY(-2px); }
.vbd-gallery__thumb[aria-current="true"] {
  border-color: var(--vbd-mint);
}
.vbd-gallery__thumb:focus-visible {
  outline: 2px solid var(--vbd-mint);
  outline-offset: 2px;
}

/* ═════════ 6. FEATURE BLOCK (split) ═════════ */
.vbd-feature {
  padding: var(--vbd-section-y) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 991px) { .vbd-feature { grid-template-columns: 1fr; } }

.vbd-feature__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--vbd-radius-lg);
  overflow: hidden;
  background: var(--vbd-surface);
}
.vbd-feature__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vbd-feature__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.vbd-feature__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--vbd-text-dim);
  margin: 0;
}

/* ═════════ 7. CTA-Strip ═════════ */
.vbd-cta {
  padding: var(--vbd-section-y) 0;
  text-align: center;
  border-top: 1px solid var(--vbd-border);
}
.vbd-cta__title {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.vbd-cta__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--vbd-text-dim);
  max-width: 50ch;
  margin: 0 auto clamp(24px, 4vw, 36px);
  line-height: 1.6;
}
.vbd-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.vbd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--vbd-border);
  cursor: pointer;
}
.vbd-btn--primary {
  background: var(--vbd-mint);
  color: #0e0e10;
  border-color: var(--vbd-mint);
}
.vbd-btn--primary:hover { transform: translateY(-1px); background: #fff; border-color: #fff; }
.vbd-btn--ghost {
  background: transparent;
  color: var(--vbd-text);
}
.vbd-btn--ghost:hover {
  border-color: var(--vbd-mint);
  color: var(--vbd-mint);
  transform: translateY(-1px);
}
.vbd-btn:focus-visible { outline: 2px solid var(--vbd-mint); outline-offset: 3px; }

/* ═════════ Section-Divider (Eyebrow oben in jeder Sektion) ═════════ */
.vbd-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vbd-mint);
  margin: 0 0 14px;
}

/* ═════════════════════════════════════════════════════════════════
   Footer auf Detail-Seiten — gleiches Markup wie index.html,
   hier nur z-index + solider bg damit der fixed Mega-Hero unten
   nicht durchscheint.
   ═════════════════════════════════════════════════════════════════ */
.vbd-page .footer-area {
  position: relative;
  z-index: 3;
  background-color: var(--vbd-bg);
}
body.dark.vbd-page .footer-area { background-color: #141618; }
body:not(.dark).vbd-page .footer-area { background-color: #f6f6f4; }
