:root {
  --dark: #0d1117;
  --ink: #07090d;
  --beige: #e8d5b7;
  --ember: #e8653f;
  --ember-deep: #c23f2f;
  --ice: #4a9eff;
  --line: rgba(232, 213, 183, 0.18);
  --muted: rgba(232, 213, 183, 0.72);
  --display: "Anton", Impact, sans-serif;
  --head: "Barlow Condensed", Arial Narrow, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --gutter: clamp(22px, 5vw, 84px);
  --header-height: 110px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--dark);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 77% 86%, rgba(232, 101, 63, 0.08), transparent 23rem),
    var(--dark);
  color: var(--beige);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.055;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--beige);
  color: var(--ink);
  font: 800 1rem/1 var(--head);
  text-transform: uppercase;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--gutter);
  transition: min-height 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  border-bottom: 1px solid rgba(232, 213, 183, 0.11);
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  position: relative;
  z-index: 33;
  display: flex;
  height: 54px;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.brand-lockup img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.brand-lockup img:nth-of-type(1) {
  width: 74px;
}

.brand-lockup img:nth-of-type(2),
.brand-lockup img:nth-of-type(3) {
  width: 88px;
}

.brand-lockup span {
  flex: 0 0 auto;
  color: #fff;
  font: 500 1.1rem/1 var(--body);
}

.brand-lockup .brand-in {
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 50px);
}

.site-nav > a:not(.button) {
  position: relative;
  font: 800 1rem/1 var(--head);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.menu-toggle {
  position: relative;
  z-index: 34;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--beige);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 28px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 34px;
  border: 2px solid var(--ember);
  border-radius: 0;
  background: var(--ember);
  color: var(--ink);
  font: 800 1.12rem/1 var(--head);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.button:hover {
  background: transparent;
  color: var(--ember);
  transform: translateY(-2px);
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.7;
}

.button-small {
  min-height: 50px;
  padding: 0 30px;
}

.text-link {
  display: inline-block;
  padding: 10px 0 7px;
  border-bottom: 2px solid var(--ember);
  color: var(--beige);
  font: 700 1.05rem/1 var(--head);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.text-link:hover {
  padding-right: 12px;
  color: var(--ember);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(740px, 100svh);
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(760px, 58vw);
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 72px) 3vw 84px var(--gutter);
}

.hero h1,
.story h2,
.lineup h2,
.practical h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 {
  width: 118%;
  font-size: clamp(6.4rem, 9.4vw, 10rem);
  line-height: 0.87;
  transform: scaleX(0.78);
  transform-origin: left center;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-meta {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font: 500 clamp(0.9rem, 1.1vw, 1.08rem)/1.6 var(--body);
}

.hero-meta span {
  padding: 0 5px;
  color: var(--ember);
}

.hero-actions,
.practical-actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  margin-top: 30px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.7) 32%, rgba(7, 9, 13, 0.14) 66%, rgba(7, 9, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 9, 13, 0.62) 0%, transparent 38%, rgba(7, 9, 13, 0.18) 100%);
  content: "";
  pointer-events: none;
}

.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.hero:hover .hero-media > img {
  transform: scale(1.025);
}

.scroll-cue {
  position: absolute;
  bottom: 16px;
  left: var(--gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font: 700 0.78rem/1 var(--head);
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ember);
  content: "";
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateX(-105%); }
  60%, 100% { transform: translateX(105%); }
}

.section-pad {
  padding: clamp(90px, 10vw, 170px) var(--gutter);
}

.story {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(320px, 47%) minmax(0, 53%);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  background: var(--dark);
}

.story-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.story h2 {
  width: 138%;
  font-size: clamp(4.8rem, 7.6vw, 8.4rem);
  line-height: 0.9;
  transform: scaleX(0.7);
  transform-origin: left center;
}

.story h2 span,
.practical h2 span {
  display: block;
  white-space: nowrap;
}

.story-copy > p:not(.genre-line) {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.65;
}

.story-copy > .story-bus-line {
  margin-top: 20px;
  color: var(--beige);
}

.story-bus-link {
  display: inline-block;
  margin-top: 22px;
}

.story-copy strong,
.lineup-note strong {
  color: var(--ember);
  font-weight: 600;
}

.genre-line {
  margin: 30px 0 14px;
  color: var(--beige);
  font: 700 1rem/1.4 var(--head);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.genre-line span:nth-of-type(3),
.genre-line span:last-of-type {
  color: var(--ice);
}

.story-video {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 183, 0.18);
  background: #050609;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.story-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(7, 9, 13, 0.86);
  font: 700 0.75rem/1 var(--head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-activator {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 110%, rgba(255, 77, 25, 0.32), transparent 34rem),
    radial-gradient(circle at 12% 10%, rgba(232, 101, 63, 0.15), transparent 25rem),
    linear-gradient(135deg, #130b0a 0%, var(--ink) 50%, #100807 100%);
  isolation: isolate;
}

.game-activator::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(108deg, transparent 0 76px, rgba(232, 213, 183, 0.16) 77px 78px),
    repeating-linear-gradient(18deg, transparent 0 116px, rgba(232, 213, 183, 0.08) 117px 118px);
  content: "";
  transform: scale(1.1);
}

.game-activator::after {
  position: absolute;
  right: -10vw;
  bottom: -55%;
  z-index: -1;
  width: min(68vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 41, 0.26), rgba(232, 70, 33, 0.08) 45%, transparent 68%);
  content: "";
  filter: blur(8px);
}

.game-activator > a {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 7vw, 120px);
  padding: clamp(76px, 8vw, 130px) var(--gutter);
  text-decoration: none;
  transition: background 300ms ease;
}

.game-activator > a:hover {
  background: rgba(232, 101, 63, 0.055);
}

.game-copy {
  min-width: 0;
}

.game-type-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-left: 4px solid var(--ice);
  background: rgba(74, 158, 255, 0.12);
  color: var(--ice);
  font: 800 0.8rem/1 var(--head);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.game-activator h2 {
  margin: 0;
  max-width: 980px;
  color: var(--beige);
  font: 400 clamp(4.2rem, 7.2vw, 8rem)/0.86 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.game-copy > p {
  max-width: 860px;
  margin: 30px 0 0;
  color: var(--muted);
  font: 600 clamp(1.25rem, 2vw, 2rem)/1.42 var(--head);
  letter-spacing: 0.01em;
}

.game-action {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  padding: 0 30px;
  border: 2px solid var(--ember);
  background: var(--ember);
  color: var(--ink);
  font: 800 1.08rem/1 var(--head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.game-action svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.game-activator > a:hover .game-action {
  background: transparent;
  color: var(--ember);
  transform: translateY(-2px);
}

.game-preview {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
}

.game-preview::before {
  position: absolute;
  inset: 14% -8% -8% 10%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 113, 35, 0.42), transparent 68%);
  content: "";
  filter: blur(28px);
}

.game-preview img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 213, 183, 0.24);
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(1deg);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.game-activator > a:hover .game-preview img {
  transform: rotate(0deg) scale(1.025);
}

.lineup {
  min-height: 900px;
  background: var(--ink);
}

.lineup-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(34px, 4vw, 62px);
}

.practical-cta,
.practical-info {
  min-width: 0;
}

.lineup h2 {
  font-size: clamp(5rem, 8vw, 8.8rem);
  line-height: 0.88;
}

.lineup-range {
  min-width: 190px;
  margin: 0 0 12px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--ember);
  color: var(--ember);
  font: 700 1.2rem/1 var(--head);
  letter-spacing: 0.07em;
}

.lineup-range span {
  margin: 0 10px;
}

.lineup-intro {
  margin: 24px 0 0;
  color: var(--muted);
  font: 500 1rem/1.5 var(--body);
}

.dj-schedule {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dj-slot {
  min-width: 0;
}

.dj-slot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--ember);
  color: var(--ember);
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dj-slot-head span {
  color: rgba(232, 213, 183, 0.42);
  font-size: 0.76rem;
}

.dj-slot-head time {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  white-space: nowrap;
}

.dj-slot figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 183, 0.14);
  background: #050609;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.dj-slot figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 213, 183, 0.08);
  content: "";
  pointer-events: none;
}

.dj-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.dj-slot:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.dj-slot h3 {
  margin: 14px 0 0;
  color: var(--beige);
  font: 400 clamp(1.9rem, 2.6vw, 3.2rem)/0.95 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.dj-audio {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.dj-audio iframe {
  display: block;
  width: 100%;
  height: 120px;
  border: 0;
  background: #fff;
  filter: saturate(0.84) contrast(0.96);
}

.dj-audio a {
  display: inline-block;
  margin-top: 9px;
  border-bottom: 1px solid var(--ember);
  color: var(--muted);
  font: 700 0.72rem/1.3 var(--head);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.dj-audio a:hover {
  color: var(--ember);
}

.lineup-note {
  margin: 34px 0 0;
  color: var(--muted);
  font: 500 1rem/1.5 var(--body);
}

.lineup-note em {
  color: var(--ice);
  font-style: normal;
}

.practical {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 980px;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: start;
  gap: clamp(45px, 7vw, 120px);
  overflow: hidden;
  background: var(--dark);
}

.practical::before,
.practical::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.practical::before {
  background: url("./event/practical-game-backdrop.jpg") 63% center / cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.78;
  transform: scale(1.015);
}

.practical::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.76) 0%, rgba(7, 9, 13, 0.34) 50%, rgba(7, 9, 13, 0.54) 100%),
    linear-gradient(0deg, rgba(7, 9, 13, 0.82) 0%, rgba(7, 9, 13, 0.12) 52%, rgba(7, 9, 13, 0.42) 100%);
}

.practical h2 {
  width: 128%;
  font-size: clamp(6rem, 10vw, 11rem);
  line-height: 0.9;
  transform: scaleX(0.78);
  transform-origin: left center;
}

.practical-actions {
  flex-wrap: wrap;
}

.raver-note {
  max-width: 570px;
  margin-top: clamp(48px, 7vw, 88px);
  padding: 6px 0 6px 28px;
  border-left: 3px solid var(--ember);
}

.raver-note p {
  margin: 0;
  color: var(--beige);
  font: 700 clamp(1.35rem, 2vw, 2rem)/1.18 var(--head);
  letter-spacing: 0.015em;
}

.raver-note p + p {
  margin-top: 14px;
}

.raver-note p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
}

.raver-note span,
.raver-note strong {
  color: var(--ember);
}

.practical-info dl {
  margin: 0;
}

.practical-info dl > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: minmax(90px, 25%) 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--ember);
}

.practical-info dt,
.practical-info dd {
  margin: 0;
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.practical-info dt {
  color: var(--muted);
}

.practical-info dd {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.ticket-includes {
  display: inline-block;
  font-size: 70%;
  white-space: nowrap;
}

.practical-info dd::before {
  margin-right: clamp(14px, 3vw, 48px);
  color: var(--ember);
  content: "→";
}

.atmosphere {
  overflow: hidden;
  padding-top: clamp(64px, 6vw, 92px);
  padding-bottom: clamp(64px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(74, 158, 255, 0.1), transparent 28rem),
    var(--ink);
}

.atmosphere-head {
  margin-bottom: clamp(24px, 2.5vw, 38px);
}

.atmosphere h2 {
  margin: 0;
  font: 400 clamp(4.8rem, 7.2vw, 8rem)/0.86 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(150px, 14vw, 220px));
  gap: clamp(6px, 0.75vw, 12px);
}

.atmosphere-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #050609;
}

.atmosphere-tile img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(232, 213, 183, 0.16);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: filter 300ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.atmosphere-tile:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.about-us {
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 62%);
  gap: clamp(50px, 8vw, 140px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 18%, rgba(74, 158, 255, 0.08), transparent 23rem),
    var(--ink);
}

.about-intro,
.collective-list {
  min-width: 0;
}

.about-us h2 {
  margin: 0;
  font: 400 clamp(5rem, 8.5vw, 9.5rem)/0.86 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.about-intro p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.about-collab {
  display: inline-block;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ember);
  color: var(--beige);
  font: 700 0.9rem/1 var(--head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collective-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--ember);
}

.collective-list article:last-child {
  border-bottom: 1px solid var(--ember);
}

.collective-list article > span {
  padding-top: 8px;
  color: rgba(232, 213, 183, 0.42);
  font: 700 0.76rem/1 var(--head);
  letter-spacing: 0.1em;
}

.collective-list h3 {
  margin: 0;
  font: 400 clamp(2.8rem, 4.3vw, 5rem)/0.92 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.collective-list p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.collective-list em {
  color: var(--ember);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ember);
  color: var(--beige);
  font: 700 0.82rem/1 var(--head);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.social-link:hover {
  gap: 15px;
  color: var(--ember);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}

.about-closing {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: clamp(48px, 7vw, 100px);
  border-top: 1px solid var(--line);
  color: var(--ember);
  font: 400 clamp(3rem, 6.6vw, 7.2rem)/0.94 var(--display);
  letter-spacing: -0.025em;
  text-align: center;
  text-transform: uppercase;
}

.shuttle {
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  gap: clamp(50px, 8vw, 140px);
  padding-bottom: clamp(56px, 6vw, 96px);
  border-top: 1px solid var(--ember);
  background:
    radial-gradient(circle at 14% 12%, rgba(232, 101, 63, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(74, 158, 255, 0.08), transparent 24rem),
    var(--dark);
}

.shuttle-intro,
.shuttle-details {
  min-width: 0;
}

.shuttle h2 {
  margin: 0;
  font: 400 clamp(5rem, 8.5vw, 9.5rem)/0.86 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.shuttle-intro > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.shuttle-intro strong,
.shuttle-cost strong {
  color: var(--beige);
}

.shuttle-visual {
  margin: 28px 0 0;
  pointer-events: none;
}

.shuttle-visual img {
  display: block;
  width: 64%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.48));
}

.shuttle-route {
  margin: 0;
}

.shuttle-route > div {
  display: grid;
  min-height: 112px;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--ember);
}

.shuttle-route > div:last-child {
  border-bottom: 1px solid var(--ember);
}

.shuttle-route dt {
  color: var(--muted);
  font: 700 0.86rem/1 var(--head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shuttle-route dd {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 3vw, 46px);
  margin: 0;
}

.shuttle-route time {
  flex: 0 0 auto;
  color: var(--ember);
  font: 400 clamp(2.5rem, 4vw, 4.4rem)/0.9 var(--display);
}

.shuttle-route dd span {
  color: var(--beige);
  font: 700 clamp(1rem, 1.4vw, 1.3rem)/1.35 var(--head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shuttle-purchase {
  padding-top: clamp(34px, 4vw, 58px);
}

.shuttle-cost {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.shuttle-help {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.shuttle-help a {
  color: var(--beige);
  overflow-wrap: anywhere;
  text-decoration-color: var(--ember);
  text-underline-offset: 5px;
}

.bus-game-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(232, 213, 183, 0.2);
  background:
    radial-gradient(circle at 88% 42%, rgba(232, 101, 63, 0.28), transparent 30rem),
    radial-gradient(circle at 14% 92%, rgba(74, 158, 255, 0.12), transparent 24rem),
    linear-gradient(125deg, #07090d 0%, #0d1117 58%, #1b0e0a 100%);
}

.bus-game-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(108deg, transparent 0 82px, rgba(232, 213, 183, 0.1) 83px 84px),
    linear-gradient(90deg, transparent 0 47%, rgba(232, 101, 63, 0.08) 47% 47.2%, transparent 47.2%);
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.bus-game-banner > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
  padding: clamp(68px, 7vw, 112px) var(--gutter);
  color: inherit;
  text-decoration: none;
  transition: background 260ms ease;
}

.bus-game-banner > a:hover {
  background: rgba(232, 101, 63, 0.05);
}

.bus-game-copy {
  min-width: 0;
}

.bus-game-copy h2 {
  margin: 0;
  color: var(--beige);
  font: 400 clamp(5rem, 8.6vw, 9.5rem)/0.84 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.bus-game-copy > p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font: 600 clamp(1.18rem, 1.8vw, 1.75rem)/1.42 var(--head);
  letter-spacing: 0.01em;
}

.bus-game-action {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
  padding: 0 30px;
  border: 2px solid var(--ember);
  background: var(--ember);
  color: var(--ink);
  font: 800 1.08rem/1 var(--head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.bus-game-action svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.bus-game-banner > a:hover .bus-game-action {
  background: transparent;
  color: var(--ember);
  transform: translateY(-2px);
}

.bus-game-media {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
}

.bus-game-media::before {
  position: absolute;
  inset: 12% -8% -10% 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(232, 101, 63, 0.46), transparent 66%);
  content: "";
  filter: blur(30px);
}

.bus-game-media video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 213, 183, 0.28);
  background: #050609;
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.58);
  transform: rotate(1deg);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.bus-game-banner > a:hover .bus-game-media video {
  filter: saturate(1.08);
  transform: rotate(0deg) scale(1.025);
}

.site-footer {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  border-top: 1px solid var(--ember);
  background: var(--ink);
}

.footer-brand {
  height: 44px;
}

.footer-brand img {
  height: 40px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font: 700 0.86rem/1 var(--head);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  :root { --header-height: 88px; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 32;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 120px var(--gutter) 70px;
    background: rgba(7, 9, 13, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-size: clamp(3.2rem, 11vw, 6rem);
  }

  .menu-toggle { display: block; }

  .hero {
    min-height: 920px;
  }

  .hero-copy-wrap {
    width: min(740px, 82vw);
    padding-right: var(--gutter);
    padding-bottom: 42px;
  }

  .hero h1 { width: 128%; }

  .hero-media {
    inset: 0;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.88) 0%, rgba(7, 9, 13, 0.5) 50%, rgba(7, 9, 13, 0.16) 100%),
      linear-gradient(0deg, rgba(7, 9, 13, 0.72) 0%, transparent 55%, rgba(7, 9, 13, 0.24) 100%);
  }

  .scroll-cue { display: none; }

  .story,
  .lineup,
  .practical,
  .about-us,
  .shuttle {
    grid-template-columns: 1fr;
  }

  .story { min-height: auto; }
  .story-video {
    margin: 0 auto;
  }
  .game-activator > a,
  .bus-game-banner > a {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .game-preview,
  .bus-game-media {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .lineup { min-height: auto; }
  .dj-schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 22px;
  }
  .practical { min-height: auto; }
  .atmosphere-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .atmosphere-tile {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --header-height: 78px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-lockup {
    height: 42px;
    gap: 3px;
  }

  .brand-lockup img { height: 40px; }
  .brand-lockup img:nth-of-type(1) { width: 55px; }
  .brand-lockup img:nth-of-type(2),
  .brand-lockup img:nth-of-type(3) { width: 63px; }
  .brand-lockup span { font-size: 0.75rem; }
  .brand-lockup .brand-in { font-size: 0.68rem; }

  .hero {
    min-height: 844px;
  }

  .hero-copy-wrap {
    width: 100%;
    min-height: 844px;
    justify-content: flex-end;
    padding: 110px var(--gutter) 54px;
  }

  .hero-media > img {
    object-position: 50% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.56) 40%, rgba(7, 9, 13, 0.08) 72%, rgba(7, 9, 13, 0.34) 100%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.34), transparent 55%, rgba(7, 9, 13, 0.25));
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(4.1rem, 19vw, 5.2rem);
    transform: scaleX(0.88);
  }

  .hero-meta {
    margin-top: 20px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero-meta span { padding: 0 2px; }

  .hero-actions,
  .practical-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .hero-actions {
    margin-top: 23px;
  }

  .button {
    min-height: 56px;
    padding: 0 22px;
    gap: 12px;
    font-size: 1rem;
  }

  .hero-actions .text-link {
    font-size: 0.83rem;
  }

  .section-pad {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .shuttle {
    padding-bottom: 56px;
  }

  .bus-game-banner > a {
    grid-template-columns: 1fr;
  }

  .bus-game-media {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .story h2 {
    width: 100%;
    font-size: clamp(3.8rem, 17.5vw, 5.2rem);
  }

  .story-copy > p:not(.genre-line) {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .genre-line {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .story-video {
    width: min(100%, 420px);
  }

  .game-activator > a {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 46px;
    padding: 74px var(--gutter);
  }

  .game-activator h2 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  .game-copy > p {
    margin-top: 24px;
    font-size: 1.18rem;
  }

  .game-action {
    min-height: 58px;
    gap: 18px;
    margin-top: 30px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .game-preview {
    width: 100%;
  }

  .lineup-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .lineup h2 {
    font-size: clamp(4.6rem, 21vw, 6rem);
  }

  .lineup-range {
    min-width: 170px;
    font-size: 1rem;
  }

  .dj-schedule {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .dj-slot {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .dj-slot h3 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .dj-audio iframe {
    height: 120px;
  }

  .practical h2 {
    width: 100%;
    font-size: clamp(4.7rem, 20vw, 6rem);
    transform: scaleX(0.84);
  }

  .practical-actions {
    margin-top: 28px;
  }

  .raver-note {
    margin-top: 52px;
    padding-left: 20px;
  }

  .practical-info dl > div {
    min-height: 70px;
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .practical-info dt { font-size: 0.76rem; }
  .practical-info dd { font-size: 0.95rem; }
  .practical-info dd::before { margin-right: 10px; }

  .practical::before {
    background-position: 68% center;
    opacity: 0.7;
  }

  .practical::after {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.48)),
      linear-gradient(0deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.18) 50%, rgba(7, 9, 13, 0.5) 100%);
  }

  .atmosphere {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .atmosphere h2 {
    width: 128%;
    font-size: clamp(3.8rem, 16vw, 5rem);
    transform: scaleX(0.76);
    transform-origin: left center;
  }

  .atmosphere-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .atmosphere-tile {
    aspect-ratio: 3 / 4;
  }

  .about-us h2 {
    font-size: clamp(4.8rem, 21vw, 6.2rem);
  }

  .collective-list article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .collective-list h3 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .about-closing {
    font-size: clamp(2.8rem, 13vw, 4rem);
    text-align: left;
  }

  .shuttle h2 {
    font-size: clamp(4.8rem, 21vw, 6.2rem);
  }

  .shuttle-visual {
    margin: 24px 0 0;
  }

  .shuttle-visual img {
    width: 64%;
  }

  .shuttle-route > div {
    min-height: 96px;
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .shuttle-route dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
  }

  .shuttle-route time {
    font-size: 2.6rem;
  }

  .shuttle-route dd span {
    font-size: 0.95rem;
  }

  .bus-game-banner > a {
    gap: 42px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .bus-game-copy h2 {
    font-size: clamp(4.8rem, 22vw, 6.4rem);
  }

  .bus-game-copy > p {
    margin-top: 24px;
    font-size: 1.12rem;
  }

  .bus-game-action {
    width: 100%;
    margin-top: 30px;
    padding: 0 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-brand { max-width: 100%; }
}

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