/* Waka's Flock Run */
:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --line: rgba(255,255,255,.1);
  --red: #d11a1a;
  --flame: #ff4500;
  --gold: #f5b400;
  --cream: #faeddd;
  --white: #ffffff;
  --muted: rgba(255,255,255,.66);
  --display: "Bebas Neue", Impact, "Arial Narrow Bold", sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --grad: linear-gradient(100deg, var(--red) 0%, var(--flame) 55%, var(--gold) 120%);
  --ease: cubic-bezier(.2,.7,.2,1);
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
h2 { font-family: var(--display); font-size: clamp(44px, 7vw, 96px); line-height: .92; letter-spacing: .01em; text-transform: uppercase; }
h3 { font-family: var(--display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1; text-transform: uppercase; letter-spacing: .02em; }
p { margin: 0 0 1em; }
::selection { background: var(--flame); color: var(--white); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

.section { padding: clamp(80px, 11vw, 150px) var(--pad); position: relative; }
.section__head { max-width: 900px; margin-bottom: clamp(36px, 5vw, 64px); }
.eyebrow {
  font-family: var(--display); font-size: 18px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 3px; background: var(--grad); vertical-align: middle; margin-right: 12px; border-radius: 2px; }
.lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 720px; margin-top: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-size: 20px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 23px; padding: 18px 34px; }
.btn--sm { font-size: 17px; padding: 10px 18px; }
.btn--red { background: var(--grad); color: var(--white); box-shadow: 0 10px 30px rgba(255,69,0,.28); }
.btn--red:hover { box-shadow: 0 16px 40px rgba(255,69,0,.42); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #ffc531; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad);
  transition: background .35s, backdrop-filter .35s, padding .35s;
}
.nav.is-scrolled { background: rgba(10,10,10,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding-top: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 24px; letter-spacing: .06em; margin-right: auto; }
.nav__brand img { width: 56px; height: auto; filter: drop-shadow(0 0 10px rgba(255,90,0,.7)) drop-shadow(0 0 2px rgba(255,200,120,.5)); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--muted); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--white); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--grad); transition: right .3s var(--ease); }
.nav__links a:hover::after { right: 0; }
.nav__burger { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav__burger span { display: block; height: 2px; background: var(--white); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile { position: fixed; inset: 0; z-index: 40; background: rgba(10,10,10,.96); display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 100px var(--pad) 40px; }
.mobile[hidden] { display: none; }
.mobile a { font-family: var(--display); font-size: 40px; letter-spacing: .04em; text-decoration: none; }
.mobile .btn { font-size: 24px; align-self: flex-start; margin-top: 12px; }
@media (max-width: 900px) {
  .nav__links, .nav .btn { display: none; }
  .nav__burger { display: block; }
}

/* Hero */
.hero { position: relative; min-height: 100svh; display: grid; align-content: end; padding: 120px var(--pad) 36px; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(1.05) contrast(1.05); }
.hero__embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; }
.hero__shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.25) 35%, rgba(10,10,10,.82) 70%, var(--ink) 100%),
  radial-gradient(60% 50% at 20% 80%, rgba(255,69,0,.28), transparent 70%); }
.hero__inner { max-width: 1240px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 0 48px; grid-template-areas: "kicker" "title" "tag" "sub" "next" "cta"; }
.hero__kicker { grid-area: kicker; } .hero__title { grid-area: title; } .hero__tag { grid-area: tag; } .hero__sub { grid-area: sub; } .hero__next { grid-area: next; } .hero__cta { grid-area: cta; }
@media (min-width: 1100px) {
  .hero__inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); grid-template-areas: "kicker kicker" "title next" "tag next" "sub next" "cta next"; align-items: end; }
}
.hero__kicker { font-family: var(--display); font-size: clamp(20px, 2.4vw, 30px); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.hero__title { font-family: var(--display); font-size: clamp(84px, 15vw, 210px); line-height: .84; letter-spacing: .005em; text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 0 .18em; margin-bottom: 18px; }
.hero__word--red { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__tag { font-family: var(--display); font-size: clamp(26px, 3.6vw, 46px); letter-spacing: .06em; text-transform: uppercase; margin: 0 0 10px; }
.hero__tag em { font-style: normal; color: var(--gold); }
.hero__sub { font-size: clamp(17px, 1.7vw, 21px); color: rgba(255,255,255,.8); max-width: 560px; }
.hero__next { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "label city" "date date" "count count"; gap: 2px 14px; align-items: baseline; margin: 28px 0 26px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(10,10,10,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); max-width: 620px; }
.next__label { grid-area: label; font-family: var(--display); letter-spacing: .16em; color: var(--gold); font-size: 16px; }
.next__city { grid-area: city; font-family: var(--display); font-size: clamp(30px, 3.6vw, 42px); line-height: 1; }
.next__date { grid-area: date; color: var(--muted); font-weight: 600; font-size: 15px; }
.next__date span { color: var(--white); margin-left: 8px; }
.countdown { grid-area: count; display: flex; gap: 22px; margin-top: 12px; }
.countdown div { display: grid; text-align: center; }
.countdown b { font-family: var(--display); font-size: clamp(34px, 4vw, 52px); line-height: 1; font-weight: 400; font-variant-numeric: tabular-nums; }
.countdown small { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 1100px) { .hero__next { margin: 0 0 4px auto; align-self: end; width: 100%; max-width: 480px; } }
.hero__stats { display: flex; flex-wrap: wrap; gap: 20px 48px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__stats div { display: grid; }
.hero__stats b { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); line-height: 1; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stats span { font-size: 14px; color: var(--muted); font-weight: 600; }
@media (max-width: 640px) {
  .hero { padding-top: 110px; }
  .countdown { gap: 16px; }
  .hero__cta .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; }
  .btn--lg { font-size: 21px; padding: 16px 26px; }
}

/* Marquee */
.marquee { overflow: hidden; background: var(--grad); color: var(--ink); padding: 14px 0; transform: rotate(-1.2deg) scale(1.02); margin: -10px 0 -6px; }
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; font-family: var(--display); font-size: 26px; letter-spacing: .12em; text-transform: uppercase; align-items: center; }
.marquee__track span { padding: 0 22px; }
.marquee__track i { width: 10px; height: 10px; background: var(--ink); border-radius: 50%; display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Why */
.why__grid { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; max-width: 1240px; margin: 0 auto; }
.why__photo { margin: 0; position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.why__photo img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 20%; }
.why__photo figcaption { position: absolute; left: 16px; bottom: 14px; font-family: var(--display); letter-spacing: .12em; font-size: 15px; background: rgba(10,10,10,.6); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(6px); }
.why__copy h2 { font-size: clamp(40px, 5.4vw, 76px); margin-bottom: 26px; }
.why__copy blockquote { margin: 0; padding-left: 22px; border-left: 4px solid; border-image: var(--grad) 1; font-size: clamp(18px, 1.7vw, 22px); color: rgba(255,255,255,.86); }
.why__copy cite { display: block; font-style: normal; font-family: var(--display); letter-spacing: .14em; color: var(--gold); margin-top: 8px; }
.why__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.why__pills span { border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--muted); }
@media (max-width: 820px) { .why__grid { grid-template-columns: 1fr; } .why__photo { max-width: 440px; } }

/* Run day */
.runday { background: var(--ink-2); }
.timeline { list-style: none; margin: 0; padding: 0; max-width: 1000px; counter-reset: step; }
.tl { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid var(--line); position: relative; }
.tl:last-child { border-bottom: 1px solid var(--line); }
.tl__time { font-family: var(--display); font-size: 21px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.tl--hot .tl__time { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tl__body h3 { margin-bottom: 8px; }
.tl__body p { color: var(--muted); margin: 0; max-width: 620px; }
.tl::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; right: 0; top: 26px; font-family: var(--display); font-size: 56px; line-height: 1; color: rgba(255,255,255,.06); }
@media (max-width: 640px) { .tl { grid-template-columns: 1fr; gap: 6px; } }
.runday__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 56px; }
.runday__strip img { aspect-ratio: 3/4; height: auto; object-fit: cover; border-radius: 14px; width: 100%; transition: transform .6s var(--ease); }
.runday__strip img:nth-child(even) { transform: translateY(24px); }
@media (max-width: 720px) { .runday__strip { grid-template-columns: repeat(2, 1fr); } }

/* Crews */
.crew__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.crew { border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px 26px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.crew:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.25); }
.crew--feature { background: linear-gradient(160deg, rgba(209,26,26,.35), rgba(255,69,0,.12) 60%, rgba(10,10,10,0)); border-color: rgba(255,69,0,.45); }
.crew__pace { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.crew__pace b { font-family: var(--display); font-size: 72px; line-height: 1; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.crew__pace span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.crew p { color: var(--muted); }
.crew ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.crew li { font-size: 14px; font-weight: 600; padding-left: 20px; position: relative; }
.crew li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@media (max-width: 900px) { .crew__grid { grid-template-columns: 1fr; } .crew__pace b { font-size: 56px; } }

/* Atlanta */
.atlanta { background: radial-gradient(70% 60% at 80% 10%, rgba(209,26,26,.22), transparent 70%), var(--ink); }
.atl__grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.atl__video { border-radius: 22px; overflow: hidden; aspect-ratio: 9/16; background: #000; box-shadow: 0 40px 80px rgba(0,0,0,.6); }
.atl__video video { width: 100%; height: 100%; object-fit: cover; }
.atl__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat { border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: grid; gap: 4px; background: rgba(255,255,255,.03); }
.stat b { font-family: var(--display); font-size: clamp(54px, 6vw, 84px); line-height: 1; font-weight: 400; }
.stat span { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.atl__note { grid-column: 1 / -1; color: var(--muted); margin: 6px 0 0; }
@media (max-width: 820px) { .atl__grid { grid-template-columns: 1fr; } .atl__video { max-width: 380px; } }
@media (max-width: 520px) { .atl__stats { grid-template-columns: 1fr; } }
.atl__gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 56px; }
.atl__gallery img { aspect-ratio: 3/4; height: auto; object-fit: cover; border-radius: 12px; width: 100%; }
@media (max-width: 720px) { .atl__gallery { grid-template-columns: repeat(3, 1fr); } .atl__gallery img:nth-child(n+4) { display: none; } }
.partners { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; }
.partners p { margin: 0; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.partners ul { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 0; }
.partners li { font-family: var(--display); font-size: 22px; letter-spacing: .1em; color: rgba(255,255,255,.55); }

/* Cities */
.cities { background: var(--ink-2); }
.city__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city { border: 1px solid var(--line); border-radius: 22px; padding: 28px 26px; display: grid; align-content: start; gap: 8px; background: rgba(255,255,255,.03); position: relative; min-height: 260px; }
.city .btn { justify-self: start; margin-top: auto; white-space: normal; text-align: center; }
.city--next h3 { padding-right: 90px; }
.city__badge { position: absolute; top: 18px; right: 18px; font-family: var(--display); letter-spacing: .14em; font-size: 14px; background: var(--gold); color: var(--ink); padding: 4px 10px; border-radius: 999px; }
.city--next { background: linear-gradient(160deg, rgba(209,26,26,.45), rgba(255,69,0,.12) 60%, rgba(10,10,10,0)); border-color: rgba(255,69,0,.5); }
.city--you { border-style: dashed; }
.city__date { font-weight: 800; margin: 0; }
.city__meta { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
@media (max-width: 1000px) { .city__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .city__grid { grid-template-columns: 1fr; } .city { min-height: 0; } }
.bring { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 72px); margin-top: clamp(64px, 8vw, 110px); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); align-items: start; }
.bring__copy h3 { font-size: clamp(36px, 4.6vw, 60px); margin-bottom: 14px; }
.bring__copy p { color: var(--muted); }
@media (max-width: 820px) { .bring { grid-template-columns: 1fr; } }

/* Forms */
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea, .form select { font: 500 16px/1.4 var(--body); color: var(--white); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 14px 16px; width: 100%; transition: border-color .2s, box-shadow .2s; }
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.35); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,180,0,.18); }
.form select option { color: var(--ink); }
.form textarea { resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form button { justify-self: start; margin-top: 6px; }
.hp { position: absolute !important; left: -9999px; top: -9999px; }
.form__chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.form__chips legend { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; padding: 0; }
.form__chips label { display: inline-block; }
.form__chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.form__chips label > span { display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); font-family: var(--display); letter-spacing: .1em; font-size: 17px; color: var(--white); cursor: pointer; transition: all .2s; }
.form__chips label > input:checked + span { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.form__chips label > input:focus-visible + span { box-shadow: 0 0 0 4px rgba(245,180,0,.3); }
.form__consent { display: grid !important; grid-template-columns: 22px 1fr; gap: 10px !important; align-items: start; text-transform: none !important; letter-spacing: 0 !important; font-weight: 500 !important; font-size: 13px !important; line-height: 1.5; }
.form__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.form--inline { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; }
@media (max-width: 900px) { .form--inline { grid-template-columns: 1fr; } }

/* Join */
.join { background: var(--ink); }
.join__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(32px, 5vw, 64px); border-radius: 28px; background: linear-gradient(135deg, rgba(209,26,26,.9), rgba(255,69,0,.85) 60%, rgba(245,180,0,.9)); position: relative; overflow: hidden; }
.join__inner::after { content: "FLOCK"; position: absolute; right: -2%; bottom: -14%; font-family: var(--display); font-size: clamp(160px, 28vw, 420px); line-height: 1; color: rgba(10,10,10,.08); pointer-events: none; }
.join__copy .eyebrow { color: var(--ink); }
.join__copy .eyebrow::before { background: var(--ink); }
.join__copy h2 { color: var(--ink); margin-bottom: 14px; font-size: clamp(44px, 6vw, 84px); }
.join__copy p { color: rgba(10,10,10,.8); font-weight: 600; }
.join__perks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; color: var(--ink); font-weight: 700; font-size: 15px; }
.join__perks li::before { content: "\2713\00a0\00a0"; }
.form--dark { background: var(--ink); padding: clamp(22px, 3vw, 36px); border-radius: 22px; position: relative; z-index: 1; }
@media (max-width: 900px) { .join__inner { grid-template-columns: 1fr; } }

/* Foundation */
.foundation { background: var(--cream); color: var(--ink); }
.foundation__grid { display: grid; grid-template-columns: minmax(240px, 360px) 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; max-width: 1240px; margin: 0 auto; }
.foundation__logo img { border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,.15); }
.foundation .eyebrow { color: #2f6b2f; }
.foundation .eyebrow::before { background: linear-gradient(90deg, #2f6b2f, #c9a227); }
.foundation .lede { color: rgba(10,10,10,.75); }
.pillars { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 22px; }
.pillars span { font-family: var(--display); letter-spacing: .14em; font-size: 18px; padding: 8px 16px; border-radius: 999px; background: rgba(10,10,10,.06); }
.foundation__tag { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); letter-spacing: .06em; color: #2f6b2f; margin-bottom: 18px; }
.foundation__help { font-size: 14px; color: rgba(10,10,10,.7); border-left: 3px solid #c9a227; padding-left: 14px; max-width: 560px; }
@media (max-width: 820px) { .foundation__grid { grid-template-columns: 1fr; } .foundation__logo { max-width: 320px; } }

/* Merch */
.merch__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tee { text-align: center; }
.tee__art { aspect-ratio: 4/5; border-radius: 22px; border: 1px solid var(--line); display: grid; place-content: center; padding: 30px; background: linear-gradient(180deg, #1b1b1b, #0d0d0d); font-family: var(--display); font-size: clamp(30px, 3.2vw, 44px); line-height: 1; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.tee:hover .tee__art { transform: translateY(-6px) rotate(-1deg); }
.tee__art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 100%, rgba(255,69,0,.25), transparent 70%); }
.tee__art span, .tee__art small { position: relative; }
.tee__art small { display: block; font-size: 16px; letter-spacing: .2em; color: var(--gold); margin-top: 10px; }
.tee--red .tee__art { background: var(--grad); }
.tee--red .tee__art small { color: var(--ink); }
.tee--city .tee__art { background: var(--cream); color: var(--ink); }
.tee h3 { font-size: 26px; }
.tee p { color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 4px 0 0; }
.merch__cta { text-align: center; margin-top: 44px; }
@media (max-width: 760px) { .merch__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* Partners */
.partner { background: var(--ink-2); }
.partner__inner { display: grid; gap: 28px; max-width: 1100px; }
.partner__inner p { color: var(--muted); max-width: 720px; }

/* Footer */
.footer { padding: 64px var(--pad) 32px; border-top: 1px solid var(--line); }
.footer__top { display: flex; align-items: center; gap: 22px; margin-bottom: 40px; flex-wrap: wrap; }
.footer__tag { font-family: var(--display); font-size: 28px; letter-spacing: .08em; text-transform: uppercase; margin: 0; }
.footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 220px)); gap: 28px; margin-bottom: 40px; }
.footer h4 { font-family: var(--display); letter-spacing: .16em; font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.footer__grid a, .footer__grid .soon { display: block; text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.footer__grid a:hover { color: var(--white); }
.footer__grid .soon { opacity: .5; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,.4); margin: 0; }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* City pages */
.hero--city { min-height: 88svh; }
.hero--city .hero__title { font-size: clamp(64px, 11vw, 160px); }
.city__grid h3 a { text-decoration: none; }
.city__grid h3 a:hover { color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: clamp(130px, 16vw, 190px) var(--pad) clamp(40px, 6vw, 70px); background:
  radial-gradient(70% 60% at 15% 0%, rgba(209,26,26,.28), transparent 70%), var(--ink); border-bottom: 1px solid var(--line); }
.page-hero__inner { max-width: 900px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(48px, 8vw, 104px); line-height: .92; text-transform: uppercase; letter-spacing: .01em; text-wrap: balance; }
.page-hero .lede { margin-top: 20px; }

/* ---------- Prose (content pages) ---------- */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(32px, 4vw, 52px); margin: 2em 0 .5em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: rgba(255,255,255,.82); font-size: 17.5px; line-height: 1.75; margin-bottom: 1.1em; }
.prose b { color: var(--gold); font-weight: 800; }

/* ---------- Ticket tiers ---------- */
.tiers { background: var(--ink-2); }
.tier__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 860px) { .tier__grid { grid-template-columns: 1fr; } }
.tier { border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; background: rgba(255,255,255,.03); display: grid; gap: 10px; align-content: start; }
.tier--paid { background: linear-gradient(160deg, rgba(209,26,26,.35), rgba(255,69,0,.10) 60%, rgba(10,10,10,0)); border-color: rgba(255,69,0,.45); }
.tier__price { display: flex; align-items: baseline; gap: 10px; }
.tier__price b { font-family: var(--display); font-size: 68px; line-height: 1; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier__price span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tier ul { margin: 4px 0 8px; padding: 0; list-style: none; display: grid; gap: 8px; }
.tier li { font-size: 14.5px; font-weight: 600; padding-left: 20px; position: relative; color: rgba(255,255,255,.85); }
.tier li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.tier p { color: var(--muted); margin: 0; }
.tier .btn { justify-self: start; margin-top: 6px; }
.tier__note { font-size: 13px !important; margin-top: 8px !important; }
.form--tight { gap: 10px; margin-top: 8px; }
.form--tight label { font-size: 12px; }
.form--tight input { padding: 11px 13px; font-size: 15px; }

/* ---------- FAQ ---------- */
.faqwrap { max-width: 52rem; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--display); font-size: clamp(21px, 2.4vw, 28px); letter-spacing: .02em; text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 30px; color: var(--gold); line-height: 1; transition: transform .3s var(--ease); }
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq__a { padding: 0 0 24px; }
.faq__a p { color: var(--muted); margin: 0; max-width: 42rem; }
.faq__cta { margin-top: 56px; padding: 32px; border-radius: 22px; background: linear-gradient(160deg, rgba(209,26,26,.3), rgba(10,10,10,0)); border: 1px solid rgba(255,69,0,.35); max-width: 52rem; }
.faq__cta p { color: var(--muted); }

/* ---------- Leaderboard ---------- */
.lb { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 10px; }
.lb__row { display: grid; grid-template-columns: 30px 1fr 100px 52px; align-items: center; gap: 12px; font-weight: 700; }
.lb__rank { font-family: var(--display); font-size: 22px; color: var(--gold); }
.lb__bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.lb__bar i { display: block; height: 100%; background: var(--grad); }
.lb__n { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.lb__empty { margin-top: 24px; padding: 22px; border: 1px dashed var(--line); border-radius: 16px; }
.lb__empty p { margin: 0; color: var(--muted); }
.join__perks--dark { color: var(--white); }
.join__perks--dark li::before { content: "\2713\00a0\00a0"; color: var(--gold); }

/* ---------- Gallery ---------- */
.gallerywrap { background: var(--ink-2); }
.form--gate { max-width: 100%; margin-bottom: 36px; padding: 24px; border-radius: 20px; background: linear-gradient(160deg, rgba(209,26,26,.3), rgba(10,10,10,.2)); border: 1px solid rgba(255,69,0,.35); }
.gate__row { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr auto; gap: 14px; align-items: end; }
@media (max-width: 900px) { .gate__row { grid-template-columns: 1fr; } }
.gate__note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }
.gallery { position: relative; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 12px; transition: transform .4s var(--ease), filter .4s; }
.gallery img:hover { transform: scale(1.02); }
.gallery.is-locked { max-height: 460px; overflow: hidden; }
.gallery.is-locked img { filter: blur(9px) saturate(.7) brightness(.6); }
.gallery__veil { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px; text-align: center;
  background: linear-gradient(180deg, rgba(10,10,10,.45), rgba(10,10,10,.92)); }
.gallery__veil p { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); letter-spacing: .05em; text-transform: uppercase; margin: 0; }
.gallery:not(.is-locked) .gallery__veil { display: none; }
.gallery__credit { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* ---------- Crew picker with explanations ---------- */
.form__chips { display: block; }
.form__chips legend { display: block; margin-bottom: 10px; }
.form__chips legend .legend__hint { display: block; padding: 0; border: 0; background: none; font-family: var(--body); font-size: 11.5px; font-weight: 600; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.45); margin-top: 3px; }
.chips__row { display: flex; flex-wrap: wrap; gap: 8px; }
.chips__desc { margin: 12px 0 0; font-size: 13.5px; line-height: 1.55; font-weight: 500; letter-spacing: 0; text-transform: none;
  color: rgba(255,255,255,.72); border-left: 3px solid var(--gold); padding: 2px 0 2px 12px; min-height: 2.6em; }
.form--dark .chips__desc { color: rgba(255,255,255,.75); }

/* ---------- Accessibility + city detail ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.foot-h { font-family: var(--display); letter-spacing: .16em; font-size: 16px; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; }
.local { background: var(--ink-2); }
.local__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .local__grid { grid-template-columns: 1fr; } }
.local article { border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; background: rgba(255,255,255,.03); }
.local article h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 10px; }
.local article p { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.65; }
.local__close { margin-top: 30px; font-family: var(--display); font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: .04em; text-transform: uppercase; color: var(--gold); max-width: 40rem; }
