/* ============================================================
   VIENNA FIGHT NIGHT — Tokens
   ============================================================ */
:root {
  --fight-black: #0A0A0A;
  --arena-white: #FFFFFF;
  --fight-red: #CC1F1F;
  --fight-red-deep: #9A1212;
  --gold: #C49E5C;
  --charcoal: #1A1A1A;
  --charcoal-2: #111111;
  --footer-black: #060606;
  --stone: #AAAAAA;
  --stone-dim: #828282;
  --rule: rgba(255, 255, 255, 0.10);
  --rule-strong: rgba(255, 255, 255, 0.22);

  --skin: var(--fight-red);

  --font-display: "Oswald", "Bebas Neue", Impact, sans-serif;
  --font-sub: "Barlow Semi Condensed", "Helvetica Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 5vw, 96px);
  --section-y: clamp(80px, 10vw, 160px);
  --nav-h: 72px;
  scroll-padding-top: var(--nav-h);
}

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

html {
  scrollbar-gutter: stable;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--fight-black);
  color: var(--arena-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--fight-red); color: var(--arena-white); }

/* ============================================================
   Type primitives
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.86;
}
.t-sub {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.t-eyebrow {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: clamp(11px, 0.8vw, 13px);
}
.t-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  font-size: clamp(11px, 0.8vw, 13px);
  text-transform: uppercase;
}
.t-italic {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.red { color: var(--fight-red); }
.skin { color: var(--skin); }
.stone { color: var(--stone); }

/* ============================================================
   Grain / texture overlay
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: overlay;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-grain="off"] .grain { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --b: var(--fight-red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--b);
  color: var(--arena-white);
  border: 1px solid var(--b);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(12px, 0.85vw, 14px);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  position: relative;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); }
.btn .arrow { font-size: 14px; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--arena-white);
  border-color: rgba(255,255,255,0.30);
}
.btn--ghost:hover { border-color: var(--arena-white); background: rgba(255,255,255,0.04); }

.btn--block {
  width: 100%;
  justify-content: center;
}

/* Outline-corner accent on primary buttons */
.btn--corner::before,
.btn--corner::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--arena-white);
  pointer-events: none;
}
.btn--corner::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.btn--corner::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }

/* ============================================================
   Sections common
   ============================================================ */
.section {
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.section--charcoal { background: var(--charcoal); }
.section--black { background: var(--fight-black); }
.section--footerblack { background: var(--footer-black); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fight-red);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: clamp(11px, 0.8vw, 13px);
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--fight-red);
}

.eyebrow-num {
  font-family: var(--font-mono);
  color: var(--stone);
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.8vw, 13px);
  text-transform: uppercase;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.0) 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
  position: relative;
}
.nav__link {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1;
  color: var(--arena-white);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  border: 0;
  margin: 0;
}
.nav__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--fight-red);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.25s ease, width 0.25s ease, opacity 0.15s ease;
}
.nav__link:active,
.nav__link:visited { color: var(--arena-white); }
.nav__link:focus { outline: none; }
.nav__link:focus-visible { outline: 1px solid rgba(255,255,255,0.35); outline-offset: 4px; }

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__lang {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  font-size: clamp(11px, 0.8vw, 13px);
  color: var(--stone);
  border: 1px solid var(--rule);
  padding: 6px 8px;
  text-transform: uppercase;
}
.nav__lang button {
  background: transparent;
  border: 0;
  color: var(--stone);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0 6px;
  cursor: pointer;
}
.nav__lang button.is-active { color: var(--arena-white); font-weight: inherit; }

.nav__hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  width: 16px; height: 1.5px; background: var(--arena-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--fight-black);
  z-index: 55;
  padding: 100px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s linear 0.4s;
}
.nav-overlay.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s linear 0s;
}
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 56px;
  line-height: 1.1;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-overlay a .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fight-red);
  margin-right: 18px;
  vertical-align: top;
  letter-spacing: 0.20em;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--fight-black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.0) 25%, rgba(10,10,10,0.55) 75%, rgba(10,10,10,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.0) 50%);
  pointer-events: none;
}
/* Logo über NEXT EVENT — Markteinführung prominent */
.hero__logo-stack {
  display: block;
  width: clamp(240px, 35vw, 540px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}
@media (max-width: 760px) {
  .hero__logo-stack {
    width: 65vw;
    margin-bottom: 16px;
  }
}

/* dots */
.hero__dots {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.30);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero__dot.is-active { background: var(--fight-red); width: 44px; }
.hero__dot:hover { background: rgba(255,255,255,0.7); }

/* hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0 var(--pad-x) 60px;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero__title-block .next-event {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fight-red);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  padding: 7px 14px;
  margin-bottom: 12px;
}
.hero__title-block .next-event .dot {
  width: 6px; height: 6px; background: var(--arena-white); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__date {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(36px, 9vw, 144px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0;
  /* Outline + fill mix for editorial drama */
}
.hero__date .num {
  display: inline-block;
  line-height: 1;
}

.hero__location {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: clamp(14px, 1vw, 17px);
  color: var(--arena-white);
}
.hero__location .sep {
  width: 24px; height: 1px; background: var(--fight-red);
}

/* Side meta column on right (chip with details) */
.hero__sidemeta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}
.hero__sidemeta .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero__sidemeta .row .v {
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
}

/* corner ticks */
.hero__corner {
  position: absolute;
  z-index: 3;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.60);
}
.hero__corner.tl { top: 84px;    left: 16px;  border-right: 0; border-bottom: 0; }
.hero__corner.tr { top: 84px;    right: 16px; border-left: 0;  border-bottom: 0; }
.hero__corner.bl { bottom: 44px; left: 16px;  border-right: 0; border-top: 0; }
.hero__corner.br { bottom: 44px; right: 16px; border-left: 0;  border-top: 0; }

/* index marker top-left under nav */
.hero__index {
  position: absolute;
  top: 100px;
  left: 56px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.20em;
  color: var(--stone);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__claim {
  position: absolute;
  top: 100px;
  right: 56px;
  z-index: 3;
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(14px, 1vw, 17px);
  color: var(--arena-white);
}

/* Vertical text on far right */
.hero__vertical {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.40em;
  color: var(--stone);
  text-transform: uppercase;
  z-index: 3;
}

/* scroll cue */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--stone);
  text-transform: uppercase;
}
.hero__cue .line {
  position: relative;
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.20);
  overflow: hidden;
}
.hero__cue .line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 1px; height: 50%;
  background: var(--arena-white);
  animation: cue 2.0s ease-in-out infinite;
}
@keyframes cue {
  0%   { top: -50%; }
  100% { top: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ============================================================
   Countdown bar
   ============================================================ */
.countdown {
  background: var(--fight-black);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
}
.countdown.is-stuck {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(6px);
}
.countdown__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.countdown__label .l1 {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.30em;
  color: var(--stone);
  text-transform: uppercase;
}
.countdown__label .l2 {
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 0.95vw, 16px);
  text-transform: uppercase;
  color: var(--arena-white);
}
.countdown__digits {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.countdown__cell .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--arena-white);
  font-variant-numeric: tabular-nums;
}
.countdown__cell .k {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.30em;
  color: var(--stone);
  margin-top: 6px;
  text-transform: uppercase;
}
.countdown__sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 64px);
  line-height: 1;
  color: var(--fight-red);
  margin-top: -2px;
}

/* ============================================================
   About — section 4
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.about__head {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__head-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 132px);
  line-height: 0.84;
  letter-spacing: 0.005em;
  margin: 0;
}
.about__title .of {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 0.42em;
  letter-spacing: 0.04em;
  color: var(--stone);
  vertical-align: middle;
  margin: 0 6px;
}
.about__title .red-strike {
  position: relative;
  display: inline-block;
}
.about__title .red-strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 47%;
  height: 6px;
  background: var(--fight-red);
  transform: skew(-12deg);
}
.about__lede {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1.45;
  color: var(--arena-white);
  max-width: 56ch;
  letter-spacing: 0.005em;
}
.about__copy {
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
  color: var(--stone);
  max-width: 52ch;
}
.about__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arena-white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: gap 0.2s ease;
}
.about__more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--fight-red);
}
.about__more:hover { gap: 12px; }
.about__more:hover::after { animation: vfn-line-redraw 0.45s ease forwards; }
.about__more .arr { color: var(--fight-red); }
.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 48px;
}

.about__right {
  display: flex;
  flex-direction: column;
}
.about__night-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.about__night-h {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--arena-white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about__image {
  position: relative;
  flex: 1;
  min-height: 480px;
  border: 1px solid var(--fight-red);
  padding: 8px;
  background: var(--charcoal-2);
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.9);
}
.about__image-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.24em;
  color: var(--arena-white);
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.7);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.about__pillar {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.about__pillar .num {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.20em;
  color: var(--fight-red);
}
.about__pillar .label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.about__pillar .desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 16px);
  color: var(--stone);
  max-width: 30ch;
  text-align: right;
}

/* ============================================================
   The Night — section 5
   ============================================================ */
.thenight {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.65) 100%), url("assets/thenight-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.thenight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.thenight__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.thenight__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin: 12px 0 8px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.04em;
  flex-wrap: wrap;
}
.thenight__date .dot { color: var(--fight-red); margin: 0 0.04em; }
.thenight__date .yr { color: var(--stone); }
.thenight__venue {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(16px, 3vw, 24px);
}
.thenight__addr {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 16px);
  color: var(--stone);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.thenight__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.thenight__pills .pill {
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--rule-strong);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.85vw, 13px);
}
.pill .glyph {
  width: 8px; height: 8px;
  background: var(--fight-red);
  display: inline-block;
}
.pill--cta {
  border-color: var(--fight-red);
  background: var(--fight-red);
  color: var(--arena-white);
  transition: background 0.2s ease, transform 0.18s ease;
}
.pill--cta:hover { background: var(--fight-red-deep); transform: translate(-2px, -2px); }
.pill--cta .arr { font-family: var(--font-mono); }

/* ============================================================
   Tickets — section 6
   ============================================================ */
.tickets {
  display: grid;
  gap: 40px;
}
.tickets__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.tickets__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  margin: 14px 0 0;
  letter-spacing: 0.005em;
}
.tickets__head .meta {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  color: var(--stone);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-align: right;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  padding: 28px 26px 26px;
  min-height: 480px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.tcard:hover {
  border-color: var(--fight-red);
  transform: translateY(-4px);
}
.tcard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.tcard__tier {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tcard__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--stone);
}
.tcard__sub {
  margin-top: 14px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(12px, 0.85vw, 14px);
  color: var(--stone);
  white-space: nowrap;
}
.tcard__price {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tcard__price .from {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.20em;
  color: var(--stone);
}
.tcard__price .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.005em;
}
.tcard__price .cur {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--stone);
  margin-right: -2px;
}
.tcard__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(13px, 0.95vw, 16px);
  color: var(--arena-white);
  flex: 1;
}
.tcard__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.tcard__list li::before {
  content: "—";
  color: var(--fight-red);
  font-family: var(--font-mono);
}
.tcard__cta {
  margin-top: 20px;
}

/* Seat-tier accents — drive N° label, price, bullet and CTA */
.tcard--red:hover    { border-color: var(--fight-red); }
.tcard--red    .tcard__num            { color: var(--fight-red); }
.tcard--red    .tcard__price .v       { color: var(--arena-white); }
.tcard--red    .tcard__list li::before{ color: var(--fight-red); }
.tcard--red    .tcard__cta            { --b: #C9C9C9; color: var(--fight-black); }

.tcard--silver:hover { border-color: var(--fight-red); }
.tcard--silver .tcard__num            { color: var(--stone); }
.tcard--silver .tcard__price .v       { color: #D6D6D6; }
.tcard--silver .tcard__list li::before{ color: var(--stone); }
.tcard--silver .tcard__cta            { --b: #C9C9C9; color: var(--fight-black); }

.tcard--gold         { border-color: rgba(196, 158, 92, 0.35); }
.tcard--gold:hover   { border-color: rgba(196, 158, 92, 0.85); }
.tcard--gold   .tcard__num            { color: var(--gold); }
.tcard--gold   .tcard__price .v       { color: var(--gold); }
.tcard--gold   .tcard__list li::before{ color: var(--gold); }
.tcard--gold   .tcard__cta            { --b: var(--gold); color: var(--fight-black); }

/* ============================================================
   Patara · VIP Table hero (prominent, full width on top)
   ============================================================ */
.tpatara {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr) minmax(360px, 0.95fr);
  align-items: stretch;
  border: 1px solid rgba(196, 158, 92, 0.40);
  background:
    radial-gradient(120% 130% at 100% 100%, rgba(196, 158, 92, 0.14) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #161310 0%, #0C0B0A 100%);
  min-height: 520px;
  transition: border-color 0.25s ease;
}
.tpatara:hover { border-color: rgba(196, 158, 92, 0.85); }
.tpatara__num {
  position: absolute;
  top: 30px;
  right: 34px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

/* Left column — the offer */
.tpatara__details {
  display: flex;
  flex-direction: column;
  padding: 48px 40px 44px;
  border-right: 1px solid rgba(196, 158, 92, 0.18);
}
.tpatara__tier {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.tpatara__sub {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(196, 158, 92, 0.22);
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--stone);
}
.tpatara__price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tpatara__price .from {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--stone);
}
.tpatara__price .cur {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  color: var(--stone);
}
.tpatara__price .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
}
.tpatara__chip {
  align-self: flex-start;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(196, 158, 92, 0.55);
  background: rgba(196, 158, 92, 0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}
.tpatara__chip-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.tpatara__list {
  margin-top: 26px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--arena-white);
}
.tpatara__list li {
  display: flex;
  gap: 10px;
  letter-spacing: 0.01em;
}
.tpatara__list li::before {
  content: "—";
  color: var(--gold);
  font-family: var(--font-mono);
}
.tpatara__cta {
  margin-top: auto;
}
.tpatara__cta.btn {
  --b: var(--gold);
  color: var(--fight-black);
}

/* Middle column — Patara brand + advertising copy */
.tpatara__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  z-index: 3;
}
.tpatara__logo-link {
  display: inline-block;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
.tpatara__logo-link:hover { opacity: 0.78; }
.tpatara__logo {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: -21px;
  filter: drop-shadow(0 4px 18px rgba(196, 158, 92, 0.35));
}
.tpatara__tagline {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--arena-white);
  max-width: 18ch;
}
.tpatara__lede {
  margin-top: 22px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.65;
  color: #C7C7C7;
  max-width: 44ch;
}
.tpatara__site {
  margin-top: 22px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 158, 92, 0.45);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tpatara__site:hover { color: #E3C386; border-color: #E3C386; }
.tpatara__site .arrow { transition: transform 0.2s ease; }
.tpatara__site:hover .arrow { transform: translateX(3px); }

/* Right column — host in foreground, food spread behind */
.tpatara__art {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.tpatara__food {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.tpatara__lady {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 12%;
  height: 106%;
  width: auto;
  max-width: 82%;
  object-fit: contain;
  object-position: bottom left;
  filter:
    drop-shadow(20px 16px 22px rgba(0, 0, 0, 0.8))
    drop-shadow(36px 30px 60px rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.tickets__foot {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

@media (max-width: 1366px) {
  .tpatara {
    grid-template-columns: minmax(260px, 0.9fr) 1fr;
    min-height: 0;
  }
  .tpatara__brand { border-right: 0; }
  .tpatara__art {
    grid-column: 1 / -1;
    min-height: 380px;
    border-top: 1px solid rgba(196, 158, 92, 0.18);
  }
  .tpatara__lady { left: 8%; height: 104%; }
}
@media (max-width: 640px) {
  .tpatara { grid-template-columns: 1fr; }
  .tpatara__details { border-right: 0; border-bottom: 1px solid rgba(196, 158, 92, 0.18); }
  .tpatara__art { min-height: 320px; }
  .tpatara__lady { left: 4%; height: 100%; }
}

/* ============================================================
   Newsletter — section 7
   ============================================================ */
.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: #111;
  padding: 80px var(--pad-x);
  border-left: 3px solid var(--fight-red);
  position: relative;
}
.newsletter::before {
  content: "07";
  position: absolute;
  top: 18px; right: var(--pad-x);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.20em;
}
.newsletter__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  margin: 12px 0 16px;
  letter-spacing: 0.005em;
}
.newsletter__sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 17px);
  color: var(--stone);
  max-width: 48ch;
}
.newsletter__form {
  display: flex;
  border: 1px solid var(--rule-strong);
  background: var(--fight-black);
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--arena-white);
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 18px);
  padding: 18px 20px;
  letter-spacing: 0.01em;
}
.newsletter__form input::placeholder { color: var(--stone-dim); }
.newsletter__form button {
  background: var(--fight-red);
  border: 0;
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(12px, 0.85vw, 14px);
  padding: 0 28px;
  transition: background 0.2s ease;
}
.newsletter__form button:hover { background: var(--fight-red-deep); }
.newsletter__success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #2E7D32;
  color: #A5D6A7;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13px;
  background: rgba(46, 125, 50, 0.08);
}

/* ============================================================
   Venue — section 8
   ============================================================ */
.venue {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: stretch;
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.venue__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.venue__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
  margin: 12px 0 0;
  letter-spacing: 0.005em;
}
.venue__p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
  color: var(--stone);
  max-width: 48ch;
}
.venue__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.venue__details dt {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.24em;
  color: var(--fight-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.venue__details dd {
  margin: 0;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.venue__details dd .small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.venue__map {
  position: relative;
  min-height: 180px;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.venue__map svg { width: 100%; height: 100%; display: block; }
.venue__map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.venue__map-pin .marker {
  width: 18px; height: 18px;
  background: var(--fight-red);
  border-radius: 50%;
  border: 3px solid var(--arena-white);
  box-shadow: 0 0 0 6px rgba(204, 31, 31, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
.venue__map-pin .label {
  background: var(--fight-black);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(11px, 0.8vw, 13px);
  padding: 6px 10px;
  border: 1px solid var(--rule-strong);
  white-space: nowrap;
}

/* ============================================================
   Press — embedded section (index.html)
   ============================================================ */
.press-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--fight-black);
  border-top: 1px solid var(--rule);
}
.press-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.press-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 100px);
  line-height: 0.9;
  margin: 16px 0 0;
  letter-spacing: 0.005em;
}
.press-section__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 18px);
  color: var(--stone);
  margin: 0;
  max-width: 38ch;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.press-section__foot {
  margin-top: clamp(32px, 4vw, 52px);
  display: flex;
  justify-content: center;
}
.press-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(12px, 0.85vw, 14px);
  color: var(--arena-white);
  border: 1px solid var(--rule-strong);
  padding: 14px 28px;
  transition: border-color 0.2s, gap 0.2s;
}
.press-section__btn:hover { border-color: var(--fight-red); gap: 14px; }
.press-section__btn .arr { color: var(--fight-red); }

/* pp-img — editorial dark placeholder */
.pp-img {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(204,31,31,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #141414 100%);
  isolation: isolate;
}
.pp-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.pp-img::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  top: 40%; height: 30%;
  background: linear-gradient(110deg, transparent 0%, rgba(204,31,31,0.10) 30%, rgba(204,31,31,0.22) 50%, rgba(204,31,31,0.10) 70%, transparent 100%);
  transform: skewY(-6deg);
  pointer-events: none;
  z-index: 1;
}

/* pp-card — editorial card */
.pp-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
}
.pp-card:hover { border-color: var(--fight-red); transform: translateY(-4px); }
.pp-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pp-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pp-card:hover .pp-card__media img { transform: scale(1.04); }
.pp-card__media .pp-img { width: 100%; height: 100%; }
.pp-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fight-red);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: clamp(11px, 0.8vw, 13px);
  padding: 6px 10px;
}
.pp-card__cat--interview { background: #C49E5C; }
.pp-card__cat--gallery { background: transparent; border: 1px solid var(--arena-white); }
.pp-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 22px;
  flex: 1;
}
.pp-card__date {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.24em;
  color: var(--stone);
  text-transform: uppercase;
}
.pp-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--arena-white);
  transition: color 0.2s ease;
}
.pp-card:hover .pp-card__title { color: var(--fight-red); }
.pp-card__excerpt {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
}
.pp-card__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.8vw, 13px);
  letter-spacing: 0.20em;
  color: var(--stone-dim);
  text-transform: uppercase;
}
.pp-card__foot .read {
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.85vw, 13px);
  color: var(--arena-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.pp-card:hover .pp-card__foot .read { gap: 12px; }
.pp-card__foot .read .arr { color: var(--fight-red); }

@media (max-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Social ribbon
   ============================================================ */
.social {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--fight-black);
}
.social__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(24px, 6vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.social__ticker {
  overflow: hidden;
  position: relative;
  height: 22px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.social__ticker-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--stone);
  text-transform: uppercase;
}
.social__ticker-inner span .red-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--fight-red);
  margin: 0 14px;
  vertical-align: middle;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.social__icons {
  display: flex;
  gap: 8px;
}
.social__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  color: var(--arena-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social__icon:hover {
  background: var(--fight-red);
  border-color: var(--fight-red);
}
.social__icon svg { width: 16px; height: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--footer-black);
  padding: 80px var(--pad-x) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fight-red);
  margin: 0 0 18px;
}
.footer__col img { height: 60px; margin-bottom: 16px; }
.footer__col p { color: var(--stone); font-size: clamp(13px, 0.95vw, 15px); line-height: 1.6; max-width: 36ch; }
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__list a {
  font-family: var(--font-sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(12px, 0.85vw, 14px);
  color: var(--arena-white);
  transition: color 0.2s ease;
}
.footer__list a:hover { color: var(--fight-red); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.20em;
  color: var(--stone-dim);
  text-transform: uppercase;
}
.footer__legal .claim {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: none;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-armed { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .about,
  .newsletter,
  .venue {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__corner { display: none; }
}

@media (max-width: 1280px) {
  .nav__menu { gap: 18px; }
  .nav__link { letter-spacing: 0.10em; font-size: 12px; }
}

@media (max-width: 1024px) {
  .tickets__grid { grid-template-columns: 1fr; }
  .nav__menu, .nav__lang { display: none; }
  .nav__hamburger { display: inline-flex; }
  .nav__right .btn { display: none; }
}

@media (max-width: 760px) {
  :root { --pad-x: 20px; --section-y: 64px; }
  .countdown {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .countdown__digits { gap: 6px; flex-wrap: nowrap; justify-content: center; }
  .countdown__cell { min-width: 0; }
  .countdown__cell .v,
  .countdown__sep { font-size: clamp(30px, 8vw, 48px); }
  .countdown .btn { margin-top: 20px; }
  .hero__inner { padding-bottom: 48px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__sidemeta { align-items: flex-start; text-align: left; }
  .thenight {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.72) 62%, rgba(0,0,0,0.88) 100%),
      url("assets/thenight-bg.webp");
    background-position: center top;
    min-height: 145vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 20px;
  }
  .thenight__inner { gap: 14px; }
  .thenight__date { font-size: clamp(52px, 16vw, 80px); margin: 0; }
  .thenight__pills { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
  .about__image { min-height: 260px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form button { min-height: 52px; padding: 16px 28px; font-size: 13px; }
  .tickets__head { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col p { font-size: 14px; }
  .footer__legal { flex-direction: column; gap: 12px; text-align: center; }
  .social { grid-template-columns: 1fr; }
  .social__ticker { display: none; }
  .nav-overlay a { font-size: clamp(28px, 8vw, 38px); }
  .hero__index,
  .hero__claim,
  .hero__vertical { display: none; }
  .about__pillar { grid-template-columns: 60px 1fr; row-gap: 8px; }
  .about__pillar .desc { grid-column: 2; text-align: left; max-width: none; }
}

@media (max-width: 480px) {
  .thenight__pills { grid-template-columns: 1fr; }
  .tcard { padding: 22px 18px; }
  .tcard__price .v { font-size: 52px; }
  .tcard__tier { font-size: 28px; }
  .tcard__sub { font-size: 13px; }
  .tcard__list { font-size: 15px; }
}


/* ── KONTAKT ─────────────────────────────────────────────── */
.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kontakt__h {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin: 20px 0 16px;
}
.kontakt__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.7;
}
.kontakt__right {
  border-left: 1px solid #1a1a1a;
  padding-left: 64px;
}
.kontakt__logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 32px;
}
.kontakt__org {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.kontakt__email {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fight-red);
  text-decoration: none;
  border-bottom: 1px solid var(--fight-red);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.kontakt__email:hover { opacity: 0.75; }
.kontakt__reasons {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kontakt__reasons li {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
}
.kontakt__reasons li::before {
  content: '—';
  margin-right: 10px;
  color: var(--fight-red);
}

/* ── IMPRESSUM ───────────────────────────────────────────── */
.impressum { display: block; }
.impressum__h {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 16px 0 12px;
}
.impressum__offenlegung {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 48px;
}
.impressum__body { display: flex; flex-direction: column; gap: 48px; }
.impressum__partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.impressum__partner {
  background: #111;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.impressum__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fight-red);
}
.impressum__name {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
  margin-top: 4px;
}
.impressum__detail {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
}
.impressum__contact {
  background: #111;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
}
.impressum__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fight-red);
  text-decoration: none;
}
.impressum__link:hover { opacity: 0.75; }
.impressum__legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
}
.impressum__legal-block h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.impressum__legal-block p {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .kontakt { grid-template-columns: 1fr; gap: 40px; }
  .kontakt__right { border-left: none; padding-left: 0; border-top: 1px solid #1a1a1a; padding-top: 40px; }
  .impressum__partners { grid-template-columns: 1fr; }
  .impressum__legal { grid-template-columns: 1fr; }
}

/* ── IMPRESSUM MODAL ─────────────────────────────────────── */
.imp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.imp-modal {
  background: #0A0A0A;
  border: 1px solid #1a1a1a;
  width: 100%;
  max-width: 860px;
  padding: 56px;
}
.imp-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 24px;
}
.imp-modal__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fight-red);
  display: block;
  margin-bottom: 12px;
}
.imp-modal__h {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.imp-modal__offenlegung {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
}
.imp-modal__close {
  background: none;
  border: 1px solid #333;
  color: #666;
  font-size: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.imp-modal__close:hover { border-color: var(--fight-red); color: var(--fight-red); }
.imp-modal__body { display: flex; flex-direction: column; gap: 40px; }
.imp-modal__partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.imp-modal__partner {
  background: #111;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.imp-modal__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fight-red);
}
.imp-modal__name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
  margin-top: 4px;
}
.imp-modal__detail {
  font-size: 12px;
  color: var(--stone);
}
.imp-modal__contact {
  background: #111;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
}
.imp-modal__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fight-red);
  text-decoration: none;
}
.imp-modal__link:hover { opacity: 0.75; }
.imp-modal__legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
}
.imp-modal__legal-block h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.imp-modal__legal-block p {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .imp-modal { padding: 32px 24px; }
  .imp-modal__partners { grid-template-columns: 1fr; }
  .imp-modal__legal { grid-template-columns: 1fr; }
}

/* ── FOOTER PARTNER LOGOS ────────────────────────────────── */
.footer__kooperation {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #444;
  margin-top: 24px !important;
  margin-bottom: 16px !important;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}
.footer__partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__partner-logos img {
  height: unset;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.footer__partner-logos img:nth-child(1) { height: 60px; } /* Bauer Prosport */
.footer__partner-logos img:nth-child(2) { height: 40px; } /* M.A.P.E. */
.footer__partner-logos img:nth-child(3) { height: 32px; } /* City Thong */

/* ============================================================
   Footer v2 — new structure overrides
   ============================================================ */
.footer {
  background: var(--footer-black);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Tale-of-the-tape strip */
.footer__tape {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.footer__tape-cell {
  padding: 22px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.footer__tape-cell:last-child { border-right: 0; }
.footer__tape-cell .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--stone-dim);
}
.footer__tape-cell .v {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--arena-white);
  font-variant-numeric: tabular-nums;
}
.footer__tape-cell .v .red { color: var(--fight-red); }
.footer__tape-cell .v small {
  display: block;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-top: 6px;
}

/* Wordmark marquee */
.footer__marquee {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.footer__marquee-track {
  display: flex;
  gap: 0.4em;
  white-space: nowrap;
  animation: footer-marquee 38s linear infinite;
  padding-left: 0.4em;
}
.footer__marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.20);
}
.footer__marquee-track span.is-fill {
  color: var(--arena-white);
  -webkit-text-stroke: 0;
}
@keyframes footer-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Body grid */
.footer__body {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.75fr 0.75fr 1.1fr;
  gap: clamp(24px, 3.5vw, 56px);
  padding: 80px var(--pad-x) 64px;
  border-bottom: 1px solid var(--rule);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__brand-logo {
  height: 72px;
  width: auto;
  align-self: flex-start;
}
.footer__brand-partners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__partners-label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer__partners-logos {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 8px 0;
}
.footer__partners-logos a {
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.footer__partners-logos a:hover { opacity: 1; }
.footer__partners-logos img { height: 36px; width: 150px; object-fit: contain; object-position: left; }
.footer__partners-logos a:nth-child(1) img { height: 47px; }
.footer__partners-logos a:nth-child(3) img { height: 32px; }

.footer__brand-tag {
  font-family: var(--font-sub);
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--stone);
  margin: 0;
  max-width: 32ch;
}
.footer__brand-meta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--stone-dim);
  text-transform: uppercase;
}
.footer__brand-meta .row { display: flex; justify-content: space-between; gap: 18px; max-width: 320px; }
.footer__brand-meta .row .v { color: var(--arena-white); }

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--fight-red);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__col-label::before {
  content: "";
  width: 18px; height: 1px; background: var(--fight-red);
}
.footer__col-label.is-spaced { margin-top: 36px; }

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 22px;
  color: var(--arena-white);
  transition: color 0.2s ease, padding-left 0.25s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
}
.footer__list a .num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.20em;
  color: var(--stone-dim);
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer__list a:hover { color: var(--fight-red); padding-left: 8px; }
.footer__list a:hover .num { color: var(--fight-red); }

.footer__list--legal a {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--stone);
  text-transform: uppercase;
}
.footer__list--legal a:hover { color: var(--arena-white); padding-left: 0; }

/* Contact card */
.footer__contact {
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  background: linear-gradient(180deg, rgba(204,31,31,0.04) 0%, rgba(0,0,0,0) 60%);
}
.footer__contact::before,
.footer__contact::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--fight-red);
}
.footer__contact::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.footer__contact::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact-block .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--stone-dim);
}
.footer__contact-block a {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--arena-white);
  text-transform: lowercase;
  transition: color 0.2s ease;
  word-break: break-all;
}
.footer__contact-block a:hover { color: var(--fight-red); padding-left: 0; }

.footer__contact-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--fight-red);
  background: var(--fight-red);
  color: var(--arena-white);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  transition: background 0.2s ease, transform 0.18s ease;
}
.footer__contact-cta:hover { background: var(--fight-red-deep); transform: translate(-2px, -2px); color: var(--arena-white); }
.footer__contact-cta .arrow { font-family: var(--font-mono); }

/* Partners rail */
.footer__partners {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.footer__partners-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--stone-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.footer__partners-label::after {
  content: "";
  width: 28px; height: 1px; background: var(--rule-strong);
}
.footer__partners-row {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.footer__partners-row a {
  display: inline-flex;
  align-items: center;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer__partners-row a:hover { opacity: 1; }
.footer__partners-row img { height: 30px; width: auto; }
.footer__partners-row a:first-child img { height: 50px; }

/* Legal bar */
.footer__legal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px var(--pad-x);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--stone-dim);
  text-transform: uppercase;
}
.footer__legal .claim {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
}
.footer__legal .right {
  text-align: right;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.footer__legal .right .dot {
  width: 5px; height: 5px;
  background: var(--fight-red);
  display: inline-block;
}

/* Responsive overrides for footer v2 */
@media (max-width: 1100px) {
  .footer__body { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__tape { grid-template-columns: repeat(3, 1fr); }
  .footer__tape-cell:nth-child(3) { border-right: 0; }
  .footer__tape-cell:nth-child(n+4) { border-top: 1px solid var(--rule); }
}

@media (max-width: 760px) {
  .footer__body { grid-template-columns: 1fr; gap: 48px; padding: 56px var(--pad-x); }
  .footer__tape { grid-template-columns: 1fr 1fr; }
  .footer__tape-cell { border-right: 1px solid var(--rule); border-top: 1px solid var(--rule); }
  .footer__tape-cell:nth-child(2n) { border-right: 0; }
  .footer__partners { grid-template-columns: 1fr; gap: 18px; }
  .footer__legal { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .footer__legal .claim, .footer__legal .right { text-align: center; justify-content: center; }
}
.footer__partner-logos img:hover { opacity: 0.8; }

/* ── DATENSCHUTZ MODAL ───────────────────────────────────── */
.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-align: left;
}
.footer__legal-btn:hover { opacity: 1; }

.dsgvo-modal {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.dsgvo-modal__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid #1a1a1a;
  margin-top: 32px;
}
.dsgvo-modal__section {}
.dsgvo-modal__sh {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--arena-white);
  margin: 0 0 10px;
}
.dsgvo-modal__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fight-red);
  letter-spacing: 0.18em;
  min-width: 18px;
}
.dsgvo-modal__p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
  margin: 0 0 6px;
}
.dsgvo-modal__footer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--stone-dim);
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  margin: 0;
}
@media (max-width: 760px) {
  .dsgvo-modal { max-height: 95vh; }
}

/* ── ARCHIV GALERIE (Presseartikel) ──────────────────────── */
.art__arch-gallery { margin-top: 56px; }
.art__arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 20px;
}
.art__arch-grid .art__arch-frame:first-child {
  grid-column: 1 / -1;
}
.art__arch-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal-2);
}
.art__arch-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 0.4s ease;
}
.art__arch-frame:first-child img { aspect-ratio: 16 / 9; }
.art__arch-frame:hover img { transform: scale(1.02); }
.art__arch-frame figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: rgba(0,0,0,0.72);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  transition: opacity 0.25s;
}
.art__arch-frame:hover figcaption { opacity: 1; }

/* Video placeholder */
.art__video-placeholder {
  background: var(--charcoal-2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.art__video-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.art__video-ph-icon {
  font-size: 48px;
  color: var(--fight-red);
  opacity: 0.6;
}
.art__video-ph-label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--arena-white);
}
.art__video-ph-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

@media (max-width: 760px) {
  .art__arch-grid { grid-template-columns: 1fr 1fr; }
  .art__video-placeholder { min-height: 220px; }
}
@media (max-width: 380px) {
  .art__arch-grid { grid-template-columns: 1fr; }
  .art__arch-frame img,
  .art__arch-frame:first-child img { aspect-ratio: 4 / 3; }
}

/* ============================================================
   About Page — ab-* components
   ============================================================ */

/* 01 — Hero */
.ab-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.ab-hero__left {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.ab-hero__left .section-label { margin-bottom: 24px; }
.ab-hero__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
  min-height: 0;
}
.ab-hero__pillars {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.ab-hero__pillar:first-of-type {
  border-top: 1px solid var(--rule);
}
.ab-hero__pillars-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4px;
}
.ab-hero__pillars-h {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--arena-white);
  line-height: 1.1;
}
.ab-hero__pillar {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.ab-hero__pillar-label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.ab-hero__pillar-title {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 16px);
  color: var(--stone);
  text-align: right;
}
.ab-hero__pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ab-hero__pillars-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ab-hero__pillars-h {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--arena-white);
  line-height: 1.1;
}
.ab-hero__pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-hero__pillars-list .ab-pillar {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.ab-hero__pillars-list .ab-pillar:last-child {
  border-bottom: 1px solid var(--rule);
}
.ab-hero__image {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
}
.ab-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ab-hero__image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ab-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(80px, 13vw, 210px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  display: block;
}
.ab-hero__title .of {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 0.38em;
  letter-spacing: 0.04em;
  color: var(--stone);
  vertical-align: middle;
  margin: 0 10px;
}
.ab-hero__title .red-strike {
  position: relative;
  display: inline-block;
}
.ab-hero__title .red-strike::after {
  content: "";
  position: absolute;
  left: -1%; right: -1%;
  top: 47%;
  height: clamp(5px, 0.55vw, 9px);
  background: var(--fight-red);
  transform: skew(-12deg);
}
.ab-hero__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-dim);
  margin-bottom: 32px;
}
.ab-hero__rule {
  height: 1px;
  background: var(--rule-strong);
}
.ab-hero__lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.6;
  color: var(--arena-white);
  max-width: 60ch;
  margin-top: 40px;
}
.ab-hero__body {
  font-family: var(--font-body);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.7;
  color: var(--stone);
  max-width: 56ch;
  margin-top: 16px;
}

/* 02 — Story */
.ab-story .section-label { margin-bottom: 40px; }
.ab-story__tagline {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--stone);
  max-width: 80ch;
  margin: 0 0 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.ab-story__history-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--arena-white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 64px;
  transition: gap 0.2s ease;
}
.ab-story__history-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--fight-red);
}
.ab-story__history-link:hover { gap: 12px; }
.ab-story__history-link:hover::after { animation: vfn-line-redraw 0.45s ease forwards; }
.ab-story__body {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.ab-chapter { display: flex; flex-direction: column; gap: 0; }
.ab-chapter__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--arena-white);
  margin: 0 0 24px;
  max-width: 60ch;
}
.ab-chapter__para {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--stone);
  margin: 0 0 10px;
  max-width: 72ch;
}
.ab-chapter__para:last-child { margin-bottom: 0; }
.ab-story__close {
  border-top: 1px solid var(--rule-strong);
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-story__close p {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  margin: 0;
  color: var(--fight-red);
}
.ab-story__close p:last-child { color: var(--arena-white); }

/* 03 — Pillars */
.ab-pillars__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.ab-pillars__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
}
.ab-pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ab-pillars__image {
  position: relative;
  border: 1px solid var(--fight-red);
  padding: 8px;
  background: var(--charcoal-2);
}
.ab-pillars__image img {
  width: 100%;
  height: clamp(320px, 45vw, 560px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.85);
  display: block;
}
.ab-pillars__image-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--arena-white);
  text-transform: uppercase;
  background: rgba(10,10,10,0.75);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.ab-pillars__list {
  display: flex;
  flex-direction: column;
}
.ab-pillar {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-pillar:first-child { border-top: 1px solid var(--rule); }
.ab-pillar__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ab-pillar__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--fight-red);
}
.ab-pillar__label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--stone-dim);
}
.ab-pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}
.ab-pillar__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
  margin: 0;
}
.ab-pillar__detail {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

/* 04 — CTA */
.ab-cta .section-label { margin-bottom: 24px; }
.ab-cta__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: 0.02em;
  line-height: 0.88;
  margin: 0 0 24px;
}
.ab-cta__p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
  margin: 0 0 40px;
}
.ab-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .ab-pillars__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ab-hero__title { font-size: clamp(64px, 18vw, 100px); }
  .ab-cta__h { font-size: clamp(48px, 14vw, 80px); }
}
