/* ============================================
   DERNEK BERLIN — Fanverein Website
   Eigenständiges Designsystem (no official marks)
   ============================================ */

:root {
  /* Surfaces */
  --bg-0: #050505;
  --bg-1: #080808;
  --bg-2: #0D0D0D;
  --bg-3: #131313;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);

  /* Accents — Galatasaray-Palette */
  --red-deep: #A50000;
  --red: #C8102E;
  --gold: #FFC107;
  --gold-warm: #FDB913;

  /* Text */
  --text: #FFFFFF;
  --text-mid: #CFCFCF;
  --text-dim: #A8A8A8;
  --text-faint: rgba(255, 255, 255, 0.4);

  /* Glow */
  --glow-red: 0 0 80px -20px rgba(200, 16, 46, 0.55);
  --glow-gold: 0 0 80px -20px rgba(253, 185, 19, 0.45);

  /* Type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1440px;
  --gutter: 48px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============= Typography utilities ============= */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 10px;
  vertical-align: 1px;
  box-shadow: 0 0 12px var(--red);
}

/* ============= Layout ============= */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 96px 0;
  position: relative;
}
.section--tight { padding: 64px 0; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 0 100px -10px rgba(200,16,46,0.7);
}
.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover {
  background: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 0 80px -10px rgba(253,185,19,0.55);
}
.btn--white {
  background: #fff;
  color: var(--gold);
}
.btn--white:hover {
  background: #fff;
  color: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 0 80px -10px rgba(255,255,255,0.45);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.04);
}
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============= Nav ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(5,5,5,0.85), rgba(5,5,5,0));
  backdrop-filter: blur(12px);
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(5,5,5,0.92);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__logo {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 56px;
  background: #fff;
}
.brandmark {
  width: 38px; height: 38px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex: 0 0 38px;
}
.brandmark::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}
.brandmark__txt {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transform: rotate(-45deg);
  letter-spacing: 0.02em;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__wordmark .top {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__wordmark .sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  position: relative;
  transition: color .2s;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Burger + Mobile-Menü */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 60;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav__mobile.is-open { opacity: 1; visibility: visible; }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.nav__mobile-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color .2s;
}
.nav__mobile-link.is-active { color: var(--gold); }
.nav__mobile-cta { margin-top: 16px; }
.nav__mobile-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
}
.nav__mobile-ig:hover { color: var(--gold); }

/* ============= Hero ============= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 100px;
  overflow: hidden;
  background: var(--bg-0);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,16,46,0.25), transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(253,185,19,0.12), transparent 60%),
    repeating-linear-gradient(135deg, #0a0a0a 0 2px, #0d0d0d 2px 14px);
}
/* Hero photo background */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.30) 0%, rgba(5,5,5,0.12) 38%, rgba(5,5,5,0.92) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.80) 0%, rgba(5,5,5,0.32) 52%, rgba(5,5,5,0.10) 100%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__content--mobile { display: none; }
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.hero__headline {
  font-size: clamp(52px, 8.2vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.hero__headline .line { display: block; }
.hero__headline .line--accent {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 380px;
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 32px;
}
.hero__meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.hero__meta-item .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 38px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__meta-item .num .accent { color: var(--gold); }
.hero__meta-item .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__rightcol {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.hero__topbar {
  position: absolute;
  top: 110px;
  left: 0; right: 0;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.hero__topbar .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
}
.hero__topbar .live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--red); }
  50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 24px var(--red); }
}
.hero__ticker {
  display: flex;
  gap: 32px;
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.hero__scroll .ln {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--text-dim), transparent);
}

/* ============= Marquee ============= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-1);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: scroll 65s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.marquee__track span { color: #fff; }
.marquee__track .star {
  color: var(--gold);
  font-size: 20px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============= Matchday Section ============= */
.matchday {
  background: var(--bg-1);
  scroll-margin-top: 90px;
}
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.section__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
}
.section__title .accent {
  color: var(--gold);
  font-style: italic;
}
.section__aside {
  max-width: 360px;
  color: var(--text-mid);
  font-size: 15px;
}

.match-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.match {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) 200px 110px;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
  position: relative;
  cursor: pointer;
}
.match:hover {
  background: var(--bg-2);
  padding-left: 16px;
  padding-right: 16px;
}
.match::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform .3s ease;
  transform-origin: top;
}
.match:hover::before { transform: scaleY(1); }
.match__date {
  font-family: var(--display);
  font-weight: 700;
}
.match__date .d {
  font-size: 32px;
  line-height: 1;
  display: block;
}
.match__date .m {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.match__teams {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.team-badge {
  width: 36px; height: 36px;
  border-radius: 4px;
  flex: 0 0 36px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
}
.team-badge--home {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}
.match__teams .vs {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.2em;
}
.match__venue {
  font-size: 14px;
  color: var(--text-mid);
}
.match__venue .pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 10px;
  color: var(--gold);
}
.match__time {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.match__time .tz {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  margin-left: 6px;
}
.match__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.match__cta .arrow {
  transition: transform .25s;
}
.match:hover .match__cta .arrow { transform: translateX(4px); }

/* ============= Manifesto ============= */
.manifesto {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.25), transparent 70%);
  pointer-events: none;
}
.manifesto::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,185,19,0.12), transparent 70%);
  pointer-events: none;
}
.manifesto__inner {
  position: relative;
  z-index: 2;
}
.manifesto__quote {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  max-width: 1100px;
  letter-spacing: -0.01em;
}
.manifesto__quote .accent { color: var(--gold); }
.manifesto__quote .red { color: var(--red); }
.manifesto__attr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.manifesto__attr .ln {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.manifesto__pillars {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--bg-1);
  padding: 40px 32px;
  position: relative;
  transition: background .3s ease;
}
.pillar:hover {
  background: var(--bg-2);
}
.pillar__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
}
.pillar__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1;
}
.pillar__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============= Events ============= */
.events {
  background: var(--bg-1);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s;
  display: flex;
  flex-direction: column;
}
.event:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.event__img {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(45deg, #141414 0 2px, #0e0e0e 2px 18px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.event__img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.event__img--featured {
  background:
    radial-gradient(ellipse at center, rgba(200,16,46,0.3), transparent 60%),
    repeating-linear-gradient(45deg, #141414 0 2px, #0e0e0e 2px 18px);
}
.event__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--gold);
  color: #000;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.event__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.event__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.event__excerpt {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.event__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.event__meta .arrow { color: var(--gold); }
.event--feature {
  grid-row: span 2;
}
.event--feature .event__img { aspect-ratio: 4/3.4; }
.event--feature .event__title { font-size: 44px; }

/* ============= Membership ============= */
.membership {
  background: var(--bg-0);
  scroll-margin-top: 90px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  position: relative;
  transition: transform .35s ease, border-color .3s;
  display: flex;
  flex-direction: column;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.tier--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(253,185,19,0.05) 0%, var(--bg-1) 30%);
  box-shadow: var(--glow-gold);
}
.tier__badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: #000;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.tier__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.tier__desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.tier__price .amt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
.tier__price .cur {
  font-family: var(--display);
  font-size: 28px;
  color: var(--text-dim);
}
.tier__price .per {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-left: 8px;
}
.tier__list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.tier__list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  margin-top: 7px;
  flex: 0 0 6px;
  transform: rotate(45deg);
}
.tier__list li.muted { color: var(--text-faint); text-decoration: line-through; }
.tier__list li.muted::before { background: var(--text-faint); }
.tier .btn { justify-content: center; width: 100%; }

/* ============= Vereinsheim ============= */
.location {
  background: var(--bg-1);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__img {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,16,46,0.35), transparent 65%),
    repeating-linear-gradient(45deg, #141414 0 2px, #0c0c0c 2px 16px);
  position: relative;
  border: 1px solid var(--line);
}
.location__img::after {
  content: "[ FOTO VEREINSHEIM — Kreuzberg ]";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.location__img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  background: rgba(5,5,5,0.85);
  border: 1px solid var(--gold);
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.location__title {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
}
.location__lead {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.65;
}
.location__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.detail__lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.detail__val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.detail__val .sub {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 6px;
  line-height: 1.4;
}

/* ============= Gallery ============= */
.gallery {
  background: var(--bg-0);
  padding: 96px 0;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: gscroll 70s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.gallery__item {
  flex: 0 0 460px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.75) 100%);
  pointer-events: none;
}
.gallery__item::after {
  content: attr(data-cap);
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 10px;
  background: rgba(5,5,5,0.7);
}
@keyframes gscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============= Join CTA ============= */
.join {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
  padding: 180px 0;
}
.join__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.3), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(253,185,19,0.18), transparent 50%);
  z-index: 0;
}
.join__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.join__title {
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.85;
  margin-bottom: 36px;
}
.join__title .accent { color: var(--gold); }
.join__title .red { color: var(--red); font-style: italic; }
.join__lead {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.6;
}
.join__cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============= Footer ============= */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer__brand .brandmark {
  margin-bottom: 24px;
}
.footer__tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer__tagline .accent { color: var(--gold); }
.footer__desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col a {
  color: var(--text);
  font-size: 14px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer__bottom a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.footer__bottom a:hover { color: var(--gold); }
.footer__credit { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer__credit:hover { color: var(--gold); }
.footer__credit-row {
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: all .2s;
  font-size: 11px;
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253,185,19,0.05);
}
/* Instagram — dezent grau, klarer Hover */
.footer__ig {
  color: var(--text-dim);
}
.footer__ig:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253,185,19,0.05);
}

/* ============= Responsive ============= */
/* ============= Kontakt ============= */
.nav__link--active { color: #fff; }
.nav__link--active::after { width: 100%; }

.contact-hero {
  position: relative;
  padding: 220px 0 100px;
  overflow: hidden;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200,16,46,0.28), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(253,185,19,0.12), transparent 55%),
    repeating-linear-gradient(135deg, #0a0a0a 0 2px, #0d0d0d 2px 14px);
}
.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.5), rgba(5,5,5,0.85));
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
}
.contact-hero__title {
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.84;
  margin-top: 28px;
}
.contact-hero__title .accent { color: var(--gold); }
.contact-hero__lead {
  max-width: 520px;
  margin-top: 32px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-main { background: var(--bg-1); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.cform { display: flex; flex-direction: column; gap: 24px; }
.cform__head { margin-bottom: 8px; }
.cform__head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.cform__head p { color: var(--text-mid); margin-top: 14px; font-size: 15px; max-width: 420px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field label .req { color: var(--red); margin-left: 4px; }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: #fff;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 15px 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field input,
.field select { min-height: 52px; }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23A8A8A8' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(253,185,19,0.1);
}
.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.field__err {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  min-height: 0;
}
.cform__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.cform__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex: 0 0 18px; }
.cform__consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cform .btn { align-self: flex-start; }
.cform__submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cform__note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--text-faint); text-transform: uppercase; }

/* Success state */
.cform-success {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(253,185,19,0.06), var(--bg-2));
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--glow-gold);
}
.cform-success__mark {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
}
.cform-success__mark span { transform: rotate(-45deg); color: var(--gold); font-size: 24px; }
.cform-success h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.cform-success p { color: var(--text-mid); max-width: 360px; margin: 0 auto 28px; }

/* Sidebar */
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.cside-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
  transition: border-color .3s, transform .3s;
}
.cside-card:hover { border-color: var(--line-2); }
.cside-card__lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cside-card__val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.cside-card__val a { transition: color .2s; }
.cside-card__val a:hover { color: var(--gold); }
.cside-card__sub { color: var(--text-mid); font-size: 14px; margin-top: 10px; line-height: 1.55; }
.cside-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cside-channel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .3s, background .3s;
}
.cside-channel:hover { border-color: var(--gold); background: var(--bg-3); }
.cside-channel .ch {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cside-channel .handle {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.cside-map {
  aspect-ratio: 16/11;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 40%, rgba(200,16,46,0.25), transparent 55%),
    repeating-linear-gradient(0deg, #101010 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, #101010 0 1px, transparent 1px 40px),
    var(--bg-2);
}
.cside-map__pin {
  position: absolute;
  top: 42%; left: 58%;
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 20px var(--red);
}
.cside-map__pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.cside-map__label {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(5,5,5,0.85);
  border: 1px solid var(--gold);
  padding: 8px 12px;
}

/* Hours strip */
.hours { background: var(--bg-0); }
.hours__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  border-right: none;
}
.hours__day {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .3s;
}
.hours__day--open { background: var(--bg-2); }
.hours__day--matchday { background: linear-gradient(180deg, rgba(200,16,46,0.12), var(--bg-2)); }
.hours__day .dn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.hours__day .dh {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.hours__day .dh.closed { color: var(--text-faint); }
.hours__day .dh.open { color: var(--gold); }
.hours__day .tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

/* FAQ */
.faq { background: var(--bg-1); scroll-margin-top: 90px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color .2s;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__ic {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  position: relative;
  border: 1px solid var(--line-2);
  transition: border-color .25s, transform .3s;
}
.faq-item__ic::before, .faq-item__ic::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__ic::before { width: 12px; height: 1.5px; }
.faq-item__ic::after { width: 1.5px; height: 12px; transition: transform .3s; }
.faq-item--open .faq-item__ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item--open .faq-item__ic { border-color: var(--gold); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-item__a-inner {
  padding: 0 0 32px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .hours__grid { grid-template-columns: repeat(2, 1fr); border-right: 1px solid var(--line); }
  .contact-hero { padding: 160px 0 72px; }
  .section { padding: 100px 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__row { flex-direction: column; align-items: flex-start; }
  .hero__rightcol { align-items: flex-start; text-align: left; }
  .hero__headline { font-size: clamp(64px, 14vw, 140px); }
  .manifesto__pillars { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .match { grid-template-columns: 56px 1fr auto; gap: 14px 16px; }
  .match__comp { grid-column: 2 / -1; }
  .match__time { grid-column: 1 / 2; grid-row: 1; }
}

/* ============= Mitgliedschaft Seite ============= */
/* Image-only hero */
/* Image-only hero */
.gal-hero {
  position: relative;
  width: 100%;
  height: min(86vh, 880px);
  min-height: 480px;
  margin-top: 88px;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.gal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.28) 45%, rgba(5,5,5,0) 75%),
    linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,0) 72%, rgba(5,5,5,0.7) 92%, var(--bg-0) 100%);
  pointer-events: none;
}
.gal-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.gal-hero__title {
  font-size: clamp(56px, 9vw, 150px);
  line-height: 0.86;
  margin-top: 18px;
}
.gal-hero__title .accent { color: var(--gold); }
.gal-hero__lead {
  max-width: 480px;
  margin: 28px 0 0;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}
.gal-hero__cta {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
/* Vorstand-Hero: Panorama-Foto — nie zugeschnitten, immer komplett sichtbar */
.team-hero {
  width: 100%;
  background: var(--bg-0);
  padding-top: 88px;
  border-bottom: 1px solid var(--line);
}
.team-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.gal-hero--team {
  background-position: center 22%;
}
.member-hero {
  position: relative;
  width: 100%;
  background: var(--bg-0);
  padding-top: 88px;
  border-bottom: 1px solid var(--line);
}
.member-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* Benefits grid — "Was du bekommst" */
.benefits { background: var(--bg-1); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background .3s;
  position: relative;
}
.benefit:hover { background: var(--bg-3); }
.benefit__ic {
  width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 24px;
  box-shadow: 0 0 18px -2px var(--gold);
}
.benefit__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 12px;
}
.benefit__body { color: var(--text-mid); font-size: 14px; line-height: 1.6; }

/* Single membership card */
.offer { background: var(--bg-0); }
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  box-shadow: var(--glow-gold);
}
.offer__left {
  padding: 56px 52px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.offer__right {
  padding: 56px 52px;
  background: linear-gradient(180deg, rgba(253,185,19,0.05), var(--bg-1));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 8px;
}
.offer__name .accent { color: var(--gold); }
.offer__tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.offer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.offer__list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  margin-top: 7px;
  flex: 0 0 6px;
  transform: rotate(45deg);
}
.offer__price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.offer__price-row .amt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.85;
}
.offer__price-row .cur { font-family: var(--display); font-size: 40px; color: var(--text-dim); }
.offer__price-row .per {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.offer__reduced {
  font-size: 14px;
  color: var(--text-mid);
  margin: 20px 0 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.offer__reduced strong { color: var(--gold); font-weight: 700; }
.offer__right .btn { justify-content: center; width: 100%; }
.offer__note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
  text-align: center;
  margin-top: 18px;
}

/* Signup multi-step form */
.signup { background: var(--bg-1); scroll-margin-top: 90px; }
.signup__shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 56px 56px 48px;
}
.signup__progress {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
}
.signup__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup__step-bar {
  height: 3px;
  background: var(--line-2);
  transition: background .3s;
}
.signup__step--active .signup__step-bar,
.signup__step--done .signup__step-bar { background: var(--gold); }
.signup__step-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s;
}
.signup__step--active .signup__step-lbl { color: var(--gold); }
.signup__step--done .signup__step-lbl { color: var(--text-mid); }
.signup__step-lbl .n { opacity: 0.6; margin-right: 8px; }
.signup__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.signup__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.signup__nav .btn--text {
  background: none;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .2s;
}
.signup__nav .btn--text:hover { color: #fff; }
.signup__nav .btn--text:disabled { opacity: 0.3; cursor: not-allowed; }
.signup__rate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.signup__pay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
@media (max-width: 560px) {
  .signup__rate { grid-template-columns: 1fr; }
}
.rate-opt {
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  padding: 24px;
  cursor: pointer;
  transition: border-color .25s, background .25s;
  text-align: left;
}
.rate-opt:hover { border-color: var(--text-dim); }
.rate-opt--active { border-color: var(--gold); background: rgba(253,185,19,0.05); box-shadow: 0 0 0 3px rgba(253,185,19,0.1); }
.rate-opt__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.rate-opt__price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; color: var(--gold); margin-top: 6px; }
.rate-opt__desc { font-size: 13px; color: var(--text-dim); margin-top: 10px; line-height: 1.5; }
/* Equal-level text across the three beitrag cards */
.signup__rate .rate-opt {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
}
.signup__rate .rate-opt__name { font-size: 18px; white-space: nowrap; }
.signup__rate .rate-opt__price { margin-top: 8px; min-height: 1.2em; }
.signup__rate .rate-opt__desc { margin-top: 10px; }
.signup__pay .rate-opt { display: flex; flex-direction: column; }
.signup__pay .rate-opt__desc { margin-top: 8px; }
.signup__summary {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 24px;
}
.signup__summary h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.signup__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.signup__summary-row:last-child { border-bottom: none; }
.signup__summary-row .k { color: var(--text-dim); }
.signup__summary-row .v { color: #fff; font-weight: 600; text-align: right; }
.signup__summary-row .v.gold { color: var(--gold); font-family: var(--display); font-size: 18px; }

/* Partner perks */
.perks { background: var(--bg-1); scroll-margin-top: 90px; }
.perks__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.perk-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 2px;
  transition: all .2s;
}
.perk-chip:hover { color: #fff; border-color: var(--text-dim); }
.perk-chip--active {
  color: #000;
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
}
.perk-chip .count { opacity: 0.55; margin-left: 8px; }
.perk-chip--active .count { opacity: 0.7; }

.perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.perk {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s;
  position: relative;
  overflow: hidden;
}
.perk:hover { transform: translateY(-4px); border-color: var(--line-2); }
.perk::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.perk:hover::after { transform: scaleX(1); }
.perk__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.perk__logo {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  border: 1px solid var(--line-2);
  background: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.perk__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.perk__logo:not(:has(img)) {
  background: repeating-linear-gradient(45deg, #161616 0 2px, #0e0e0e 2px 9px);
}
.perk__badge {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.perk__badge .small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
  text-align: right;
  font-weight: 400;
}
.perk__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.perk__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}
.perk__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.perk__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.perk__list li:first-child { padding-top: 4px; border-top: none; }
.perk__val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  flex: 0 0 56px;
  letter-spacing: -0.01em;
}
.perk__lbl {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}
.perk__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.perks__foot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-top: 40px;
}
.perks__foot .accent { color: var(--gold); }

/* ============= Vorstand / Team ============= */
.team { background: var(--bg-1); }

/* Event card real photo */
.event__img--photo {
  background-size: cover !important;
  background-position: center !important;
}
.event__img--photo::after { display: none; }

.footer__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  margin-bottom: 24px;
}
.match__comp .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 8px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.match__comp .pill--cup {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: transparent;
  color: #fff;
}
.matchday__foot {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

/* ============= Verein / Gemeinde Sektion ============= */
.verein {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.verein__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.verein__logo {
  position: relative;
  display: grid;
  place-items: center;
}
.verein__logo img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 80px rgba(200,16,46,0.35));
}
.verein__title {
  font-size: clamp(44px, 5.4vw, 88px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.verein__title .accent { color: var(--gold); }
.verein__lead {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.verein__cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin-bottom: 44px;
}
.verein__cell-t {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.verein__cell-s {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .verein__grid { grid-template-columns: 1fr; gap: 48px; }
  .verein__logo img { max-width: 320px; }
  .verein__cells { gap: 28px 32px; }
}
@media (max-width: 540px) {
  .verein__cells { grid-template-columns: 1fr; }
}

/* ============= Galerie ============= */
.gal { background: var(--bg-1); }
.gal__grid {
  column-count: 3;
  column-gap: 16px;
}
.gal__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  transition: border-color .3s;
}
.gal__item:hover { border-color: var(--gold); }
.gal__media {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.gal__item:hover .gal__media { transform: scale(1.05); }
.gal__item--tall .gal__media { aspect-ratio: 3/4; }
.gal__item--wide .gal__media { aspect-ratio: 4/3; }
.gal__item--sq .gal__media { aspect-ratio: 1/1; }
.gal__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.85));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gal__item:hover .gal__overlay { opacity: 1; }
.gal__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gal__cap {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.gal__zoom {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  background: rgba(5,5,5,0.6);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(.8);
  transition: all .25s ease;
}
.gal__item:hover .gal__zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.lightbox--open { opacity: 1; visibility: visible; }
.lightbox__inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  transform: scale(.96);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.lightbox--open .lightbox__inner { transform: scale(1); }
.lightbox__media {
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.2), transparent 60%),
    repeating-linear-gradient(45deg, #161616 0 2px, #0e0e0e 2px 16px);
  position: relative;
}
.lightbox__media image-slot { width: 100%; height: 100%; display: block; }
.lightbox__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}
.lightbox__bar .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lightbox__bar .cap {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.lightbox__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.lightbox__close {
  position: absolute;
  top: -18px; right: -18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--glow-red);
  transition: transform .2s;
}
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid var(--line-2);
  background: rgba(5,5,5,0.6);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: all .2s;
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav--prev { left: -26px; }
.lightbox__nav--next { right: -26px; }

@media (max-width: 1024px) {
  .gal__grid { column-count: 2; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}
@media (max-width: 640px) {
  .gal__grid { column-count: 1; }
  .lightbox { padding: 20px; }
  .lightbox__close { top: -14px; right: -14px; width: 38px; height: 38px; }
}

/* featured leadership row */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.member {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s;
  position: relative;
}
.member:hover { transform: translateY(-5px); border-color: var(--line-2); }
.member__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.18), transparent 60%),
    repeating-linear-gradient(45deg, #161616 0 2px, #0e0e0e 2px 16px);
}
.member__photo image-slot { width: 100%; height: 100%; display: block; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member__photo img.member__photo--anon { object-fit: contain; padding: 20px; opacity: 0.7; }
.member__role-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 12px;
  background: var(--gold);
  color: #000;
}
.member__role-tag--board { background: var(--red); color: #fff; }
.member__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.member__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.member__meta {
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
  row-gap: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.member__meta a { color: var(--text-dim); transition: color .2s; }
.member__meta a:hover { color: var(--gold); }
.member__since .yr { color: var(--text-mid); }

/* Präsident — leicht hervorgehoben, bleibt im gleichen Grid */
.member--lead { border-color: var(--gold); }

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

.mtier-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-top: 40px;
}
.mtier-note .accent { color: var(--gold); }

/* Comparison table */
.compare { background: var(--bg-0); }
.compare__table {
  border: 1px solid var(--line);
  border-collapse: collapse;
  width: 100%;
}
.compare__table th,
.compare__table td {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
}
.compare__table thead th {
  background: var(--bg-2);
  vertical-align: bottom;
  border-bottom: 1px solid var(--line-2);
}
.compare__table thead th.feat-head {
  text-align: left;
  width: 38%;
}
.compare__th-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.compare__th-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 8px;
  text-transform: uppercase;
}
.compare__th--feat { background: linear-gradient(180deg, rgba(253,185,19,0.08), var(--bg-2)) !important; }
.compare__th--feat .compare__th-name { color: var(--gold); }
.compare__table tbody tr:hover { background: var(--bg-1); }
.compare__feat {
  text-align: left !important;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}
.compare__cell {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
}
.compare__cell .yes { color: var(--gold); }
.compare__cell .no { color: var(--text-faint); font-size: 22px; }
.compare__cell .txt {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-mid);
}
.compare__table tbody td.col-feat { background: rgba(253,185,19,0.03); }

/* Join steps */
.jsteps { background: var(--bg-1); }
.jsteps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.jstep {
  background: var(--bg-2);
  padding: 48px 36px;
  position: relative;
  transition: background .3s;
}
.jstep:hover { background: var(--bg-3); }
.jstep__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
  margin-bottom: 28px;
}
.jstep:hover .jstep__num { -webkit-text-stroke-color: var(--gold); }
.jstep__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.jstep__body { color: var(--text-mid); font-size: 14px; line-height: 1.65; }

@media (max-width: 1024px) {
  .jsteps__grid { grid-template-columns: 1fr; }
  .compare__wrap { overflow-x: auto; }
  .compare__table { min-width: 680px; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .offer__grid { grid-template-columns: 1fr; }
  .offer__left { border-right: none; border-bottom: 1px solid var(--line); }
  .offer__name { font-size: 36px; }
  .signup__shell { padding: 40px 28px 36px; }
  .signup__step-lbl .lbl-txt { display: none; }
  .perks__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .hero__topbar { display: none; }
  .hero__meta { gap: 24px; flex-wrap: wrap; }
  .manifesto__pillars { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .perks__grid { grid-template-columns: 1fr; }

  /* Nav / Logo kompakter */
  .nav { padding: 16px var(--gutter); }
  .nav__logo { height: 44px; width: 44px; flex: 0 0 44px; }
  .nav__wordmark .top { font-size: 15px; }
  .nav__wordmark .sub { font-size: 8px; letter-spacing: 0.2em; }
  .nav__mobile-link { font-size: 28px; }

  /* Hero: volle Breite, Text im Bild als Overlay */
  .hero {
    flex-direction: column;
    min-height: 78vw;
    max-height: none;
    padding: 0;
    margin-top: 88px;
    align-items: stretch;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
  }
  .hero__photo {
    background-size: cover !important;
    background-position: center 30% !important;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.9) 100%),
      linear-gradient(0deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0) 55%);
  }
  .hero__noise { display: none; }
  .hero__content--desktop { display: none; }
  .hero__content--mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter) 32px;
    margin-top: auto;
  }
  .hero__content--mobile .hero__headline { font-size: clamp(38px, 12vw, 62px); line-height: 0.92; }
  .hero__content--mobile .hero__cta { margin-top: 22px; display: flex; gap: 10px; }
  .hero__content--mobile .hero__cta .btn { flex: 1 1 auto; justify-content: center; padding: 14px 16px; font-size: 12px; }
  .hero__scroll { display: none; }

  /* Matchday: sauberes gestapeltes Karten-Layout */
  .section__head { margin-bottom: 40px; }
  .match {
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    padding: 22px 0;
    align-items: center;
  }
  .match:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .match__date {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .match__date .d { font-size: 24px; }
  .match__date .m { margin-top: 0; }
  .match__time {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    font-size: 18px;
  }
  .match__teams {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 17px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .match__teams .team-badge { width: 28px; height: 28px; flex: 0 0 28px; }
  .match__comp {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 4px;
  }
  .match__comp .pill { min-width: 0; }

  /* Marquee viel schneller */
  .marquee__track { font-size: 18px; gap: 28px; animation-duration: 40s; }

  /* Galerie: auf dem Handy als Wisch-Slider statt Auto-Lauf */
  .gallery { overflow: visible; }
  .gallery__track {
    width: auto;
    animation: none !important;
    transform: none !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--gutter);
    scroll-padding: 0 var(--gutter);
  }
  .gallery__track::-webkit-scrollbar { display: none; }
  .gallery__item {
    flex: 0 0 82vw;
    aspect-ratio: 4/3;
    scroll-snap-align: center;
  }
  .gallery__item:nth-child(n+9) { display: none; }

  /* Bildränder sauber */
  .event, .tier, .perk, .cside-card { border-radius: 2px; }
  .gal-hero { height: 64vw; min-height: 340px; }

  /* Vorstand-Hero: Bild füllt Fläche exakt (16:9, kein Crop), Text im Bild */
  .gal-hero--team {
    background-size: cover;
    background-position: center;
    background-color: var(--bg-0);
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    align-items: flex-end;
  }
  .gal-hero--team::after {
    background: linear-gradient(180deg, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0) 30%, rgba(5,5,5,0.55) 72%, rgba(5,5,5,0.92) 100%);
  }
  .gal-hero--team .gal-hero__inner { padding-bottom: 18px; }
  .gal-hero--team .gal-hero__title { font-size: clamp(30px, 8.5vw, 52px); margin-top: 8px; }
  .gal-hero--team .gal-hero__cta { margin-top: 14px; }
  .gal-hero--team .gal-hero__cta .btn { padding: 12px 18px; font-size: 12px; }
  .gal-hero--team .eyebrow { font-size: 10px; }
  .gal-hero--team .gal-hero__lead { display: none; }

  /* Was du bekommst — Karten nicht mehr über den Rand */
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit { padding: 28px 24px; }
  .benefit__title, .benefit__body { overflow-wrap: break-word; word-break: break-word; }

  /* Formulare: Reihen stapeln statt quetschen (z.B. Telefon/Geburtsdatum) */
  .field-row { grid-template-columns: 1fr; gap: 20px; }
  input[type="date"] { min-width: 0; }

  /* Footer: Techlacin-Zeile über Impressum/Datenschutz */
  .footer__credit-row {
    text-align: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }
}

/* ============= Accent variants (Tweaks) ============= */
body[data-accent="gold"] .btn--primary { background: var(--gold); color: #000; box-shadow: var(--glow-gold); }
body[data-accent="gold"] .btn--primary:hover { background: var(--gold-warm); box-shadow: 0 0 100px -10px rgba(253,185,19,0.7); }
body[data-accent="gold"] .match::before { background: var(--gold); }
body[data-accent="gold"] .team-badge--home { background: linear-gradient(135deg, var(--gold-warm), var(--gold)); color: #000; }
body[data-accent="gold"] .hero__topbar .live { color: var(--gold); }
body[data-accent="gold"] .hero__topbar .live::before { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
body[data-accent="gold"] .eyebrow .dot { background: var(--gold); box-shadow: 0 0 12px var(--gold); }

body[data-density="cozy"] .section { padding: 100px 0; }
body[data-density="cozy"] .match { padding: 22px 0; }
body[data-density="airy"] .section { padding: 180px 0; }
body[data-density="airy"] .match { padding: 42px 0; }
