/* ═══════════════════════════════════════════
   MADHAV & EVA — NO BRAKES
   License plate hero. Interstate energy.
   ═══════════════════════════════════════════ */

:root {
  --yellow: #F5A623;
  --yellow-light: #FDBE44;
  --red: #A41034;
  --red-dark: #6B0A22;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --dark: #1A1212;
  --navy: #1a3a7a;
  --plate-bg: #e8e1d0;
  --asphalt: #2a2a2a;

  --font-display: 'Caprasimo', cursive;
  --font-heading: 'Anton', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-script: 'Sacramento', cursive;
  --font-plate: 'Share Tech Mono', monospace;
  --font-plate-bold: 'Archivo Black', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--yellow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: none; }

/* ═══════════════ CURSOR ═══════════════ */
.cur { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; will-change: transform; }
#cur-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; transform: translate(-50%,-50%); }
.cur-ring { width: 44px; height: 44px; border: 2.5px solid var(--red); border-radius: 50%; transform: translate(-50%,-50%); opacity: 0.5; transition: width .25s cubic-bezier(.23,1,.32,1), height .25s cubic-bezier(.23,1,.32,1), opacity .25s; }
.cur-ring.hover { width: 64px; height: 64px; opacity: 0.25; }
.cursor-spark { position: fixed; pointer-events: none; z-index: 9998; font-size: 14px; color: var(--red); }

/* ═══════════════ SCROLL PROGRESS ═══════════════ */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--red), var(--yellow)); z-index: 1000; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled { background: rgba(245,166,35,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.nav-logo { font-family: var(--font-display); font-size: 1.15rem; color: var(--red); text-decoration: none; }
.nav-btn {
  font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase; background: var(--red); color: var(--white);
  padding: 0.6rem 1.5rem; border-radius: 50px; border: 3px solid var(--white);
  box-shadow: 3px 3px 0 var(--red-dark); display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.nav-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--red-dark); }

/* ═══════════════ RETRO TEXT ═══════════════ */
.retro-text { font-family: var(--font-display); line-height: 1.05; }
.retro-text--yellow {
  color: var(--yellow);
  text-shadow: 6px 6px 0 var(--red-dark);
}
.retro-text--white {
  color: var(--white);
  text-shadow: -2px -2px 0 var(--red), 2px -2px 0 var(--red), -2px 2px 0 var(--red), 2px 2px 0 var(--red), 0 -2px 0 var(--red), 0 2px 0 var(--red), 5px 5px 0 var(--red-dark);
}
.retro-text--red {
  color: var(--red);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 2rem 2rem;
  background: var(--yellow);
  position: relative; overflow: hidden;
  gap: 1rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(164,16,52,0.06) 1.8px, transparent 1.8px);
  background-size: 20px 20px; pointer-events: none;
}

/* Palm Drive scene elements are defined in the highway/palm sections below */

/* Highway road perspective */
.hero-highway {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  z-index: 0;
  pointer-events: none;
}
.hero-highway::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.11);
  clip-path: polygon(44% 0%, 56% 0%, 100% 100%, 0% 100%);
}
.hero-highway::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.6) 0, rgba(255,255,255,0.6) 18px,
    transparent 18px, transparent 44px
  );
  z-index: 1;
  animation: road-flow 1s linear infinite;
}
@keyframes road-flow {
  from { background-position-y: 0; }
  to { background-position-y: 44px; }
}

/* Convertible — clean SVG car */
.hero-car-main {
  position: absolute;
  z-index: 3;
  left: 50%; top: 44%;
  width: 280px;
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}
.car-svg { width: 100%; height: auto; display: block; }

/* Palm Drive — palm trees (SVG silhouettes with real fronds) */
.palm {
  position: absolute;
  left: var(--px);
  bottom: var(--py);
  width: 140px; height: 320px;
  transform: scale(var(--s));
  transform-origin: center bottom;
  pointer-events: none; z-index: 0;
  margin-left: -70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 220'%3E%3Cdefs%3E%3ClinearGradient id='trunk' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23886644'/%3E%3Cstop offset='50%25' stop-color='%236b4e2a'/%3E%3Cstop offset='100%25' stop-color='%23543d1f'/%3E%3C/linearGradient%3E%3ClinearGradient id='frond' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%232d6b1e'/%3E%3Cstop offset='100%25' stop-color='%231a4a10'/%3E%3C/linearGradient%3E%3ClinearGradient id='frondLight' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23408030'/%3E%3Cstop offset='100%25' stop-color='%232d6b1e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M46 220 C45 180 44 140 45 95 C45.5 88 47 85 50 85 C53 85 54.5 88 55 95 C56 140 55 180 54 220Z' fill='url(%23trunk)'/%3E%3Cpath d='M47 130 C46.5 120 46 110 47.5 100' stroke='%23775533' stroke-width='0.5' fill='none' opacity='0.5'/%3E%3Cpath d='M52 135 C52 125 52.5 115 52 102' stroke='%23775533' stroke-width='0.5' fill='none' opacity='0.5'/%3E%3Cpath d='M50 82 C42 68 28 56 8 52 C10 50 16 48 22 49 C30 50 40 58 50 78Z' fill='url(%23frond)' opacity='0.9'/%3E%3Cpath d='M50 82 C58 68 72 56 92 52 C90 50 84 48 78 49 C70 50 60 58 50 78Z' fill='url(%23frond)' opacity='0.9'/%3E%3Cpath d='M50 80 C38 62 22 48 2 40 C5 38 12 38 18 40 C30 44 42 56 50 76Z' fill='url(%23frondLight)' opacity='0.85'/%3E%3Cpath d='M50 80 C62 62 78 48 98 40 C95 38 88 38 82 40 C70 44 58 56 50 76Z' fill='url(%23frondLight)' opacity='0.85'/%3E%3Cpath d='M50 78 C44 56 38 34 28 16 C30 14 34 16 37 20 C44 32 48 54 50 74Z' fill='url(%23frond)' opacity='0.8'/%3E%3Cpath d='M50 78 C56 56 62 34 72 16 C70 14 66 16 63 20 C56 32 52 54 50 74Z' fill='url(%23frond)' opacity='0.8'/%3E%3Cpath d='M50 76 C46 50 42 28 34 6 C37 4 40 8 42 14 C46 30 48 52 50 72Z' fill='url(%23frondLight)' opacity='0.7'/%3E%3Cpath d='M50 76 C54 50 58 28 66 6 C63 4 60 8 58 14 C54 30 52 52 50 72Z' fill='url(%23frondLight)' opacity='0.7'/%3E%3Cpath d='M50 75 C49 48 48 24 50 2 C51 2 52 6 52 12 C52 30 51 52 50 72Z' fill='%23357025' opacity='0.65'/%3E%3Cellipse cx='50' cy='84' rx='6' ry='4' fill='%23886644' opacity='0.6'/%3E%3C/svg%3E") no-repeat center bottom / contain;
}
.palm--r {
  left: auto;
  right: var(--px);
  margin-left: 0;
  margin-right: -70px;
}

/* Eyebrow above plate — retro bold style */
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--red);
  position: relative; z-index: 2;
}

/* ═══════════════ THE LICENSE PLATE ═══════════════ */
.plate {
  --shine-x: 50%; --shine-y: 50%; --holo-pos: 50%;
  position: relative;
  width: 96%; max-width: 880px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    0 6px 16px rgba(0,0,0,0.2),
    0 0 0 6px rgba(26,58,122,0.08);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden; z-index: 2;
  transition: box-shadow .4s;
}
.plate:hover {
  box-shadow:
    0 30px 100px rgba(0,0,0,0.4),
    0 6px 16px rgba(0,0,0,0.2),
    0 0 120px rgba(245,166,35,0.25),
    0 0 0 6px rgba(26,58,122,0.12);
}

.plate-img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
  position: relative; z-index: 1;
}

.plate-shine {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 300px 280px at var(--shine-x) var(--shine-y), rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 40%, transparent 70%);
  pointer-events: none; z-index: 5; opacity: 0; mix-blend-mode: overlay; transition: opacity .3s;
}
.plate:hover .plate-shine { opacity: 1; }

.plate-holo {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(110deg, transparent 10%, rgba(255,100,200,0.06) 25%, rgba(100,200,255,0.08) 38%, rgba(255,230,100,0.06) 50%, rgba(100,255,180,0.06) 62%, rgba(180,100,255,0.05) 75%, transparent 90%);
  background-size: 200% 100%; background-position: var(--holo-pos) 0;
  pointer-events: none; z-index: 6; opacity: 0; mix-blend-mode: color-dodge; transition: opacity .4s;
}
.plate:hover .plate-holo { opacity: 1; }

/* Slogan below plate */
.hero-slogan {
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--red);
  position: relative; z-index: 2;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(107,10,34,0.15);
}

/* Below the plate */
.hero-below {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  position: relative; z-index: 2;
  margin-top: 0.5rem;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.hero-btn {
  font-family: var(--font-heading);
  font-size: 1.05rem; letter-spacing: 3px; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 1rem 2.6rem; border-radius: 50px;
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--red-dark);
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--red-dark); }
.hero-btn--alt {
  background: var(--yellow); color: var(--red);
  border-color: var(--red);
  box-shadow: 6px 6px 0 rgba(164,16,52,0.25);
  font-weight: 700;
}
.hero-btn--alt:hover { box-shadow: 8px 8px 0 rgba(164,16,52,0.35); }

.hero-scroll {
  font-family: var(--font-heading); font-size: 0.75rem;
  color: rgba(164,16,52,0.35); letter-spacing: 3px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ═══════════════ ROAD DIVIDERS ═══════════════ */
.road { background: var(--asphalt); padding: 1.5rem 0; display: flex; justify-content: center; }
.road-lines { display: flex; gap: 18px; align-items: center; }
.road-lines span { width: 40px; height: 4px; background: var(--yellow); border-radius: 2px; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 0.85rem 0;
  border-top: 3px solid var(--dark); border-bottom: 3px solid var(--dark);
  position: relative; z-index: 5;
}
.marquee--red { background: var(--red); color: var(--yellow); }
.marquee--yellow { background: var(--yellow-light); color: var(--red); }
.marquee-track { display: flex; width: max-content; animation: mq 25s linear infinite; }
.marquee-track--reverse { animation-direction: reverse; }
.marquee-track span { font-family: var(--font-heading); font-size: clamp(0.85rem,1.8vw,1.15rem); letter-spacing: 3px; text-transform: uppercase; flex-shrink: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════ PLATFORM ═══════════════ */
.platform {
  background: var(--red);
  padding: clamp(4rem,10vw,7rem) 2rem;
  position: relative; overflow: hidden;
}
.platform::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1.5px, transparent 1.5px);
  background-size: 18px 18px; pointer-events: none;
}

.platform-header { text-align: center; position: relative; z-index: 1; margin-bottom: 3rem; }
.platform-title { font-size: clamp(2.5rem,8vw,5rem); margin-bottom: 0.5rem; }
.platform-hook {
  font-family: var(--font-body); font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: clamp(0.9rem,1.5vw,1.05rem);
  margin-bottom: 1.2rem;
}

/* NO BRAKES acrostic */
.acrostic {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
}
.ac-letter {
  font-family: var(--font-heading);
  font-size: 1.1em;
  color: var(--yellow);
}

.pledges {
  max-width: 750px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0; position: relative; z-index: 1;
}

.pledge {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .2s, transform .3s;
  transform-style: preserve-3d;
  border-radius: 8px;
}
.pledge:last-child { border-bottom: none; }
.pledge:hover { background: rgba(255,255,255,0.05); }

.pledge-n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--yellow);
  text-shadow: -2px -2px 0 var(--white), 2px -2px 0 var(--white), -2px 2px 0 var(--white), 2px 2px 0 var(--white);
  line-height: 1; min-width: 3rem;
  flex-shrink: 0;
}

.pledge-body h3 {
  font-family: var(--font-heading); font-size: clamp(0.95rem,2vw,1.15rem);
  letter-spacing: 1px; color: var(--white);
  text-transform: uppercase; margin-bottom: 0.25rem;
}
.pledge-body p {
  font-size: 0.85rem; line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════ SECTIONS SHARED ═══════════════ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(2.5rem,7vw,5rem); margin-bottom: 0.5rem; }
.section-sub { font-size: clamp(0.85rem,1.5vw,1rem); color: rgba(0,0,0,0.35); letter-spacing: 1px; font-weight: 500; }
.section-sub--light { color: rgba(255,255,255,0.4); }

/* ═══════════════ THE CLASSICS — MASONRY ═══════════════ */
.classics {
  background: var(--cream);
  padding: clamp(4rem,10vw,8rem) 2rem;
  position: relative;
}

.flyer-masonry {
  column-count: 4;
  column-gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}

.flyer-card {
  position: relative;
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 var(--red);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .3s, transform .3s;
  break-inside: avoid;
  margin-bottom: 1rem;
  margin-bottom: 1rem;
}
.flyer-card:hover { box-shadow: 7px 7px 0 var(--red-dark); }

.flyer-card img {
  width: 100%;
  display: block;
}

.flyer-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem 0.7rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem; letter-spacing: 1px;
  color: var(--white); text-transform: uppercase;
  opacity: 0; transition: opacity .25s;
}
.flyer-card:hover .flyer-label { opacity: 1; }

/* ═══════════════ THE COVERS ═══════════════ */
.covers {
  background: var(--red);
  padding: clamp(4rem,10vw,8rem) 2rem;
  position: relative; overflow: hidden;
}
.covers::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1.5px, transparent 1.5px);
  background-size: 18px 18px; pointer-events: none;
}

.covers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}

.cover-card { text-align: center; cursor: pointer; }
.cover-flipper {
  position: relative;
  width: 100%; aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  border-radius: 14px;
}
.cover-card.flipped .cover-flipper { transform: rotateY(180deg); }
.cover-front, .cover-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.25);
}
.cover-back { transform: rotateY(180deg); }
/* Flip hint icon — circular badge in top-right corner */
.cover-front::after {
  content: '↻';
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  animation: flipHint 2s ease-in-out infinite;
}
@keyframes flipHint {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(20deg) scale(1.1); }
}
.cover-img-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cover-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--yellow); margin-top: 0.9rem; }
.cover-ref { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.1rem; }
.cover-lesson { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; font-style: italic; line-height: 1.4; }

/* ═══════════════ DUO ═══════════════ */
.duo {
  background: var(--yellow);
  padding: clamp(4rem,10vw,8rem) 2rem;
  position: relative;
}
.duo::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(164,16,52,0.04) 1.5px, transparent 1.5px);
  background-size: 20px 20px; pointer-events: none;
}
.duo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.duo-card {
  background: var(--white); border-radius: 22px;
  border: 3px solid var(--dark);
  box-shadow: 8px 8px 0 var(--red);
  overflow: hidden; transform-style: preserve-3d;
  will-change: transform; transition: box-shadow .3s;
}
.duo-photo { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 14px 14px 0 0; }
.duo-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.duo-photo-img--eva { object-position: center 25%; }
.duo-initial { font-family: var(--font-display); font-size: 5rem; color: rgba(255,255,255,0.15); }
.duo-info { padding: 1.5rem 1.8rem; }
.duo-role {
  font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); background: var(--red);
  padding: 0.25rem 0.8rem; border-radius: 50px; display: inline-block; margin-bottom: 0.6rem;
}
.duo-name { font-family: var(--font-display); font-size: 2.2rem; color: var(--red); margin-bottom: 0.5rem; }
.duo-bio { font-size: 0.85rem; line-height: 1.65; color: rgba(0,0,0,0.5); }

/* ═══════════════ UPCOMING EVENTS ═══════════════ */
.upcoming {
  background: var(--cream);
  padding: clamp(4rem,10vw,8rem) 2rem;
}

.events-feed {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
}

.events-loading {
  text-align: center; font-family: var(--font-body);
  font-size: 0.9rem; color: rgba(0,0,0,0.3);
  padding: 3rem 0; letter-spacing: 1px;
}

.events-empty {
  text-align: center; font-family: var(--font-body);
  color: rgba(0,0,0,0.35); padding: 2rem;
}

.events-fallback {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border: 3px solid var(--dark);
  border-radius: 18px; box-shadow: 6px 6px 0 var(--red);
  max-width: 500px; margin: 0 auto;
}
.events-fallback-msg {
  font-family: var(--font-body);
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(0,0,0,0.45); margin-bottom: 1.2rem;
}
.events-fallback-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 0.7rem 2rem; border-radius: 50px;
  border: 3px solid var(--white);
  box-shadow: 4px 4px 0 var(--red-dark);
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.events-fallback-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--red-dark); }

.ev-card {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1.2rem; align-items: center;
  background: var(--white); border: 3px solid var(--dark);
  border-radius: 16px; padding: 1.2rem 1.5rem;
  box-shadow: 5px 5px 0 var(--red);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  transform-style: preserve-3d;
}
.ev-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--red); }

.ev-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--red); color: var(--white);
  border-radius: 10px; padding: 0.6rem 0.4rem; min-width: 70px; text-align: center;
}
.ev-date-month { font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.ev-date-day { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; margin-top: 0.1rem; }
.ev-date-dow { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.6; margin-top: 0.15rem; }

.ev-body { min-width: 0; }
.ev-title { font-family: var(--font-heading); font-size: 1.1rem; letter-spacing: 0.5px; color: var(--dark); text-transform: uppercase; }
.ev-meta { font-size: 0.8rem; color: rgba(0,0,0,0.4); margin-top: 0.15rem; }
.ev-location { font-size: 0.75rem; color: var(--red); margin-top: 0.2rem; font-weight: 600; }

.ev-badge {
  font-family: var(--font-display); font-size: 0.6rem;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  white-space: nowrap; letter-spacing: 0.5px; flex-shrink: 0;
}
.ev-badge--today { background: var(--yellow); color: var(--red); border: 2px solid var(--red); animation: sticker-pulse 2s ease-in-out infinite; }
.ev-badge--soon { background: rgba(164,16,52,0.08); color: var(--red); border: 2px solid rgba(164,16,52,0.15); }
.ev-badge--upcoming { background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.3); border: 2px solid rgba(0,0,0,0.06); }

.ev-rsvp {
  display: inline-block; margin-top: 0.4rem;
  font-family: var(--font-heading); font-size: 0.65rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 0.2rem 0.6rem; border-radius: 50px;
  transition: transform 0.2s;
}
.ev-rsvp:hover { transform: scale(1.05); }

.events-more-wrap { text-align: center; margin-top: 0.5rem; }
.events-more-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 0.7rem 2rem; border-radius: 50px;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 var(--red-dark);
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.events-more-btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--red-dark); }

/* ═══════════════ VOTE ═══════════════ */
.vote {
  background: var(--yellow);
  padding: clamp(5rem,12vw,9rem) 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.vote::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(164,16,52,0.04) 1.5px, transparent 1.5px);
  background-size: 20px 20px; pointer-events: none;
}
.vote-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.vote-eyebrow { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--red); opacity: 0.5; margin-bottom: 1rem; }
.vote-heading { font-size: clamp(3rem,9vw,6.5rem); margin-bottom: 0.5rem; }
.vote-dates { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 3px; color: var(--red); margin-bottom: 2rem; }
.vote-btn {
  font-family: var(--font-display); font-size: clamp(1.2rem,3vw,1.8rem);
  background: var(--red); color: var(--white);
  padding: 1.1rem 3.5rem; border-radius: 60px;
  border: 4px solid var(--white);
  box-shadow: 7px 7px 0 var(--red-dark);
  display: inline-block; transition: box-shadow .3s;
  position: relative; overflow: hidden;
}
.vote-btn::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
}
.vote-btn:hover::after { animation: btn-shimmer .6s ease forwards; }
@keyframes btn-shimmer { to { transform: translateX(100%); } }

.confetti { position: fixed; pointer-events: none; z-index: 9999; border-radius: 2px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.35); padding: 1.5rem 2rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; gap: 1rem; font-size: 0.8rem; }
.footer-logo { font-family: var(--font-display); font-size: 1rem; color: rgba(255,255,255,0.5); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1000px) {
  .flyer-masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .flyer-masonry { column-count: 2; }
  .covers-grid { grid-template-columns: repeat(2, 1fr); }
  .duo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 600px) {
  body, a { cursor: auto; }
  .cur, .cursor-spark { display: none !important; }

  .retro-text--yellow { text-shadow: 3px 3px 0 var(--red-dark); }
  .retro-text--white { text-shadow: 3px 3px 0 var(--red-dark); }

  .nav { padding: 0.6rem 1rem; }
  .nav-logo { font-size: 0.95rem; }
  .nav-btn { font-size: 0.7rem; padding: 0.5rem 1rem; }

  .hero { padding: 0.5rem 1rem 1.5rem; gap: 0.4rem; }
  .palm { display: none; }
  .hero-car-main { display: none; }
  .hero-highway { height: 45%; }
  .plate { border-radius: 10px; }
  .plate-bolt { width: 9px; height: 9px; }
  .plate-bolt::after { width: 3px; height: 3px; }
  .hero-btn { font-size: 0.8rem; padding: 0.65rem 1.5rem; letter-spacing: 2px; }
  .hero-eyebrow { font-size: 1.6rem; letter-spacing: 4px; font-weight: 900; -webkit-text-stroke: 1px var(--red); }

  .flyer-masonry { column-count: 2; column-gap: 0.7rem; }
  .flyer-card { margin-bottom: 0.7rem; }

  .platform-title { font-size: 2.5rem; }
  .acrostic { gap: 0.2rem 0.4rem; }
  .pledge { padding: 1rem; gap: 0.8rem; }
  .pledge-n { font-size: 1.5rem; min-width: 2.2rem; }
  .vote-heading { font-size: 2.8rem; }

  .ev-card { grid-template-columns: 60px 1fr; gap: 0.8rem; padding: 1rem; }
  .ev-badge { display: none; }
  .ev-date { min-width: 55px; padding: 0.5rem 0.3rem; }
  .ev-date-day { font-size: 1.4rem; }
  .ev-title { font-size: 0.95rem; }

  .footer-inner { flex-direction: column; gap: 0.4rem; text-align: center; }

  /* staggered hero entrance */
  .hero-eyebrow, .plate { opacity: 0; animation: heroFadeIn 0.6s ease forwards; }
  .hero-slogan { opacity: 0; animation: heroFadeIn 0.6s ease 0.5s forwards; }
  .hero-below { opacity: 0; animation: heroFadeIn 0.6s ease 1s forwards; }
}

@keyframes heroFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 380px) {
  .hero-highway::after { width: 3px; }
  .flyer-masonry { column-count: 1; max-width: 300px; margin: 0 auto; }
  .covers-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
