@font-face {
  font-family: "BKS Condensed";
  src: url("./assets/fonts/Brunson.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "BKS Utility";
  src: url("./assets/fonts/Lastik-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --ink: #05070b;
  --night: #050911;
  --blue: #193b91;
  --blue-bright: #294da9;
  --blue-deep: #061637;
  --red: #e0272d;
  --red-deep: #8f1017;
  --cream: #f1eee4;
  --yellow: #f7e465;
  --green: #47a662;
  --white: #fffdf7;
  --line: rgba(255, 255, 255, 0.24);
  --pad: clamp(22px, 4.6vw, 76px);
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.map-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
}

ul,
ol,
dl,
dd,
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.school-utility {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  pointer-events: none;
}

.school-utility > * {
  pointer-events: auto;
}

.bks-utility,
.map-toggle,
.utility-pass {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 7, 13, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.bks-utility {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 9px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.bks-utility img {
  width: 29px;
  height: 36px;
  object-fit: contain;
}

.map-toggle {
  display: grid;
  min-width: 150px;
  cursor: pointer;
  place-content: center;
  padding: 7px 18px;
  text-align: center;
}

.map-toggle span,
.utility-pass span {
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.map-toggle strong,
.utility-pass strong {
  display: block;
  margin-top: 2px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.utility-pass {
  justify-self: end;
  min-width: 170px;
  padding: 7px 16px;
  background: rgba(202, 20, 28, 0.92);
  text-align: right;
}

.bks-utility:hover,
.map-toggle:hover,
.utility-pass:hover {
  border-color: var(--white);
  background-color: var(--red);
}

.map-scrim {
  position: fixed;
  z-index: 109;
  inset: 0;
  background: rgba(1, 4, 10, 0.72);
  opacity: 0;
  transition: opacity 260ms ease;
}

.map-scrim.is-open {
  opacity: 1;
}

.map-scrim[hidden],
.school-map[hidden] {
  display: none;
}

.school-map {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100dvh;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
  border-left: 5px solid var(--red);
  background:
    linear-gradient(rgba(5, 7, 11, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 11, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: 22px 22px;
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.school-map.is-open {
  transform: none;
}

.map-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 4px solid var(--ink);
}

.map-heading p,
.map-foot {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.map-heading strong {
  display: block;
  margin-top: 4px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.map-heading button {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: var(--red);
  color: white;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.school-map nav {
  display: grid;
  margin-top: 18px;
}

.school-map nav a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  border-bottom: 2px solid var(--ink);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.school-map nav b {
  color: var(--red);
  font-size: 0.85rem;
}

.school-map nav i {
  font-style: normal;
}

.school-map nav a:hover span,
.school-map nav a:focus-visible span {
  color: var(--red);
  transform: translateX(5px);
}

.school-map nav span {
  transition: 150ms ease;
}

.map-foot {
  margin-top: auto;
  padding: 22px 0 2px;
  color: var(--red);
}

.scene,
.room {
  position: relative;
  overflow: hidden;
}

.room {
  min-height: 100svh;
  padding: clamp(105px, 11vw, 165px) var(--pad);
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.corridor {
  min-height: 100svh;
  background: #02050a;
  isolation: isolate;
}

.corridor-image,
.corridor-image img,
.corridor-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.corridor-image img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.025) translate(
    calc(var(--mx) * -7px),
    calc(var(--my) * -5px)
  );
  transition: transform 160ms ease-out;
}

.corridor-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 3, 8, 0.5) 0, transparent 18%, transparent 72%, rgba(1, 3, 8, 0.66) 100%),
    radial-gradient(circle at 50% 48%, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.summer-stamp,
.scene-code,
.enter-school,
.hero-ticket-hotspot {
  position: absolute;
  z-index: 3;
}

.summer-stamp {
  top: 88px;
  left: 50%;
  padding: 7px 10px 5px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(0.72rem, 1.1vw, 1rem);
  letter-spacing: 0.08em;
  transform: translateX(-50%) rotate(-1.5deg);
  white-space: nowrap;
}

.scene-code {
  bottom: 22px;
  left: 22px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.hero-ticket-hotspot {
  top: 30%;
  left: 3.5%;
  display: grid;
  width: 20%;
  height: 14%;
  cursor: pointer;
  place-items: end center;
}

.hero-ticket-hotspot::before {
  position: absolute;
  inset: 18% 7%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 transparent;
  content: "";
  transition: 180ms ease;
}

.hero-ticket-hotspot span {
  margin-bottom: -15px;
  padding: 6px 9px;
  background: var(--white);
  color: var(--ink);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: 180ms ease;
}

.hero-ticket-hotspot:hover::before,
.hero-ticket-hotspot:focus-visible::before {
  border-color: var(--white);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
}

.hero-ticket-hotspot:hover span,
.hero-ticket-hotspot:focus-visible span {
  opacity: 1;
  transform: none;
}

.enter-school {
  right: 50%;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(3, 7, 14, 0.68);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  transform: translateX(50%);
  backdrop-filter: blur(8px);
}

.enter-school i {
  color: var(--red);
  font-size: 1.2rem;
  font-style: normal;
  animation: arrow-drop 1.7s ease-in-out infinite;
}

@keyframes arrow-drop {
  0%,
  100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.room-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.room-heading p,
.room-heading > span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.room-heading h2 {
  grid-column: 1;
  margin-top: 11px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(4.8rem, 11vw, 10.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.75;
  text-transform: uppercase;
}

.room-heading > span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
  padding: 7px 9px;
  border: 1px solid currentColor;
}

.room-heading-light {
  color: var(--white);
}

.gym-room {
  background:
    radial-gradient(circle at 15% 22%, rgba(41, 77, 169, 0.35), transparent 32%),
    radial-gradient(circle at 83% 32%, rgba(224, 39, 45, 0.25), transparent 29%),
    var(--ink);
}

.gym-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(transparent, black 16%, black 85%, transparent);
}

.gym-room::before,
.gym-room::after {
  position: absolute;
  top: -13%;
  width: 20%;
  height: 70%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 74%);
  clip-path: polygon(47% 0, 55% 0, 100% 100%, 0 100%);
  content: "";
  filter: blur(10px);
  opacity: 0.22;
  pointer-events: none;
}

.gym-room::before {
  left: 7%;
  transform: rotate(-12deg);
}

.gym-room::after {
  right: 6%;
  transform: rotate(12deg);
}

.headliner-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.45fr);
  gap: clamp(26px, 5vw, 80px);
  min-height: 76svh;
  align-items: center;
  padding: 55px 0 78px;
}

.stage-call {
  position: absolute;
  top: 27px;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.headliner-names {
  display: grid;
  align-content: center;
  text-transform: uppercase;
}

.headliner-names strong {
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(5rem, 11vw, 11.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.72;
}

.headliner-names strong:last-child {
  color: var(--red);
  text-align: right;
}

.headliner-names i {
  justify-self: center;
  margin: -4px 0 -8px;
  color: var(--yellow);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-style: normal;
}

.stage-screen {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  padding: 11px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: #090d15;
  box-shadow: 22px 26px 0 var(--red-deep), 0 35px 80px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-7deg) rotateZ(1.5deg);
}

.stage-screen::before {
  position: absolute;
  inset: -19px -16px auto;
  height: 7px;
  background: var(--yellow);
  box-shadow: 0 0 30px var(--yellow);
  content: "";
}

.rot-booth {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.4fr);
  gap: 1px;
  margin: 0 calc(var(--pad) * -1) calc(clamp(105px, 11vw, 165px) * -1);
  border-top: 8px solid var(--red);
  background: rgba(255, 255, 255, 0.12);
}

.rot-identity,
.live-board,
.dj-console {
  background: var(--blue-deep);
}

.rot-identity {
  grid-row: 1 / span 2;
  display: grid;
  align-content: space-between;
  min-height: 640px;
  padding: clamp(28px, 4vw, 58px);
}

.rot-identity img {
  width: min(100%, 320px);
  filter: drop-shadow(12px 16px 0 rgba(0, 0, 0, 0.34));
  transform: rotate(-4deg);
}

.rot-identity p,
.live-board > p,
.dj-console > p {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.rot-identity h3 {
  margin-top: 9px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  font-weight: 400;
  line-height: 0.8;
}

.live-board {
  min-height: 455px;
  padding: clamp(30px, 4vw, 58px);
}

.live-board ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 34px;
}

.live-board li {
  padding: 4px 8px 0;
  background: var(--white);
  color: var(--ink);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(3.1rem, 6.7vw, 7.8rem);
  letter-spacing: -0.02em;
  line-height: 0.88;
  transform: rotate(-1deg);
}

.live-board li:nth-child(even) {
  background: var(--yellow);
  transform: rotate(1.2deg);
}

.live-board li:nth-child(4) {
  font-size: clamp(2.8rem, 5.8vw, 6.8rem);
}

.dj-console {
  padding: 28px clamp(30px, 4vw, 58px) 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.dj-console ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.dj-console li {
  padding: 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.7rem);
  text-align: center;
}

.locker-room {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-bright), var(--blue) 47%, #102d78);
  background-size: 32px 100%, 100% 32px, auto;
}

.locker-room::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.locker-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: 70px;
}

.locker-bank {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  border-left: 3px solid rgba(255, 255, 255, 0.7);
  perspective: 1200px;
}

.locker-bank li {
  position: relative;
  display: grid;
  min-height: clamp(190px, 21vw, 320px);
  align-content: end;
  overflow: hidden;
  padding: 26px 20px;
  border-right: 3px solid rgba(255, 255, 255, 0.7);
  border-bottom: 3px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 45%, rgba(0, 0, 0, 0.15));
  box-shadow: inset -10px 0 28px rgba(0, 0, 0, 0.13);
  transform-origin: left center;
  transition: 220ms ease;
}

.locker-bank li::before,
.locker-bank li::after {
  position: absolute;
  left: 50%;
  width: 62px;
  height: 25px;
  background: repeating-linear-gradient(0deg, rgba(1, 4, 10, 0.7) 0 2px, transparent 2px 5px);
  content: "";
  transform: translateX(-50%);
}

.locker-bank li::before { top: 20px; }
.locker-bank li::after { bottom: 19px; opacity: 0.45; }

.locker-bank li:hover {
  z-index: 2;
  background-color: rgba(224, 39, 45, 0.5);
  box-shadow: inset 18px 0 45px rgba(0, 0, 0, 0.33), 20px 25px 40px rgba(0, 0, 0, 0.25);
  transform: rotateY(-8deg) translateY(-6px);
}

.locker-bank small {
  position: absolute;
  top: 25px;
  left: 18px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.locker-bank strong {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.82;
}

.locker-bank i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transform: translateY(-50%);
}

.locker-manifest,
.lab-projector {
  position: sticky;
  top: 100px;
  padding: 12px;
  border: 2px solid var(--white);
  background: var(--ink);
  box-shadow: 14px 18px 0 rgba(3, 8, 24, 0.45);
  transform: rotate(1.5deg);
}

.locker-manifest > span,
.lab-projector > span {
  display: block;
  padding: 4px 3px 10px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.activity-room {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(5, 7, 11, 0.045) 1px, transparent 1px),
    #d9d2c2;
  background-size: 28px 28px;
  color: var(--ink);
}

.activity-room::after {
  position: absolute;
  right: -7%;
  bottom: -90px;
  width: 50%;
  height: 230px;
  background: var(--red);
  content: "";
  transform: rotate(-4deg);
}

.activity-room .room-heading {
  border-color: rgba(5, 7, 11, 0.35);
}

.lab-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.42fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
  margin-top: 70px;
}

.lab-board {
  padding: clamp(22px, 4vw, 50px);
  border: 13px solid #60402c;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.055), transparent 23%),
    #0a241c;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.52), 0 28px 0 rgba(68, 42, 27, 0.18);
  color: var(--cream);
}

.lab-board li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 16px;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(241, 238, 228, 0.35);
}

.lab-board b {
  padding-top: 4px;
  color: var(--yellow);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.lab-board strong {
  font-family: "BKS Condensed", Impact, Arial, sans-serif;
  font-size: clamp(2.35rem, 5.1vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.86;
}

.lab-board .lab-tba {
  border-bottom: 0;
  color: var(--yellow);
}

.lab-projector {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow: 17px 20px 0 var(--red);
  color: var(--ink);
  transform: rotate(-1.5deg);
}

.projection-room {
  min-height: 125svh;
  background:
    radial-gradient(ellipse at 50% 32%, rgba(255, 255, 220, 0.12), transparent 38%),
    #010205;
}

.projection-room::before {
  position: absolute;
  top: 15%;
  left: 50%;
  width: min(80vw, 1000px);
  height: 74%;
  background: linear-gradient(180deg, rgba(255, 253, 231, 0.11), transparent 75%);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  content: "";
  filter: blur(16px);
  transform: translateX(-50%);
}

.projector {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.25fr);
  gap: 26px;
  align-items: center;
  max-width: 1060px;
  margin: 70px auto 0;
}

.projector-screen {
  position: relative;
  display: grid;
  min-height: 70svh;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.85);
}

.projector-slide {
  justify-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
}

.has-js .projector-slide {
  display: none;
}

.has-js .projector-slide.is-active {
  display: grid;
  animation: projector-in 260ms ease both;
}

@keyframes projector-in {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.projector-slide img {
  width: auto;
  max-width: 100%;
  height: min(67svh, 750px);
  object-fit: contain;
  box-shadow: 0 0 50px rgba(255, 255, 225, 0.2), 0 36px 80px rgba(0, 0, 0, 0.62);
}

.projector-slide figcaption {
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.13em;
}

.projector-console {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #10141c;
  box-shadow: 12px 15px 0 var(--blue);
}

.projector-console button {
  display: grid;
  min-height: 82px;
  cursor: pointer;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #07090d;
  text-align: center;
}

.projector-console button[aria-selected="true"] {
  border-color: var(--red);
  background: var(--red);
}

.projector-console b {
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.projector-console span {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pass-room {
  min-height: 110svh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    var(--red);
  background-size: 46px 46px;
  color: var(--white);
}

.pass-stripes {
  position: absolute;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 24px, var(--yellow) 24px 48px);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.94;
}

.pass-gate {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(300px, 1fr) minmax(180px, 0.45fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: stretch;
  margin-top: 70px;
}

.pass-price,
.pass-action,
.pass-slot {
  min-height: 430px;
}

.pass-price {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: clamp(25px, 4vw, 55px);
  border: 4px solid var(--white);
  background: var(--red-deep);
  box-shadow: 18px 20px 0 rgba(70, 0, 6, 0.55);
}

.pass-price > span,
.pass-price p {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.pass-price strong {
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(10rem, 18vw, 19rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.65;
}

.pass-price b {
  align-self: end;
  padding-bottom: 15px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400;
  writing-mode: vertical-rl;
}

.pass-price p {
  margin-top: 35px;
  color: var(--yellow);
}

.pass-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4.5vw, 65px);
  border: 4px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  transition: 180ms ease;
}

.pass-action span {
  max-width: 520px;
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(4.1rem, 8vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.78;
}

.pass-action strong {
  color: var(--red);
  font-size: 3rem;
}

.pass-action:hover,
.pass-action:focus-visible {
  background: var(--yellow);
  transform: translateY(-8px);
}

.pass-slot {
  display: grid;
  align-content: center;
  gap: 30px;
  padding: 26px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  background: var(--ink);
  text-align: center;
}

.pass-slot span,
.pass-slot b {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.pass-slot i {
  display: block;
  width: 100%;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: #000;
  box-shadow: inset 0 0 14px var(--red), 0 0 28px rgba(224, 39, 45, 0.6);
}

.exit-room {
  min-height: 105svh;
  background:
    radial-gradient(circle at 75% 10%, rgba(224, 39, 45, 0.32), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--blue-deep);
  background-size: auto, 35px 35px, 35px 35px, auto;
}

.exit-board {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 70px auto 0;
  border: 12px solid #16191f;
  background: #030405;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 28px 70px rgba(0, 0, 0, 0.48);
}

.exit-board > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) 1fr;
  gap: 25px;
  padding: clamp(24px, 4vw, 50px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.exit-board > div:last-child {
  border-bottom: 0;
}

.exit-board dt {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.exit-board dd {
  display: grid;
  gap: 6px;
}

.exit-board strong {
  color: var(--white);
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(2.9rem, 6vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.82;
}

.exit-board span,
.exit-board a {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.exit-board a {
  justify-self: start;
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
}

.back-to-entrance {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  margin: 55px auto 0;
  padding: 12px 0;
  border-bottom: 2px solid var(--white);
  font-family: "BKS Condensed", Impact, sans-serif;
  letter-spacing: 0.11em;
}

.school-exit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 58px var(--pad) 72px;
  border-top: 8px solid var(--red);
  background: var(--ink);
}

.exit-brand {
  display: flex;
  align-items: center;
  gap: 17px;
}

.exit-brand img {
  width: 44px;
  height: 64px;
  object-fit: contain;
}

.exit-brand div {
  display: grid;
}

.exit-brand strong {
  font-family: "BKS Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.85;
}

.exit-brand span,
.school-exit > p {
  margin-top: 5px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.school-exit > p {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  color: var(--red);
}

.school-exit nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.school-exit nav a:hover {
  color: var(--red);
}

.mobile-ticket {
  display: none;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .headliner-stage,
  .locker-layout,
  .lab-layout {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.4fr);
  }

  .pass-gate {
    grid-template-columns: minmax(220px, 0.7fr) 1.2fr;
  }

  .pass-slot {
    grid-column: 1 / -1;
    min-height: 180px;
  }
}

@media (max-width: 820px) {
  .room {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .headliner-stage,
  .locker-layout,
  .lab-layout,
  .projector {
    grid-template-columns: 1fr;
  }

  .headliner-stage {
    gap: 65px;
    padding-top: 70px;
  }

  .stage-screen {
    justify-self: center;
    width: min(70vw, 380px);
  }

  .rot-booth {
    grid-template-columns: 1fr;
  }

  .rot-identity {
    grid-row: auto;
    grid-template-columns: minmax(130px, 0.45fr) 1fr;
    gap: 25px;
    min-height: auto;
    align-items: end;
  }

  .rot-identity img {
    width: 100%;
  }

  .locker-manifest,
  .lab-projector {
    position: relative;
    top: auto;
    justify-self: center;
    width: min(68vw, 430px);
  }

  .projector-console {
    grid-template-columns: repeat(3, 1fr);
    order: -1;
  }

  .projector-console button {
    min-height: 72px;
  }

  .projector-screen {
    min-height: auto;
  }

  .pass-room {
    min-height: auto;
  }

  .pass-gate {
    grid-template-columns: 1fr;
  }

  .pass-price,
  .pass-action {
    min-height: 360px;
  }

  .pass-slot {
    grid-column: auto;
  }

  .pass-stripes {
    width: 36%;
    opacity: 0.35;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 18px;
  }

  .school-utility {
    grid-template-columns: auto 1fr;
    padding: 10px;
  }

  .bks-utility,
  .map-toggle {
    min-height: 48px;
  }

  .bks-utility {
    padding: 6px 12px 6px 7px;
  }

  .bks-utility img {
    width: 24px;
    height: 31px;
  }

  .map-toggle {
    justify-self: end;
    min-width: 132px;
    padding-inline: 12px;
  }

  .utility-pass {
    display: none;
  }

  .corridor-image img {
    object-position: center;
    transform: scale(1.012) translate(
      calc(var(--mx) * -3px),
      calc(var(--my) * -3px)
    );
  }

  .corridor-shade {
    background: linear-gradient(180deg, rgba(0, 2, 7, 0.48), transparent 17%, transparent 76%, rgba(0, 2, 7, 0.58));
  }

  .summer-stamp {
    top: 72px;
    font-size: 0.62rem;
  }

  .scene-code {
    bottom: 85px;
    left: 15px;
  }

  .hero-ticket-hotspot {
    top: 60%;
    left: 3.5%;
    width: 33%;
    height: 12%;
  }

  .hero-ticket-hotspot span {
    margin-bottom: -8px;
    opacity: 1;
    transform: none;
  }

  .enter-school {
    right: 14px;
    bottom: 84px;
    transform: none;
  }

  .room-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .room-heading h2 {
    font-size: clamp(4.25rem, 23vw, 7rem);
  }

  .room-heading > span {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
    margin-top: 6px;
  }

  .headliner-names strong {
    font-size: clamp(4.4rem, 21vw, 7.4rem);
  }

  .stage-screen {
    width: min(76vw, 350px);
  }

  .rot-booth {
    margin-right: -18px;
    margin-left: -18px;
  }

  .rot-identity {
    grid-template-columns: 120px 1fr;
    padding: 26px 19px;
  }

  .rot-identity h3 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .live-board,
  .dj-console {
    padding-right: 19px;
    padding-left: 19px;
  }

  .live-board li {
    font-size: clamp(2.7rem, 15vw, 5rem);
  }

  .live-board li:nth-child(4) {
    font-size: clamp(2.35rem, 12.5vw, 4.2rem);
  }

  .dj-console ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .locker-layout,
  .lab-layout,
  .projector,
  .pass-gate,
  .exit-board {
    margin-top: 45px;
  }

  .locker-bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locker-bank li {
    min-height: 175px;
    padding: 22px 13px;
  }

  .locker-bank strong {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .locker-bank small {
    top: 21px;
    left: 12px;
  }

  .locker-bank li::before,
  .locker-bank li::after {
    width: 45px;
  }

  .lab-board {
    padding: 18px;
    border-width: 8px;
  }

  .lab-board li {
    grid-template-columns: 33px 1fr;
    gap: 9px;
  }

  .lab-board strong {
    font-size: clamp(2rem, 11vw, 3.8rem);
  }

  .lab-projector,
  .locker-manifest {
    width: min(82vw, 420px);
  }

  .projection-room {
    min-height: auto;
  }

  .projector-console {
    gap: 6px;
    padding: 8px;
  }

  .projector-console button {
    min-height: 64px;
  }

  .projector-console b {
    font-size: 1.55rem;
  }

  .projector-console span {
    font-size: 0.48rem;
  }

  .projector-slide img {
    width: 100%;
    height: auto;
    max-height: 66svh;
  }

  .pass-price,
  .pass-action {
    min-height: 330px;
  }

  .pass-price strong {
    font-size: clamp(9rem, 49vw, 15rem);
  }

  .pass-action span {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .pass-slot {
    min-height: 170px;
  }

  .exit-board {
    border-width: 7px;
  }

  .exit-board > div {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 19px;
  }

  .exit-board strong {
    font-size: clamp(2.6rem, 13.5vw, 5rem);
  }

  .school-exit {
    grid-template-columns: 1fr;
    padding-bottom: 115px;
  }

  .school-exit > p,
  .school-exit nav {
    grid-column: 1;
    grid-row: auto;
  }

  .school-exit nav {
    gap: 15px 21px;
  }

  .mobile-ticket {
    position: fixed;
    z-index: 95;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 16px 11px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 7px 7px 0 var(--ink);
    color: var(--ink);
    font-family: "BKS Condensed", Impact, sans-serif;
    letter-spacing: 0.06em;
  }

  .mobile-ticket span {
    font-size: 0.92rem;
  }

  .mobile-ticket strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .map-toggle {
    min-width: 118px;
  }

  .map-toggle span {
    display: none;
  }

  .summer-stamp {
    max-width: 230px;
    white-space: normal;
    text-align: center;
  }

  .hero-ticket-hotspot {
    width: 37%;
  }

  .enter-school span {
    display: none;
  }
}

@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;
  }

  .corridor-image img {
    transform: none;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
