/* ==========================================================================
   Dartclub Gamsen 1996 — Design System
   ========================================================================== */

/* --------------------------------------------------------------- Tokens */
:root {
  /* Flächen */
  --bg:            #0a0d14;
  --bg-alt:        #0f131e;
  --surface:       #141926;
  --surface-2:     #1a2032;
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .16);

  /* Marke — Gold aus dem Vereinswappen */
  --gold:          #d9af4e;
  --gold-light:    #f2ce7b;
  --gold-deep:     #a8801f;
  --gold-glow:     rgba(217, 175, 78, .18);

  /* Dartboard-Akzente */
  --red:           #d6342b;
  --green:         #1fa463;

  /* Text */
  --text:          #eef1f7;
  --text-soft:     #c3cad9;
  --text-muted:    #8b93a7;

  /* Typografie */
  --font-display:  "Oswald", "Haettenschweiler", "Arial Narrow", system-ui, sans-serif;
  --font-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container:     1180px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --section-y:     clamp(4.5rem, 9vw, 8rem);
  --radius:        14px;
  --radius-lg:     22px;

  /* Effekte */
  --shadow:        0 18px 44px -20px rgba(0, 0, 0, .85);
  --shadow-lg:     0 32px 70px -28px rgba(0, 0, 0, .9);
  --ease:          cubic-bezier(.22, .61, .36, 1);

  --header-h:      74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: #12151d; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }

.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.section--alt::before { top: 0; }
.section--alt::after  { bottom: 0; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--gold);
  color: #12151d;
  font-weight: 700;
  padding: .75rem 1.25rem;
  border-radius: 0 0 10px 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------- Typo-Bausteine */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  flex: none;
}

.section-title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
  margin-bottom: .75rem;
}

.section-lead {
  color: var(--text-soft);
  font-size: clamp(1.02rem, .98rem + .3vw, 1.1875rem);
  max-width: 62ch;
}

.section-head { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
}
.section-head--center .section-lead { margin-inline: auto; }

.gold { color: var(--gold); }

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #14171f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px var(--gold-glow), 0 0 0 4px var(--gold-glow);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  --btn-fg: var(--gold-light);
  border-color: var(--gold);
  box-shadow: none;
}

.btn--sm { padding: .7rem 1.3rem; font-size: .9rem; }

.btn__icon { width: 18px; height: 18px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow:hover { gap: .8rem; border-bottom-color: var(--gold); }

/* --------------------------------------------------------------- Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .35s var(--ease), border-color .35s var(--ease),
              backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(10, 13, 20, .88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex: none;
}
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand__tag {
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: .35rem; }

.nav__link {
  position: relative;
  padding: .5rem .85rem;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .18rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.header__cta { flex: none; }

/* Der Button im Navigations-Overlay ist nur mobil gedacht — auf dem Desktop
   übernimmt .header__cta, sonst stünde er doppelt im Kopfbereich. */
@media (min-width: 1240px) {
  .nav__cta { display: none; }
}

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 30%, rgba(10, 13, 20, .55) 0%, rgba(10, 13, 20, .92) 62%, var(--bg) 100%),
    linear-gradient(180deg, rgba(10, 13, 20, .82) 0%, rgba(10, 13, 20, .35) 38%, rgba(10, 13, 20, .95) 100%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  right: -6vw;
  top: 12%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__inner { max-width: 46rem; }

.hero__crest {
  width: clamp(76px, 11vw, 108px);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, .6));
}

.hero__title {
  font-size: clamp(2.6rem, 1.4rem + 5.6vw, 5.25rem);
  line-height: .98;
  margin-bottom: 1.25rem;
}
.hero__title span {
  display: block;
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.3125rem);
  color: var(--text-soft);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.hero__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__fact span {
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* --------------------------------------------------------------- Split-Layout */
.split {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.1fr .9fr; }
  .split--media-first .split__media { order: -1; }
}

.split__media { position: relative; }

.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 20, .45) 100%);
  pointer-events: none;
}

.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 4 / 3; }

/* füllt die Höhe der Rasterspalte, ohne über deren Breite hinauszuwachsen */
.frame--fill {
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
}
.frame--fill img { height: 100%; }

/* dekoratives Gold-Eck */
.frame--accent::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 84px;
  height: 84px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-top-left-radius: var(--radius-lg);
  pointer-events: none;
}

.badge-float {
  position: absolute;
  right: clamp(-.5rem, -1vw, 0rem);
  bottom: clamp(-1.25rem, -2vw, -1rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.35rem;
  background: rgba(20, 25, 38, .92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.badge-float strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-float span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prose > * + * { margin-top: 1.1em; }
.prose { color: var(--text-soft); }
.prose strong { color: var(--text); font-weight: 600; }

/* Wertesäulen */
.values {
  display: grid;
  gap: 1px;
  margin-top: 2.25rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.values li {
  background: var(--surface);
  padding: 1.15rem 1.25rem;
}
.values b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.values small { color: var(--text-muted); font-size: .8125rem; line-height: 1.5; display: block; }

/* --------------------------------------------------------------- Cards */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

.card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(217, 175, 78, .3);
  border-radius: 12px;
}
.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-size: 1.3125rem;
  letter-spacing: .04em;
  margin-bottom: .55rem;
}
.card__text { color: var(--text-muted); font-size: .9375rem; line-height: 1.65; }
.card__text a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(217, 175, 78, .4); }
.card__text a:hover { border-bottom-color: var(--gold); }

/* --------------------------------------------------------------- Training */
.training {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}
@media (min-width: 940px) { .training { grid-template-columns: 1.05fr .95fr; } }

.training-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(217, 175, 78, .13) 0%, transparent 58%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}

.training-when {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.training-when b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: .02em;
}
.training-when span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.checklist { display: grid; gap: .7rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-soft);
  font-size: .96rem;
}
.checklist li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: .18rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--gold), var(--gold-deep));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 15px no-repeat,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 15px no-repeat,
                linear-gradient(#000, #000);
          mask-composite: exclude;
}

.download-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.download {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.15rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.download:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.download svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.download small { display: block; color: var(--text-muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

/* --------------------------------------------------------------- Teams */
.teams { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 900px) { .teams { grid-template-columns: repeat(2, 1fr); } }

.team {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow); }

.team__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.team__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.team:hover .team__media img { transform: scale(1.04); }
.team__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 25, 38, .96) 100%);
}

.team__label {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.35rem);
}
.team__name {
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.25rem);
  letter-spacing: .04em;
  line-height: 1;
}
.team__league {
  display: inline-block;
  margin-top: .5rem;
  padding: .3rem .7rem;
  background: var(--gold);
  color: #14171f;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
}

.team__body { padding: clamp(1.35rem, 3vw, 1.9rem); display: grid; gap: 1.1rem; }

.roster-head {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.roster { display: grid; gap: 1px; background: var(--line); border-radius: 10px; overflow: hidden; }
.roster li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem .9rem;
  background: rgba(255, 255, 255, .022);
  font-size: .9375rem;
}
.roster li.is-captain { background: var(--gold-glow); }
.roster__name { display: flex; align-items: center; gap: .55rem; }
.roster__role {
  font-family: var(--font-display);
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(217, 175, 78, .4);
  border-radius: 999px;
  padding: .1rem .45rem;
  white-space: nowrap;
}
.roster__id {
  font-variant-numeric: tabular-nums;
  font-size: .8125rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------- Event */
.event {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background:
    radial-gradient(80% 140% at 0% 0%, rgba(214, 52, 43, .14) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (min-width: 900px) { .event { grid-template-columns: auto 1fr auto; } }

.event__date {
  display: grid;
  place-items: center;
  gap: .1rem;
  width: clamp(110px, 16vw, 138px);
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #16181f;
  border-radius: 18px;
  box-shadow: 0 14px 34px -16px rgba(217, 175, 78, .7);
}
.event__day {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem);
  font-weight: 600;
  line-height: .9;
}
.event__month {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.event__year { font-size: .6875rem; letter-spacing: .2em; opacity: .7; }

.event__title { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.125rem); margin-bottom: .6rem; }
.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  margin-bottom: .9rem;
  color: var(--text-muted);
  font-size: .875rem;
}
.event__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.event__meta svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.event__text { color: var(--text-soft); font-size: .96rem; }

.event__side { display: grid; gap: 1rem; justify-items: start; }
@media (min-width: 900px) { .event__side { justify-items: stretch; } }

.countdown {
  display: flex;
  gap: .5rem;
  text-align: center;
}
.countdown div {
  min-width: 62px;
  padding: .6rem .4rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.countdown b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown small {
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown--done {
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------- Band */
.band {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 13, 20, .84) 40%, rgba(10, 13, 20, .9) 60%, var(--bg) 100%);
}
.band__title {
  font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.875rem);
  margin-bottom: .9rem;
}
.band p {
  color: var(--text-soft);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 1.85rem;
}

/* --------------------------------------------------------------- Liga-Embeds */
.league-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 1000px) { .league-grid { grid-template-columns: repeat(2, 1fr); } }

.league {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.league__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}
.league__title { font-size: 1.1875rem; letter-spacing: .06em; }
.league__sub { font-size: .8125rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }
.league__frame { position: relative; background: #fff; height: clamp(520px, 62vh, 760px); }
.league__frame iframe { width: 100%; height: 100%; border: 0; }
.league__foot { padding: .9rem 1.35rem; border-top: 1px solid var(--line); font-size: .8125rem; }

/* --------------------------------------------------------------- Kontakt */
.contact { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 940px) { .contact { grid-template-columns: .95fr 1.05fr; } }

/* Rasterkinder dürfen unter ihre Inhaltsbreite schrumpfen — sonst sprengen
   lange E-Mail-Adressen oder URLs die Spalte. */
.contact > * { min-width: 0; }

.info-list { display: grid; gap: 1.15rem; margin-bottom: 1.85rem; }
.info-list li { display: flex; gap: 1rem; }
.info-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: .2rem; }
.info-list b {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.info-list a { color: var(--text); text-decoration: none; border-bottom: 1px solid transparent; }
.info-list a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

.form-card {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}

.field-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field { display: block; margin-bottom: 1rem; }
.field > span {
  display: block;
  margin-bottom: .4rem;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field .req { color: var(--gold); }

.field input,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #6b7284; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(217, 175, 78, .06);
}

.form-note { margin-top: 1rem; font-size: .8125rem; color: var(--text-muted); }
.form-note a { color: var(--gold); }

/* Rückmeldung nach dem Absenden
   Bewusst kein Flex-Container: eine lange E-Mail-Adresse ist ein einziges
   unumbrechbares Wort und würde als Flex-Item über min-width:auto eine
   Mindestbreite erzwingen, die das ganze Seitenraster aufbläht. */
.form-message {
  position: relative;
  margin-top: 1.1rem;
  padding: .95rem 1.1rem .95rem 2.7rem;
  border: 1px solid var(--line-strong);
  border-left-width: 3px;
  border-radius: 10px;
  font-size: .9375rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.form-message::before {
  position: absolute;
  left: 1.05rem;
  top: .9rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.5;
}
.form-message--ok {
  background: rgba(31, 164, 99, .1);
  border-color: rgba(31, 164, 99, .45);
  border-left-color: var(--green);
  color: #d6f2e2;
}
.form-message--ok::before { content: "✓"; color: var(--green); }
.form-message--fehler {
  background: rgba(214, 52, 43, .1);
  border-color: rgba(214, 52, 43, .45);
  border-left-color: var(--red);
  color: #f7d9d7;
}
.form-message--fehler::before { content: "!"; color: var(--red); }
.form-message a { color: inherit; font-weight: 600; }
.form-message strong { color: inherit; }

/* Zustand während des Versands */
.btn[disabled] {
  opacity: .6;
  cursor: progress;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------- Social */
.socials { display: flex; gap: .6rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease),
              background-color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.socials svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------- Footer */
.footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer__brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 54px; height: 54px; }
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer__brand span { font-size: .6875rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer p { color: var(--text-muted); font-size: .9375rem; }

.footer__title {
  font-family: var(--font-display);
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer__list { display: grid; gap: .55rem; }
.footer__list a {
  color: var(--text-muted);
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer__list a:hover { color: var(--gold); padding-left: 4px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--text-muted);
}
.footer__bottom nav { display: flex; gap: 1.25rem; }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------- To top */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(20, 25, 38, .9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); }
.to-top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------- Rechtstexte */
.legal-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(217, 175, 78, .1) 0%, transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.legal { max-width: 78ch; }
.legal h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin-top: 3rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 1.1875rem;
  letter-spacing: .05em;
  margin-top: 2rem;
  margin-bottom: .6rem;
  color: var(--gold);
}
.legal p, .legal li { color: var(--text-soft); font-size: .96rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1em; display: grid; gap: .35rem; }
.legal a { color: var(--gold); }
.legal address { font-style: normal; color: var(--text); margin-bottom: 1.1em; }

/* --------------------------------------------------------------- Reveal
   Der Startzustand gilt nur, wenn JavaScript läuft — ohne JS bleibt der
   Inhalt sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- Mobil */
@media (max-width: 1239px) {
  .header__cta { display: none; }
  .burger { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: .25rem;
    padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
    background: rgba(10, 13, 20, .97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
    overflow-y: auto;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }

  .nav__link {
    padding: 1rem .25rem;
    font-size: clamp(1.5rem, 6vw, 2rem);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--gold); }

  .nav__cta { margin-top: 1.75rem; }
  .nav__cta .btn { width: 100%; }
}

@media (max-width: 899px) {
  /* Auf schmalen Schirmen wird der Hero so hoch, dass der Scroll-Hinweis
     auf den Kennzahlen liegt. Er ist rein dekorativ — auf dem Handy ist
     ohnehin jedem klar, dass man wischen kann. */
  .scroll-cue { display: none; }

  .frame--tall { aspect-ratio: 3 / 2; }
  .badge-float { right: 1rem; bottom: -1rem; padding: .8rem 1.1rem; }
  .badge-float strong { font-size: 1.4rem; }
}

@media (max-width: 599px) {
  :root { --header-h: 66px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: .9375rem; }
  .hero__facts { gap: 1.25rem 1.75rem; }
  .countdown div { min-width: 54px; }
  .event__date { width: 96px; }
  .league__frame { height: 480px; }
}

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

@media print {
  .header, .nav, .to-top, .scroll-cue, .band, .league__frame { display: none !important; }
  body { background: #fff; color: #000; }
}
