/* ============================================================
   PS DENZLINGEN — style.css (V3)
   Design system: "Klubhaus" — billiard-editorial
   Blue club identity · Barlow Condensed + Lato + Instrument Serif
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --blue:        #1a7ec8;
  --blue-bright: #2e96de;
  --blue-deep:   #0d4a7a;
  --navy:        #0b2a45;
  --navy-2:      #07203a;
  --ink:         #15222e;
  --muted:       #5b6b7a;
  --paper:       #f5f8fb;
  --line:        #d8e2ec;
  --line-dark:   rgba(255,255,255,0.12);
  --white:       #ffffff;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Instrument Serif', Georgia, serif;

  --max: 1180px;
  --nav-h: 74px;
  --r: 3px;
  --t: 0.3s cubic-bezier(0.33, 1, 0.68, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--blue); color: var(--white); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--navy);
  text-transform: uppercase;
}
h2 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif {
  font-family: var(--font-accent);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── Sections ───────────────────────────────────────────── */
.sec { padding: 104px 0; position: relative; }
.sec--paper { background: var(--paper); }
.sec--navy  { background: var(--navy); color: rgba(255,255,255,0.78); }
.sec--navy h2, .sec--navy h3 { color: var(--white); }
.sec--blue  { background: var(--blue); color: rgba(255,255,255,0.88); }
.sec--blue h2 { color: var(--white); }
.sec--tight { padding: 64px 0; }

.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.045; pointer-events: none; z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ── Kicker: ball number + label + rule ─────────────────── */
.kicker {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 26px;
}
.kicker__label {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.sec--navy .kicker__label, .sec--blue .kicker__label { color: rgba(255,255,255,0.65); }
.kicker__rule { flex: 1; height: 1px; background: var(--line); min-width: 40px; }
.sec--navy .kicker__rule, .sec--blue .kicker__rule { background: var(--line-dark); }

/* Billiard-ball number badge */
.ball {
  width: 42px; height: 42px; border-radius: 50%;
  flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, var(--blue-bright), var(--blue) 48%, var(--blue-deep) 100%);
  box-shadow: inset -3px -5px 8px rgba(7,32,58,0.35), inset 3px 4px 6px rgba(255,255,255,0.22), 0 2px 6px rgba(7,32,58,0.18);
}
.ball::before {
  content: ''; position: absolute;
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,0.08);
}
.ball span {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.82rem; color: var(--navy);
  letter-spacing: 0;
}
.ball--lg { width: 56px; height: 56px; }
.ball--lg::before { width: 31px; height: 31px; }
.ball--lg span { font-size: 1.05rem; }
.ball--dark {
  background: radial-gradient(circle at 32% 28%, #2c3e50, var(--navy) 48%, #04111e 100%);
}

/* Section intro text */
.lede {
  font-size: 1.08rem; color: var(--muted);
  max-width: 620px; margin-top: 14px;
}
.sec--navy .lede { color: rgba(255,255,255,0.65); }
.sec--blue .lede { color: rgba(255,255,255,0.82); }

/* Serif pull-line under headlines */
.pull {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--blue); line-height: 1.4;
  margin-top: 14px;
}
.sec--navy .pull { color: var(--blue-bright); }

/* ── Diamond rail (separator) ───────────────────────────── */
.rail { display: flex; gap: 22px; justify-content: center; align-items: center; padding: 0; }
.rail i {
  width: 7px; height: 7px; background: var(--blue);
  transform: rotate(45deg); display: block; opacity: 0.55;
}
.rail i:nth-child(odd) { opacity: 0.25; width: 5px; height: 5px; }

.diamond {
  display: inline-block; width: 6px; height: 6px;
  background: currentColor; transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons & links ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--t);
  line-height: 1;
}
.btn .arr { transition: transform var(--t); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); box-shadow: 0 10px 28px rgba(26,126,200,0.35); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-ghost-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost-w:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(4,17,30,0.3); }

.link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); position: relative; padding-bottom: 3px;
}
.link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--blue);
  transform: scaleX(0.32); transform-origin: left;
  transition: transform var(--t);
}
.link:hover::after { transform: scaleX(1); }
.link .arr { transition: transform var(--t); }
.link:hover .arr { transform: translateX(4px); }

/* ── Stamp (rotated hand-placed label) ──────────────────── */
.stamp {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); border: 2px solid var(--blue);
  padding: 7px 16px; border-radius: var(--r);
  transform: rotate(-2deg);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  display: flex; align-items: center; padding: 0 28px;
}
.nav__logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.nav__logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.nav__logo-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem; line-height: 1.12; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nav__logo-text span {
  display: block; font-weight: 500; font-size: 0.74rem;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.55);
}
.nav__menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 8px 13px; position: relative; transition: var(--t);
  display: inline-flex; align-items: center; gap: 7px;
}
.nav__link::before {
  content: ''; width: 5px; height: 5px;
  background: var(--blue); transform: rotate(45deg) scale(0);
  transition: transform var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::before, .nav__link.active::before { transform: rotate(45deg) scale(1); }

.nav__item { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 8px;
  background: var(--navy-2); min-width: 196px;
  border: 1px solid rgba(255,255,255,0.1); border-top: 3px solid var(--blue);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--t); box-shadow: 0 18px 44px rgba(2,10,20,0.5);
}
.nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: var(--t);
}
.nav__dropdown a:hover { background: rgba(26,126,200,0.18); color: var(--white); padding-left: 24px; }
.nav__cta { margin-left: 18px; padding: 10px 22px; font-size: 0.88rem; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__burger span { width: 25px; height: 2px; background: var(--white); transition: var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-2); z-index: 999;
  border-bottom: 3px solid var(--blue);
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: var(--t);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav__mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 28px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a::before { content: ''; width: 5px; height: 5px; background: var(--blue); transform: rotate(45deg); }
.nav__mobile a:active { background: rgba(26,126,200,0.15); }

/* ── Hero (home) ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy); overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__video, .hero__fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__video { opacity: 0.4; }
.hero__fallback {
  background: url('assets/pooltables.jpeg') center/cover no-repeat;
  opacity: 0.28;
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(7,32,58,0.94) 0%, rgba(11,42,69,0.72) 52%, rgba(7,32,58,0.55) 100%);
}
.hero__shade::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--grain); opacity: 0.05;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%;
  margin: 0 auto; padding: 64px 28px 0;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.84rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  opacity: 0; transform: translateY(18px); animation: rise 0.8s 0.25s forwards;
}
.hero__kicker .diamond { color: var(--blue); }
.hero__title {
  font-size: clamp(3.4rem, 10.5vw, 8.2rem);
  font-weight: 800; color: var(--white);
  line-height: 0.9; letter-spacing: 0.005em;
  margin-bottom: 26px;
}
.hero__title .row { display: block; overflow: hidden; }
.hero__title .row > span {
  display: inline-block;
  opacity: 0; transform: translateY(105%);
  animation: riseFull 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__title .row:nth-child(1) > span { animation-delay: 0.4s; }
.hero__title .row:nth-child(2) > span { animation-delay: 0.52s; }
.outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
  text-stroke: 2.5px var(--white);
}
@supports not (-webkit-text-stroke: 1px black) {
  .outline { color: rgba(255,255,255,0.35); }
}
.hero__sub {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--blue-bright); margin-bottom: 18px;
  opacity: 0; transform: translateY(18px); animation: rise 0.8s 0.75s forwards;
}
.hero__text {
  max-width: 520px; color: rgba(255,255,255,0.7);
  margin-bottom: 38px; font-size: 1.05rem;
  opacity: 0; transform: translateY(18px); animation: rise 0.8s 0.9s forwards;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px); animation: rise 0.8s 1.05s forwards;
}
.hero__strip {
  position: relative; z-index: 2;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  opacity: 0; animation: fade 0.9s 1.3s forwards;
}
.hstat {
  padding: 26px 26px 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hstat:first-child { padding-left: 0; }
.hstat:last-child { border-right: 0; }
.hstat__v {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1; color: var(--white);
}
.hstat__v em { font-style: normal; color: var(--blue-bright); }
.hstat__l {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 6px;
}

/* Rotating roundel */
.roundel {
  position: absolute; z-index: 3;
  right: 56px; bottom: 130px;
  width: 128px; height: 128px;
}
.roundel svg { width: 100%; height: 100%; overflow: visible; }
.roundel text {
  font-family: var(--font-display); font-size: 11.2px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  fill: rgba(255,255,255,0.75);
}
.roundel__spin { transform-origin: 50% 50%; animation: spin 26s linear infinite; }
.roundel__core { fill: var(--blue); }

/* Vertical side rail text */
.hero__side {
  position: absolute; z-index: 3;
  right: 30px; top: 50%; transform: translateY(-62%);
  writing-mode: vertical-rl;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 14px;
}
.hero__side::before { content: ''; width: 1px; height: 56px; background: rgba(255,255,255,0.25); }

/* ── Ticker ─────────────────────────────────────────────── */
.ticker {
  background: var(--blue); color: var(--white);
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative; z-index: 4;
}
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item .diamond { width: 5px; height: 5px; opacity: 0.7; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.phero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 78px) 0 0;
}
.phero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
}
.phero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(7,32,58,0.96), rgba(13,74,122,0.55));
}
.phero__shade::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.05; }
.phero__inner { position: relative; z-index: 1; padding-bottom: 64px; }
.phero__crumb {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 22px;
}
.phero__crumb a { color: rgba(255,255,255,0.42); transition: var(--t); }
.phero__crumb a:hover { color: var(--white); }
.phero__crumb .diamond { width: 4px; height: 4px; color: var(--blue-bright); }
.phero h1 {
  font-size: clamp(3rem, 7.2vw, 5.6rem); font-weight: 800;
  color: var(--white); line-height: 0.92; margin-bottom: 16px;
}
.phero .pull { color: var(--blue-bright); max-width: 640px; margin-top: 4px; }
.phero__num {
  position: absolute; right: 0; bottom: -22px; z-index: 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(9rem, 22vw, 17rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.09);
  pointer-events: none; user-select: none;
}

/* ── Asymmetric feature ─────────────────────────────────── */
.feat {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.feat--flip { grid-template-columns: 5fr 6fr; }
.feat--flip .feat__media { order: -1; }

/* Framed photo with offset border + caption */
.frame { position: relative; }
.frame__ph { position: relative; z-index: 1; overflow: hidden; border-radius: var(--r); }
.frame__ph img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; transition: transform 0.7s ease; }
.frame:hover .frame__ph img { transform: scale(1.035); }
.frame::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--blue); border-radius: var(--r);
  transform: translate(16px, 16px); z-index: 0;
  transition: transform var(--t);
}
.frame:hover::before { transform: translate(10px, 10px); }
.caption {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.caption .diamond { width: 5px; height: 5px; color: var(--blue); }
.sec--navy .caption { color: rgba(255,255,255,0.45); }

/* Diamond bullet list */
.dlist { margin: 26px 0 6px; }
.dlist li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.dlist li:first-child { border-top: 1px solid var(--line); }
.dlist .diamond { color: var(--blue); position: relative; top: -2px; }
.sec--navy .dlist li { border-color: var(--line-dark); color: rgba(255,255,255,0.78); }

/* ── Sport cards ────────────────────────────────────────── */
.sports { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.scard {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 4/3.2; display: block;
}
.scard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scard:hover img { transform: scale(1.06); }
.scard__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,32,58,0.95) 4%, rgba(7,32,58,0.35) 52%, rgba(7,32,58,0.12) 100%);
  transition: var(--t);
}
.scard:hover .scard__shade { background: linear-gradient(to top, rgba(7,32,58,0.97) 8%, rgba(13,74,122,0.45) 60%, rgba(7,32,58,0.1) 100%); }
.scard__badge {
  position: absolute; top: 24px; left: 24px;
}
.scard__body {
  position: absolute; inset: auto 0 0 0;
  padding: 32px;
}
.scard__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 8px;
  display: flex; align-items: center; gap: 9px;
}
.scard__tag .diamond { width: 5px; height: 5px; }
.scard__title {
  font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; color: var(--white);
  margin-bottom: 10px;
}
.scard__text {
  font-size: 0.93rem; color: rgba(255,255,255,0.72);
  max-width: 420px; margin-bottom: 18px;
  line-height: 1.6;
}
.scard__go {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
}
.scard__go .arr { transition: transform var(--t); }
.scard:hover .scard__go .arr { transform: translateX(6px); }
.scard:hover .scard__go { color: var(--blue-bright); }

/* ── Scoreboard ─────────────────────────────────────────── */
.score {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark); border-radius: var(--r);
  overflow: hidden; background: rgba(255,255,255,0.025);
}
.score__cell {
  padding: 38px 26px; text-align: center;
  border-right: 1px solid var(--line-dark);
  position: relative;
}
.score__cell:last-child { border-right: 0; }
.score__cell::before {
  content: ''; position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px; height: 5px; background: var(--blue-bright); opacity: 0.6;
}
.score__v {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 4.4vw, 3.7rem); line-height: 1; color: var(--white);
}
.score__v em { font-style: normal; color: var(--blue-bright); }
.score__l {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 8px;
}

/* ── Spielplan (training cards) ─────────────────────────── */
.plan { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.match {
  display: grid; grid-template-columns: 116px 1fr;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: var(--t);
}
.match:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(11,42,69,0.14); border-color: var(--blue); }
.match__day {
  background: var(--blue); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 22px 10px;
}
.match__day--alt { background: var(--navy); }
.match__day b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.5rem; line-height: 1; letter-spacing: 0.02em;
}
.match__day i {
  font-style: normal;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.75;
}
.match__body { padding: 24px 26px; }
.match__time {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.match__row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.match__row:last-child { border-bottom: 0; padding-bottom: 0; }
.match__row .diamond { width: 5px; height: 5px; color: var(--blue); position: relative; top: -2px; }
.match__row small { color: var(--muted); font-size: 0.85rem; }

/* ── Pricing ────────────────────────────────────────────── */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 38px 32px;
  position: relative; transition: var(--t);
  display: flex; flex-direction: column;
}
.price:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(11,42,69,0.13); border-color: var(--blue); }
.price--hot { background: var(--navy); border-color: var(--navy); color: rgba(255,255,255,0.78); }
.price--hot:hover { border-color: var(--blue); }
.price__flag {
  position: absolute; top: -13px; left: 30px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r);
  transform: rotate(-2deg);
}
.price__type {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
  display: flex; align-items: center; gap: 9px;
}
.price__type .diamond { width: 5px; height: 5px; }
.price--hot .price__type { color: var(--blue-bright); }
.price h3 { margin-bottom: 18px; }
.price--hot h3 { color: var(--white); }
.price__amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4rem; line-height: 0.9; color: var(--navy);
  display: flex; align-items: baseline; gap: 6px;
}
.price--hot .price__amount { color: var(--white); }
.price__amount small {
  font-size: 1.4rem; font-weight: 700; color: var(--blue);
}
.price__per {
  font-size: 0.85rem; color: var(--muted); margin-top: 6px; margin-bottom: 22px;
}
.price--hot .price__per { color: rgba(255,255,255,0.5); }
.price ul { margin-bottom: 28px; flex: 1; }
.price li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.price li:last-child { border-bottom: 0; }
.price--hot li { border-color: var(--line-dark); }
.price li .diamond { width: 5px; height: 5px; color: var(--blue); position: relative; top: -2px; }
.price .btn { width: 100%; justify-content: center; }

/* Editorial info rows (memberships, docs) */
.irow {
  display: grid; grid-template-columns: 86px 1fr auto;
  gap: 24px; align-items: center;
  padding: 28px 4px; border-bottom: 1px solid var(--line);
  transition: var(--t);
}
.irow:first-child { border-top: 2px solid var(--navy); }
.irow:hover { background: var(--paper); padding-left: 16px; }
.irow__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--line); line-height: 1;
  transition: var(--t);
}
.irow:hover .irow__num { color: var(--blue); }
.irow__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; text-transform: uppercase; color: var(--navy);
  letter-spacing: 0.02em;
}
.irow__meta { font-size: 0.9rem; color: var(--muted); margin-top: 3px; }
.irow__val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.7rem; color: var(--navy); white-space: nowrap; text-align: right;
}
.irow__val small { font-size: 0.85rem; font-weight: 600; color: var(--muted); display: block; letter-spacing: 0.06em; }

/* Doc rows */
.drow {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 24px; align-items: center;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
  transition: var(--t); color: var(--ink);
}
.drow:first-of-type { border-top: 2px solid var(--navy); }
.drow:hover { background: var(--paper); padding-left: 16px; }
.drow__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; color: var(--line); line-height: 1; transition: var(--t);
}
.drow:hover .drow__num { color: var(--blue); }
.drow__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; text-transform: uppercase; color: var(--navy);
}
.drow__meta { font-size: 0.86rem; color: var(--muted); margin-top: 2px; }
.drow__dl {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); border: 2px solid var(--blue);
  padding: 9px 18px; border-radius: var(--r); transition: var(--t);
  white-space: nowrap;
}
.drow:hover .drow__dl { background: var(--blue); color: var(--white); }

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: left; position: relative; padding-top: 8px; }
.step .ball--lg { margin-bottom: 18px; }
.step h4 {
  font-size: 1.25rem; margin-bottom: 8px;
}
.step p { font-size: 0.93rem; color: var(--muted); }

/* ── Note box ───────────────────────────────────────────── */
.note {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper); border-left: 3px solid var(--blue);
  padding: 22px 26px; border-radius: 0 var(--r) var(--r) 0;
  margin: 28px 0;
}
.note .diamond { color: var(--blue); margin-top: 9px; }
.note p { font-size: 0.94rem; color: var(--ink); }
.sec--navy .note { background: rgba(255,255,255,0.05); }
.sec--navy .note p { color: rgba(255,255,255,0.78); }

/* ── Menu price list (Getränke) ─────────────────────────── */
.menu { max-width: 560px; }
.menu__row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0; font-size: 0.97rem;
}
.menu__row .dots { flex: 1; border-bottom: 2px dotted var(--line); position: relative; top: -4px; }
.menu__row b { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); }

/* ── Timeline ───────────────────────────────────────────── */
.tl { position: relative; padding-left: 46px; max-width: 720px; }
.tl::before {
  content: ''; position: absolute; left: 8px; top: 10px; bottom: 10px;
  width: 2px; background: var(--line);
}
.tl__item { position: relative; padding-bottom: 44px; }
.tl__item:last-child { padding-bottom: 0; }
.tl__dot {
  position: absolute; left: -46px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--blue-bright), var(--blue) 55%, var(--blue-deep));
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--line);
}
.sec--paper .tl__dot { box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line); }
.tl__year {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; color: var(--blue); line-height: 1;
  margin-bottom: 7px;
}
.tl__text { font-size: 0.98rem; color: var(--ink); max-width: 580px; }

/* ── Contact ────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.crow {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.crow:first-of-type { border-top: 2px solid var(--navy); }
.crow__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1.5px solid var(--blue); border-radius: var(--r);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.crow__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.crow__val { font-size: 0.96rem; line-height: 1.65; }
.crow__val a { font-weight: 700; }

.cform {
  background: var(--navy); border-radius: var(--r);
  padding: clamp(30px, 4vw, 46px); position: relative; overflow: hidden;
}
.cform::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.05; pointer-events: none; }
.cform > * { position: relative; z-index: 1; }
.cform h3 { color: var(--white); margin-bottom: 26px; }
.fgroup { margin-bottom: 18px; }
.fgroup label {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 7px;
}
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: var(--t);
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,0.35); }
.fgroup select { appearance: none; }
.fgroup select option { color: var(--ink); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--blue-bright); background: rgba(255,255,255,0.1);
}
.fgroup textarea { min-height: 130px; resize: vertical; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fnote { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 14px; }
.fnote a { color: var(--blue-bright); }

.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; }

/* ── Big CTA band ───────────────────────────────────────── */
.band { text-align: center; }
.band__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.92; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.band__big .outline { -webkit-text-stroke-color: rgba(255,255,255,0.85); }
.band .pull { color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Full-bleed image band ──────────────────────────────── */
.bleed { position: relative; overflow: hidden; max-height: 460px; }
.bleed img { width: 100%; height: 460px; object-fit: cover; }
.bleed__shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,32,58,0.78) 0%, rgba(7,32,58,0.25) 55%, transparent 100%);
  display: flex; align-items: center;
}
.bleed__inner { max-width: var(--max); margin: 0 auto; width: 100%; padding: 0 28px; }
.bleed__kick {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.bleed h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.4rem); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-2); color: rgba(255,255,255,0.62);
  padding: 0; position: relative; overflow: hidden;
}
.footer::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.04; pointer-events: none; }
.footer__mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 13vw, 11rem); line-height: 0.86;
  text-transform: uppercase; text-align: center;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.1);
  padding: 64px 20px 16px; user-select: none;
}
.footer__rail { padding: 26px 0 6px; color: var(--blue-bright); }
.footer__grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 44px 28px 56px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer__brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; color: var(--white); line-height: 1.15;
}
.footer__brand-name span { display: block; font-weight: 500; font-size: 0.74rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); }
.footer__desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 340px; }
.footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__badges span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.55);
  padding: 5px 11px; border-radius: var(--r);
}
.footer h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.footer h4 .diamond { width: 5px; height: 5px; color: var(--blue); }
.footer li { margin-bottom: 11px; }
.footer__grid a { color: rgba(255,255,255,0.58); font-size: 0.92rem; transition: var(--t); }
.footer__grid a:hover { color: var(--white); padding-left: 4px; }
.footer__addr { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer__bottom {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--white); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes rise     { to { opacity: 1; transform: translateY(0); } }
@keyframes riseFull { to { opacity: 1; transform: translateY(0); } }
@keyframes fade     { to { opacity: 1; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes ticker   { to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > .reveal:nth-child(2) { transition-delay: 0.1s; }
[data-stagger] > .reveal:nth-child(3) { transition-delay: 0.2s; }
[data-stagger] > .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Utilities ──────────────────────────────────────────── */
.mt-12 { margin-top: 12px; } .mt-20 { margin-top: 20px; } .mt-28 { margin-top: 28px; }
.mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; } .mt-72 { margin-top: 72px; }
.mb-20 { margin-bottom: 20px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; } .mb-56 { margin-bottom: 56px; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.center .kicker { justify-content: center; }
.center .kicker__rule { display: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .roundel { right: 28px; bottom: 110px; width: 104px; height: 104px; }
}
@media (max-width: 1024px) {
  .hero__side { display: none; }
  .feat, .feat--flip { grid-template-columns: 1fr; gap: 44px; }
  .feat--flip .feat__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: block; }
  .sports, .plan, .prices { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .score { grid-template-columns: 1fr 1fr; }
  .score__cell:nth-child(2) { border-right: 0; }
  .score__cell:nth-child(1), .score__cell:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .roundel { display: none; }
  .hero__strip-inner { grid-template-columns: 1fr 1fr; }
  .hstat { padding: 20px 18px; }
  .hstat:nth-child(odd) { padding-left: 0; }
  .hstat:nth-child(2) { border-right: 0; }
  .hstat:nth-child(1), .hstat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .irow, .drow { grid-template-columns: 1fr; gap: 10px; padding: 22px 4px; }
  .irow__num, .drow__num { font-size: 1.3rem; }
  .irow__val { text-align: left; }
  .frow2 { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
  .phero__num { display: none; }
}
@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .hero__cta .btn, .band__btns .btn { width: 100%; justify-content: center; }
  .match { grid-template-columns: 92px 1fr; }
  .bleed img { height: 340px; }
  .bleed { max-height: 340px; }
}
