/* ====== Tokens ====== */
:root {
  --bg-void: #0b0b0c;
  --bg-panel: #141416;
  --bg-panel-2: #1c1c1f;
  --red: #e2201c;
  --red-bright: #ff3b34;
  --red-dim: #4a1210;
  --white: #f3f1ec;
  --mute: #96969c;
  --line: rgba(255, 255, 255, 0.09);

  --font-display: 'Anton', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --container: 1180px;
}

/* ====== Reset ====== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-void);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* subtle grain texture over the void background */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

main { position: relative; z-index: 2; }

/* ====== Hero ====== */
.hero {
  padding: 5.5rem 1.5rem 4rem;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(226,32,28,0.16), transparent 60%),
    var(--bg-void);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red-bright);
  margin: 0 0 1rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--red-bright);
  margin: 0 0 0.5rem;
}

.location {
  font-style: italic;
  color: var(--mute);
  font-size: 1rem;
  margin: 0 0 2.25rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-row-center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1.5px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 rgba(226,32,28,0);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 6px 24px rgba(226,32,28,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--white);
}
.btn-secondary:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-1px);
}

.filesize-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--mute);
}

/* ====== Flyer ====== */
.hero-flyer {
  display: flex;
  justify-content: center;
}
.flyer-link { display: block; }
.flyer-card {
  position: relative;
  width: min(360px, 78vw);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(226,32,28,0.15),
    0 0 60px -10px rgba(226,32,28,0.25);
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}
.flyer-card img { width: 100%; height: auto; }
.flyer-link:hover .flyer-card,
.flyer-link:focus-visible .flyer-card {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 40px 70px -18px rgba(0,0,0,0.75),
    0 0 0 1px rgba(226,32,28,0.3),
    0 0 90px -6px rgba(226,32,28,0.4);
}
.flyer-tap {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,11,12,0.85);
  border: 1px solid rgba(226,32,28,0.4);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  display: none;
}

/* ====== Facts strip ====== */
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
}
.facts-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.fact { border-left: 2px solid var(--red); padding-left: 1.1rem; }
.fact-label {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red-bright);
  margin: 0 0 0.5rem;
}
.fact-body {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}
.fact-body a { color: var(--white); border-bottom: 1px solid var(--red); }
.fact-body a:hover { color: var(--red-bright); }

/* ====== Final CTA ====== */
.cta-final {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}
.cta-final p {
  color: var(--mute);
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* ====== Footer ====== */
footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 1.5rem 2.5rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--mute);
}
.footer-contact {
  font-size: 0.88rem;
  color: var(--mute);
}
.footer-contact a:hover { color: var(--red-bright); }
.footer-contact .divider { margin: 0 0.6rem; opacity: 0.5; }

/* ====== Motion respect ====== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flyer-card, .btn { transition: none; }
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-copy { order: 2; }
  .hero-flyer { order: 1; }
  .cta-row { justify-content: center; }
  .location { margin-bottom: 1.75rem; }
  .facts-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .fact { border-left: none; border-top: 2px solid var(--red); padding-left: 0; padding-top: 0.9rem; }
  .flyer-tap { display: inline-block; }
  .flyer-card { transform: rotate(-2deg); }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .btn { flex: 1 1 auto; }
}
