@font-face {
  font-family: "Inter Tight Local";
  src: url("./assets/InterTight-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Inter Tight Local";
  src: url("./assets/InterTight-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --black: #161a1d;
  --white: #f6f6f4;
  --paper: #efefee;
  --pink: #fac7f5;
  --purple: #907793;
  --plum: #6f5c75;
  --acid: #edf315;
  --line: rgba(22, 26, 29, 0.34);
  --line-light: rgba(246, 246, 244, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter Tight Local", Helvetica, Arial, sans-serif;
  font-size: 18px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.028em;
  line-height: 0.98;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
}

.ticket-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
}

.ticket-strip span {
  flex: 0 0 178px;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  animation: ticket-loop 12s linear infinite;
}

.ticket-strip:hover span {
  animation-play-state: paused;
}

.nav-bar {
  min-height: 74px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 128px;
  height: auto;
  filter: invert(1);
}

.nav-bar nav,
.nav-meta {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  font-size: 17px;
  font-weight: 700;
}

.nav-bar nav {
  justify-content: center;
}

.nav-meta {
  gap: 28px;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--black);
}

.hero video,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(0.86);
}

.hero-layer {
  background:
    linear-gradient(90deg, rgba(22, 26, 29, 0.54), rgba(22, 26, 29, 0.08)),
    linear-gradient(180deg, rgba(22, 26, 29, 0.06), rgba(22, 26, 29, 0.28)),
    rgba(144, 119, 147, 0.2);
}

.step-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 224px;
  height: 152px;
  background:
    linear-gradient(var(--black), var(--black)) 0 0 / 72px 152px no-repeat,
    linear-gradient(var(--black), var(--black)) 72px 0 / 72px 114px no-repeat,
    linear-gradient(var(--black), var(--black)) 144px 0 / 72px 76px no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding: 295px 0 150px clamp(36px, 11vw, 160px);
}

.hero-copy > p:first-child,
.eyebrow,
.date,
dt,
.register-copy p {
  color: var(--acid);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(64px, 7.4vw, 108px);
}

.hero-summary {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a,
.news-panel a,
.register-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-weight: 700;
  color: var(--white);
}

.hero-actions a {
  padding: 0 16px;
  border: 1px solid var(--line-light);
  background: rgba(22, 26, 29, 0.58);
}

.hero-actions a:first-child {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--black);
}

.hero-countdown {
  position: absolute;
  right: clamp(28px, 6vw, 88px);
  bottom: 116px;
  z-index: 5;
  width: min(390px, 34vw);
  margin: 0;
  border: 1px solid var(--line-light);
  background: rgba(22, 26, 29, 0.86);
  color: var(--white);
}

.hero-countdown > p {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-light);
  color: var(--acid);
  font-size: 15px;
  font-weight: 700;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.countdown-grid span {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 14px 16px;
  border-right: 1px solid var(--line-light);
}

.countdown-grid span:last-child {
  border-right: 0;
}

.countdown-grid strong {
  display: block;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.countdown-grid small {
  margin-top: 10px;
  color: rgba(246, 246, 244, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-countdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-top: 1px solid var(--line-light);
  font-weight: 700;
}

.hero-facts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  background: var(--black);
}

.hero-facts span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid var(--line-light);
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.hero-facts span:last-child {
  border-right: 0;
}

.news-panel {
  padding: 72px clamp(24px, 8vw, 160px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.news-panel article {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

.news-panel img {
  min-height: 330px;
  filter: saturate(0.86) contrast(1.04);
}

.news-panel article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.news-panel h2,
.guide-card h2,
.details h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 62px);
}

.news-panel p:not(.eyebrow),
.guide-card p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(22, 26, 29, 0.76);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.08;
}

.news-panel a {
  width: fit-content;
  margin-top: 18px;
  color: var(--black);
}

.news-panel .eyebrow,
.guide-card .eyebrow,
.artist-grid .date,
.program-media p {
  color: var(--plum);
}

.mega-marquee {
  overflow: hidden;
  padding: 74px 0 80px;
  background: var(--paper);
  color: var(--black);
  border-bottom: 1px solid var(--line);
}

.marquee-row {
  --base-shift: -90px;
  --scroll-shift: 0px;
  --hover-shift: 0px;
  display: flex;
  align-items: center;
  width: max-content;
  transform: translate3d(
    calc(var(--base-shift) + var(--scroll-shift) + var(--hover-shift)),
    0,
    0
  );
  transition: color 180ms ease;
  will-change: transform;
  white-space: nowrap;
}

.marquee-row-b {
  --base-shift: -330px;
}

.mega-marquee span,
.mega-marquee i {
  display: inline-block;
  font-size: clamp(74px, 13vw, 170px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.07em;
  transition:
    color 180ms ease,
    transform 260ms ease;
}

.mega-marquee i {
  margin: 0 44px;
  font-weight: 300;
}

.mega-marquee:hover {
  cursor: ew-resize;
}

.mega-marquee:hover .marquee-row-a span:nth-of-type(odd),
.mega-marquee:hover .marquee-row-b span:nth-of-type(even) {
  color: var(--plum);
}

.mega-marquee:hover i {
  transform: translateX(0.08em);
}

.names-field {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(144, 119, 147, 0.88), rgba(144, 119, 147, 0.88)),
    url("./assets/studio-red-close.png") center / cover;
  border-bottom: 1px solid var(--line-light);
}

.down-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 62px;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
}

.down-row span {
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 30px;
  transform: translateY(var(--arrow-shift, 0));
  transition: color 180ms ease;
  animation: arrow-drop 1.8s ease-in-out infinite;
}

.down-row span:nth-child(2) {
  animation-delay: 120ms;
}

.down-row span:nth-child(3) {
  animation-delay: 240ms;
}

.down-row span:nth-child(4) {
  animation-delay: 360ms;
}

.names-field:hover .down-row span {
  color: var(--acid);
}

.names {
  max-width: 980px;
  margin: 120px auto 0;
  padding: 0 22px 80px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1.08;
  text-align: center;
}

.names span {
  display: inline;
  font-weight: 400;
}

.names span:not(:last-child)::after {
  content: "  ";
}

.program-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--black);
  border-bottom: 1px solid var(--line);
}

.program-media article {
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.program-media article:last-child {
  border-right: 0;
}

.program-media img {
  height: clamp(260px, 24vw, 380px);
  min-height: 0;
  border-bottom: 1px solid var(--line);
}

.program-media article:first-child img {
  object-position: 58% 45%;
}

.program-media article:nth-child(3) img {
  object-position: 48% 42%;
}

.program-media div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}

.program-media p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.program-media h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.03;
}

.guide-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  color: var(--black);
}

.guide-card img {
  min-height: 560px;
}

.guide-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 86px);
  border-left: 1px solid var(--line);
}

.artist-news {
  background: var(--paper);
  color: var(--black);
}

.section-link {
  display: block;
  overflow: hidden;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: clamp(32px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
  white-space: nowrap;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
}

.artist-grid article {
  display: grid;
  grid-template-rows: minmax(340px, 48vw) auto;
  padding: 0;
  border-right: 1px solid var(--line);
}

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

.artist-grid article > img {
  min-height: 360px;
  border-bottom: 1px solid var(--line);
}

.artist-grid article:first-child > img {
  object-position: 58% 44%;
}

.artist-grid article:last-child > img {
  object-position: 48% 45%;
}

.artist-grid article > div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(32px, 5vw, 64px);
}

.artist-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(48px, 6vw, 92px);
}

.artist-grid .date {
  margin: 0;
  line-height: 1.25;
}

.artist-grid p:not(.date) {
  color: rgba(22, 26, 29, 0.74);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.artist-embeds {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.embed-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.embed-card:last-child {
  border-right: 0;
}

.embed-frame,
.behance-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-embed button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.youtube-embed button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-embed button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 26, 29, 0.02), rgba(22, 26, 29, 0.56)),
    linear-gradient(90deg, rgba(22, 26, 29, 0.5), rgba(22, 26, 29, 0));
}

.youtube-embed button span {
  position: absolute;
  left: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  background: var(--pink);
  color: var(--black);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.youtube-embed button:hover span {
  color: var(--plum);
  transform: translateX(6px);
}

.behance-preview {
  color: var(--white);
  isolation: isolate;
}

.behance-preview img {
  position: absolute;
  inset: 0;
}

.behance-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 26, 29, 0.1), rgba(22, 26, 29, 0.72)),
    linear-gradient(90deg, rgba(22, 26, 29, 0.5), rgba(22, 26, 29, 0.05));
}

.behance-preview span {
  position: absolute;
  left: clamp(22px, 4vw, 46px);
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 2;
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.embed-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(28px, 4.5vw, 58px);
}

.embed-copy .date {
  margin: 0;
  color: var(--plum);
  font-weight: 700;
  line-height: 1.25;
}

.embed-copy h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 4.4vw, 62px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.embed-copy p:not(.date) {
  margin: 0;
  color: rgba(22, 26, 29, 0.72);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.12;
}

.embed-copy a {
  width: fit-content;
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.register-block {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  background: var(--paper);
  color: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.register-track {
  --register-shift: 0px;
  --register-hover: 0px;
  position: relative;
  left: 0;
  top: 0;
  display: grid;
  align-content: center;
  gap: 42px;
  min-width: 0;
  padding: 72px 0;
  overflow: hidden;
  color: var(--black);
  font-size: clamp(78px, 13vw, 166px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: translate3d(
    calc(var(--register-shift) + var(--register-hover)),
    0,
    0
  );
  will-change: transform;
}

.register-track span {
  display: block;
  animation: register-pulse 2.6s ease-in-out infinite;
}

.register-track span:nth-child(2) {
  animation-delay: 160ms;
}

.register-track span:nth-child(3) {
  animation-delay: 320ms;
}

.register-track span:nth-child(4) {
  animation-delay: 480ms;
}

.register-block:hover {
  cursor: ew-resize;
}

.register-block:hover .register-track span {
  color: var(--plum);
}

.register-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  align-content: center;
  padding: 96px clamp(32px, 7vw, 92px);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.register-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 6vw, 88px);
}

.register-copy p {
  color: var(--plum);
}

.register-copy a {
  color: var(--black);
}

.details {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 132px);
  background: var(--black);
  color: var(--white);
}

.details h2 {
  color: var(--white);
}

.details dl {
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.details dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-light);
}

dd {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1;
}

dd a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

a[href*="register"],
.register-copy a,
.hero-actions a,
.hero-countdown a {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

a[href*="register"]:hover,
.register-copy a:hover,
.hero-actions a:hover,
.hero-countdown a:hover {
  transform: translateX(4px);
}

@keyframes ticket-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-178px);
  }
}

@keyframes arrow-drop {
  0%,
  100% {
    transform: translateY(calc(var(--arrow-shift, 0px) - 2px));
  }

  50% {
    transform: translateY(calc(var(--arrow-shift, 0px) + 8px));
  }
}

@keyframes register-pulse {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(18px);
  }
}

@media (max-width: 980px) {
  .ticket-strip {
    display: flex;
  }

  .ticket-strip span:nth-child(n + 5) {
    display: inline-flex;
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .nav-bar nav,
  .nav-meta {
    display: none;
  }

  .brand img {
    width: 110px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 300px 24px 26px;
  }

  .hero-countdown {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }

  .hero-facts {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-facts span {
    justify-content: flex-start;
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-facts span:last-child {
    border-bottom: 0;
  }

  .news-panel {
    padding: 0;
  }

  .news-panel article,
  .guide-card,
  .artist-grid,
  .artist-embeds,
  .program-media,
  .details {
    grid-template-columns: 1fr;
  }

  .news-panel article {
    border-left: 0;
    border-right: 0;
  }

  .guide-card > div,
  .artist-grid article {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .embed-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .embed-card:last-child {
    border-bottom: 0;
  }

  .artist-grid article {
    grid-template-rows: minmax(380px, 58vw) auto;
  }

  .program-media article {
    grid-template-rows: auto 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program-media article:last-child {
    border-bottom: 0;
  }

  .register-copy {
    margin-left: 0;
    padding: 260px 24px 70px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .ticket-strip {
    display: flex;
  }

  .ticket-strip span:nth-child(n + 4) {
    display: inline-flex;
  }

  .step-mask {
    width: 184px;
    height: 126px;
    background:
      linear-gradient(var(--black), var(--black)) 0 0 / 60px 126px no-repeat,
      linear-gradient(var(--black), var(--black)) 60px 0 / 60px 96px no-repeat,
      linear-gradient(var(--black), var(--black)) 120px 0 / 60px 66px no-repeat;
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-summary {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero-actions a {
    justify-content: center;
  }

  .news-panel h2,
  .guide-card h2,
  .details h2,
  .register-copy h2 {
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .program-media h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .mega-marquee {
    padding: 46px 0;
  }

  .mega-marquee span,
  .mega-marquee i {
    font-size: clamp(56px, 21vw, 92px);
  }

  .mega-marquee i {
    margin: 0 22px;
  }

  .names {
    margin-top: 88px;
    text-align: left;
  }

  .down-row span {
    padding-left: 20px;
  }

  .guide-card img,
  .news-panel img,
  .artist-grid article > img {
    min-height: 390px;
  }

  .program-media img {
    height: 390px;
  }

  .artist-grid h2 {
    font-size: clamp(48px, 17vw, 80px);
  }

  .register-block {
    min-height: auto;
  }

  .register-track {
    display: none;
  }

  .register-copy {
    width: 100%;
    padding: 58px 22px;
  }

  .details {
    padding: 58px 22px;
  }

  .details dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
