:root {
  --bg: #050505;
  --panel: #101010;
  --line: rgba(255,255,255,.14);
  --text: #eeeeee;
  --muted: #a6a6a6;
  --red: #ff1616;
  --silver: #b8bcc2;
  --max: 1180px;
  --mono: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection {
  background: var(--red);
  color: #050505;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(16px);
}
.site-header__inner,
.site-footer__inner,
.section__inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}
.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--text); }
.nav-booking { color: var(--red) !important; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0 46px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) contrast(1.18) brightness(.58);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 52% 42%, rgba(255,22,22,.18), transparent 28%),
    linear-gradient(180deg, rgba(5,5,5,.25), #050505 92%),
    linear-gradient(90deg, rgba(5,5,5,.75), transparent 44%, rgba(5,5,5,.65));
}
.hero__inner {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}
.hero__wordmark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(8px, 1.5vw, 18px);
  max-width: 1040px;
  margin: 0 0 30px -4px;
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(58px, 12vw, 154px);
  font-weight: 900;
  line-height: .78;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 22, 22, .52),
    0 0 44px rgba(255, 22, 22, .24),
    0 2px 0 rgba(255,255,255,.2),
    0 14px 34px rgba(0,0,0,.86);
  transform-origin: left bottom;
  will-change: transform, filter, opacity;
  animation:
    ozmoz-signal 1300ms steps(2,end) both,
    ozmoz-aftershock 5200ms 1500ms ease-in-out infinite;
}
.hero__slash {
  color: var(--silver);
  transform: translateY(-.03em);
}
.eyebrow,
.section-kicker {
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero__statement {
  max-width: 720px;
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(22px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-top: 26px;
}
.hero__meta p {
  max-width: 560px;
  margin: 0;
  color: var(--silver);
  font-size: clamp(17px, 2vw, 22px);
}
.button-row,
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button,
.social-link,
.event-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 11px 15px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.button--red,
.social-link:hover,
.event-link:hover {
  border-color: rgba(255,22,22,.9);
  background: var(--red);
  color: #050505;
}
.social-link--brand {
  gap: 9px;
}
.social-link--brand svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link--brand:hover svg {
  filter: drop-shadow(0 0 7px rgba(5,5,5,.45));
}
.section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}
.section--split { background: linear-gradient(90deg, var(--panel), var(--bg)); }
.section h2 {
  margin: 8px 0 26px;
  font-family: var(--mono);
  font-size: clamp(34px, 6vw, 84px);
  line-height: .92;
  text-transform: uppercase;
}
.section h2.signal-title {
  color: var(--red);
  text-shadow:
    0 0 16px rgba(255, 22, 22, .46),
    0 0 34px rgba(255, 22, 22, .2),
    0 2px 0 rgba(255,255,255,.14),
    0 10px 24px rgba(0,0,0,.72);
  transform-origin: left bottom;
  will-change: transform, filter;
  animation: ozmoz-section-signal 4600ms ease-in-out infinite;
}
.intro-grid,
.press-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.lead {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.14;
}
.muted { color: var(--muted); }
.proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--silver);
}
.event-list {
  display: grid;
  max-width: 940px;
  gap: 0;
  margin-left: 10px;
}
.event-list--past {
  max-height: 360px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 12px;
  scrollbar-color: var(--red) rgba(255,255,255,.08);
  scrollbar-width: thin;
}
.event-list--past::-webkit-scrollbar {
  width: 8px;
}
.event-list--past::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
}
.event-list--past::-webkit-scrollbar-thumb {
  background: var(--red);
}
.section-subtitle {
  margin: 0 0 14px;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 18px;
  text-transform: uppercase;
}
.section-subtitle--past {
  margin-top: 36px;
}
.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,22,22,.06), rgba(255,255,255,.025) 34%, transparent);
  padding: 18px 18px 18px 26px;
}
.event-card::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,22,22,.7);
  z-index: 1;
}
.event-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--red);
  box-sizing: border-box;
  background: var(--bg);
  box-shadow: 0 0 18px rgba(255,22,22,.55);
  z-index: 2;
}
.event-card--past {
  opacity: .68;
}
.event-card--past::before {
  background: var(--red);
}
.event-date {
  color: var(--red);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.event-title {
  margin: 0;
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}
.event-title .flag {
  margin-left: 10px;
}
.flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  margin-left: 6px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
  vertical-align: -1px;
}
.flag-be { background: linear-gradient(90deg, #111 0 33.33%, #ffd90c 33.33% 66.66%, #ef3340 66.66%); }
.flag-de { background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%); }
.flag-fr { background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%); }
.flag-lu { background: linear-gradient(#ef3340 0 33.33%, #fff 33.33% 66.66%, #00a3e0 66.66%); }
.flag-nl { background: linear-gradient(#ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66%); }
.flag-es { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%); }
.event-meta {
  margin: 8px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.event-meta a {
  color: var(--silver);
  text-decoration: underline;
  text-decoration-color: rgba(255, 22, 22, .65);
  text-underline-offset: 4px;
}
.event-meta a:hover {
  color: var(--red);
}
.track-grid,
.gallery-grid,
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.artist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.track-card,
.gallery-card,
.artist-card {
  border: 1px solid var(--line);
  background: var(--panel);
}
.track-card { padding: 18px; }
.track-card h3,
.booking-grid h3,
.artist-card h3 {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 24px;
  text-transform: uppercase;
}
.artist-card {
  display: grid;
  grid-template-columns: minmax(180px, .54fr) minmax(0, 1fr);
  min-height: 360px;
}
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.08);
}
.artist-card__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(18px, 3vw, 30px);
}
.artist-role {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.booking-card {
  border-left: 2px solid var(--red);
  padding-left: 22px;
}
.booking-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}
.booking-form label {
  display: grid;
  gap: 7px;
}
.booking-form span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255,255,255,.045);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}
.booking-form textarea {
  min-height: 132px;
  resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(255,22,22,.72);
  background: rgba(255,255,255,.065);
}
.booking-form .button {
  width: fit-content;
  cursor: pointer;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.site-footer a {
  color: var(--silver);
  text-decoration-color: rgba(255, 22, 22, .6);
  text-underline-offset: 3px;
}
.site-footer a:hover {
  color: var(--red);
}
@keyframes ozmoz-signal {
  0% {
    transform: translateX(-34px) skewX(-7deg) scaleX(.96);
    filter: saturate(3) contrast(1.55) blur(2px) drop-shadow(18px 0 0 rgba(255,255,255,.2));
    opacity: 0;
  }
  10% {
    transform: translateX(24px) skewX(6deg) scaleX(1.035);
    filter: saturate(3.2) contrast(1.75) blur(.5px) drop-shadow(-18px 0 0 rgba(255,255,255,.25));
    opacity: 1;
  }
  18% {
    transform: translateX(-16px) skewX(-4deg) scaleX(.99);
    filter: saturate(2.8) contrast(1.5) drop-shadow(12px 0 0 rgba(255,22,22,.44));
  }
  31% {
    transform: translateX(10px) skewX(2deg) scaleX(1.015);
    filter: saturate(2.4) contrast(1.35);
  }
  46% {
    transform: translateX(-5px) skewX(-1deg);
  }
  62% {
    transform: translateX(2px);
    filter: saturate(1.6) contrast(1.15);
  }
  100% {
    transform: translateX(0);
    filter: none;
  }
}
@keyframes ozmoz-aftershock {
  0%, 78%, 100% {
    transform: translateX(0);
    filter: none;
  }
  80% {
    transform: translateX(3px) skewX(1.2deg);
    filter: saturate(1.9) contrast(1.2) drop-shadow(-10px 0 0 rgba(255,255,255,.12));
  }
  82% {
    transform: translateX(-4px) skewX(-1.6deg);
    filter: saturate(2.2) contrast(1.28) drop-shadow(12px 0 0 rgba(255,22,22,.28));
  }
  84% {
    transform: translateX(0);
    filter: none;
  }
}
@keyframes ozmoz-section-signal {
  0%, 64%, 100% {
    transform: translateX(0);
    filter: none;
  }
  66% {
    transform: translateX(4px) skewX(1.6deg);
    filter: saturate(2.1) contrast(1.25) drop-shadow(-9px 0 0 rgba(255,255,255,.1));
  }
  68% {
    transform: translateX(-5px) skewX(-1.8deg);
    filter: saturate(2.4) contrast(1.35) drop-shadow(10px 0 0 rgba(255,22,22,.26));
  }
  70% {
    transform: translateX(1px);
    filter: saturate(1.35) contrast(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; scroll-behavior: auto !important; }
}
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .site-header__inner { min-height: 62px; }
  .main-nav { gap: 12px; overflow-x: auto; justify-content: flex-end; }
  .main-nav a { white-space: nowrap; }
  .hero { min-height: 90svh; padding-top: 80px; }
  .hero__meta,
  .intro-grid,
  .press-grid,
  .booking-grid,
  .event-list,
  .event-card { grid-template-columns: 1fr; }
  .event-list { margin-left: 6px; }
  .event-list--past { max-height: 320px; }
  .event-card { align-items: start; gap: 8px; padding-left: 22px; }
  .track-grid,
  .gallery-grid,
  .artist-grid,
  .artist-card { grid-template-columns: 1fr; }
  .artist-card img { aspect-ratio: 4 / 5; height: auto; }
}
