/* ==========================================================================
   LEGACY SPORTS MANAGEMENT — lgcy.co
   Dark, typografiegetrieben, harte Kanten, eine Akzentfarbe.
   Fonts: Anton (Display) & Archivo (Text) — selbst gehostet, DSGVO-freundlich.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0b;
  --bg-2: #101013;
  --bg-3: #16161a;
  --ink: #f4f3ee;
  --ink-soft: #c9c6bd;
  --mut: #8f8c84;
  --line: rgba(244, 243, 238, 0.14);
  --line-soft: rgba(244, 243, 238, 0.08);
  --red: #e10600;
  --violet: rgba(120, 100, 255, 0.1);
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-text: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 4.4vw, 64px);
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  color-scheme: dark;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}

/* Körnung über allem — macht Flächen lebendig, kostet nichts */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-140px);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus {
  transform: none;
}

.container {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

section {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

/* ---------- Typo-Bausteine ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mut);
}
.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--red);
  flex: none;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
@supports not (-webkit-text-stroke: 1px black) {
  .outline {
    color: var(--ink);
  }
}
.dot {
  color: var(--red);
  -webkit-text-stroke: 0;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 19px 36px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    transform 0.15s var(--ease-out);
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease-out);
}
.btn:focus-visible::before {
  transform: scaleX(1);
}
.btn .arr {
  transition: transform 0.35s var(--ease-out);
}
.btn--solid {
  background: var(--ink);
  color: var(--bg);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line-soft);
}
.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: none;
}
.brand svg {
  height: 20px;
  width: 96px;
  align-self: flex-start;
  color: var(--ink);
}
.brand svg,
.footer-top svg,
.loader-mark svg {
  fill: currentColor;
}
.brand .brand-sub {
  /* Groesse und Sperrung so, dass die Zeile buendig unter der Wortmarke endet
     (Verhaeltnis aus dem Original-Logo uebernommen). */
  font-size: 5.6px;
  font-weight: 600;
  letter-spacing: 0.33em;
  margin-right: -0.33em;
  text-transform: uppercase;
  color: var(--mut);
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.main-nav a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.main-nav .btn {
  padding: 13px 24px;
  font-size: 12px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px var(--pad) 30px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out),
      visibility 0.3s;
  }
  body.nav-open .main-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  body.nav-open .site-header {
    background: rgba(10, 10, 11, 0.97);
  }
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .main-nav a:not(.btn) {
    font-size: 17px;
    padding: 12px 0;
  }
  .main-nav .btn {
    margin-top: 14px;
  }
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.5s 0.1s, visibility 0.5s 0.1s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: min(300px, 62vw);
  overflow: hidden;
}
.loader-mark svg {
  width: 100%;
  height: auto;
  color: var(--ink);
  transform: translateY(105%);
  animation: loaderUp 0.9s 0.15s var(--ease-out) forwards;
}
.loader-sub {
  margin-top: 14px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--mut);
  opacity: 0;
  animation: fadeIn 0.6s 0.75s forwards;
}
.loader-bar {
  margin: 26px auto 0;
  width: min(300px, 62vw);
  height: 2px;
  background: var(--line-soft);
  overflow: hidden;
}
.loader-bar i {
  display: block;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadBar 1s 0.25s var(--ease-out) forwards;
}
@keyframes loaderUp {
  to {
    transform: none;
  }
}
@keyframes loadBar {
  to {
    transform: scaleX(1);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, #1a1a1f 0%, var(--bg) 62%);
}
.hero-bg .media-slot {
  position: absolute;
  inset: 0;
}
.hero-bg .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(0.35) contrast(1.08) brightness(0.52);
  transition: opacity 1s ease;
}
.hero-bg .media-slot.has-img img {
  opacity: 0.46;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.62) 0%, rgba(10, 10, 11, 0.3) 42%, var(--bg) 96%);
}
.arena {
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: max(1400px, 120vw);
  transform: translateX(-50%);
  color: var(--ink);
  opacity: 0.5;
}
.beams {
  position: absolute;
  inset: -10% -5%;
  pointer-events: none;
  filter: blur(26px);
  mix-blend-mode: screen;
}
.beam {
  position: absolute;
  top: -12%;
  width: 11vw;
  min-width: 90px;
  height: 95%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02) 62%, transparent 80%);
  transform-origin: top center;
  animation: sway 16s ease-in-out infinite alternate;
}
.beam:nth-child(1) { left: 12%; rotate: -14deg; animation-duration: 19s; }
.beam:nth-child(2) { left: 34%; rotate: 7deg; animation-delay: -6s; background: linear-gradient(180deg, rgba(140, 120, 255, 0.13), rgba(140, 120, 255, 0.02) 60%, transparent 80%); }
.beam:nth-child(3) { left: 58%; rotate: -6deg; animation-duration: 22s; animation-delay: -11s; }
.beam:nth-child(4) { left: 78%; rotate: 13deg; animation-duration: 17s; animation-delay: -3s; background: linear-gradient(180deg, rgba(140, 120, 255, 0.1), rgba(140, 120, 255, 0.02) 60%, transparent 80%); }
@keyframes sway {
  from { transform: rotate(-3.5deg); }
  to { transform: rotate(3.5deg); }
}

.hero-inner {
  padding-bottom: clamp(28px, 4vh, 56px);
}
.hero .kicker {
  margin-bottom: clamp(18px, 3vh, 34px);
}
.hero-title {
  font-size: clamp(46px, 9.8vw, 150px);
  margin-left: -0.04em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 0.78s var(--ease-out);
}
.is-ready .hero-title .line > span {
  transform: none;
}
.hero-title .line:nth-child(2) > span { transition-delay: 0.07s; }
.hero-title .line:nth-child(3) > span { transition-delay: 0.14s; }
.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(26px, 4vh, 48px);
}
.hero-copy {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}
.hero-copy strong {
  color: var(--ink);
  font-weight: 650;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  border-top: 1px solid var(--line);
  margin-top: clamp(30px, 5vh, 56px);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(18px, 2.6vh, 30px) 26px clamp(20px, 3vh, 34px) 0;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}
.stat:first-child {
  border-left: 0;
  padding-left: 0;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.stat b sup {
  font-size: 0.55em;
  color: var(--red);
  vertical-align: 0.5em;
}
.stat > span {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut);
}
@media (max-width: 860px) {
  .hero-stats .container {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  user-select: none;
}
.marquee .track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollX 30s linear infinite;
}
.marquee .track > span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1;
  white-space: nowrap;
  padding-right: 0.8em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 243, 238, 0.6);
}
.marquee .track > span i {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 0;
  padding-right: 0.8em;
}
@supports not (-webkit-text-stroke: 1px black) {
  .marquee .track > span {
    color: rgba(244, 243, 238, 0.55);
  }
}
@keyframes scrollX {
  to {
    transform: translateX(-50%);
  }
}
.marquee--rev .track {
  animation-direction: reverse;
}

/* ---------- Sektionen allgemein ---------- */
.section {
  padding-block: clamp(84px, 12vh, 160px);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.section-head h2 {
  font-size: clamp(42px, 6.4vw, 96px);
  margin-left: -0.03em;
  max-width: 14em;
}
.section-head .side-note {
  max-width: 380px;
  color: var(--mut);
  font-size: 14.5px;
  line-height: 1.65;
  padding-bottom: 10px;
}

/* ---------- Manifest / Über uns ---------- */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}
.about-statement {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.06;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.005em;
}
.about-statement em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink);
}
@supports not (-webkit-text-stroke: 1px black) {
  .about-statement em {
    color: var(--ink);
  }
}
.about-copy {
  margin-top: clamp(26px, 4vh, 44px);
  display: grid;
  gap: 20px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 16.5px;
}
.about-copy strong {
  color: var(--ink);
  font-weight: 650;
}
.about-aside {
  display: grid;
  gap: 22px;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.fact-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg));
  position: relative;
  overflow: hidden;
}
.fact-card::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 160%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 70%);
  transform: rotate(18deg);
  filter: blur(18px);
  pointer-events: none;
}
.fact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.fact-card ul {
  display: grid;
  gap: 0;
}
.fact-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.fact-card li span:first-child {
  color: var(--mut);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 600;
  padding-top: 2px;
}
.fact-card li span:last-child {
  text-align: right;
  font-weight: 600;
}
.fact-card a {
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
  transition: color 0.25s;
}
.fact-card a:hover {
  color: var(--red);
}

/* ---------- Services ---------- */
.services-list {
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 90px minmax(0, 5fr) minmax(0, 6fr) 60px;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  padding: clamp(28px, 4.6vh, 46px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--pad));
  background: var(--bg-2);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.service .num {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--red);
  padding-top: 6px;
  letter-spacing: 0.04em;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 0.98;
  transition: transform 0.4s var(--ease-out);
}
.service .desc {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 560px;
  padding-top: 8px;
}
.service .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service .tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mut);
  border: 1px solid var(--line);
  padding: 7px 12px;
  transition: color 0.25s, border-color 0.25s;
}
.service .go {
  align-self: center;
  justify-self: end;
  font-size: 28px;
  color: var(--mut);
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}
@media (max-width: 900px) {
  .service {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .service .desc {
    grid-column: 2;
  }
  .service .go {
    display: none;
  }
}

/* ---------- Track Record / Events ---------- */
.events {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 30%, var(--bg-2) 70%, var(--bg) 100%);
}
.event-rows {
  border-top: 1px solid var(--line);
}
.event-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 8fr) minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(16px, 2.6vw, 40px);
  align-items: center;
  padding: clamp(20px, 3.4vh, 32px) clamp(12px, 1.6vw, 24px);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.event-row:hover {
  background: var(--ink);
  color: var(--bg);
}
.event-row .year {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--mut);
  transition: color 0.3s;
}
.event-row:hover .year {
  color: var(--red);
}
.event-row .name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
}
.event-row .venue {
  color: var(--mut);
  font-size: 14.5px;
  line-height: 1.5;
  transition: color 0.3s;
}
.event-row:hover .venue {
  color: rgba(10, 10, 11, 0.66);
}
.event-row .venue b {
  display: block;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.event-row:hover .venue b {
  color: var(--bg);
}
.event-row .fact {
  justify-self: start;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 13px;
  color: var(--ink-soft);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.event-row:hover .fact {
  border-color: rgba(10, 10, 11, 0.35);
  color: var(--bg);
}
@media (max-width: 900px) {
  .event-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-block: 22px;
  }
  .event-row .year {
    color: var(--red);
    font-size: 16px;
  }
  .event-row .fact {
    margin-top: 6px;
  }
}
/* Beleg-Foto zur groessten Produktion */
.event-shot {
  margin: clamp(40px, 5vw, 68px) 0 0;
}
.event-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.22) contrast(1.05) brightness(0.94);
  transition: filter 0.42s var(--ease-out);
}
.event-shot figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-shot figcaption b {
  font-weight: 650;
  color: var(--ink);
}
.event-shot figcaption span {
  color: var(--mut);
}

.events-note {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.events-note p {
  color: var(--mut);
  font-size: 14px;
  max-width: 560px;
}

/* ---------- Referenzen ---------- */
.refs .section-head {
  margin-bottom: clamp(28px, 5vh, 54px);
}
.refs-marquee {
  border-block: 1px solid var(--line);
  padding-block: clamp(22px, 3.4vh, 36px);
  overflow: hidden;
}
.refs-marquee + .refs-marquee {
  border-top: 0;
}
.refs-marquee .track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollX 44s linear infinite;
}
.refs-marquee--rev .track {
  animation-direction: reverse;
  animation-duration: 52s;
}
.refs-marquee .track > span {
  font-family: var(--font-display);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1;
  color: var(--ink-soft);
  opacity: 0.85;
  padding-right: 1.1em;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.refs-marquee .track > span::after {
  content: "·";
  color: var(--red);
  padding-left: 1.1em;
}
.refs-marquee .track > span:hover {
  color: var(--ink);
  opacity: 1;
}
.refs-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.refs-foot p {
  color: var(--mut);
  font-size: 13.5px;
  max-width: 620px;
}
.refs-foot a {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}

/* ---------- Split CTA ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.split-panel {
  padding: clamp(34px, 5vw, 70px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 460px;
}
.split-panel + .split-panel {
  border-left: 1px solid var(--line);
}
.split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 20% 0%, var(--bg-3), var(--bg-2) 70%);
  transition: opacity 0.5s;
}
.split-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 30%;
  width: 34%;
  height: 130%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: rotate(16deg);
  filter: blur(22px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.split-panel:hover::after {
  opacity: 1;
}
.split-panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1;
  max-width: 10em;
}
.split-panel ul {
  display: grid;
  gap: 0;
  margin-top: auto;
}
.split-panel li {
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.split-panel li::before {
  content: "→";
  color: var(--red);
  flex: none;
}
.split-panel .btn {
  align-self: flex-start;
  margin-top: 26px;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split-panel + .split-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .split-panel {
    min-height: 0;
  }
}

/* ---------- Kontakt ---------- */
.contact {
  overflow: clip;
}
.contact .beams {
  filter: blur(34px);
  opacity: 0.7;
}
.contact-title {
  font-size: clamp(64px, 13vw, 200px);
  margin-left: -0.04em;
}
.contact-sub {
  margin-top: 18px;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 17px;
}
.contact-mail {
  display: inline-block;
  margin-top: clamp(30px, 5vh, 52px);
  font-family: var(--font-display);
  text-transform: lowercase;
  font-size: clamp(30px, 5.4vw, 76px);
  line-height: 1;
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-mail:hover {
  color: var(--red);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(40px, 7vh, 72px);
  padding-top: clamp(26px, 4vh, 40px);
  border-top: 1px solid var(--line);
}
.contact-col h4 {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 14px;
}
.contact-col p,
.contact-col a {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.contact-col a {
  display: inline-block;
  position: relative;
  transition: color 0.25s;
}
.contact-col a:hover {
  color: var(--ink);
}
.contact-col ul a::before {
  content: "↗ ";
  color: var(--red);
}
@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 34px;
  background: var(--bg);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top svg {
  height: 26px;
  width: auto;
  color: var(--ink);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mut);
  transition: color 0.25s;
}
.footer-nav a:hover {
  color: var(--ink);
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  color: var(--mut);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* ---------- Legal-Seiten ---------- */
.legal-main {
  padding: calc(var(--header-h) + clamp(50px, 9vh, 110px)) 0 clamp(80px, 12vh, 140px);
}
.legal-main h1 {
  font-size: clamp(44px, 7vw, 104px);
  margin-bottom: clamp(34px, 6vh, 64px);
  margin-left: -0.03em;
}
.legal-body {
  max-width: 760px;
  display: grid;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 26px;
  color: var(--ink);
}
.legal-body a {
  border-bottom: 1px solid var(--red);
}
.legal-body .todo {
  border: 1px dashed rgba(225, 6, 0, 0.55);
  background: rgba(225, 6, 0, 0.06);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Reveal-Animationen ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s var(--ease-out), transform 0.56s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- 404 ---------- */
.err-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--pad);
}
.err-main .display {
  font-size: clamp(90px, 22vw, 300px);
}

/* ---------- Hover-Bewegung ----------
   Nur fuer echte Zeigegeraete. Auf Touchscreens loest ein Tipp einen
   Hover aus, der danach haengen bleibt -- die Bewegung liefe dort falsch. */
@media (hover: hover) and (pointer: fine) {
  .btn:hover::before {
    transform: scaleX(1);
  }
  .btn:hover {
    color: #fff;
    border-color: var(--red);
  }
  .btn:hover .arr {
    transform: translateX(6px);
  }
  .main-nav a:not(.btn):hover {
    color: var(--ink);
  }
  .main-nav a:not(.btn):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .service:hover::before {
    transform: scaleY(1);
  }
  .service:hover h3 {
    transform: translateX(10px);
  }
  .service:hover .tags li {
    color: var(--ink-soft);
    border-color: rgba(244, 243, 238, 0.3);
  }
  .service:hover .go {
    transform: none;
    opacity: 1;
    color: var(--red);
  }
  .event-shot:hover img {
    filter: grayscale(0) contrast(1.05) brightness(1);
  }
  .marquee:hover .track,
  .refs-marquee:hover .track {
    animation-play-state: paused;
  }
}

/* ---------- Reduced Motion ----------
   Weniger und sanfter, nicht aus: Deckkraft und Farbe bleiben (sie erklaeren
   den Zustand), Ortswechsel und Dauerbewegung entfallen. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Dauerbewegung und Vorspann entfallen ganz */
  .beam,
  .marquee .track,
  .refs-marquee .track {
    animation: none;
  }
  .loader {
    display: none;
  }

  /* Eingeblendet wird sofort, ohne Weg von unten */
  [data-reveal],
  .hero-title .line > span {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Ortswechsel bei Hover und Druck entfallen, Farbwechsel bleiben */
  .btn:active,
  .btn:hover .arr,
  .service:hover h3,
  .service:hover .go,
  .skip-link:focus {
    transform: none;
  }
  .skip-link {
    transform: translateY(-140px);
  }

  /* Der Flaechen-Wisch wird zum Ueberblenden */
  .service::before {
    transform: none;
    opacity: 0;
    transition: opacity 0.18s ease;
  }
  .service:hover::before {
    opacity: 1;
  }
  .btn::before {
    transition: opacity 0.18s ease;
  }

  /* Alles Uebrige bleibt, nur kurz */
  *,
  *::before,
  *::after {
    animation-duration: 0.18s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.18s !important;
  }
}
