/* ─────────────────────────────────────────────
   VARIANT B · SPORTLICH-DYNAMISCH (responsive)
   ───────────────────────────────────────────── */

.vB {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.vB-pitch {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 700px; opacity: 0.5; pointer-events: none;
}

.vB-nav {
  display: flex; align-items: center; gap: 20px;
  padding: clamp(16px, 2.4vw, 28px) clamp(20px, 4vw, 48px);
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.vB-logo {
  width: clamp(52px, 6.5vw, 72px);
  height: clamp(52px, 6.5vw, 72px);
  flex-shrink: 0;
  object-fit: contain;
}
.vB-nav-name {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700; letter-spacing: 0.04em;
  flex: 1; min-width: 140px;
}
.vB-links { display: flex; gap: clamp(10px, 2vw, 22px); align-items: center; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; flex-wrap: wrap; }
.vB-links a { cursor: pointer; }
.vB-links a:hover { color: var(--fg); }
.vB-cta { padding: 8px 16px; border-radius: 4px; font-weight: 700; letter-spacing: 0.06em; }
.vB-cta:hover { color: #0a0a0a; opacity: 0.92; }

/* Hero */
.vB-hero { padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px) 40px; position: relative; z-index: 1; }
.vB-tag {
  display: inline-block; padding: 6px 14px;
  border: 1px solid; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.vB-h1 {
  font-size: clamp(56px, 13vw, 180px);
  line-height: 0.86; font-weight: 800;
  letter-spacing: -0.045em;
  margin: 24px 0 clamp(28px, 4vw, 48px);
}
.vB-h1-row { display: block; }
.vB-h1-italic { font-style: italic; font-weight: 400; }

.vB-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.vB-hero-img {
  position: relative; margin: 0;
  height: clamp(280px, 38vw, 480px); overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), calc(100% - 56px) 100%, 0 100%);
}
.vB-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.vB-hero-num {
  position: absolute; bottom: 20px; left: 28px;
  font-size: clamp(120px, 16vw, 200px); line-height: 1; font-weight: 800;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  -webkit-text-stroke: 2px rgba(255,255,255,.7);
  color: transparent;
}
.vB-hero-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  grid-auto-rows: min-content;
}
.vB-side-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: clamp(16px, 2vw, 22px);
  border-radius: 4px;
}
.vB-side-num { font-size: clamp(36px, 5vw, 56px); line-height: 1; font-weight: 800; letter-spacing: -0.03em; }
.vB-side-lbl { font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.vB-side-mission {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: clamp(16px, 2vw, 22px);
  border-radius: 4px;
  font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* Marquee */
.vB-strip {
  border-block: 1px solid var(--line);
  overflow: hidden; padding: 28px 0; margin-top: 40px;
}
.vB-strip-marquee {
  display: flex; gap: 36px; align-items: center;
  font-size: clamp(32px, 6vw, 56px); font-weight: 800; letter-spacing: -0.02em;
  white-space: nowrap;
  animation: vBmarquee 30s linear infinite;
}
@keyframes vBmarquee {
  to { transform: translateX(-50%); }
}

/* Cards */
.vB-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: clamp(28px, 4vw, 48px); }
.vB-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 4px; padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
}
.vB-card-dark { background: rgba(0,0,0,.3); }
.vB-card-tag { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }
.vB-card-h { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.05; font-weight: 700; letter-spacing: -0.025em; margin: 0; }

.vB-tt-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 20px;
  font-size: 18px; padding: 18px 0; border-block: 1px solid var(--line);
}
.vB-tt-season { display: flex; flex-direction: column; }
.vB-tt-season span { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; }
.vB-tt-season small { font-size: 11px; color: var(--muted); }
.vB-tt-day-stack { display: flex; flex-direction: column; gap: 4px; align-self: center; }
.vB-tt-day { font-weight: 600; }
.vB-tt-day span { font-weight: 800; margin-right: 12px; display: inline-block; min-width: 28px; }

.vB-card-foot { font-size: 13px; color: var(--muted); }

.vB-news { list-style: none; padding: 0; margin: 0; }
.vB-news li {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.vB-news li:last-child { border-bottom: 0; }
.vB-news-d { font-weight: 700; font-variant-numeric: tabular-nums; }
.vB-news-pill { padding: 3px 8px; border-radius: 3px; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; }
.vB-news-hot .vB-news-t { font-weight: 600; }

/* Team */
.vB-team { padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px); }
.vB-team-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.vB-h2 { font-size: clamp(44px, 8vw, 96px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 0; }
.vB-team-sub { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

.vB-jerseys {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.vB-jersey {
  aspect-ratio: 1; background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 4px; padding: clamp(16px, 2vw, 24px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.vB-jersey::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--accent); opacity: 0.6;
}
.vB-jersey-num { font-size: clamp(56px, 7vw, 88px); line-height: 0.9; font-weight: 800; letter-spacing: -0.04em; }
.vB-jersey-meta { display: flex; flex-direction: column; gap: 2px; }
.vB-jersey-name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.vB-jersey-role { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* Optional avatar in der Ecke — verändert das Karten-Layout nicht */
.vB-jersey-avatar {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  z-index: 1;
}
.vB-jersey-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vB-jersey-avatar-init {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--muted);
}

/* CTA / Final block (renamed from .vB-cta to avoid clash with header pill) */
.vB-final {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 48px);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px); border-top: 1px solid var(--line);
}
.vB-final-l h3 { margin: 0 0 16px; font-size: clamp(40px, 7vw, 88px); }
.vB-final-l p { font-size: 16px; color: var(--muted); margin: 0 0 28px; max-width: 460px; }
.vB-final-btn {
  display: inline-block; padding: 18px 28px; border-radius: 4px;
  font-weight: 800; letter-spacing: 0.04em; cursor: pointer;
  transition: transform .15s;
}
.vB-final-btn:hover { transform: translate(2px, -2px); }
.vB-final-r { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 48px); }
.vB-spon-h { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; }
.vB-spon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vB-spon {
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  padding: 18px; font-size: 11px; letter-spacing: 0.08em;
  color: var(--muted); text-align: center;
}

.vB-footer {
  display: flex; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px); border-top: 1px solid var(--line);
  font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
}
.vB-footer a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.vB-footer a:hover { color: var(--fg); }

/* Impressum-Modal */
.vB-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto;
  animation: vBmodalIn .2s ease-out;
}
@keyframes vBmodalIn { from { opacity: 0; } to { opacity: 1; } }
.vB-modal-card {
  position: relative;
  width: 100%; max-width: 760px;
  max-height: 90vh; overflow-y: auto;
  background: var(--bg, #0a0a0a);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--fg);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.vB-modal-x {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 50%; color: var(--fg);
  font-size: 14px; line-height: 1; cursor: pointer;
  transition: background .15s;
}
.vB-modal-x:hover { background: rgba(255,255,255,.14); }
.vB-modal-title {
  font-size: clamp(32px, 5vw, 48px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  margin: 8px 0 28px;
}
.vB-imprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px 28px;
  margin-bottom: 24px;
}
.vB-imprint-block { display: flex; flex-direction: column; gap: 6px; }
.vB-imprint-lbl {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.vB-imprint-val { font-size: 14px; line-height: 1.55; }
.vB-imprint-val a { color: var(--accent); }
.vB-imprint-val a:hover { text-decoration: underline; }
.vB-imprint-note {
  font-size: 12.5px; line-height: 1.6; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px; margin: 12px 0 0;
}
.vB-imprint-note strong { color: var(--fg); font-weight: 600; }

/* Prose (Datenschutz im Modal) */
.vB-prose { border-top: 1px solid var(--line); padding-top: 8px; margin-top: 24px; }
.vB-modal-subtitle {
  font-size: clamp(22px, 3.4vw, 30px) !important;
  margin: 4px 0 18px !important;
}
.vB-prose-block { margin-bottom: 16px; }
.vB-prose-h {
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--fg); margin: 0 0 6px;
}
.vB-prose-p {
  font-size: 13px; line-height: 1.6; color: var(--muted);
  margin: 0 0 8px; white-space: pre-wrap;
}
.vB-prose-stamp {
  font-size: 11.5px; color: var(--muted); margin-top: 16px;
  letter-spacing: 0.04em; opacity: 0.75;
}

.vB-gallery-sec { padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 48px); border-top: 1px solid var(--line); }
.vB-gallery-sec .vB-card-tag { margin-bottom: 12px; }
.vB-gallery-sec .vB-h2 { font-size: clamp(40px, 6vw, 80px); margin: 0 0 32px; }

.vB-gal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 240px;
  gap: 12px;
}
.vB-gal-tile {
  margin: 0; background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  border-radius: 4px;
}
.vB-gal-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform .3s;
}
.vB-gal-tile:hover img { transform: scale(1.04); }
.vB-gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-size: 12px; letter-spacing: 0.02em;
}
.vB-gal[data-count="1"] .vB-gal-tile { aspect-ratio: 16 / 9; }
.vB-gal[data-count="1"] { grid-template-columns: 1fr; grid-auto-rows: auto; }
.vB-gal-main { grid-row: span 2; grid-column: span 2; }
.vB-gal[data-count="1"] .vB-gal-main { grid-row: auto; grid-column: auto; }

/* ─── Tablet ─────────────────────────────── */
@media (max-width: 960px) {
  .vB-hero-grid { grid-template-columns: 1fr; }
  .vB-hero-img { height: clamp(240px, 50vw, 380px); }
  .vB-cards { grid-template-columns: 1fr; }
  .vB-jerseys { grid-template-columns: repeat(3, 1fr); }
  .vB-final { grid-template-columns: 1fr; }
  .vB-final-r { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
  .vB-gal { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .vB-gal-main { grid-row: span 1; grid-column: span 2; }
}

/* ─── Mobile ─────────────────────────────── */
@media (max-width: 640px) {
  .vB-nav { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
  .vB-logo { width: 44px; height: 44px; }
  .vB-nav-name { font-size: 12px; flex: 0 0 auto; }
  .vB-links {
    gap: 0; font-size: 11px; width: 100%;
    order: 3; margin-top: 8px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line); padding-top: 12px;
  }
  .vB-links a {
    padding: 10px 4px; text-align: center;
    border-radius: 6px; transition: background .15s;
  }
  .vB-links a:hover { background: rgba(255,255,255,.06); }
  .vB-links a:active { background: rgba(255,255,255,.1); }
  .vB-cta {
    padding: 12px 16px; font-size: 12px;
    grid-column: 1 / -1; margin-top: 8px;
    text-align: center; border-radius: 8px;
  }

  .vB-hero { padding: 24px 16px 24px; }
  .vB-hero-side { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vB-side-stat { padding: 14px; }
  .vB-side-num { font-size: 32px; }

  .vB-strip { padding: 18px 0; }
  .vB-strip-marquee { gap: 24px; font-size: 28px; }

  .vB-cards { padding: 16px; gap: 16px; }
  .vB-card { padding: 18px; gap: 14px; }
  .vB-card-h { font-size: 24px; }
  .vB-tt-grid { font-size: 15px; gap: 10px 16px; padding: 14px 0; }
  .vB-news li { grid-template-columns: 70px 1fr auto; gap: 10px; font-size: 13px; padding: 10px 0; }

  .vB-team { padding: 40px 16px; }
  .vB-h2 { font-size: clamp(36px, 12vw, 56px); }
  .vB-jerseys { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vB-jersey { padding: 14px; }
  .vB-jersey-num { font-size: 48px; }

  .vB-final { padding: 40px 16px; }
  .vB-final-l h3 { font-size: 40px; }

  .vB-footer { padding: 20px 16px; font-size: 11px; gap: 10px; flex-direction: column; align-items: center; text-align: center; }
  .vB-footer span { width: 100%; }

  /* Hero Mobile Optimierung */
  .vB-tag { font-size: 10px; padding: 8px 12px; }
  .vB-hero-num { font-size: 80px; bottom: 12px; left: 16px; }
  .vB-hero-img { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%); }

  /* Mission Text besser lesbar */
  .vB-side-mission { font-size: 14px; line-height: 1.7; padding: 16px; }

  /* Modal Mobile Fullscreen */
  .vB-modal { padding: 0; align-items: flex-end; }
  .vB-modal-card {
    max-height: 90vh; border-radius: 20px 20px 0 0;
    padding: 24px 20px 32px;
  }
  .vB-modal-card::before {
    content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2);
  }
  .vB-modal-title { font-size: 28px; margin: 16px 0 20px; }
  .vB-imprint-grid { gap: 16px 20px; }
  .vB-imprint-lbl { font-size: 11px; }
  .vB-imprint-val { font-size: 13px; }
  .vB-prose-h { font-size: 14px; }
  .vB-prose-p { font-size: 12px; }

  .vB-gallery-sec { padding: 32px 16px; }
  .vB-gallery-sec .vB-h2 { font-size: 40px; margin: 0 0 20px; }
  .vB-gal { grid-template-columns: 1fr; grid-template-rows: 200px 160px 160px 160px; gap: 8px; }
  .vB-gal-main { grid-column: 1 / -1; }

  /* Verbesserte Touch-Targets */
  .vB-final-btn { padding: 18px 24px; font-size: 14px; min-height: 52px; }
  .vB-modal-x { width: 44px; height: 44px; font-size: 18px; top: 12px; right: 12px; }
  .vB-news li { padding: 16px 0; min-height: 52px; }
  .vB-footer a { padding: 8px 0; display: inline-block; }
}

/* Kleine Handys */
@media (max-width: 380px) {
  .vB-h1 { font-size: 40px; line-height: 0.9; }
  .vB-h2 { font-size: 28px; }
  .vB-links { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .vB-links a { font-size: 10px; padding: 12px 6px; }
  .vB-side-num { font-size: 26px; }
  .vB-side-lbl { font-size: 9px; }
  .vB-jersey-num { font-size: 36px; }
  .vB-jersey { padding: 12px; }
  .vB-jersey-name { font-size: 12px; }
  .vB-jersey-role { font-size: 9px; }
  .vB-final-l h3 { font-size: 28px; }
  .vB-final-l p { font-size: 14px; }
  .vB-final-btn { padding: 16px 20px; font-size: 13px; }
  .vB-card-h { font-size: 22px; }
  .vB-tt-grid { font-size: 14px; }
  .vB-news li { font-size: 12px; }
  .vB-news-d { font-size: 11px; }
  .vB-modal-title { font-size: 24px; }
  .vB-tag { font-size: 9px; }
  .vB-hero-num { font-size: 60px; }
}

/* Touch-freundliche Interaktionen */
@media (pointer: coarse) {
  .vB-links a:active { transform: scale(0.96); }
  .vB-final-btn:active { transform: scale(0.98); }
  .vB-cta:active { transform: scale(0.96); }
  .vB-jersey:active { transform: scale(0.98); }
  .vB-gal-tile:active img { transform: scale(1.02); }
}
