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

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

@font-face {
  font-family: "Cooper Black";
  src: url("./assets/fonts/COOPBL.TTF") format("truetype");
  font-display: swap;
}

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

:root {
  --blue: #29449e;
  --blue-deep: #071b4c;
  --blue-light: #3861bd;
  --yellow: #f7e465;
  --green: #47a662;
  --red: #dc2429;
  --orange: #ed882e;
  --paper: #f4f0e5;
  --ink: #090909;
  --white: #fffef9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 28px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 8px 10px 8px 15px;
  transform: translateX(-50%);
  border: 2px solid var(--ink);
  background: rgba(244, 240, 229, 0.95);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.bks-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 11px 4px 7px;
  transform: rotate(-1deg);
  background: var(--ink);
  color: white;
  font-family: "Brunson", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.bks-mark img {
  width: 28px;
  height: 38px;
  object-fit: contain;
}

.topbar nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
}

.topbar nav a {
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  border-color: var(--red);
}

.nav-cta {
  padding: 11px 18px;
  background: var(--red);
  color: white;
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 7vw, 105px);
  overflow: hidden;
  padding: 120px max(28px, calc((100vw - 1180px) / 2)) 75px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 38px 38px,
    radial-gradient(circle at 18% 18%, #4670ce 0, transparent 30%),
    linear-gradient(145deg, var(--blue-light), var(--blue) 48%, var(--blue-deep));
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    88deg,
    transparent 0 10px,
    rgba(0, 0, 0, 0.08) 11px,
    transparent 12px
  );
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.event-logo {
  width: min(640px, 104%);
  height: auto;
  margin-left: -7%;
  filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.36));
}

.hero-slogan {
  width: fit-content;
  margin: -12px 0 30px;
  padding: 8px 13px;
  transform: rotate(-1deg);
  background: var(--yellow);
  color: var(--ink);
  font-family: "Brunson", Impact, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  letter-spacing: 0.05em;
}

.hero-facts {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.hero-facts > strong {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.08em;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(4.2rem, 7.2vw, 6.8rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 6px 6px 0 var(--red);
  white-space: nowrap;
}

.hero-date > span,
.hero-date > i {
  display: block;
}

.hero-date > i {
  width: 0.13em;
  height: 0.13em;
  flex: 0 0 auto;
  margin: 0 0.02em 0.01em;
  border-radius: 50%;
  background: white;
  box-shadow: 4px 4px 0 var(--red);
  color: transparent;
  font-size: inherit;
  font-style: normal;
  line-height: 0;
  overflow: hidden;
  text-shadow: none;
}

.hero-facts p {
  max-width: 240px;
  margin: 0;
  font-family: "Brunson", Impact, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.hero-meta {
  display: block;
  margin-top: 9px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
  padding: 18px 20px;
  border: 3px solid var(--ink);
  background: white;
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: "Brunson", Impact, sans-serif;
  letter-spacing: 0.07em;
  transition: 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-poster {
  width: min(430px, 100%);
  justify-self: end;
  margin: 0;
  padding: 13px;
  transform: rotate(2deg);
  background: var(--paper);
  box-shadow: 18px 22px 0 rgba(0, 0, 0, 0.3);
}

.hero-poster img {
  width: 100%;
  height: auto;
}

.tape {
  position: absolute;
  z-index: 3;
  width: 120px;
  height: 34px;
  background: rgba(233, 213, 165, 0.9);
  box-shadow: inset 0 0 10px rgba(70, 53, 19, 0.2);
}

.tape-one {
  top: -12px;
  left: -38px;
  transform: rotate(-24deg);
}

.tape-two {
  right: -38px;
  bottom: -9px;
  transform: rotate(-18deg);
}

.ticker {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  overflow: hidden;
  padding: 14px 24px;
  border-block: 3px solid var(--ink);
  background: var(--yellow);
  font-family: "Brunson Rough", Impact, sans-serif;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker span::after {
  margin-left: 34px;
  content: "✦";
}

.manifesto {
  padding-block: 110px;
}

.eyebrow,
.chapter {
  margin: 0 0 20px;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  transform: rotate(-1deg);
  background: var(--red);
  color: white;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.manifesto h1,
.section-heading h2,
.ticket h2 {
  margin: 0;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.86;
}

.manifesto h1 {
  font-size: clamp(3.7rem, 8vw, 7.8rem);
}

.manifesto h1 em {
  color: var(--blue);
  font-style: normal;
  text-shadow: 5px 5px 0 var(--yellow);
}

.manifesto-grid > div {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.scribble {
  display: inline-block;
  margin-top: 22px;
  padding: 7px 10px;
  transform: rotate(1.4deg);
  border: 2px solid var(--ink);
  font-family: "Lastik", "Courier New", monospace;
  font-size: 0.85rem;
}

.dark-section,
.activities-section,
.info-section {
  padding-block: 105px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--ink);
  color: white;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.section-heading > p {
  max-width: 310px;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.section-heading.ink {
  color: var(--ink);
}

.headliners {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border: 3px solid white;
  box-shadow: 10px 10px 0 var(--red);
}

.headliners article {
  display: flex;
  min-height: 210px;
  align-items: center;
  padding: 26px;
}

.headliners article + article {
  border-left: 3px solid white;
  background: var(--blue);
}

.headliners span,
.rot-show .chapter,
.activity-grid span,
.info-grid span {
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.headliners h3 {
  margin: 0;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(3.1rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.85;
}

.rot-show {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 45px;
  margin-top: 55px;
  padding: 30px;
  border: 3px solid var(--yellow);
  background: #101010;
}

.rot-program {
  min-width: 0;
}

.rot-title {
  margin: 0 0 26px;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.86;
}

.rot-mark img {
  width: 100%;
  height: auto;
  transform: rotate(-7deg);
  filter: drop-shadow(8px 8px 0 rgba(255, 255, 255, 0.14));
}

.artist-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.artist-cloud strong {
  padding: 11px 14px 8px;
  transform: rotate(-1deg);
  background: white;
  color: var(--ink);
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 400;
}

.artist-cloud strong:nth-child(even) {
  transform: rotate(1deg);
  background: var(--yellow);
}

.dj-lineup {
  margin-top: 0;
}

.dj-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.dj-cloud strong {
  padding: 10px 13px 8px;
  transform: rotate(-1.4deg);
  background: white;
  color: var(--ink);
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 0.9;
}

.dj-cloud strong:nth-child(even) {
  transform: rotate(1.2deg);
  background: var(--yellow);
}

.dj-cloud strong:nth-child(3) {
  transform: rotate(-0.7deg);
}

.dj-cloud strong:nth-child(4) {
  transform: rotate(1.8deg);
}

.live-lineup {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 2px dashed rgba(255, 255, 255, 0.55);
}

.lockers {
  padding-block: 110px;
}

.locker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.locker {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.locker::before {
  width: 58%;
  height: 28px;
  border-block: 7px double currentColor;
  opacity: 0.55;
  content: "";
}

.locker > span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Brunson", Impact, sans-serif;
}

.locker h3 {
  margin: auto 0 10px;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.88;
}

.locker p {
  margin: 0;
  font-weight: 800;
  line-height: 1.42;
}

.yellow,
.cream {
  background: var(--yellow);
}

.green {
  background: var(--green);
}

.orange {
  background: var(--orange);
}

.red {
  background: var(--red);
  color: white;
}

.blue {
  background: var(--blue);
  color: white;
}

.paper-section {
  padding-block: 105px;
  border-block: 3px solid var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 0, 0, 0.13) 0 1px, transparent 2px) 0 0 / 15px 15px,
    #c9955b;
}

.name-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.35);
}

.name-wall span {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 18px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 3.3rem);
  line-height: 0.88;
  text-align: center;
}

.name-wall span:nth-child(3n) {
  border-right: 0;
}

.name-wall span:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-grid article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 3px solid white;
}

.activity-grid article:nth-child(2),
.activity-grid article:nth-child(5) {
  background: var(--blue);
}

.activity-grid article:nth-child(3) {
  background: var(--red);
}

.activity-grid strong {
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.88;
}

.activity-grid .activity-tba {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.posters-section {
  padding-block: 105px 125px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.11) 0 1px, transparent 2px) 0 0 / 14px 14px,
    #704225;
  color: white;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.poster-grid figure {
  margin: 0;
  padding: 10px 10px 15px;
  transform: rotate(-1deg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.32);
}

.poster-grid figure:nth-child(even) {
  transform: rotate(1deg);
}

.poster-grid img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.poster-grid figcaption {
  padding-top: 12px;
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.tickets {
  padding-block: 110px;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 45px;
  padding: clamp(28px, 5vw, 60px);
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
}

.ticket h2 {
  overflow-wrap: break-word;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.ticket-note {
  max-width: 580px;
  margin: 20px 0 0;
  font-weight: 700;
  line-height: 1.5;
}

.ticket-buy {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 7px 7px 0 var(--red);
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  transition: 160ms ease;
}

.ticket-buy:hover,
.ticket-buy:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 var(--red);
}

.ticket-stub {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 3px dashed var(--ink);
  background: var(--paper);
  font-family: "Brunson", Impact, sans-serif;
  transition: 160ms ease;
}

.ticket-stub:hover,
.ticket-stub:focus-visible {
  transform: rotate(1deg) scale(1.01);
  background: white;
}

.ticket-stub strong {
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
}

.ticket-stub i {
  height: 55px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 3px,
    transparent 3px 7px,
    var(--ink) 7px 9px,
    transparent 9px 13px
  );
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid white;
}

.info-grid article {
  min-height: 245px;
  padding: 24px;
  border-right: 2px solid white;
}

.info-grid article:last-child {
  border-right: 0;
}

.info-grid strong {
  display: block;
  margin-top: 45px;
  font-family: "Brunson Rough", Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 400;
  line-height: 0.9;
}

.info-grid p {
  font-weight: 700;
  line-height: 1.4;
}

.info-grid a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

footer {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
  overflow: hidden;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  border-top: 12px solid var(--yellow);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--blue-deep);
  color: white;
}

.footer-bks {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 26px;
  transform: rotate(-2deg);
  border: 3px solid white;
  background: var(--ink);
  box-shadow: 11px 11px 0 var(--red);
}

.footer-bks img {
  width: 95px;
  height: 150px;
  object-fit: contain;
}

.footer-bks strong {
  font-family: "Brunson", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.footer-brand img {
  width: min(430px, 100%);
  height: auto;
  filter: drop-shadow(9px 10px 0 rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.footer-brand .chapter {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  min-width: 160px;
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-top {
  padding-bottom: 5px;
  border-bottom: 3px solid var(--yellow);
  font-family: "Brunson", Impact, sans-serif;
  font-size: 0.92rem;
}

.mobile-ticket {
  display: none;
}

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

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    width: min(520px, 92%);
    justify-self: center;
  }

  .manifesto-grid,
  .ticket {
    grid-template-columns: 1fr;
  }

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

  .name-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .name-wall span:nth-child(3n) {
    border-right: 2px solid var(--ink);
  }

  .name-wall span:nth-child(even) {
    border-right: 0;
  }

  .name-wall span:nth-last-child(-n + 3) {
    border-bottom: 2px solid var(--ink);
  }

  .name-wall span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .poster-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid article:nth-child(2) {
    border-right: 0;
  }

  .info-grid article:nth-child(-n + 2) {
    border-bottom: 2px solid white;
  }

  .info-grid article:last-child {
    grid-column: 1 / -1;
  }

  footer {
    grid-template-columns: 190px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 1180px) and (min-width: 961px) {
  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-facts p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .section {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    top: 8px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 16px);
  }

  .topbar nav {
    display: none;
  }

  .hero {
    gap: 54px;
    padding: 105px 18px 70px;
  }

  .event-logo {
    width: 100%;
    margin-left: -3%;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .ticker {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .manifesto,
  .lockers,
  .dark-section,
  .paper-section,
  .activities-section,
  .posters-section,
  .tickets,
  .info-section {
    padding-block: 76px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .headliners,
  .rot-show {
    grid-template-columns: 1fr;
  }

  .headliners article + article {
    border-top: 3px solid white;
    border-left: 0;
  }

  .rot-show {
    gap: 15px;
  }

  .rot-mark img {
    width: 200px;
  }

  .locker-grid,
  .activity-grid,
  .name-wall,
  .poster-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .name-wall span,
  .name-wall span:nth-child(3n),
  .name-wall span:nth-child(even),
  .name-wall span:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .name-wall span:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .poster-grid {
    gap: 32px;
  }

  .poster-grid figure {
    width: min(520px, 96%);
    justify-self: center;
  }

  .ticket {
    gap: 34px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .ticket-stub {
    min-height: 270px;
  }

  .info-grid article,
  .info-grid article:nth-child(2),
  .info-grid article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 2px solid white;
  }

  .info-grid article:last-child {
    border-bottom: 0;
  }

  footer {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 64px;
    padding-bottom: 105px;
  }

  .footer-bks {
    min-height: 230px;
  }

  .footer-bks img {
    width: 80px;
    height: 120px;
  }

  .footer-links {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  footer nav {
    flex-direction: column;
  }

  .mobile-ticket {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: "Brunson", Impact, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
