/* ============================================
   Red, White & Kaboom — Redesign
   Palette: Navy / Crimson / Cream / Gold
   ============================================ */

:root {
  --navy: #0A1F44;
  --navy-deep: #050F22;
  --crimson: #B22234;
  --crimson-bright: #D63848;
  --cream: #F7F5EE;
  --cream-warm: #EFE8D6;
  --gold: #C9A227;
  --gold-light: #E6C766;
  --ink: #0E1424;
  --muted: #5B6478;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 30px 80px rgba(10, 31, 68, 0.20);

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 8px 24px rgba(178, 34, 52, 0.35);
}
.btn--primary:hover { background: var(--crimson-bright); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(178, 34, 52, 0.45); }
.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline:hover { border-color: white; background: rgba(255, 255, 255, 0.08); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 245, 238, 0.3);
  padding: 10px 20px;
  font-size: 14px;
}
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--small { padding: 10px 22px; font-size: 14px; }

/* Donate CTA — gold pop on crimson background */
.btn--donate {
  background: linear-gradient(135deg, #f4d35e 0%, #c9a227 100%);
  color: #4a2c00;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 34px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  position: relative;
}
.btn--donate span { font-size: 18px; transition: transform 0.25s ease; }
.btn--donate:hover {
  background: linear-gradient(135deg, #ffe27a 0%, #e6c766 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(244, 211, 94, 0.5);
}
.btn--donate:hover span { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, padding 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(5, 15, 34, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
}
.nav__logo-img {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }
.nav__sponsor-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.nav__sponsor-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247, 245, 238, 0.55);
  text-transform: lowercase;
  white-space: nowrap;
}
.nav__sponsor-logo {
  display: block;
  height: 28px;
  width: auto;
  background: white;
  padding: 3px 6px;
  border-radius: 3px;
}
.nav__logo-mark {
  color: var(--gold-light);
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(230, 199, 102, 0.5));
}
.nav__logo-text em { color: var(--crimson-bright); font-style: normal; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__links a {
  position: relative;
  color: rgba(247, 245, 238, 0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--gold-light); }
.nav__links a.is-active { color: var(--gold-light); }
.nav__links a.is-active::after { transform: scaleX(1); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--crimson-bright), var(--gold-light));
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(244, 211, 94, 0.6);
  transition: width 0.08s ease-out;
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 100%, #1a2d5c 0%, var(--navy) 40%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 40px;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(244, 211, 94, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(178, 34, 52, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(10, 31, 68, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #050f22 0%, #0a1f44 60%, #050b1a 100%);
  z-index: 0;
}
#fireworks-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(5, 15, 34, 0.4) 70%),
    linear-gradient(180deg, transparent 60%, var(--navy-deep) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 240, 200, 0.18) 0%, transparent 60%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.08s ease-out;
}
.hero__flash.is-flashing { opacity: 1; transition: opacity 0.4s ease-out; }
.hero__content {
  position: relative;
  z-index: 4;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.hero__eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(230, 199, 102, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
}
.hero__title-accent {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--crimson-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  display: inline;
  line-height: 1.25;
}

/* Inline horizontal wordmark using official PNG assets */
.hero__wordmark {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}
.hero__wordmark img {
  display: block;
  height: auto;
  width: auto;
}
.wordmark__red    { height: clamp(28px, 3.4vw, 42px); }
.wordmark__star   { height: clamp(20px, 2.4vw, 30px); }
.wordmark__white  { height: clamp(28px, 3.4vw, 42px); }
.wordmark__and    { height: clamp(20px, 2.4vw, 30px); }
.wordmark__kaboom { height: clamp(36px, 4.4vw, 56px); }

.hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  max-width: 640px;
}
/* (legacy .hero__presents block removed — see consolidated rules below) */
.hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}
.hero__wordmark img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.wordmark__red    { height: clamp(22px, 3vw, 36px); }
.wordmark__star   { height: clamp(14px, 1.8vw, 22px); margin: -3px 0 -3px 10px; }
.wordmark__white  { height: clamp(22px, 3vw, 36px); }
.wordmark__and    { height: clamp(14px, 1.8vw, 22px); margin: -2px 0 -2px 10px; }
.wordmark__kaboom { height: clamp(28px, 4vw, 50px); }

/* Sponsor section "presents" treatment */
.sponsor__presents-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 16px 0 12px;
  text-transform: lowercase;
}
.sponsor__wordmark {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sponsor__wordmark img { display: block; height: auto; width: auto; max-width: 100%; }
.sponsor__wordmark .wordmark__red    { height: 38px; }
.sponsor__wordmark .wordmark__star   { height: 26px; margin: -2px 0; }
.sponsor__wordmark .wordmark__white  { height: 38px; }
.sponsor__wordmark .wordmark__and    { height: 26px; margin: -2px 0; }
.sponsor__wordmark .wordmark__kaboom { height: 46px; }
.hero__sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(247, 245, 238, 0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
  letter-spacing: 0.005em;
}
.hero__sub strong { color: var(--cream); }

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
.countdown__cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.countdown__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 245, 238, 0.6);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
/* ============ HERO PRESENTS COMPOSITION ============ */
.hero__presents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.hero__presents-logo {
  display: inline-flex;
  align-items: center;
}
.hero__presents-logo img {
  height: clamp(56px, 7vw, 90px);
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
.hero__presents-word {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.05em;
}
.hero__presents-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(4px, 0.7vw, 9px);
}
.hero__presents-wordmark img { display: block; height: auto; width: auto; }
.hero__presents-wordmark .wordmark__red    { height: clamp(28px, 3.6vw, 46px); }
.hero__presents-wordmark .wordmark__star   { height: clamp(18px, 2.4vw, 30px); margin: -3px 0 -3px 6px; }
.hero__presents-wordmark .wordmark__white  { height: clamp(28px, 3.6vw, 46px); }
.hero__presents-wordmark .wordmark__and    { height: clamp(18px, 2.4vw, 30px); margin: -2px 0 -2px 6px; }
.hero__presents-wordmark .wordmark__kaboom { height: clamp(36px, 4.6vw, 60px); }
@media (max-width: 700px) {
  .hero__presents { gap: 10px; margin-bottom: 22px; }
  .hero__presents-logo { padding: 7px 16px; }
}

/* ============ FLYER BAND ============ */
.flyer-band {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0d2855 100%);
  padding: 30px 0 50px;
  position: relative;
  z-index: 5;
}

/* Ornamental gold divider between sections */
.ornament-divider {
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 24px 8px;
  position: relative;
  z-index: 5;
}
.ornament-divider__line {
  display: block;
  width: clamp(60px, 14vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(230, 199, 102, 0.55) 50%, transparent 100%);
}
.ornament-divider__mark {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.85;
  letter-spacing: 0;
}
.flyer-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.flyer-band__text {
  text-align: left;
  max-width: 520px;
  justify-self: end;
  padding-right: 8px;
}
.flyer-band__text .section__eyebrow {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.flyer-band__text .section__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.flyer-band__copy {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
  max-width: 460px;
}
.flyer-band__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.flyer-band__sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.flyer-band__copy strong { color: #fff; }
.flyer-band__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
}
.flyer-band__frame {
  margin: 0;
  background: #f7f5ee;
  padding: 18px 18px 14px;
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(230, 199, 102, 0.45),
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35);
  max-width: 380px;
  width: 100%;
  transition: transform 0.5s ease;
}
.flyer-band__frame:hover { transform: translateY(-6px); }
.flyer-band__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.flyer-band__caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6a5a2e;
  text-align: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(106, 90, 46, 0.2);
}
.flyer-band__placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.06) 12px,
      rgba(255, 255, 255, 0.06) 24px
    );
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 40px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.flyer-band__placeholder:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.flyer-band__icon {
  font-size: 3rem;
  opacity: 0.6;
}
.flyer-band__placeholder strong {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.flyer-band__note {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 800px) {
  .flyer-band { padding: 50px 0; }
  .flyer-band__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .flyer-band__placeholder { max-width: 280px; }
}

/* ============ AT A GLANCE ============ */
.glance {
  background: var(--navy-deep);
  padding: 0;
  position: relative;
  z-index: 5;
}
.glance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.glance__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  color: var(--cream);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.glance__item:hover { background: rgba(255, 255, 255, 0.03); }
.glance__icon {
  font-size: 32px;
  filter: drop-shadow(0 0 12px rgba(230, 199, 102, 0.3));
}
.glance__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}
.glance__item span {
  display: block;
  font-size: 13px;
  color: rgba(247, 245, 238, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ SECTION HEADER ============ */
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--crimson);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ============ SCHEDULE / TIMELINE ============ */
.schedule {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.timeline {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 149px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--crimson), var(--gold), var(--navy));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 50px;
  margin-bottom: 28px;
  align-items: start;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 141px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--navy);
  z-index: 2;
}
.timeline__item--highlight::before {
  background: var(--crimson);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(178, 34, 52, 0.15), 0 0 24px rgba(230, 199, 102, 0.6);
}
.timeline__time {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-align: left;
  padding-top: 18px;
  white-space: nowrap;
}
.timeline__card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline__card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline__card p { color: var(--muted); font-size: 15px; }
.timeline__item--highlight .timeline__card {
  background: linear-gradient(135deg, var(--navy), #14306b);
  color: white;
  border: none;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.3);
}
.timeline__item--highlight .timeline__card h3 { color: var(--gold-light); font-size: 26px; }
.timeline__item--highlight .timeline__card p { color: rgba(247, 245, 238, 0.85); }

/* "Happening now" / "Up next" pulse markers */
.timeline__item--now .timeline__card,
.timeline__item--next .timeline__card {
  position: relative;
}
.timeline__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.timeline__item--now .timeline__status {
  background: var(--crimson-bright);
  color: white;
}
.timeline__item--now .timeline__status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.timeline__item--next .timeline__status {
  background: var(--gold);
  color: var(--navy-deep);
}
.timeline__item--past { opacity: 0.55; }
.timeline__item--past .timeline__card { box-shadow: none; }

/* Back-to-top floating button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  border: 2px solid var(--gold-light);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--crimson-bright); transform: translateY(-2px); }

/* ============ DONATE ============ */
.donate {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--crimson) 0%, #8a1626 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.donate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(230, 199, 102, 0.15) 0%, transparent 40%);
}
.donate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.donate__eyebrow { color: var(--gold-light) !important; }
.donate .section__title { color: white; text-align: left; }
.donate__content p { font-size: 18px; color: rgba(255, 255, 255, 0.9); margin-bottom: 28px; }
.donate__visual {
  aspect-ratio: 4 / 5;
  max-height: 560px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 211, 94, 0.2) inset;
}
.donate__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.donate__visual:hover .donate__photo { transform: scale(1.05); }
.donate__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 34, 0) 40%, rgba(5, 15, 34, 0.6) 100%);
  pointer-events: none;
}
.donate__caption {
  margin: 18px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.donate__caption-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.donate__caption-strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}
.donate__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(10, 31, 68, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 211, 94, 0.4);
  padding: 14px 20px;
  border-radius: var(--radius);
  color: white;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.donate__photo-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.donate__photo-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

/* ============ VENDORS ============ */
.vendors {
  padding: 80px 0;
  background: var(--cream-warm);
}
/* Food photo strip */
.food-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 40px;
}
.food-strip__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 12px rgba(10, 31, 68, 0.08);
}
.food-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.food-strip__item:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .food-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Vendor list */
.vendors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.vendor-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, color 0.25s;
  cursor: default;
}
.vendor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--crimson);
}

/* ============ ABOUT ============ */
.about {
  padding: 80px 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 68, 0.05) 0%, rgba(10, 31, 68, 0.45) 100%),
    url('images/lakemirror.jpg?v=3') center/cover no-repeat;
  transition: transform 0.6s ease;
}
.about__visual:hover .about__photo { transform: scale(1.05); }
.about__photo::after {
  content: 'Lake Mirror · Lakeland, FL';
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: white;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.about__content .section__title { text-align: left; }
.about__content .section__eyebrow { display: inline-block; }
.about__content p { color: var(--muted); margin-bottom: 16px; font-size: 17px; }

/* ---- Glimpses of Last Year ---- */
.glimpses {
  padding: 60px 20px 20px;
}
.glimpses__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-deep);
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.glimpses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 28px auto 0;
}
.glimpses__item {
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 31, 68, 0.06);
  box-shadow: 0 4px 12px rgba(10, 31, 68, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.glimpses__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.glimpses__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.glimpses__item:hover img { transform: scale(1.04); }
.glimpses__item--tall { /* unused */ }
.glimpses__item--wide { /* unused */ }

/* Year tabs */
.glimpses__tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 24px auto 0;
  padding: 4px;
  background: rgba(10, 31, 68, 0.06);
  border-radius: 999px;
  width: fit-content;
}
.glimpses__tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.glimpses__tab:hover { background: rgba(10, 31, 68, 0.08); }
.glimpses__tab.is-active {
  background: var(--navy-deep);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.25);
}
.glimpses__panel { display: none; }
.glimpses__panel.is-active { display: block; }
@media (max-width: 720px) {
  .glimpses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ SPONSOR ============ */
.sponsor {
  padding: 56px 0;
  background: var(--navy);
  color: white;
  text-align: center;
}
.sponsor__inner { max-width: 1100px; margin: 0 auto; }

.sponsor__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  margin-bottom: 48px;
}
.sponsor__hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.sponsor__hero-text .sponsor__wordmark { justify-content: flex-start; }
.sponsor__hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sponsor__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sponsor__hero-image:hover img { transform: scale(1.04); }
.sponsor__hero-image::after {
  content: 'T. Mims Corp. · Lakeland, FL';
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: white;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  padding: 30px 14px 6px;
  border-radius: 0 0 8px 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.sponsor__label {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.sponsor__logo {
  display: inline-block;
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
.sponsor__logo img {
  max-height: 90px;
  width: auto;
  display: block;
}
.sponsor__name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.1;
}
.sponsor__tagline {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 24px;
}
.sponsor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin: 0 auto;
}
.sponsor__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.sponsor__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}
.sponsor__card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.sponsor__card p {
  color: rgba(247, 245, 238, 0.78);
  font-size: 14.5px;
  line-height: 1.65;
}
.sponsor__bio {
  color: rgba(247, 245, 238, 0.75);
  margin-bottom: 24px;
}

/* ============ FAQ ============ */
.faq {
  padding: 80px 0;
  background: var(--cream);
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
}
.faq__item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--crimson); }
.faq__item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 28px;
  color: var(--crimson);
  transition: transform 0.25s;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 16px;
}

/* ============ POLISH ============ */

/* Donate button pulse */
.btn--donate {
  animation: donatePulse 2.4s ease-in-out infinite;
}
@keyframes donatePulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4), 0 0 0 0 rgba(230, 199, 102, 0.6); }
  50%      { box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4), 0 0 0 14px rgba(230, 199, 102, 0); }
}
.btn--donate:hover { animation-play-state: paused; }

/* Parallax-ready images (transformed via --py var) */
.donate__photo {
  transform: translateY(var(--py, 0));
}
.about__photo {
  transform: translateY(var(--py, 0));
}
.donate__visual:hover .donate__photo { transform: translateY(var(--py, 0)) scale(1.04); }
.about__visual:hover .about__photo { transform: translateY(var(--py, 0)) scale(1.04); }

/* Stat counter shine on reveal */
.sponsor__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sponsor__card.is-revealed { opacity: 1; transform: translateY(0); }

/* Vendors food grid stagger reveal */
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 34, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  cursor: zoom-out;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__inner {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  background: var(--navy-deep);
}
.lightbox__caption {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 18px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.1); border-color: white; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(247, 245, 238, 0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 80px 24px 50px;
}
.footer__brand-logo {
  display: block;
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.footer__brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer__links h4 {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__sponsor p {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 245, 238, 0.5);
  margin-bottom: 14px;
}
.footer__sponsor-logo {
  display: block;
  background: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  max-height: 56px;
  width: auto;
  margin-bottom: 12px;
  box-shadow: 0 0 0 1px rgba(230, 199, 102, 0.35), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(247, 245, 238, 0.4);
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    margin: 0;
    padding: 96px 28px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-left: 1px solid rgba(244, 211, 94, 0.2);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__links a::after { display: none; }
  .glance__grid { grid-template-columns: repeat(2, 1fr); }
  .glance__item { padding: 24px 18px; }
  .timeline::before { left: 18px; }
  .timeline__item { grid-template-columns: 1fr; gap: 12px; padding-left: 50px; }
  .timeline__item::before { left: 10px; top: 6px; }
  .timeline__time { text-align: left; padding-top: 0; font-size: 15px; color: var(--crimson); }
  .donate__inner { grid-template-columns: 1fr; gap: 40px; }
  .donate__visual { height: 280px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .sponsor__grid { grid-template-columns: 1fr; }
  .sponsor__hero { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .sponsor__hero-image { aspect-ratio: 16 / 10; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 60px 24px 40px; }
}

@media (max-width: 560px) {
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .countdown__cell { padding: 14px 4px; }
  .glance__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .schedule, .vendors, .about, .faq { padding: 80px 0; }
  .donate { padding: 70px 0; }
}
