/* ============================================================================
   HOMETOWN HANGOUT — DESIGN SYSTEM
   A retro-modern "noon to midnight" street-party theme.
   Concept: a vinyl record (the logo) spinning over downtown Ingersoll, with a
   warm cream daytime body that slips into night-tone hero & footer sections.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette (pulled from the vinyl logo + sunset street-party brief) */
  --ink:        #211b26;   /* deep charcoal-aubergine text */
  --ink-soft:   #5a5260;
  --cream:      #fbf4e9;   /* warm off-white background */
  --cream-2:    #f4ead9;
  --night:      #16110f;   /* near-black night, matches logo ground */
  --night-2:    #241823;

  --teal:       #18b6a6;   /* the logo's stars */
  --teal-br:    #2fd3c0;
  --coral:      #ff5a5f;
  --orange:     #ff8a3c;
  --gold:       #ffc53d;
  --sky:        #4ea8de;

  --paper-card: #fffaf2;
  --line:       #e7d9c4;

  /* Type */
  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-script:  "Pacifico", cursive;
  --f-body:    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius:    20px;
  --radius-lg: 30px;
  --shadow:    0 18px 50px -22px rgba(33, 27, 38, 0.40);
  --shadow-lg: 0 36px 80px -32px rgba(33, 27, 38, 0.55);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --expo:      cubic-bezier(0.16, 1, 0.3, 1);   /* signature "expo out" easing */

  --sunset: linear-gradient(120deg, var(--coral), var(--orange) 45%, var(--gold));
}

/* ---------- Lenis smooth scroll (inertia) ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--teal-br);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; border-radius: 0 0 12px 12px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.container { width: min(var(--container), 100% - 2.6rem); margin-inline: auto; }
.ic { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .78rem; color: var(--coral); margin-bottom: .9rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.section__lead {
  margin-top: 1rem; max-width: 56ch; color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}
.section__head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: 100px;
  position: relative; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  will-change: transform;
}
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--small { padding: .6rem 1.1rem; font-size: .92rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--sunset); color: #2a1206;
  box-shadow: 0 14px 30px -12px rgba(255, 122, 60, .7);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(120deg, var(--gold), var(--coral));
  opacity: 0; transition: opacity .3s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(255, 90, 95, .75); }
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--cream);
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); border-color: var(--teal-br); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s var(--ease);
  padding: .55rem 0;
}
.nav__inner {
  width: min(var(--container), 100% - 2.6rem); margin-inline: auto;
  display: flex; align-items: center; gap: 1.2rem;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.nav__logo {
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.6);
  transition: transform .6s var(--ease);
}
.nav__brand:hover .nav__logo { transform: rotate(180deg); }
.nav__brand-text {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: .92rem; line-height: .96; letter-spacing: .03em;
  color: var(--cream); transition: color .4s var(--ease);
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-weight: 600; font-size: .96rem; color: var(--cream);
  position: relative; padding: .3rem 0; transition: color .4s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--sunset); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--expo);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta {
  color: #2a1206; background: var(--sunset);
  box-shadow: 0 10px 22px -12px rgba(255, 122, 60, .7);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(255, 90, 95, .75); }

/* Scrolled (over the cream body) */
.nav.is-scrolled {
  background: rgba(251, 244, 233, .88);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 10px 30px -18px rgba(33,27,38,.4);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled .nav__brand-text,
.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__progress {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 0%;
  background: var(--sunset); border-radius: 0 3px 3px 0;
  transition: width .1s linear;
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__toggle span {
  width: 26px; height: 2.5px; background: var(--cream); border-radius: 3px;
  transition: transform .3s var(--ease), opacity .2s, background .3s;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle[aria-expanded="true"] span { background: var(--cream); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: linear-gradient(160deg, var(--night), var(--night-2));
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; width: min(80%, 320px); }
.mobile-menu a {
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.8rem;
  color: var(--cream); letter-spacing: .02em;
  opacity: 0; transform: translateY(18px);
}
.mobile-menu.is-open a { animation: menuIn .5s var(--ease) forwards; }
.mobile-menu.is-open a:nth-child(1){animation-delay:.05s}
.mobile-menu.is-open a:nth-child(2){animation-delay:.10s}
.mobile-menu.is-open a:nth-child(3){animation-delay:.15s}
.mobile-menu.is-open a:nth-child(4){animation-delay:.20s}
.mobile-menu.is-open a:nth-child(5){animation-delay:.25s}
.mobile-menu.is-open a:nth-child(6){animation-delay:.30s}
.mobile-menu.is-open a:nth-child(7){animation-delay:.35s}
.mobile-menu .btn { margin-top: .6rem; font-family: var(--f-body); font-size: 1rem; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

/* =====================================================================
   HERO
   ===================================================================== */
/* Pin container: its extra height is the scroll distance the sticky hero
   stays pinned for (Tres Mares-style). ~1.75 screens = "tasteful". */
.hero-pin { position: relative; height: 175vh; }

.hero {
  position: sticky; top: 0; height: 100svh;
  /* "safe center" falls back to start-alignment (respecting padding-top) whenever
     stacked content is taller than the viewport, instead of overflowing past the
     top edge and under the fixed nav — happens on short laptop windows too, not
     just phones. */
  display: flex; flex-direction: column; align-items: center; justify-content: safe center;
  text-align: center; color: var(--cream);
  padding: 8.5rem 1.3rem 4.5rem; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #3a1d2e 0%, var(--night-2) 42%, var(--night) 100%);
}
/* JS drives translate/opacity/scale on these as you scroll through .hero-pin */
.hero__inner, .hero__scroll { will-change: transform, opacity; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
/* Concept hero photo (downtown Ingersoll at sunset). A real <img> (not a CSS
   background) so search engines can pick it up as the page's thumbnail image
   instead of falling back to some other prominent <img> further down the page. */
.hero__photo {
  position: absolute; inset: -4%; width: 108%; height: 108%; max-width: none;
  object-fit: cover; object-position: center 38%;
  opacity: .62; will-change: transform;
}
/* Scrim keeps the headline readable over the photo while letting the sunset glow through */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 95% at 50% 36%, rgba(20,15,13,.5) 0%, rgba(20,15,13,.8) 78%),
    linear-gradient(180deg, rgba(20,15,13,.72) 0%, rgba(20,15,13,.32) 42%, rgba(20,15,13,.88) 100%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
  will-change: transform;
}
.hero__glow--1 { width: 55vmax; height: 55vmax; top: -22vmax; left: -10vmax;
  background: radial-gradient(circle, rgba(255,138,60,.65), transparent 62%); }
.hero__glow--2 { width: 48vmax; height: 48vmax; bottom: -20vmax; right: -12vmax;
  background: radial-gradient(circle, rgba(24,182,166,.55), transparent 62%); }

/* concentric vinyl grooves */
.hero__grooves {
  position: absolute; top: 50%; left: 50%; width: 150vmin; height: 150vmin;
  transform: translate(-50%, -50%);
  background: repeating-radial-gradient(circle at center,
    rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 9px);
  opacity: .5; will-change: transform;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}
/* downtown skyline silhouette — hidden now that the real photo provides the skyline */
.hero__skyline {
  display: none;
  position: absolute; left: 0; right: 0; bottom: 0; height: 28vh; min-height: 150px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='240' preserveAspectRatio='none'%3E%3Cpath fill='%23120c0b' d='M0 240V150h60v-40h50V70h40v40h44V90h60v60h40v-30h54v50h40v-70h46v70h40v-40h60v40h44v-60h50v60h40v-34h56v34h40v-50h60v50h44v-26h50v26h40v-44h60v44h44v40H0z'/%3E%3C/svg%3E") repeat-x bottom / 1440px 240px;
  opacity: .85; will-change: transform;
}
.hero__skyline::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--night) 6%, transparent 70%);
}
.hero__noise {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 2; max-width: 960px; }
.hero__eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  font-size: .8rem; color: var(--gold);
  padding: .5rem 1.1rem; border: 1px solid rgba(255,197,61,.4); border-radius: 100px;
  margin-bottom: 1.1rem; background: rgba(255,197,61,.08);
}
.hero__title {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem); line-height: .96; letter-spacing: .01em;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}
.hero__title .reveal-line { display: block; overflow: visible; }
.hero__title-script {
  font-family: var(--f-script); text-transform: none; font-weight: 400;
  font-size: clamp(2.1rem, 5.9vw, 4.2rem); line-height: 1.34;
  background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0; padding-bottom: .48em; overflow: visible;
}
.hero__proceeds {
  margin: 1.4rem auto 0; max-width: 52ch; font-weight: 700;
  font-size: clamp(.9rem, 1.5vw, 1.05rem); color: var(--gold);
}
.hero__subhead {
  margin: 1.2rem auto 0; max-width: 60ch; font-size: clamp(1.02rem, 1.9vw, 1.25rem);
  color: rgba(251,244,233,.85);
}
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem 1rem; margin-top: 1.3rem; font-weight: 600;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--cream); }
.hero__meta-item .ic { color: var(--teal-br); }
.hero__meta-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(251,244,233,.4); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.7rem; }

/* Countdown */
.countdown { display: flex; gap: .7rem; justify-content: center; margin-top: 1.9rem; }
.countdown__unit {
  min-width: 76px; padding: .85rem .6rem .65rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; backdrop-filter: blur(6px);
}
.countdown__num {
  display: block; font-family: var(--f-display); font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1; color: var(--cream); font-variant-numeric: tabular-nums;
}
.countdown__lbl { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-br); }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(251,244,233,.7);
}
.hero__scroll-line { width: 1.5px; height: 38px; background: linear-gradient(var(--teal-br), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--cream); animation: scrollPulse 1.8s var(--ease) infinite; }
@keyframes scrollPulse { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(300%)} }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden;
  padding: .85rem 0; border-block: 3px solid var(--teal);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: .04em;
  will-change: transform;
}
.marquee__track span { padding-inline: .2rem; }
.marquee__star { color: var(--gold); font-family: var(--f-body); }

/* =====================================================================
   SECTION base
   ===================================================================== */
.section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; position: relative; }

/* =====================================================================
   SNAPSHOT
   ===================================================================== */
.snapshot__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.snap-card {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.snap-card::before {
  content:""; position:absolute; top:0; left:0; width:100%; height:4px;
  background: var(--sunset); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.snap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.snap-card:hover::before { transform: scaleX(1); }
.snap-card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(24,182,166,.16), rgba(255,138,60,.16));
  color: var(--teal); margin-bottom: 1rem;
}
.snap-card__icon .ic { width: 26px; height: 26px; }
.snap-card__label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); font-weight: 700; }
.snap-card__value { font-weight: 700; font-size: 1.05rem; margin-top: .25rem; line-height: 1.3; }

/* =====================================================================
   CONTEST (in-page section — draw happens on-site, no entry form)
   ===================================================================== */
.contest-section { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 50% -10%, #3a1d2e 0%, var(--night-2) 42%, var(--night) 100%); color: var(--cream); }
.contest-section__badge {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(110px, 13vw, 190px); height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.45)); opacity: .96;
}
.contest-section__badge--left { left: clamp(1rem, 4vw, 3.5rem); }
.contest-section__badge--right { right: clamp(1rem, 4vw, 3.5rem); }
@media (max-width: 1080px) { .contest-section__badge { display: none; } }
.contest-section .eyebrow { color: var(--gold); justify-content: center; }
.contest-section .eyebrow::before { background: var(--gold); }
.contest-section__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.contest-section .section__title { margin-top: .6rem; }
.contest-section__script {
  display: block; font-family: var(--f-script); text-transform: none; font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.3; margin-top: .2rem;
  background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contest-section .section__lead { margin: 1.2rem auto 0; max-width: 52ch; color: rgba(251,244,233,.85); }
.contest-section__meta { margin-top: 1.5rem; }
.contest-section__rules { margin-top: 1.4rem; font-size: .85rem; color: rgba(251,244,233,.55); }

/* =====================================================================
   SPONSOR TICKER
   ===================================================================== */
.sponsor-band { padding-top: clamp(2.4rem, 5vw, 4rem); background: var(--cream); }
.sponsor-band__head { text-align: center; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.sticker {
  overflow: hidden; position: relative;
  background: var(--ink);
  padding: 2.6rem 0;
}
.sticker::before,
.sticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 2; pointer-events: none;
}
.sticker::before { left:  0; background: linear-gradient(to right, var(--ink), transparent); }
.sticker::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.sticker__track {
  display: flex; width: max-content;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .sticker__track { animation: none; } }
.sticker:hover .sticker__track { animation-play-state: paused; }
.sticker__set { display: flex; align-items: center; }
.sticker__item {
  display: flex; align-items: center;
  padding: 0 2.6rem;
}
.sticker__stack {
  display: flex; flex-direction: column; align-items: center; gap: .52rem;
}
.sticker__stack .sticker__founding-label {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: .05em; font-size: .83rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
}
.sticker__stack .sticker__mainstreet-label {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: .05em; font-size: .83rem; font-weight: 700;
  color: var(--teal-br); white-space: nowrap;
}
.sticker__item img {
  width: 9.75rem; height: 9.75rem; object-fit: contain;
  border-radius: 18px; padding: .98rem;
}
.sticker__item span {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.37rem; font-weight: 700;
  color: rgba(255,255,255,.65); white-space: nowrap;
}
.sticker__dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--coral); opacity: .7;
}
.sticker__img--bg  { background: #fff; padding: .52rem; }
.sticker__img--round { border-radius: 50% !important; padding: 0 !important; object-fit: cover !important; }
.sticker__img--tight { object-fit: cover !important; }
.sticker__img--founding {
  box-shadow: 0 0 0 3px var(--gold), 0 6px 20px -6px rgba(255,197,61,.6);
}
.sticker__img--mainstreet {
  box-shadow: 0 0 0 3px var(--teal-br), 0 6px 20px -6px rgba(47,211,192,.6);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.about__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__copy p[data-about-body] { display: none; }
.about__subtitle {
  margin-top: .7rem; font-weight: 700; font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: var(--coral);
}
.about__copy .about__para { margin-top: 1.1rem; font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--ink-soft); }
.about__copy .about__para:first-of-type { color: var(--ink); }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 1.6rem 1.3rem;
  position: relative; overflow: hidden;
}
.stat:nth-child(2){ background: var(--coral); color: #fff; }
.stat:nth-child(3){ background: var(--teal); color: #06302c; }
.stat:nth-child(4){ background: var(--gold); color: #3a2700; }
.stat__value { font-family: var(--f-display); font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1; }
.stat__label { margin-top: .4rem; font-weight: 600; font-size: .92rem; opacity: .92; }

/* =====================================================================
   WHAT TO EXPECT
   ===================================================================== */
.expect__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feature {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.4rem; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.feature__glow {
  position: absolute; width: 150px; height: 150px; border-radius: 50%; filter: blur(40px);
  opacity: 0; top: -40px; right: -40px; transition: opacity .45s var(--ease);
  background: var(--sunset);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature:hover .feature__glow { opacity: .35; }
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.06); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  color: #fff; margin-bottom: 1.1rem; transition: transform .4s var(--ease); position: relative; z-index: 1;
}
.feature:nth-child(8n+1) .feature__icon{ background: var(--coral); }
.feature:nth-child(8n+2) .feature__icon{ background: var(--orange); }
.feature:nth-child(8n+3) .feature__icon{ background: var(--gold); color:#3a2700; }
.feature:nth-child(8n+4) .feature__icon{ background: var(--sky); }
.feature:nth-child(8n+5) .feature__icon{ background: var(--teal); }
.feature:nth-child(8n+6) .feature__icon{ background: var(--coral); }
.feature:nth-child(8n+7) .feature__icon{ background: var(--orange); }
.feature:nth-child(8n) .feature__icon{ background: var(--sky); }
.feature__icon .ic { width: 28px; height: 28px; }
.feature h3 { font-size: 1.18rem; position: relative; z-index: 1; }
.feature p { margin-top: .5rem; color: var(--ink-soft); font-size: .96rem; position: relative; z-index: 1; }

/* =====================================================================
   EVENT MAP
   ===================================================================== */
.map { background: linear-gradient(180deg, var(--night), var(--night-2)); color: var(--cream); }
.map .eyebrow { color: var(--gold); }
.map .eyebrow::before { background: var(--gold); }
.map .section__lead { color: rgba(251,244,233,.7); }
.map__layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: stretch; }

.map__stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px;
  background: #1c1320; border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 80px rgba(0,0,0,.5);
}
.map__stage img { width: 100%; height: 100%; object-fit: cover; }
/* Real map image mode: light frame, full image visible, with hover hotspots */
.map__stage.has-image {
  background: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.mapimg { position: relative; width: 100%; line-height: 0; }
.map__stage.has-image .mapimg img { width: 100%; height: auto; display: block; border-radius: 10px; object-fit: initial; }

/* ---- Branded vector map ---- */
.map__stage.has-vector {
  background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 0; overflow: hidden; min-height: 0;
}
.mapsvg { width: 100%; height: auto; display: block; }
.mapsvg__bg { fill: var(--cream); }
.mapsvg__lot { fill: #ece0cd; stroke: #d8c7ac; stroke-width: 1.5; stroke-dasharray: 6 7; }
.mapsvg__lotlabel { fill: #b3a489; font-family: var(--f-display); font-weight: 400; font-size: 34px; letter-spacing: 4px; }
.mapsvg__lotlabel--sm { font-size: 20px; letter-spacing: 2px; }
.mapsvg__roads path { fill: none; stroke: #e2d3b8; stroke-width: 34; stroke-linecap: round; stroke-linejoin: round; }
.mapsvg__roads--top path { stroke: #fffdf8; stroke-width: 25; }
.mapsvg__river { fill: none; stroke: #8fd3ea; stroke-width: 13; stroke-linecap: round; opacity: .9; }
.mapsvg__road-label { fill: #9a8b76; font-family: var(--f-display); font-weight: 400; font-size: 18px; letter-spacing: 1.5px; }
.mapsvg__closed rect { fill: var(--coral); }
.mapsvg__closed text { fill: #fff; font-family: var(--f-body); font-weight: 700; font-size: 12px; letter-spacing: 1px; }
.mapsvg__compass circle { fill: #fff; stroke: #e2d3b8; stroke-width: 1.5; }
.mapsvg__compass path { fill: var(--coral); }
.mapsvg__compass text { fill: var(--ink); font-family: var(--f-display); font-weight: 400; font-size: 15px; }

.mapmark { cursor: pointer; }
.mapmark__num { font-family: var(--f-display); font-weight: 400; font-size: 21px; pointer-events: none; }
.mapmark__dot { transition: r .35s var(--expo); }
.mapmark__ring { transition: r .35s var(--expo), opacity .35s var(--expo), stroke-width .35s var(--expo); }
.mapmark:hover .mapmark__dot, .mapmark.is-active .mapmark__dot { r: 19; }
.mapmark:hover .mapmark__ring, .mapmark.is-active .mapmark__ring { r: 26; stroke-width: 3; opacity: .55; }
/* Stylized street layout placeholder */
.mapviz { position: absolute; inset: 0; }
.mapviz__street {
  position: absolute; background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
}
.mapviz__street--thames { left: 14%; top: 8%; bottom: 8%; width: 22%; border-radius: 14px; }
.mapviz__street--water { left: 14%; right: 12%; top: 44%; height: 20%; border-radius: 14px; }
.mapviz__label {
  position: absolute; font-family: var(--f-display); text-transform: uppercase;
  font-size: .8rem; letter-spacing: .1em; color: rgba(251,244,233,.5);
}
.mapviz__pin {
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50% 50% 50% 2px; rotate: 45deg;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.6); transition: transform .3s var(--ease);
}
.mapviz__pin .ic { rotate: -45deg; width: 16px; height: 16px; color: #fff; }
.mapviz__pin b { rotate: -45deg; font-family: var(--f-display); font-weight: 400; font-size: 15px; color: #fff; line-height: 1; }
.mapviz__pin:hover, .mapviz__pin.is-active { transform: translate(-50%, -60%) scale(1.18); z-index: 3; }
.mapviz__pin[data-color="coral"]{ background: var(--coral); }
.mapviz__pin[data-color="orange"]{ background: var(--orange); }
.mapviz__pin[data-color="gold"]{ background: var(--gold); }
.mapviz__pin[data-color="gold"] .ic{ color:#3a2700; }
.mapviz__pin[data-color="gold"] b{ color:#3a2700; }
.mapviz__pin[data-color="sky"]{ background: var(--sky); }
.mapviz__pin[data-color="teal"]{ background: var(--teal); }

/* Transparent hover hotspots placed over the printed numbers on the real map */
.mapviz__pin--hot {
  width: 9%; aspect-ratio: 1; height: auto; min-width: 30px;
  rotate: 0deg; border-radius: 50%; background: transparent; box-shadow: none;
}
.mapviz__pin--hot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: currentColor; opacity: 0; transform: scale(.5);
  transition: opacity .35s var(--expo), transform .35s var(--expo);
}
.mapviz__pin--hot:hover, .mapviz__pin--hot.is-active {
  transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 0 0 3px currentColor; z-index: 4;
}
.mapviz__pin--hot:hover::before, .mapviz__pin--hot.is-active::before { opacity: .26; transform: scale(1); }
.mapviz__pin--hot[data-color="coral"]{ color: var(--coral); background: transparent; }
.mapviz__pin--hot[data-color="orange"]{ color: var(--orange); background: transparent; }
.mapviz__pin--hot[data-color="gold"]{ color: var(--gold); background: transparent; }
.mapviz__pin--hot[data-color="sky"]{ color: var(--sky); background: transparent; }
.mapviz__pin--hot[data-color="teal"]{ color: var(--teal); background: transparent; }
.mapviz__compass {
  position: absolute; right: 16px; top: 16px; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-display); font-size: .7rem; color: rgba(251,244,233,.6);
}
.map__soon {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,197,61,.14); border: 1px solid rgba(255,197,61,.4); color: var(--gold);
  padding: .4rem .9rem; border-radius: 100px; font-size: .76rem; font-weight: 700; letter-spacing: .04em;
}

.map__list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; align-content: start; }
.zone {
  display: flex; gap: .8rem; align-items: flex-start; text-align: left;
  padding: .85rem .9rem; border-radius: 14px; width: 100%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: background .3s var(--ease), border-color .3s, transform .3s var(--ease);
}
.zone:hover, .zone.is-active { background: rgba(255,255,255,.1); border-color: var(--teal-br); transform: translateX(3px); }
.zone__icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.zone__icon[data-color="coral"]{ background: var(--coral); }
.zone__icon[data-color="orange"]{ background: var(--orange); }
.zone__icon[data-color="gold"]{ background: var(--gold); color:#3a2700; }
.zone__icon[data-color="sky"]{ background: var(--sky); }
.zone__icon[data-color="teal"]{ background: var(--teal); }
.zone__icon .ic { width: 20px; height: 20px; }
.zone__num { font-family: var(--f-display); font-weight: 400; font-size: 1.15rem; line-height: 1; }
.zone__title { font-weight: 700; font-size: .98rem; }
.zone__area { font-size: .8rem; color: var(--gold); font-weight: 600; }
.zone__blurb { font-size: .82rem; color: rgba(251,244,233,.62); margin-top: .15rem; }

/* =====================================================================
   SCHEDULE / TIMELINE
   ===================================================================== */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 0; }
.timeline::before {
  content: ""; position: absolute; left: 120px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(var(--gold), var(--coral), var(--teal)); border-radius: 3px;
}
.tl {
  position: relative; display: grid; grid-template-columns: 104px 1fr; gap: 1.4rem;
  padding: .9rem 0; align-items: start;
}
.tl__time { text-align: right; font-family: var(--f-display); font-size: 1.1rem; color: var(--ink); padding-top: .15rem; letter-spacing: .02em; }
.tl__dot {
  position: absolute; left: 120px; top: .65rem; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--cream);
  border: 3px solid var(--coral); z-index: 1;
}
.tl[data-phase="dusk"] .tl__dot { border-color: var(--orange); }
.tl[data-phase="night"] .tl__dot { border-color: var(--teal); }
.tl__card {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.2rem; box-shadow: var(--shadow); margin-left: 1.4rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tl__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tl__title { font-weight: 700; font-size: 1.05rem; }
.tl__desc { color: var(--ink-soft); font-size: .92rem; margin-top: .2rem; }
.tl__badge {
  display: inline-block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: .15rem .55rem; border-radius: 100px; margin-bottom: .35rem;
}
.tl[data-phase="day"] .tl__badge { background: rgba(255,197,61,.2); color: #9a6a00; }
.tl[data-phase="dusk"] .tl__badge { background: rgba(255,138,60,.2); color: #b8480e; }
.tl[data-phase="night"] .tl__badge { background: rgba(24,182,166,.18); color: #0c7065; }

/* =====================================================================
   LINEUP
   ===================================================================== */
.lineup__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.lineup-card {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
}
.lineup-card__area { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); font-weight: 700; }
.lineup-card__stage {
  font-family: var(--f-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-top: .3rem; margin-bottom: 1.1rem;
}
.lineup-card__acts { display: flex; flex-direction: column; }
.lineup-card__row {
  display: flex; align-items: baseline; gap: .8rem;
  padding: .65rem 0; border-top: 1px solid var(--line);
}
.lineup-card__row:first-child { border-top: none; }
.lineup-card__time {
  font-family: var(--f-display); font-weight: 400; color: var(--teal);
  font-size: .95rem; flex: none; width: 4.6rem;
}
.lineup-card__act { font-weight: 700; }

/* =====================================================================
   GET INVOLVED
   ===================================================================== */
.involved { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.involved__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.invo {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.invo::after {
  content:""; position:absolute; inset:0; border-radius: inherit; padding: 2px;
  background: var(--sunset);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease);
}
.invo:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.invo:hover::after { opacity: 1; }
.invo__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--orange)); color: #fff; margin-bottom: 1.1rem;
}
.invo:nth-child(3n+2) .invo__icon { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.invo:nth-child(3n) .invo__icon { background: linear-gradient(135deg, var(--gold), var(--orange)); color:#3a2700; }
.invo__icon .ic { width: 28px; height: 28px; }
.invo h3 { font-size: 1.25rem; }
.invo p { color: var(--ink-soft); margin-top: .5rem; font-size: .96rem; flex: 1; }
.invo .btn { margin-top: 1.2rem; }
.invo__link {
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: var(--coral);
}
.invo__link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.invo__link .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.invo:hover .invo__link .ic { transform: translateX(5px); }

/* =====================================================================
   SPONSORS
   ===================================================================== */
.sponsors__tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 3rem; }
.tier {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier--featured {
  background: var(--ink); color: var(--cream); border-color: transparent; transform: scale(1.03);
}
.tier--featured:hover { transform: scale(1.03) translateY(-6px); }
.tier__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sunset); color: #2a1206; font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.tier__name { font-family: var(--f-display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: .02em; }
.tier__price { font-family: var(--f-display); font-size: 2.4rem; color: var(--coral); margin: .4rem 0 1.1rem; }
.tier--featured .tier__price { color: var(--gold); }
.tier__perks { display: grid; gap: .6rem; }
.tier__perks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; }
.tier__perks li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.sponsors__wall { text-align: center; padding: 2.4rem 0 1rem; border-top: 1px solid var(--line); }
.sponsors__wall-label { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 1.4rem; }
.sponsors__logos { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.sponsor-chip {
  padding: .7rem 1.2rem; border-radius: 100px; background: var(--paper-card);
  border: 1px solid var(--line); font-weight: 700; color: var(--ink-soft);
  transition: transform .3s var(--ease), color .3s, border-color .3s, background .3s;
}
.sponsor-chip:hover { transform: translateY(-3px); color: var(--ink); border-color: var(--coral); background: #fff; }
.sponsor-chip img { max-height: 30px; transition: transform .6s var(--expo); }
.sponsor-chip:hover img { transform: scale(1.08); }
.sponsor-chip--round { background: transparent; border-color: transparent; padding: 0; }
.sponsor-chip--round img.is-round { max-height: 44px; width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.sponsor-chip--founding { box-shadow: 0 0 0 3px var(--gold); border-color: transparent; }
.sponsor-chip--mainstreet { box-shadow: 0 0 0 3px var(--teal-br); border-color: transparent; }

/* Reusable media-zoom: slow image scale on hover, like the reference's cards.
   Wrap an <img> in <span class="media-zoom"> (or apply to any figure holding an image). */
.media-zoom { overflow: hidden; display: block; }
.media-zoom img { transition: transform 1.2s var(--expo); will-change: transform; }
.media-zoom:hover img { transform: scale(1.06); }
.sponsors__cta { text-align: center; margin-top: 2.4rem; }
.involved__cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Rotating sponsor wheel (scroll-driven) ---------- */
.swheel { position: relative; height: 240vh; }            /* scroll length = rotation */
@media (max-width: 620px) { .swheel { height: 170vh; } }  /* shorter pin on phones */
.swheel__sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding-top: clamp(5.5rem, 11vh, 7.5rem); /* clear the fixed nav */
}
.swheel__eyebrow {
  margin-top: 0;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
}
.swheel__current {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3.2rem); line-height: 1; letter-spacing: .01em;
  margin-top: .5rem; min-height: 1.1em; text-align: center;
  background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .35s var(--expo);
}
.swheel__founding-tag {
  margin-top: .35rem; font-weight: 700; font-size: clamp(.75rem, 1.6vw, .95rem);
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-align: center;
}
.swheel__mainstreet-tag {
  margin-top: .35rem; font-weight: 700; font-size: clamp(.75rem, 1.6vw, .95rem);
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal-br); text-align: center;
}
.swheel__circle {
  position: absolute; left: 50%; top: 0;
  transform-origin: 50% 50%; will-change: transform;
}
.swheel__item {
  position: absolute; will-change: transform;
  display: grid; place-items: center;
}
.swheel__tile {
  width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
  background: var(--paper-card); border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; place-items: center; padding: .8rem;
  transition: transform .5s var(--expo), box-shadow .5s var(--expo), border-color .5s, opacity .5s var(--expo);
}
.swheel__tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.swheel__tile:has(img) { background: #fff; padding: .5rem; }
/* Round logos (e.g. OGC) carry their own ring artwork — no white pill, cropped tight */
.swheel__tile--round:has(img) { background: transparent; padding: 0; }
.swheel__tile--round { border-radius: 50%; }
.swheel__tile img.is-round { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; border-radius: 50%; }
.swheel__tile--founding { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,197,61,.45), var(--shadow); }
.swheel__tile--mainstreet { border-color: var(--teal-br); box-shadow: 0 0 0 3px rgba(47,211,192,.45), var(--shadow); }
.swheel__tile span {
  font-family: var(--f-display); text-transform: uppercase; text-align: center;
  font-size: clamp(.75rem, 1.5vw, 1rem); line-height: 1; letter-spacing: .02em; color: var(--ink);
}
.swheel__item.is-active .swheel__tile {
  transform: scale(1.12); border-color: transparent; box-shadow: var(--shadow-lg);
}
.swheel__item.is-active .swheel__tile span { color: var(--coral); }
.swheel__item.is-active .swheel__tile--founding {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,197,61,.5), var(--shadow-lg);
}
.swheel__item.is-active .swheel__tile--mainstreet {
  border-color: var(--teal-br); box-shadow: 0 0 0 3px rgba(47,211,192,.5), var(--shadow-lg);
}
/* fade tiles further from top-centre (set via JS opacity too, this is the base) */

/* Reduced-motion / fallback: plain centered logo row */
.swheel.is-static { height: auto; }
.swheel.is-static .swheel__sticky { position: static; height: auto; overflow: visible; padding-bottom: 1rem; }
.swheel.is-static .swheel__circle { position: static; transform: none !important; }
.swheel.is-static .swheel__static-logos { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq__inner { max-width: 820px; }
.faq__list { display: grid; gap: .8rem; }
.faq-item { background: var(--paper-card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.is-open { border-color: var(--coral); box-shadow: var(--shadow); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; text-align: left; font-weight: 700; font-size: 1.06rem;
}
.faq-item__icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%; position: relative;
  background: rgba(255,90,95,.12); transition: background .3s, transform .3s var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--coral); border-radius: 2px;
}
.faq-item__icon::before { width: 12px; height: 2.5px; }
.faq-item__icon::after { width: 2.5px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-item__icon { background: var(--coral); transform: rotate(90deg); }
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after { background: #fff; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.faq-item__a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: linear-gradient(170deg, var(--night), var(--night-2)); color: var(--cream); }
.contact .eyebrow { color: var(--gold); }
.contact .eyebrow::before { background: var(--gold); }
.contact .section__lead { color: rgba(251,244,233,.72); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__email {
  display: inline-block; margin-top: 1.4rem; font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--teal-br); letter-spacing: .01em;
  border-bottom: 2px solid transparent; transition: border-color .3s;
}
.contact__email:hover { border-color: var(--teal-br); }
.contact__socials { display: flex; gap: .7rem; margin-top: 1.8rem; }
.contact__socials a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.contact__socials a:hover { transform: translateY(-4px); background: var(--teal); border-color: var(--teal); color: #06302c; }
.contact__socials .ic { width: 22px; height: 22px; }

.contact__form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1rem;
}
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(251,244,233,.7); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--cream); padding: .8rem 1rem; border-radius: 12px;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.16);
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(251,244,233,.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-br); background: rgba(0,0,0,.4);
}
.field select option { color: #111; }
.field.has-error input, .field.has-error textarea { border-color: var(--coral); }
.form__status { font-weight: 600; min-height: 1.2em; }
.field__hint {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: .9rem 1.1rem; font-size: .92rem; line-height: 1.5;
  color: rgba(251,244,233,.85);
}
.field__hint a { color: var(--teal-br); font-weight: 700; }
.field__hint-link { display: inline-block; margin-top: .6rem; }
.form__status.is-ok { color: var(--teal-br); }
.form__status.is-err { color: var(--coral); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--night); color: var(--cream); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer__logo { width: 120px; height: 120px; border-radius: 50%; box-shadow: 0 10px 30px -8px rgba(0,0,0,.7); }
.footer__tag { margin-top: 1rem; font-family: var(--f-script); font-size: 1.3rem; color: var(--teal-br); max-width: 22ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__col h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1rem; letter-spacing: .06em; color: var(--gold); margin-bottom: .9rem; }
.footer__col p, .footer__col a { display: block; color: rgba(251,244,233,.78); font-size: .94rem; padding: .15rem 0; transition: color .25s; }
.footer__col a:hover { color: var(--teal-br); }
.footer__socials { display: flex; gap: .6rem; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); transition: transform .3s var(--ease), background .3s;
}
.footer__socials a:hover { transform: translateY(-3px); background: var(--teal); color: #06302c; }
.footer__socials .ic { width: 20px; height: 20px; }
.footer__credit {
  width: min(var(--container), 100% - 2.6rem); margin: 0 auto;
  padding-top: 1.8rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
}
.footer__credit-text {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: rgba(251,244,233,.55);
}
/* Wide wordmark on a white card — was a circular ring-logo crop, but the
   current logo is a wide wordmark that a circle crop would butcher. */
.footer__credit-logo {
  display: inline-flex; border-radius: 14px; overflow: hidden;
  background: #fff; padding: .9rem 1.4rem;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.55);
  transition: transform .4s var(--expo), box-shadow .4s var(--expo);
}
.footer__credit-logo img { width: clamp(180px, 34vw, 260px); height: auto; object-fit: contain; display: block; }
.footer__credit-logo:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -14px rgba(0,0,0,.6); }
/* Text-only fallback (no logo set) */
.footer__credit a:not(.footer__credit-logo) {
  font-weight: 700; position: relative; white-space: nowrap;
  background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__credit a:not(.footer__credit-logo)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--sunset); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--expo);
}
.footer__credit a:not(.footer__credit-logo):hover::after { transform: scaleX(1); }

.footer__base {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; margin-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: rgba(251,244,233,.55);
  width: min(var(--container), 100% - 2.6rem); margin-inline: auto;
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
/* Split-text masked word reveal (Tres Mares-style: words rise out of a mask) */
.hh-w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.06em; }
.hh-w__i {
  display: inline-block; transform: translateY(110%);
  transition: transform .85s var(--expo); will-change: transform;
}
[data-split].is-revealed .hh-w__i { transform: none; }

.reveal, .reveal-line, [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal-line { transform: translateY(110%); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.is-visible, .is-visible .reveal-line, [data-reveal].is-visible { opacity: 1 !important; transform: none !important; }
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger children */
[data-stagger].is-visible > * { animation: staggerIn .6s var(--ease) backwards; }

@keyframes staggerIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .snapshot__grid { grid-template-columns: repeat(2, 1fr); }
  .expect__grid { grid-template-columns: repeat(2, 1fr); }
  .involved__grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors__tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .about__inner { grid-template-columns: 1fr; }
  .map__layout { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 70px; }
  /* smaller floor for the safe-center fallback on phones, where content almost
     always overflows the viewport */
  .hero { padding-top: 7.5rem; padding-bottom: 3rem; }
  .snapshot__grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .snap-card { padding: 1.2rem 1rem; }
  .expect__grid { grid-template-columns: 1fr; }
  .lineup__grid { grid-template-columns: 1fr; }
  .involved__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .map__list { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .tl { grid-template-columns: 1fr; gap: .3rem; padding-left: 32px; }
  .tl__time { text-align: left; color: var(--coral); }
  .tl__dot { left: 8px; top: .35rem; }
  .tl__card { margin-left: 0; margin-top: .5rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .countdown__unit { min-width: 64px; }
  .hero__meta-dot { display: none; }
}

@media (max-width: 400px) {
  .footer__cols { grid-template-columns: 1fr; }
  .countdown { gap: .45rem; }
  .countdown__unit { min-width: 58px; padding: .65rem .4rem .5rem; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal, .reveal-line, [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hh-w__i { transform: none !important; transition: none !important; }
  .hero__scroll-line::after { display: none; }
  /* No pinning/parallax for reduced-motion: hero scrolls normally */
  .hero-pin { height: auto; }
  .hero { position: relative; height: auto; min-height: 100svh; }
  .hero__inner, .hero__scroll { transform: none !important; opacity: 1 !important; }
}
