/* ===== TOKENS ===== */
:root {
  --c-bg:       #0d0d0d;
  --c-surface:  #161616;
  --c-border:   #262626;
  --c-text:     #e8e4dc;
  --c-muted:    #8a8680;
  --c-accent:   #e8410a;   /* burnt-orange — dirt & speed */
  --c-accent2:  #f5c518;   /* caution yellow */
  --c-white:    #ffffff;

  --f-display:  'Impact', 'Arial Narrow', Arial, sans-serif;
  --f-body:     'Helvetica Neue', Helvetica, Arial, sans-serif;

  --r-card:     4px;
  --shadow:     0 2px 24px rgba(0,0,0,.5);

  --ease-out:   cubic-bezier(.22,.68,0,1.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem 2rem;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: .08em;
  color: var(--c-white);
}
.nav__logo span { color: var(--c-accent); }

.nav__links {
  display: flex; align-items: center; gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--c-white); }
.nav__cta {
  padding: .45rem 1rem;
  border: 1px solid var(--c-accent) !important;
  color: var(--c-accent) !important;
  border-radius: var(--r-card);
  transition: background .2s, color .2s !important;
}
.nav__cta:hover { background: var(--c-accent) !important; color: var(--c-white) !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,65,10,.12) 0%, transparent 70%),
    linear-gradient(160deg, #0d0d0d 40%, #1a0e08 100%);
}
.hero__dust {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(232,65,10,.4) 0%, transparent 100%),
    radial-gradient(circle 1px at 80% 70%, rgba(245,197,24,.3) 0%, transparent 100%),
    radial-gradient(circle 2px at 55% 20%, rgba(232,65,10,.2) 0%, transparent 100%);
  opacity: .6;
}
.hero__content { position: relative; z-index: 1; max-width: 680px; }

.hero__eyebrow {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--c-accent);
  -webkit-text-stroke: 0;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  position: relative; z-index: 1;
  display: flex; gap: 3rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--c-accent2);
  line-height: 1;
}
.stat__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-top: .2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.6rem;
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--r-card);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-accent); color: var(--c-white); }
.btn--primary:hover { background: #c73508; }

.btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-border); }
.btn--ghost:hover { border-color: var(--c-text); color: var(--c-white); }

.btn--outline { background: transparent; color: var(--c-accent2); border-color: var(--c-accent2); }
.btn--outline:hover { background: var(--c-accent2); color: #0d0d0d; }

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; }
.section--dark { background: var(--c-surface); }
.section--accent {
  background: linear-gradient(135deg, #1a0a04 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(232,65,10,.3);
  border-bottom: 1px solid rgba(232,65,10,.3);
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--c-white);
  margin-bottom: .75rem;
}
.section__lead { color: var(--c-muted); font-size: 1.05rem; margin-bottom: 3rem; max-width: 560px; }

/* ===== CONTAINER ===== */
.container { max-width: 1120px; margin: 0 auto; }
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.container--center { text-align: center; }
.container--center .section__lead { margin-left: auto; margin-right: auto; }

/* ===== GRID ===== */
.grid--4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 2rem 1.5rem;
  transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 52px; height: 52px;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}
.card__icon svg,
.card__icon i svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.card h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-white);
  margin-bottom: .5rem;
}
.card p { color: var(--c-muted); font-size: .9rem; line-height: 1.6; }

/* ===== EVENTS ===== */
.events { display: flex; flex-direction: column; gap: 1px; }
.event {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.event:first-child { border-top: 1px solid var(--c-border); }
.event__date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px;
  font-style: normal;
}
.event__day {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--c-accent);
}
.event__month {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
}
.event__info { flex: 1; }
.event__info h3 { font-size: 1rem; font-weight: 700; color: var(--c-white); margin-bottom: .25rem; }
.event__info p { font-size: .875rem; color: var(--c-muted); }
.event .btn { white-space: nowrap; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about__text p { color: var(--c-muted); margin-bottom: 1rem; max-width: 480px; }
.about__text .btn { margin-top: 1rem; }

/* Animated wheel — signature element */
.about__visual { display: flex; justify-content: center; align-items: center; }
.wheel {
  position: relative;
  width: 260px; height: 260px;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wheel { animation: none; } }

.wheel__rim {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 10px solid var(--c-border);
  box-shadow: 0 0 0 2px var(--c-accent), inset 0 0 0 2px var(--c-accent);
}
.wheel__spoke,
.wheel__spoke--2,
.wheel__spoke--3 {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 50%;
  background: var(--c-border);
  transform-origin: top center;
  margin-left: -1px;
}
.wheel__spoke   { transform: rotate(0deg)   translateY(-50%) scaleY(-1); height: 110px; }
.wheel__spoke--2{ transform: rotate(60deg)  translateY(-50%) scaleY(-1); height: 110px; }
.wheel__spoke--3{ transform: rotate(120deg) translateY(-50%) scaleY(-1); height: 110px; }

/* Three more spokes via pseudo */
.wheel__spoke::after,
.wheel__spoke--2::after,
.wheel__spoke--3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: inherit;
  transform: rotate(180deg);
}

.wheel__hub {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.wheel__hub::after {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 20px var(--c-accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--c-border);
}
.footer__inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer__inner p { color: var(--c-muted); font-size: .8rem; margin-right: auto; }
.footer__inner nav { display: flex; gap: 1.5rem; }
.footer__inner nav a { font-size: .8rem; color: var(--c-muted); transition: color .2s; }
.footer__inner nav a:hover { color: var(--c-white); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed; inset: 0; top: 56px;
    flex-direction: column; justify-content: center;
    background: rgba(13,13,13,.97);
    font-size: 1.25rem;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .hero__stats { flex-wrap: wrap; gap: 2rem; }
  .container--split { grid-template-columns: 1fr; }
  .about__visual { display: none; }

  .event { flex-wrap: wrap; }
  .event .btn { width: 100%; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__inner p { margin-right: 0; }
}
