:root {
  --orange: #e59643;
  --teal: #1f7e8f;
  --brown: #4a362e;
  --black: #111515;
  --paper: #f2eee7;
  --blue: #6f879a;
  --ink: #241c18;
  --muted: #726861;
  --white: #fffaf1;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: rgba(17, 21, 21, 0.82);
  border-bottom: 1px solid rgba(229, 150, 67, 0.32);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

.brand img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  transform: scale(1.04);
  transform-origin: center;
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(242, 238, 231, 0.28);
  background: transparent;
  color: var(--paper);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 1rem;
  display: none;
  min-width: 210px;
  padding: 0.75rem;
  background: var(--black);
  border: 1px solid rgba(229, 150, 67, 0.38);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 0.8rem 1rem;
  color: var(--paper);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.section-dark,
.section-paper {
  position: relative;
  overflow: hidden;
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 15%, rgba(31, 126, 143, 0.28), transparent 26rem),
    linear-gradient(180deg, #101413, #0b0f0f);
}

.section-paper {
  background:
    linear-gradient(180deg, rgba(242, 238, 231, 0.96), rgba(242, 238, 231, 0.9)),
    repeating-linear-gradient(22deg, rgba(74, 54, 46, 0.05) 0 1px, transparent 1px 15px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1rem;
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding-top: 6rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 21, 21, 0.18), rgba(17, 21, 21, 0.78) 68%, #111515 100%),
    url("assets/hero-action.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  color: var(--paper);
  font-family: "wausau", "Sancreek", "Rye", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.65rem, 11.6vw, 8.2rem);
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.65);
}

h2 {
  font-family: "wausau", "Sancreek", "Rye", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.15rem, 8vw, 4.8rem);
  color: inherit;
}

h3 {
  margin-bottom: 0.75rem;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.65rem, 6vw, 2.45rem);
  letter-spacing: 0.04em;
}

.hero-kicker {
  margin: 1rem 0;
  max-width: 760px;
  color: var(--orange);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 5vw, 2.3rem);
  letter-spacing: 0.045em;
}

.hero-copy {
  max-width: 720px;
  margin: 0 0 1.6rem;
  color: rgba(242, 238, 231, 0.94);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 2px solid transparent;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 12px 0 rgba(7, 53, 60, 0.86);
}

.button-secondary {
  border-color: var(--teal);
  color: var(--paper);
  background: rgba(17, 21, 21, 0.38);
}

.split {
  display: grid;
  gap: 2rem;
}

.countdown-section p,
.video-section p {
  max-width: 620px;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.countdown div {
  padding: 1rem;
  text-align: center;
  background: var(--black);
  color: var(--paper);
  border: 1px solid rgba(229, 150, 67, 0.4);
}

.countdown strong {
  display: block;
  color: var(--orange);
  font-family: "wausau", "Sancreek", "Rye", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 12vw, 4rem);
  line-height: 1;
}

.countdown span {
  font-family: "Bebas Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.event-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.event-card {
  background: rgba(242, 238, 231, 0.08);
  border: 1px solid rgba(242, 238, 231, 0.12);
}

.event-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: var(--paper);
}

.event-card div {
  padding: 1.15rem;
}

.event-card p,
.contact p {
  margin: 0;
  color: rgba(242, 238, 231, 0.78);
}

.ticket-cta {
  border-top: 1px solid rgba(229, 150, 67, 0.32);
  border-bottom: 1px solid rgba(229, 150, 67, 0.32);
  background:
    linear-gradient(90deg, rgba(31, 126, 143, 0.34), rgba(17, 21, 21, 0.88)),
    #111515;
}

.cta-inner {
  display: grid;
  gap: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  justify-items: center;
}

.cta-inner h2 {
  max-width: 11ch;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
  border: 6px solid var(--black);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.sponsor-grid img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 0.9rem;
  background: rgba(242, 238, 231, 0.07);
  border: 1px solid rgba(242, 238, 231, 0.13);
}

.sponsorship-hero {
  padding-top: 6rem;
}

.sponsorship-inner {
  display: grid;
  gap: 1.5rem;
}

.sponsorship-inner h1 {
  max-width: 12ch;
}

.sponsorship-intro {
  display: grid;
  gap: 0.7rem;
  max-width: 920px;
  color: rgba(242, 238, 231, 0.9);
  font-size: clamp(1.08rem, 2.5vw, 1.45rem);
  font-weight: 700;
}

.sponsorship-intro p {
  margin: 0;
}

.packages-grid {
  display: grid;
  gap: 1rem;
}

.package-card {
  padding: 1.1rem;
  background: rgba(255, 250, 241, 0.78);
  border-left: 4px solid var(--teal);
}

.package-card.is-sold {
  border-left-color: var(--orange);
}

.package-kicker {
  margin: 0 0 0.45rem;
  color: var(--orange);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.package-card h2 {
  color: var(--brown);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: 0.03em;
}

.package-card h2 span {
  color: #d71920;
}

.package-card h2 small {
  font-size: 0.58em;
}

.package-card p,
.package-card li {
  color: #352b26;
  font-size: 1.02rem;
}

.package-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

.rules-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.rules-list article {
  padding: 1rem;
  background: rgba(255, 250, 241, 0.72);
  border-left: 4px solid var(--orange);
}

.rules-list h3 {
  color: var(--brown);
}

.rules-list p {
  margin: 0.45rem 0 0;
  color: #463b34;
}

address {
  display: grid;
  gap: 0.5rem;
  margin: 1.35rem 0;
  font-style: normal;
  color: rgba(242, 238, 231, 0.86);
}

address a {
  color: var(--orange);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(242, 238, 231, 0.08);
  border: 1px solid rgba(242, 238, 231, 0.14);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--paper);
  font-family: "Bebas Neue", Arial, sans-serif;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 4px solid var(--paper);
  padding: 1rem;
  color: var(--paper);
  background: #050707;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 126, 143, 0.7);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.88rem;
}

.site-footer {
  background: #050707;
  color: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.footer-inner img {
  width: 110px;
  margin: 0 auto;
  border-radius: 50%;
}

.footer-inner h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 8vw, 3rem);
}

.social-links {
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links a {
  color: var(--orange);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  color: var(--paper);
  background: var(--teal);
  border: 1px solid rgba(242, 238, 231, 0.3);
  box-shadow: var(--shadow);
}

.cookie-banner h2 {
  margin: 0 0 0.3rem;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .button-primary {
  background: var(--orange);
  color: #15110f;
  box-shadow: 0 12px 0 rgba(7, 53, 60, 0.86);
}

[hidden] {
  display: none !important;
}

@media (min-width: 720px) {
  .site-header {
    padding: 0.75rem 2rem;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 88px;
    height: 88px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.55rem 0.65rem;
  }

  .section-inner {
    padding: 6rem 2rem;
  }

  .hero-content {
    padding: 0 2rem 5rem;
  }

  .split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sponsor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .cookie-banner {
    left: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    max-width: 680px;
  }
}

@media (min-width: 1024px) {
  .site-nav a {
    font-size: 1.3rem;
  }

  .sponsor-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
