:root {
  --cream: #f4eddf;
  --ink: #171715;
  --red: #ef3f2f;
  --yellow: #f0d847;
  --max: 1500px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: white;
  color: black;
}
.skip:focus {
  transform: none;
}
.nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 104px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw;
  color: white;
  transition: background 0.2s;
}
.nav.is-stuck {
  position: fixed;
  height: 78px;
  background: rgba(23, 23, 21, 0.94);
  backdrop-filter: blur(10px);
}
.nav__logo img {
  display: block;
  width: 92px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__ticket {
  padding: 13px 16px;
  background: var(--yellow);
  color: var(--ink);
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #a61212;
  color: white;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 0, 0, 0.86),
      rgba(25, 0, 0, 0.3) 58%,
      rgba(0, 0, 0, 0.12)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 30%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(850px, 92vw);
  flex-direction: column;
  justify-content: center;
  padding: 140px 4vw 90px;
}
.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero h1,
.intro h2,
.practical h2,
.tickets h2 {
  margin: 20px 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.07em;
}
.hero h1 {
  font-size: clamp(68px, 11vw, 170px);
  line-height: 0.76;
}
.hero__intro {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.35;
}
.countdown {
  display: grid;
  width: min(560px, 100%);
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}
.countdown > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 12px 12px 0;
}
.countdown strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1;
}
.countdown span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  width: fit-content;
  min-width: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.button--cream {
  background: var(--cream);
  color: var(--ink);
}
.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.16);
  color: white;
}
.button--ghost:hover {
  background: rgba(0, 0, 0, 0.34);
}
.is-disabled {
  cursor: not-allowed;
  opacity: 0.68;
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2.3fr 1fr;
  gap: 4vw;
  align-items: start;
  padding: 130px 4vw 100px;
}
.intro h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.86;
}
.intro > p:last-child {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.55;
}
.lineup-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  gap: clamp(45px, 7vw, 120px);
  align-items: center;
  padding: 90px 7vw 120px;
  background: #efd9b8;
}
.lineup-poster {
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(62, 28, 10, 0.2);
  transform: rotate(-1.2deg);
}
.lineup-poster img {
  width: 100%;
  height: auto;
}
.lineup-copy h2 {
  margin: 20px 0 30px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--red);
  font-size: clamp(62px, 8.5vw, 132px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.07em;
}
.lineup-date {
  margin: 0 0 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.lineup-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 23, 21, 0.38);
}
.lineup-copy li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(23, 23, 21, 0.38);
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.lineup-copy small {
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2vw;
  padding: 0 1.2vw 130px;
}
.gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: #d6c7b2;
}
.gallery .gallery__wide {
  grid-column: span 8;
}
.gallery img {
  width: 100%;
  height: 42vw;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery__wide img {
  height: 52vw;
}
.gallery figure:hover img {
  transform: scale(1.02);
}
.practical {
  padding: 100px 4vw 120px;
  background: var(--ink);
  color: var(--cream);
}
.practical__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
  padding-top: 55px;
}
.practical h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.78;
}
.practical dl {
  margin: 0;
}
.practical dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.practical dl div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}
.tickets {
  padding: 90px 4vw 110px;
  background: var(--red);
  color: var(--cream);
}
.tickets > .section-label {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.tickets__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8vw;
  padding-top: 65px;
}
.tickets h2 {
  margin: 0;
  font-size: clamp(90px, 16vw, 230px);
  line-height: 0.72;
}
.tickets__grid > div {
  padding-top: 15px;
}
.tickets__grid p {
  max-width: 520px;
  margin: 0 0 38px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.35;
}
.partners {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4vw;
  padding: 70px 4vw;
  background: var(--cream);
}
.partners p {
  margin: 0;
}
.partners > p:last-child {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  color: #6c655b;
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 65px 4vw 35px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
footer img {
  width: 120px;
  filter: brightness(0) invert(1);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 28px;
}
footer > p {
  justify-self: end;
  margin: 0;
}
@media (max-width: 760px) {
  .nav {
    height: 84px;
    padding-inline: 6vw;
  }
  .nav__logo img {
    width: 70px;
  }
  .nav__links {
    gap: 14px;
  }
  .nav__links > a:not(.nav__ticket) {
    display: none;
  }
  .hero__content {
    padding-inline: 6vw;
  }
  .hero h1 {
    font-size: clamp(58px, 19vw, 92px);
  }
  .hero__intro {
    margin-bottom: 23px;
  }
  .countdown {
    margin-bottom: 22px;
  }
  .countdown > div {
    padding-right: 5px;
  }
  .countdown strong {
    font-size: clamp(26px, 9vw, 40px);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .button {
    width: 100%;
  }
  .hero__scroll {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr;
    padding: 90px 6vw 70px;
  }
  .intro h2 {
    font-size: clamp(50px, 16vw, 82px);
  }
  .lineup-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 75px 6vw 85px;
  }
  .lineup-poster {
    width: min(88vw, 520px);
    margin-inline: auto;
  }
  .lineup-copy h2 {
    font-size: clamp(62px, 19vw, 100px);
  }
  .lineup-copy li {
    font-size: clamp(21px, 7vw, 34px);
  }
  .gallery {
    gap: 2vw;
    padding: 0 2vw 85px;
  }
  .gallery figure,
  .gallery .gallery__wide {
    grid-column: span 6;
  }
  .gallery figure:nth-child(3n) {
    grid-column: span 12;
  }
  .gallery img,
  .gallery__wide img {
    height: 78vw;
  }
  .gallery figure:nth-child(3n) img {
    height: 108vw;
  }
  .practical,
  .tickets {
    padding-inline: 6vw;
  }
  .practical__grid,
  .tickets__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .practical h2 {
    font-size: clamp(82px, 27vw, 140px);
  }
  .practical dl div {
    grid-template-columns: 90px 1fr;
  }
  .tickets h2 {
    font-size: clamp(95px, 29vw, 150px);
  }
  .partners {
    grid-template-columns: 1fr;
    padding-inline: 6vw;
  }
  footer {
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding-inline: 6vw;
  }
  .socials {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: flex-start;
  }
  footer > p {
    align-self: end;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .gallery img,
  .button {
    transition: none;
  }
}
