:root {
  --black: #050303;
  --gold: #f4c857;
  --gold-soft: #ffe28a;
  --gold-deep: #9b6712;
  --ember: #ff5a1f;
  --text: #fff3c1;
  --muted: #d8b65d;
  --line: rgba(244, 200, 87, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;
}

.fire-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: saturate(1.32) contrast(1.2) brightness(0.82);
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  gap: clamp(3rem, 6vw, 6rem);
  padding: clamp(1rem, 3vw, 3rem) clamp(1rem, 4vw, 5rem) clamp(3rem, 7vw, 6rem);
}

.hero,
.route-section {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero {
  min-height: min(100vh, 58rem);
  align-content: center;
  gap: clamp(1rem, 2vw, 1.55rem);
}

.brand-logo {
  width: min(18rem, 56vw);
  height: auto;
  filter: drop-shadow(0 0 1.4rem rgba(244, 200, 87, 0.38));
}

.hero-copy {
  display: grid;
  gap: 0.35rem;
}

.eyebrow {
  margin: 0;
  color: var(--ember);
  font-size: clamp(0.78rem, 1.5vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.95);
}

h1,
h2 {
  margin: 0;
  color: var(--gold-soft);
  text-transform: uppercase;
  text-shadow:
    0 0.16rem 0 var(--gold-deep),
    0 0 1.6rem rgba(0, 0, 0, 0.9);
}

h1 {
  font-size: clamp(2.5rem, 7.5vw, 6.5rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}

.date-text {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.96);
}

.countdown {
    position: fixed;
    top: 50px;
    left: 50px;
  display: grid;
  width: min(100%, 44rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.48rem, 1.3vw, 0.95rem);
}

.time-box {
  display: grid;
  min-height: clamp(4.4rem, 8vw, 5.9rem);
  align-content: center;
  gap: 0.2rem;
  padding: 0.7rem 0.4rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow:
    inset 0 0 1.6rem rgba(244, 200, 87, 0.08),
    0 0.85rem 2.4rem rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(0.25rem);
}

.time-box strong {
  color: var(--gold-soft);
  font-size: clamp(1.65rem, 4.8vw, 3rem);
  line-height: 1;
  text-shadow: 0 0.12rem 0 var(--gold-deep);
}

.time-box span {
  color: var(--muted);
  font-size: clamp(0.66rem, 1.45vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opening-flyer,
.qr-frame {
  margin: 0;
  filter: drop-shadow(0 1.4rem 3rem rgba(0, 0, 0, 0.68));
}

.opening-flyer {
  width: min(92vw, 38rem);
}

.opening-flyer img,
.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.route-section {
  gap: clamp(1rem, 2vw, 1.6rem);
  min-height: 80vh;
  align-content: center;
}

.qr-frame {
    margin-top: 150px;
  width: min(88vw, 42rem);
}

img {
    
  border-radius: 38px;
}

@media (min-width: 1100px) {
  .hero {
    grid-template-columns: minmax(24rem, 0.9fr) minmax(26rem, 0.8fr);
    grid-template-areas:
      "brand flyer"
      "copy flyer"
      "timer flyer";
    column-gap: clamp(3rem, 6vw, 7rem);
    width: min(100%, 92rem);
    margin-inline: auto;
    text-align: left;
    justify-items: start;
  }

  .brand-logo {
    grid-area: brand;
    width: min(24rem, 30vw);
    justify-self: center;
  }

  .hero-copy {
    grid-area: copy;
  }

  .countdown {
    grid-area: timer;
    width: min(100%, 42rem);
  }

  .opening-flyer {
    grid-area: flyer;
    width: min(38vw, 37rem);
    justify-self: center;
  }

  .route-section {
    width: min(100%, 92rem);
    margin-inline: auto;
  }

  .qr-frame {
    width: min(54vw, 46rem);
  }
}

@media (max-width: 700px) {
    .countdown {
    top: 0px;
    left: 0px;
}

img {
  border-radius: 18px;
}
  .page-shell {
    gap: 3rem;
    padding: 1rem 0.8rem 3rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.5rem;
  }

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

  .opening-flyer {
    width: min(100%, 28rem);
  }

  .route-section {
    min-height: auto;
  }

  .qr-frame {
    width: min(100%, 30rem);
  }
}
