/* SVHB Homepage — Template v2 (Bento-Überblick, modernere Bühne) */

:root {
  --c-black: #000000;
  --c-bg: #0a0a0a;
  --c-bg-alt: #141414;
  --c-tile-bg: #0a0a0a;
  --c-red: #e30613;
  --c-red-dark: #a30410;
  --c-gold: #d9b65c;
  --c-gold-light: #f8cd74;
  --c-gold-dark: #a9822e;
  --c-white: #ffffff;
  --c-off: #ece9e4;
  --c-muted: #9a9a9a;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-hand: "Caveat", cursive;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--c-black);
  color: var(--c-off);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.eyebrow--lg {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.08em;
}

.eyebrow--lg::before {
  width: 40px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-gold);
  display: inline-block;
}

.eyebrow--dual {
  display: flex;
  justify-content: center;
}

.eyebrow--dual::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--c-gold);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-white);
}

p {
  margin: 0;
  color: var(--c-muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.9em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 8px 24px -8px rgba(227, 6, 19, 0.7);
}

.btn-primary:hover {
  background: #ff0a1a;
  box-shadow: 0 12px 28px -6px rgba(227, 6, 19, 0.85);
}

.btn-ghost {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(14px);
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(217, 182, 92, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--c-white);
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  margin-top: 0.35em;
}

.brand-name--gold {
  color: var(--c-gold);
}

.header-signature {
  font-size: 1.6rem;
  color: var(--c-gold);
  white-space: nowrap;
  margin-right: auto;
  padding-left: var(--space-4);
  opacity: 1;
  display: inline-block;
  animation: handwrite-reveal 10s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .header-signature {
    animation: none;
    clip-path: none;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-off);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: width 0.25s ease;
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 1.2em;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.main-nav .nav-cta::after {
  display: none;
}

.main-nav .nav-cta:hover {
  background: var(--c-red-dark);
  transform: translateY(-1px);
}

.has-dropdown {
  position: relative;
}

.main-nav .dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
  min-width: 170px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(217, 182, 92, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  display: block;
}

.dropdown a {
  display: block;
  padding: 0.6em 1.2em;
  font-size: 0.78rem;
  white-space: nowrap;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: rgba(217, 182, 92, 0.12);
  color: var(--c-gold);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--c-white);
}

/* ---------- Hero (kompakt — Überblick soll direkt sichtbar sein) ---------- */

.hero {
  position: relative;
  padding: 24rem 0 10.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-black);
  isolation: isolate;
  text-align: center;
}

.hero-grain {
  position: absolute;
  inset: -20%;
  z-index: 2;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: hero-grain-shift 1.2s steps(4) infinite;
}

@keyframes hero-grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.hero-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-particles-local {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.72) 65%, var(--c-black) 100%);
}

.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: radial-gradient(circle at 50% 40%, rgba(255, 244, 214, 0.9), rgba(227, 6, 19, 0.25) 55%, transparent 75%);
  opacity: 0;
  pointer-events: none;
  animation: hero-flash-pop 0.7s ease-out forwards;
}

@keyframes hero-flash-pop {
  0%   { opacity: 0; }
  12%  { opacity: 1; }
  100% { opacity: 0; }
}

.hero-ball {
  position: absolute;
  left: -10%;
  bottom: 0.4rem;
  width: 92px;
  height: 92px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.6));
  opacity: 0;
  animation: hero-ball-roll 7s linear infinite;
}

@keyframes hero-ball-roll {
  0%   { left: -10%; transform: translateY(0) rotate(0deg); opacity: 0; }
  3%   { opacity: 1; transform: translateY(0) rotate(30deg); }
  9%   { left: 4%;   transform: translateY(-46px) rotate(190deg); }
  15%  { left: 18%;  transform: translateY(0) rotate(360deg); }
  19%  { left: 26%;  transform: translateY(-30px) rotate(470deg); }
  24%  { left: 36%;  transform: translateY(0) rotate(620deg); }
  28%  { left: 45%;  transform: translateY(-19px) rotate(730deg); }
  32%  { left: 54%;  transform: translateY(0) rotate(860deg); }
  35%  { left: 62%;  transform: translateY(-10px) rotate(940deg); }
  38%  { left: 108%; transform: translateY(0) rotate(1080deg); opacity: 1; }
  39%  { opacity: 0; }
  100% { left: 108%; opacity: 0; }
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.32) 0%, rgba(227, 6, 19, 0.08) 45%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
  opacity: 0;
  animation: hero-glow-on 0.6s ease-out 0.15s forwards,
             hero-glow-pulse 4.5s ease-in-out 0.75s infinite;
}

@keyframes hero-glow-on {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.7); }
  100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-out;
}

.hero-content--salli {
  max-width: none;
  width: 100%;
  align-items: flex-end;
  align-self: flex-end;
  text-align: right;
  padding-bottom: var(--space-3);
}

.hero-content--salli .eyebrow--hand {
  font-size: clamp(3.2rem, 9vw, 7rem);
}

@media (max-width: 700px) {
  .hero-content--salli {
    align-items: center;
    text-align: center;
  }
}

.hero--compact {
  padding: 7.4rem 0 3.5rem;
}

.hero-content--row {
  flex-direction: row;
  justify-content: center;
  gap: var(--space-3);
}

.hero-content--row .hero-crest-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero-content--row .hero-crest {
  width: 76px;
}

.hero-content--row .hero-crest-wrap::before {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}

.hero-content--row .hero-shockwave {
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
}

.hero-content--row .eyebrow--hand {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

@media (max-width: 560px) {
  .hero-content--row {
    gap: var(--space-2);
  }
  .hero-content--row .hero-crest {
    width: 56px;
  }
  .hero-content--row .hero-crest-wrap::before {
    width: 74px;
    height: 74px;
    margin: -37px 0 0 -37px;
  }
  .hero-content--row .hero-shockwave {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
  }
}

.hero-crest-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.hero-crest-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 166px;
  height: 166px;
  margin: -83px 0 0 -83px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(217, 182, 92, 0.55) 40deg,
    transparent 90deg,
    transparent 180deg,
    rgba(227, 6, 19, 0.45) 220deg,
    transparent 270deg,
    transparent 360deg);
  opacity: 0;
  animation: hero-ring-in 0.5s ease-out 0.7s forwards, hero-ring-spin 9s linear 0.7s infinite;
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63%, #000 73%, transparent 75%);
  mask: radial-gradient(circle, transparent 61%, #000 63%, #000 73%, transparent 75%);
}

@keyframes hero-ring-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  margin: -64px 0 0 -64px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
  opacity: 0;
  animation: hero-shockwave-burst 0.9s ease-out 0.1s forwards;
}

@keyframes hero-shockwave-burst {
  0%   { opacity: 0.9; transform: scale(0.4); border-color: var(--c-gold); }
  60%  { opacity: 0.4; border-color: var(--c-red); }
  100% { opacity: 0; transform: scale(2.6); }
}

.hero-crest {
  width: 128px;
  margin-bottom: 0;
  filter: drop-shadow(0 18px 36px rgba(227, 6, 19, 0.35));
  opacity: 0;
  transform: scale(0.4);
  animation: crest-power-on 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.3) 0.1s forwards;
}

@keyframes crest-power-on {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.12) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.hero-content .eyebrow {
  margin-bottom: var(--space-2);
}

.hero-content .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-gold);
  display: inline-block;
}

.hero-content h1 {
  font-size: clamp(1.3rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  white-space: nowrap;
}

.hero-content h1 em {
  font-style: normal;
  color: inherit;
}

@media (max-width: 560px) {
  .hero-content h1 {
    white-space: normal;
  }
}

.hero-sub {
  margin-top: var(--space-2);
  max-width: 460px;
  font-size: 1.02rem;
  color: var(--c-off);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-4);
  row-gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-left: var(--space-4);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 1px;
  background: rgba(217, 182, 92, 0.25);
}

.hero-stat:first-child::before {
  display: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1;
  color: var(--c-gold);
}

.hero-stat-est {
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  vertical-align: middle;
}

.hero-stat-label {
  margin-top: 0.4em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

@media (max-width: 560px) {
  .hero-stats {
    gap: var(--space-3);
  }
  .hero-stat {
    padding-left: var(--space-3);
  }
}

/* ---------- Hero entrance stagger ---------- */

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: var(--rise-op, 1); transform: translateY(0); }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-actions,
.hero-content .hero-stats {
  opacity: 0;
  animation: rise-in 0.8s ease forwards;
}

.hero-content .eyebrow      { animation-delay: 0.55s; }
.hero-content h1            { animation-delay: 0.7s; }
.hero-content .hero-sub     { --rise-op: 0.85; animation-delay: 0.85s; }
.hero-content .hero-actions { animation-delay: 1.0s; }
.hero-content .hero-stats   { animation-delay: 1.0s; }

.eyebrow--hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-gold);
}

.eyebrow--hand::before,
.eyebrow--hand::after {
  content: none;
}

@keyframes handwrite-reveal {
  from { clip-path: inset(-0.35em 100% -0.35em -0.1em); }
  to   { clip-path: inset(-0.35em 0% -0.35em -0.1em); }
}

.hero-content .eyebrow--hand {
  opacity: 1;
  display: inline-block;
  animation: handwrite-reveal 10s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow--hand {
    animation: none;
    clip-path: none;
  }
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section shell ---------- */

section {
  padding: var(--space-6) 0;
  position: relative;
}

.section-head {
  max-width: 900px;
  margin: 0 auto var(--space-4);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-2);
}

.section-head p {
  margin-top: var(--space-2);
  font-size: 1.02rem;
}

/* ---------- Team-Unterseite ---------- */

.team-page {
  padding: 160px 0 var(--space-6);
  min-height: 60vh;
}

.team-page--with-hero {
  padding-top: var(--space-4);
}

.team-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  background-size: cover;
  background-position: center 35%;
  isolation: isolate;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.96) 100%);
  z-index: 1;
}

.team-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 var(--space-4);
}

.team-hero .eyebrow {
  margin-bottom: 0;
}

.team-back {
  display: block;
  margin-bottom: var(--space-4);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.team-back:hover {
  color: var(--c-gold-light);
}

.team-placeholder {
  margin-top: var(--space-3);
  font-size: 1.02rem;
  color: var(--c-muted);
}

/* ---------- Clubheim ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.info-card {
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.info-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--c-white);
  margin: 0;
}

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

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

.info-card--events {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: 0;
}

.info-card--events .events-slider {
  position: relative;
  min-height: 540px;
}

/* ---------- Download ---------- */

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-3);
}

.download-tile {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.download-tile:hover {
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.download-tile-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.download-tile-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.download-tile-title {
  font-weight: 700;
  color: var(--c-white);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-tile-meta {
  margin-top: 0.2em;
  font-size: 0.75rem;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Sponsoren ---------- */

.sponsor-section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 var(--space-2);
}

.sponsor-hero {
  margin-bottom: var(--space-5);
}

.sponsor-hero-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.sponsor-hero-tile:hover {
  border-color: var(--c-gold);
}

.sponsor-hero-logo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.sponsor-mid-section {
  margin-bottom: var(--space-5);
}

.sponsor-mid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

@media (max-width: 860px) {
  .sponsor-mid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sponsor-mid-grid {
    grid-template-columns: 1fr;
  }
}

.sponsor-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.sponsor-tile:hover {
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.sponsor-tile-logo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.sponsor-logo-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 0.5em 0.8em;
}

.sponsor-logo-chip .sponsor-tile-logo,
.sponsor-tile-name {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-off);
}

.sponsor-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.sponsor-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--space-6);
  animation: sponsor-marquee-scroll 60s linear infinite;
}

.sponsor-marquee:hover .sponsor-marquee-track {
  animation-play-state: paused;
}

@keyframes sponsor-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sponsor-marquee-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.7em 1.3em;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--c-off);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.sponsor-marquee-chip:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-marquee-track {
    animation: none;
  }
  .sponsor-marquee {
    overflow-x: auto;
  }
}

/* ---------- Über uns: Intro + Vereinsgeschichte-Timeline ---------- */

.about-intro {
  max-width: 760px;
  margin: var(--space-4) auto var(--space-6);
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.about-intro h2,
.about-history > h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-white);
  margin: 0 0 var(--space-3);
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 1em;
}

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

.about-history {
  max-width: 1160px;
}

.history-merge {
  display: flex;
  flex-direction: column;
}

.history-merge-timeline {
  width: 100%;
  max-width: 320px;
  margin-left: calc(25% + 1rem);
}

.history-merge-connectors {
  position: relative;
  width: 100%;
  height: 36px;
}

.history-merge-stem {
  position: absolute;
  left: calc(25% + 1.3rem);
  top: 0;
  bottom: 50%;
  width: 2px;
  background: rgba(217, 182, 92, 0.45);
}

.history-merge-branch {
  position: absolute;
  top: 50%;
  left: 0.3rem;
  right: calc(50% - 2.3rem);
  height: 2px;
  background: rgba(217, 182, 92, 0.45);
}

.history-merge-drop {
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 2px;
  background: rgba(217, 182, 92, 0.45);
}

.history-merge-drop--left {
  left: 0.3rem;
}

.history-merge-drop--right {
  right: calc(50% - 2.3rem);
}

@media (max-width: 860px) {
  .history-merge-timeline {
    margin-left: auto;
    margin-right: auto;
  }
  .history-merge-connectors {
    display: none;
  }
}

.history-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.history-thread {
  margin-bottom: var(--space-6);
}

.history-thread:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .history-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.history-thread-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--c-gold);
  margin: 0 0 var(--space-3);
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(217, 182, 92, 0.2);
}

.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.4em;
  bottom: 0.4em;
  width: 2px;
  background: rgba(217, 182, 92, 0.22);
}

.history-timeline-fill {
  position: absolute;
  left: 0.3rem;
  top: 0.4em;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--c-gold), var(--c-red));
  box-shadow: 0 0 8px 1px rgba(217, 182, 92, 0.5);
  z-index: 1;
  transition: height 0.12s linear;
}

.history-entry {
  position: relative;
  margin-bottom: var(--space-3);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.history-entry.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.history-entry:last-child {
  margin-bottom: 0;
}

.history-entry::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.3em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px var(--c-black), 0 0 0 4px rgba(217, 182, 92, 0.18);
  z-index: 2;
  transform: scale(0);
}

.history-entry.is-visible::before {
  animation: dot-ignite 0.6s ease-out forwards;
}

@keyframes dot-ignite {
  0% {
    transform: scale(0);
    box-shadow: 0 0 0 3px var(--c-black), 0 0 0 4px rgba(217, 182, 92, 0.18);
  }
  55% {
    transform: scale(1.6);
    box-shadow: 0 0 0 3px var(--c-black), 0 0 14px 4px rgba(217, 182, 92, 0.85);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px var(--c-black), 0 0 0 4px rgba(217, 182, 92, 0.18);
  }
}

.history-year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.25em;
}

.history-entry h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.04rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-off);
  margin: 0 0 0.3em;
}

.history-entry p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}

.history-record {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 0.7em;
}

.history-record-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-record-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--c-gold);
}

.history-record-label {
  margin-top: 0.25em;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

@media (max-width: 560px) {
  .history-timeline {
    padding-left: 1.4rem;
  }
  .history-entry::before {
    left: -1.4rem;
  }
}

/* ---------- Vereinschronik (horizontal) ---------- */

.chronicle-vs {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.chronicle-vs-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  text-align: center;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s ease;
}

.chronicle-vs-side--hartheim {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 3px, transparent 3px, transparent 30px),
    linear-gradient(135deg, #060606, #232323);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
  transform: translateX(-60px);
  opacity: 0;
}

.chronicle-vs-side--bremgarten {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 3px, transparent 3px, transparent 30px),
    linear-gradient(135deg, #2c0608, #57090f);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -7%;
  transform: translateX(60px);
  opacity: 0;
}

.chronicle-vs.is-visible .chronicle-vs-side {
  transform: translateX(0);
  opacity: 1;
}

.chronicle-vs-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.chronicle-vs-side--bremgarten .chronicle-vs-label {
  color: rgba(255, 210, 210, 0.65);
}

.chronicle-vs-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5.4vw, 3.4rem);
  line-height: 1;
  color: var(--c-white);
  margin-top: 0.25em;
}

.chronicle-vs-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--c-black);
  background: radial-gradient(circle at 35% 30%, var(--c-gold-light), var(--c-gold) 60%, var(--c-gold-dark));
  box-shadow: 0 0 0 4px var(--c-black), 0 0 24px rgba(217, 182, 92, 0.55);
  animation: chronicle-vs-pulse 2.6s ease-in-out infinite;
}

@keyframes chronicle-vs-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--c-black), 0 0 18px rgba(217, 182, 92, 0.5); transform: translate(-50%, -50%) scale(1); }
  50%      { box-shadow: 0 0 0 4px var(--c-black), 0 0 38px rgba(217, 182, 92, 0.9); transform: translate(-50%, -50%) scale(1.08); }
}

@media (max-width: 560px) {
  .chronicle-vs {
    min-height: 110px;
  }
  .chronicle-vs-divider {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }
}

.chronicle {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chronicle-track {
  position: relative;
  border-radius: var(--radius);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  overflow: hidden;
  isolation: isolate;
}

.chronicle-track::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  z-index: -1;
}

@keyframes chronicle-sweep {
  from { transform: translateX(0); }
  to   { transform: translateX(84px); }
}

.chronicle-track--hartheim {
  background: linear-gradient(135deg, #0c0c0c 0%, #1e1e1e 50%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.chronicle-track--hartheim::before {
  background: repeating-linear-gradient(120deg,
    rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 3px,
    transparent 3px, transparent 42px);
  animation: chronicle-sweep 14s linear infinite;
}

.chronicle-track--bremgarten {
  background: linear-gradient(135deg, #1a0405 0%, #340810 50%, #1a0405 100%);
  border: 1px solid rgba(227, 6, 19, 0.3);
}

.chronicle-track--bremgarten::before {
  background: repeating-linear-gradient(120deg,
    rgba(227, 6, 19, 0.14) 0px, rgba(227, 6, 19, 0.14) 3px,
    transparent 3px, transparent 42px);
  animation: chronicle-sweep 14s linear infinite;
}

.chronicle-track--unified {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a130a 50%, #0a0a0a 100%);
  border: 1px solid rgba(217, 182, 92, 0.35);
}

.chronicle-track--unified::before {
  background: repeating-linear-gradient(120deg,
    rgba(217, 182, 92, 0.14) 0px, rgba(217, 182, 92, 0.14) 3px,
    transparent 3px, transparent 42px);
  animation: chronicle-sweep 14s linear infinite;
}

.chronicle-track-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0 var(--space-4) var(--space-2);
}

.chronicle-track-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

.chronicle-track--unified .chronicle-track-title {
  color: var(--c-gold);
}

.chronicle-track-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.chronicle-track--bremgarten .chronicle-track-tag {
  color: rgba(255, 170, 170, 0.7);
}

.chronicle-track--unified .chronicle-track-tag {
  color: rgba(217, 182, 92, 0.8);
}

.chronicle-progress {
  position: relative;
  z-index: 1;
  height: 2px;
  margin: 0 var(--space-4) var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.chronicle-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--c-white);
}

.chronicle-track--bremgarten .chronicle-progress-bar {
  background: var(--c-red);
}

.chronicle-track--unified .chronicle-progress-bar {
  background: var(--c-gold);
}

.chronicle-track-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.chronicle-track-scroll::-webkit-scrollbar {
  height: 5px;
}

.chronicle-track-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.chronicle-track-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.chronicle-track-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
}

.chronicle-track-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  width: 30%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0.16) 55%, transparent);
  filter: blur(6px);
  animation: chronicle-beam-sweep 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.chronicle-track--bremgarten .chronicle-track-beam {
  background: linear-gradient(100deg, transparent, rgba(255, 90, 90, 0.22) 45%, rgba(255, 130, 130, 0.4) 50%, rgba(255, 90, 90, 0.22) 55%, transparent);
  animation-delay: 2s;
}

.chronicle-track--unified .chronicle-track-beam {
  background: linear-gradient(100deg, transparent, rgba(217, 182, 92, 0.25) 45%, rgba(248, 205, 116, 0.45) 50%, rgba(217, 182, 92, 0.25) 55%, transparent);
  animation-delay: 3.5s;
}

/* Videohinterlegte Spur: eigenes Video ersetzt den synthetischen Streifen/Sweep */
.chronicle-track--video::before,
.chronicle-track--video .chronicle-track-beam {
  display: none;
}

.chronicle-track-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chronicle-track-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 6, 2, 0.55), rgba(8, 6, 2, 0.78));
}

@keyframes chronicle-beam-sweep {
  0%, 15%   { left: -30%; }
  60%, 100% { left: 115%; }
}

@media (prefers-reduced-motion: reduce) {
  .chronicle-track-beam,
  .chronicle-track::before {
    animation: none;
  }
}

.chronicle-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  opacity: 0;
  transform: perspective(700px) translateX(28px) scale(0.9);
  filter: blur(8px);
  transform-style: preserve-3d;
  transition: opacity 0.7s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.chronicle-card.is-visible {
  opacity: 1;
  transform: perspective(700px) translateX(0) scale(1);
  filter: blur(0);
}

.chronicle-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.chronicle-card::before {
  content: attr(data-year);
  position: absolute;
  right: -0.06em;
  bottom: -0.22em;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.chronicle-track--bremgarten .chronicle-card::before {
  color: rgba(255, 100, 100, 0.1);
}

.chronicle-track--unified .chronicle-card::before {
  color: rgba(217, 182, 92, 0.12);
}

.chronicle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 170px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.chronicle-card:hover::after {
  opacity: 1;
}

.chronicle-card-year,
.chronicle-card h4,
.chronicle-card p,
.chronicle-card-record {
  position: relative;
  z-index: 1;
}

.chronicle-track--bremgarten .chronicle-card {
  border-color: rgba(227, 6, 19, 0.3);
}

.chronicle-track--bremgarten .chronicle-card:hover {
  border-color: rgba(255, 120, 120, 0.55);
}

.chronicle-track--bremgarten .chronicle-card::after {
  background: radial-gradient(circle 170px at var(--mx, 50%) var(--my, 50%), rgba(255, 150, 150, 0.22), transparent 70%);
}

.chronicle-track--unified .chronicle-card {
  border-color: rgba(217, 182, 92, 0.35);
}

.chronicle-track--unified .chronicle-card:hover {
  border-color: rgba(217, 182, 92, 0.7);
}

.chronicle-track--unified .chronicle-card::after {
  background: radial-gradient(circle 170px at var(--mx, 50%) var(--my, 50%), rgba(217, 182, 92, 0.28), transparent 70%);
}

.chronicle-card-year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35em;
  color: var(--c-white);
}

.chronicle-track--bremgarten .chronicle-card-year {
  color: #ff8080;
}

.chronicle-track--unified .chronicle-card-year {
  color: var(--c-gold);
}

.chronicle-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-off);
  margin: 0 0 0.4em;
}

.chronicle-card p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0;
}

.chronicle-card-record {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
  margin-top: 0.6em;
}

.chronicle-card-record-stat {
  display: flex;
  flex-direction: column;
}

.chronicle-card-record-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1;
  color: var(--c-gold);
}

.chronicle-card-record-label {
  margin-top: 0.2em;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-muted);
}

@media (max-width: 560px) {
  .chronicle-card {
    width: 210px;
  }
}

/* ---------- Vorstandschaft ---------- */

.board-groups {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.board-group-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--c-gold);
  margin: 0 0 var(--space-3);
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(217, 182, 92, 0.2);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--space-3);
}

.board-tile {
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25em;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.board-tile:hover,
.board-tile:focus-within,
.board-tile.is-open {
  transform: translateY(-5px);
  border-color: var(--c-gold);
}

.board-tile:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.board-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--c-gold);
  background: radial-gradient(circle, rgba(217, 182, 92, 0.16), rgba(227, 6, 19, 0.08));
  border: 1px solid rgba(217, 182, 92, 0.35);
  margin-bottom: 0.4em;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-tile:hover .board-avatar,
.board-tile:focus-within .board-avatar,
.board-tile.is-open .board-avatar {
  border-color: var(--c-gold);
  background: radial-gradient(circle, rgba(217, 182, 92, 0.3), rgba(227, 6, 19, 0.12));
}

.board-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--c-off);
}

.board-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.board-phone {
  display: none;
}

.board-contact {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.board-tile:hover .board-contact,
.board-tile:focus-within .board-contact,
.board-tile.is-open .board-contact {
  max-height: 44px;
  opacity: 1;
  margin-top: 0.5em;
}

.board-contact-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(217, 182, 92, 0.12);
  border: 1px solid rgba(217, 182, 92, 0.3);
  color: var(--c-gold);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.board-contact-btn svg {
  width: 16px;
  height: 16px;
}

.board-contact-btn:hover {
  background: var(--c-gold);
  color: var(--c-black);
  transform: scale(1.08);
}

.team-widgets {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.team-widgets-col {
  flex: 1 1 420px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.team-widgets--grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .team-widgets--grid2 {
    grid-template-columns: 1fr;
  }
}

.team-result-card {
  width: 100%;
}

.team-result-card:not(.tile--result) {
  max-height: 509px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.team-result-card:not(.tile--result)::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* ---------- Bento-Überblick ---------- */

.overview {
  padding-top: var(--space-4);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 148px;
  grid-auto-flow: dense;
  gap: var(--space-3);
}

.tile {
  grid-column: span 1;
  grid-row: span 1;
  background: var(--c-tile-bg);
  border: 1px solid rgba(217, 182, 92, 0.14);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tile:hover {
  transform: translateY(-5px);
  border-color: var(--c-gold);
}

.tile[data-team-link] {
  cursor: pointer;
}

.tile[data-team-link]:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.tile--wide {
  grid-column: span 2;
}

.tile--tall {
  grid-row: span 3;
}

.tile--big {
  grid-column: span 2;
  grid-row: span 2;
}

.tile--full {
  grid-column: span 4;
}

.tile--full.tile--events {
  grid-row: span 2;
}

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

.result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.tile--accent {
  background: linear-gradient(150deg, var(--c-red-dark), var(--c-red));
  border-color: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tile--accent:hover {
  background: linear-gradient(150deg, var(--c-red-dark), #ff0a1a);
}

.tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.tile h3 {
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
}

.tile--big h3 {
  font-size: 1.7rem;
  margin-top: auto;
}

.tile--news {
  position: relative;
  overflow: hidden;
  background: var(--c-tile-bg);
}

.tile--news .tile-label,
.tile--news .news-slider,
.tile--news .news-dots,
.tile--news .tile-link {
  position: relative;
  z-index: 1;
}

.tile--result {
  background: var(--c-tile-bg);
}

.tile--teams {
  position: relative;
  background: var(--c-tile-bg);
  border-radius: var(--radius);
}

.tile--teams .fussballde_widget {
  max-height: 420px;
  overflow-y: auto;
}

.tile--partner {
  background: var(--c-tile-bg);
}

.tile--app {
  position: relative;
  background: var(--c-tile-bg);
}

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

.tile-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 65%, rgba(10, 10, 10, 0.88) 100%);
}

.tile--app .tile-label,
.tile--app p,
.tile--app .badge-row {
  position: relative;
  z-index: 1;
}

.tile--app .store-badge {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(10, 10, 10, 0.3);
}

.tile-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(150deg, var(--c-red-dark), var(--c-red));
  color: var(--c-white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45em 0.85em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  white-space: nowrap;
}

.tile--events {
  position: relative;
  background: var(--c-tile-bg);
}

.tile--events .tile-label,
.tile--events p,
.tile--events .events-row {
  position: relative;
  z-index: 1;
}

.events-slider {
  position: relative;
  flex: 1;
  min-height: 0;
}

.event-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.event-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.event-slide-pair {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: var(--space-4);
}

.event-slide-item {
  flex: 1;
  min-width: 0;
  height: 100%;
}

.event-slide-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  width: 100%;
  height: 100%;
}

button.event-slide-inner {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

button.event-slide-inner:hover .event-slide-title,
button.event-slide-inner:focus-visible .event-slide-title {
  color: var(--c-gold);
}

.event-slide-inner:not(.has-media) .event-slide-body {
  justify-content: center;
}

.event-slide-img {
  flex: 0 0 auto;
  display: block;
  max-width: 45%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
}

.event-slide-inner--image-only {
  flex-direction: column;
  gap: 0.5em;
}

.event-slide-inner--image-only .event-slide-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.event-slide-inner--image-only .event-slide-body--note-only {
  flex: 0 0 auto;
  text-align: center;
}

.event-slide-body {
  flex: 0 1 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3em;
}

.event-slide-date {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.event-slide-title {
  font-size: 1.6rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-slide-description {
  margin-top: 0.4em;
  font-size: 0.9rem;
  color: var(--c-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
}

.event-slide-note {
  margin-top: 0.5em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-gold);
}

.events-dots {
  display: flex;
  gap: 0.4em;
  margin-top: var(--space-2);
}

.event-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.event-dot.is-active {
  background: var(--c-gold);
  transform: scale(1.25);
}

.news-slider {
  position: relative;
  flex: 1;
  min-height: 0;
}

.news-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.news-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.news-slide-body {
  min-width: 0;
}

.news-slide h3 {
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
}

.news-slide p {
  margin-top: 0.6em;
  font-size: 0.92rem;
}

/* Slides mit Bild: Bild links über die volle Höhe (50% Breite),
   rechts oben die Überschrift, rechts unten der Text (je 50% der rechten Spalte). */
.news-slide.has-media {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.news-slide-img {
  flex: 0 0 auto;
  display: block;
  max-width: 45%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.news-slide.has-media .news-slide-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-slide.has-media h3 {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-slide.has-media p {
  flex: 1;
  margin-top: 0.3em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-dots {
  display: flex;
  gap: 0.4em;
  margin-top: var(--space-2);
}

.news-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.news-dot.is-active {
  background: var(--c-gold);
  transform: scale(1.25);
}

.tile p {
  font-size: 0.88rem;
}

.tile-list {
  list-style: none;
  margin: 0.2em 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45em;
  font-size: 0.85rem;
  color: var(--c-off);
}

.tile-list--compact {
  gap: 0.3em;
  font-size: 0.78rem;
}

.team-chip-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, 1fr);
  gap: 0.4em;
  margin-top: 0.3em;
  flex: 1;
}

.team-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5em 0.3em;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-off);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-chip:hover {
  background: rgba(217, 182, 92, 0.18);
  border-color: rgba(217, 182, 92, 0.45);
  color: var(--c-gold);
}

.tile-list li {
  padding-left: 1em;
  position: relative;
}

.tile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
}

.tile-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tile-list a:hover {
  color: var(--c-gold);
}

.tile-link {
  margin-top: auto;
  padding-top: 0.4em;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-top: 1px solid rgba(217, 182, 92, 0.2);
  display: inline-block;
}

.fupa-widget {
  width: 100%;
  flex: 1;
  min-height: 0;
}

.fupa-widget a {
  color: var(--c-gold);
}

.tile--result {
  padding: var(--space-2) var(--space-3);
  gap: 0.35em;
}

.tile--result .tile-label {
  margin-bottom: 0.1em;
}

.result-tabs {
  display: flex;
  gap: 0.5em;
  margin: 0.5em 0 0.3em;
}

.result-tab {
  background: none;
  border: 1px solid rgba(217, 182, 92, 0.3);
  color: var(--c-muted);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.result-tab:hover {
  border-color: var(--c-gold);
  color: var(--c-off);
}

.result-tab.is-active {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}

.result-view {
  max-height: 0 !important;
  overflow: hidden !important;
}

.result-view.is-active-view {
  max-height: 480px !important;
  overflow-y: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.result-view.is-active-view::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.result-view[data-result-panel="table"] .fp-widget-views {
  max-height: none !important;
  overflow: visible !important;
}

.tile .fp-table-row.fp-up1,
.tile .fp-table-row.fp-up2 {
  background: transparent !important;
}

.tile .fp-widget-view-active,
.tile .fp-team-liveticker-view {
  padding-top: 0 !important;
}

.tile .fp-team-matches-view-match-row-match {
  background: transparent !important;
}

.tile .fp-team-matches-view-match-caption {
  display: block;
  text-align: center;
}

.tile .fp-team-matches-view-match-row-team-container,
.tile .fp-team-matches-view-match-row-name,
.tile .fp-team-matches-view-match-status {
  color: var(--c-off) !important;
}

.tile .fp-team-squad-view-team-figure {
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.tile--result .fp-widget-footer {
  position: static !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.tile--result .match-header-team-image {
  width: 44px !important;
  height: 44px !important;
}

.tile--result .fp-team-liveticker-view-header-container {
  min-height: 0 !important;
  height: auto !important;
}

.tile--result[data-team-link] .fp-team-liveticker-view-header-container {
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.tile--result .fp-widget-views {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.tile--result.is-expanded .fp-widget-views {
  max-height: 2400px;
}

.tile--result[data-team-link] .fp-widget-views {
  max-height: 118px !important;
}

.tile--result[data-team-link] .fupa-widget::after {
  display: none;
}

.tile--result .fupa-widget {
  position: relative;
  overflow: hidden;
}

.tile--result .fupa-widget::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(rgba(20, 20, 20, 0), var(--c-bg-alt));
  pointer-events: none;
}

.tile--result.is-expanded .fupa-widget {
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tile--result.is-expanded .fupa-widget::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.tile--result.is-expanded .fupa-widget::after {
  display: none;
}

.tile-expand-btn {
  margin-top: 0.3em;
  align-self: center;
  background: none;
  border: 1px solid rgba(217, 182, 92, 0.35);
  color: var(--c-gold);
  border-radius: 999px;
  padding: 0.35em 1.1em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tile-expand-btn:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

.tile-logos {
  display: flex;
  gap: var(--space-3);
  flex: 1;
  align-items: stretch;
}

.logo-slot-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6em;
  flex: 1;
}

.logo-slot-caption {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.placeholder-box {
  flex: 1;
  height: 56px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  background: repeating-linear-gradient(45deg, #171717 0 8px, #1b1b1b 8px 16px);
  text-align: center;
  padding: 0 0.5em;
}

.placeholder-box--logo {
  flex: 0 0 auto;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  border: none;
  background: none;
  padding: 0;
  justify-content: flex-start;
}

.placeholder-box--logo-knobel {
  height: 63px;
}

.placeholder-box--logo-akra {
  height: 34px;
}

.placeholder-box--logo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo-img--white {
  filter: brightness(0) invert(1);
}

/* ---------- Vereinsheft cover ---------- */

.tile--sheet {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.sheet-cover {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: none;
  display: block;
}

.sheet-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tile--sheet .sheet-cover img {
  object-fit: contain;
  background: #000;
}

.sheet-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sheet-cover:hover::after,
.sheet-cover:focus-visible::after {
  opacity: 1;
}

.sheet-cover-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.3em;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(217, 182, 92, 0.5);
  backdrop-filter: blur(4px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: var(--c-gold);
  text-align: center;
  white-space: nowrap;
}

.sheet-cover:hover .sheet-cover-hint,
.sheet-cover:focus-visible .sheet-cover-hint {
  opacity: 1;
}

/* ---------- Stadionzeitung archive ---------- */

.heft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 282px);
  align-items: start;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.heft-tile {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.heft-tile .sheet-cover {
  height: auto;
  aspect-ratio: 700 / 981;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(217, 182, 92, 0.16);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.heft-tile .sheet-cover:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.heft-tile-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-off);
  text-align: center;
}

.heft-tile-label small {
  display: block;
  margin-top: 0.25em;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--c-muted);
}

/* ---------- PDF reader modal ---------- */

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
}

.pdf-modal.is-open {
  display: flex;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
}

.pdf-modal-panel {
  position: relative;
  width: min(760px, 100%);
  height: min(88vh, 1100px);
  background: var(--c-bg-alt);
  border: 1px solid rgba(217, 182, 92, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

.pdf-modal-pages {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
}

.pdf-modal-pages::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.pdf-modal-pages img {
  width: 100%;
  max-width: 640px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pdf-modal-close {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 182, 92, 0.4);
  background: rgba(10, 10, 10, 0.85);
  color: var(--c-gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-modal-close:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Legal modal (Impressum / Datenschutz) ---------- */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
}

.legal-modal-panel {
  position: relative;
  width: min(760px, 100%);
  height: min(85vh, 1000px);
  background: var(--c-bg-alt);
  border: 1px solid rgba(217, 182, 92, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

.legal-modal-close {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 182, 92, 0.4);
  background: rgba(10, 10, 10, 0.85);
  color: var(--c-gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal-close:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

.legal-modal-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: var(--space-5) var(--space-4) var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal-modal-body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.legal-content {
  display: none;
}

.legal-content.is-active {
  display: block;
}

.legal-content h2 {
  font-size: 1.7rem;
  margin-bottom: var(--space-3);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--c-gold);
  margin-top: var(--space-3);
  margin-bottom: 0.4em;
}

.legal-content h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-off);
  margin-top: var(--space-2);
  margin-bottom: 0.3em;
}

.legal-content p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 0.8em;
}

.legal-content p strong {
  color: var(--c-off);
}

.legal-content .legal-source {
  margin-top: var(--space-3);
  font-size: 0.72rem;
  opacity: 0.6;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 0.5em;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
}

.image-modal.is-open {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
}

.image-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  max-width: min(900px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--c-bg-alt);
  border: 1px solid rgba(217, 182, 92, 0.25);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.image-modal-panel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.image-modal-img {
  display: block;
  flex: 0 1 auto;
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.image-modal-text {
  width: 100%;
}

.image-modal-caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-gold);
  text-align: center;
}

.image-modal-caption:empty {
  display: none;
}

.image-modal-description {
  margin: 0.5em 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-off);
  text-align: left;
  white-space: pre-line;
}

.image-modal-description:empty {
  display: none;
}

.image-modal-close {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 182, 92, 0.4);
  background: rgba(10, 10, 10, 0.85);
  color: var(--c-gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-close:hover {
  background: var(--c-gold);
  color: var(--c-black);
}


.badge-row {
  display: flex;
  gap: 0.6em;
  margin-top: auto;
  flex-wrap: wrap;
}

.store-badge {
  border: 1px solid rgba(217, 182, 92, 0.4);
  border-radius: 8px;
  padding: 0.5em 0.9em;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--c-gold);
}

/* ---------- About split ---------- */

.about {
  background: var(--c-bg-alt);
}

.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-5);
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.about-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(217, 182, 92, 0.35);
  border-radius: 50%;
}

.about-logo-wrap img {
  width: 200px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.about-body .stat-row {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.stat-row .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--c-gold);
}

.stat-row .stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--c-red-dark), var(--c-red) 60%, var(--c-red-dark));
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(0,0,0,0.12) 0 3px, transparent 3px 40px);
}

.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 560px;
}

.cta-band .btn-ghost {
  border-color: var(--c-white);
  color: var(--c-white);
}

.cta-band .btn-ghost:hover {
  background: var(--c-white);
  color: var(--c-red-dark);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-black);
  border-top: 1px solid rgba(217, 182, 92, 0.15);
  padding: var(--space-5) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1.7fr 0.7fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: var(--space-2);
}

.footer-brand img {
  height: 72px;
}

.footer-brand .brand-name {
  font-size: 1.7rem;
}

.footer-col .footer-tagline {
  font-family: var(--font-hand);
  font-size: 2.4rem;
  color: var(--c-gold);
  line-height: 1;
  margin-top: 0.2em;
  white-space: nowrap;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 var(--space-2);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.footer-col a, .footer-col p {
  font-size: 0.88rem;
  color: var(--c-muted);
}

.footer-kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.footer-kontakt-row ul {
  flex: 1;
  min-width: 0;
}

.footer-map {
  flex: 0 0 112px;
  width: 112px;
  margin-top: -2.2rem;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(217, 182, 92, 0.16);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

.legal-trigger {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.88rem;
  color: var(--c-muted);
  cursor: pointer;
  text-align: left;
}

.footer-col a:hover,
.legal-trigger:hover {
  color: var(--c-off);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.78rem;
  color: #5f5f5f;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-logo-wrap {
    padding: var(--space-3) 0;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile--big, .tile--full, .tile--triple {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav ul {
    display: none;
  }
  .main-nav ul.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: var(--space-3) var(--space-4) var(--space-4);
    gap: 0.2em;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(217, 182, 92, 0.2);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .main-nav ul.is-open li {
    width: 100%;
  }
  .main-nav ul.is-open > li > a {
    display: block;
    padding: 0.7em 0;
  }
  .main-nav ul.is-open .nav-cta {
    width: 100%;
    justify-content: center;
    height: auto;
    margin: 0.4em 0;
    padding: 0.7em 1.2em;
  }
  .main-nav ul.is-open .dropdown {
    position: static;
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0.3em 1em;
    margin: 0;
    min-width: 0;
  }
  .main-nav ul.is-open .dropdown a {
    padding: 0.5em 0;
    font-size: 0.82rem;
    color: var(--c-muted);
  }
  .nav-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-watermark {
    opacity: 0.1;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .tile, .tile--wide, .tile--big, .tile--tall, .tile--triple, .tile--full.tile--events {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 148px;
  }
  .tile--sheet {
    grid-row: span 1;
    aspect-ratio: 700 / 981;
    min-height: 0;
  }
  .result-row {
    grid-template-columns: 1fr;
  }
}
