@font-face {
  font-family: "Crawl Display";
  src: url("assets/fonts/monument-extended-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crawl Display";
  src: url("assets/fonts/monument-extended-bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crawl Display";
  src: url("assets/fonts/monument-extended-ultrabold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crawl Sans";
  src: url("assets/fonts/body-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crawl Sans";
  src: url("assets/fonts/body-sans-bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crawl Accent";
  src: url("assets/fonts/handelson-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #00133d;
  --rust: #0036b4;
  --cream: #fff3a6;
  --pale: #fff9c9;
  --red: #0036b4;
  --coral: #2e63d9;
  --gold: #f8d906;
  --blue: #0036b4;
  --deep-blue: #001d68;
  --soft-blue: #e9efff;
  --soft-yellow: #fff9c9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Crawl Sans", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.75rem);
  line-height: 1.28;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.section {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8.5rem) 0;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(980px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

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

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

.pale {
  background: var(--soft-yellow);
  color: var(--ink);
}

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

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

.hero {
  min-height: 650px;
  padding: clamp(1.5rem, 3vw, 2.8rem) 0 clamp(4rem, 7vw, 6.5rem);
  background: var(--blue);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.site-logo {
  width: min(100%, 980px);
  margin: 0 auto;
}

h1,
.section-title,
.when h2 {
  margin: 0;
  font-family: "Crawl Display", Impact, sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  color: var(--cream);
  font-size: clamp(3.4rem, 7.2vw, 6.5rem);
}

.tagline {
  margin: clamp(2rem, 4vw, 3.5rem) 0 1.2rem;
  color: var(--white);
  font-family: "Crawl Display", Impact, sans-serif;
  font-size: clamp(1.1rem, 1.75vw, 1.7rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.logo-row img {
  width: clamp(62px, 7vw, 84px);
  aspect-ratio: 1;
  object-fit: cover;
}

.when {
  background: var(--deep-blue);
  min-height: 640px;
  display: grid;
  place-items: center;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(310px, 80vw);
  min-height: 70px;
  margin: 0 0 3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

.when h2 {
  color: var(--cream);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.intro {
  max-width: 820px;
  margin: 2.6rem auto 0;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

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

.cream {
  color: var(--cream);
}

.gold {
  color: var(--gold);
}

.split p {
  max-width: 650px;
  margin: 1.8rem 0 0;
  font-weight: 500;
}

.dark-copy {
  color: var(--ink);
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.3rem;
  margin: 2.2rem 0;
  max-width: 620px;
}

.venue-centered {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 1.3rem) / 2);
}

.button-grid a,
.friend-list a,
.primary-cta,
.screening-title,
.faq-list h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue);
  font-family: "Crawl Display", Impact, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.feature {
  justify-self: center;
  width: min(100%, 470px);
}

.booth {
  width: min(100%, 430px);
}

.seats {
  width: min(100%, 560px);
  align-self: end;
}

.carpet {
  width: min(100%, 640px);
}

.computer {
  width: min(100%, 520px);
}

.popcorn {
  width: min(100%, 430px);
}

.friend-list {
  display: grid;
  gap: 1rem;
  max-width: 630px;
  margin-top: 2.2rem;
}

.itinerary {
  color: var(--white);
}

.itinerary .section-title {
  margin-bottom: 3.6rem;
}

.screening {
  margin: 0 0 2.4rem;
}

.screening p {
  margin: 1.3rem auto 0;
  text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
}

.screening p a {
  font-weight: 800;
}

.screening-title {
  min-height: 74px;
  background: var(--gold);
  color: var(--blue);
  font-size: clamp(1.05rem, 1.8vw, 1.75rem);
}

.primary-cta {
  display: inline-flex;
  min-width: min(360px, 100%);
  background: var(--gold);
}

.tickets-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  max-width: none;
}

.tickets-grid a {
  flex: 0 0 min(360px, 100%);
  width: min(360px, 100%);
  min-height: 64px;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
}

.steps {
  display: grid;
  gap: 1.8rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}

.steps span {
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue);
  font-family: "Crawl Display", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.faq {
  color: var(--white);
}

.faq-kicker {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
}

.faq .section-title {
  margin-bottom: 1.6rem;
}

.faq > .wrap > p {
  max-width: 760px;
  margin: 0.8rem auto;
}

.faq-list {
  display: grid;
  gap: 1.3rem;
  margin-top: 3.5rem;
}

.faq-list article {
  display: grid;
  gap: 1rem;
}

.faq-list h3 {
  margin: 0;
  min-height: 66px;
  color: var(--blue);
  font-size: clamp(1rem, 1.9vw, 1.6rem);
}

.faq-list p {
  max-width: 900px;
  margin: 0 auto 1rem;
}

@media (max-width: 860px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin-top: 0;
  }

  .split-grid {
    gap: 2.5rem;
  }

  .feature {
    max-height: 440px;
  }

  .itinerary .section-title,
  .center-text {
    text-align: left;
  }

  .screening p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.1rem);
  }

  .tagline {
    margin-top: 1.4rem;
  }

  .label {
    min-height: 54px;
    margin-bottom: 2rem;
  }

  .button-grid {
    grid-template-columns: 1fr;
  }

  .venue-centered {
    width: 100% !important;
  }

  .tickets-grid {
    display: grid;
  }

  .tickets-grid a {
    width: 100%;
  }

  .button-grid a,
  .friend-list a,
  .primary-cta,
  .screening-title,
  .faq-list h3 {
    min-height: 58px;
    padding: 0.7rem 1rem;
  }

  .steps li {
    grid-template-columns: 68px 1fr;
    gap: 1rem;
  }

  .steps span {
    width: 64px;
    font-size: 2.2rem;
  }

}
