:root {
  --orange: #E8740C;
  --orange-bright: #FF8C1A;
  --orange-dark: #C05E00;
  --blue: #0C3882;
  --blue-bright: #1A4FBB;
  --blue-dark: #071E50;
  --blue-deep: #040E2A;
  --gold: #F5C842;
  --white: #F4F0E8;
  --off-white: #EDE8DC;
  --gray-light: #C8C4BC;
  --gray: #888480;
  --dark: #111827;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--blue-deep);
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCANLINE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAV ─── */
nav:not(.footer-links) {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(4,14,42,0.98) 0%, rgba(7,30,80,0.95) 100%);
  border-bottom: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  backdrop-filter: blur(8px);
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--orange-bright);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(232,116,12,0.6);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 0;
  list-style: none;
  min-width: 0;
  overflow: hidden;
}

.nav-links a {
  display: block;
  padding: 0 1rem;
  height: 60px;
  line-height: 60px;
  color: var(--gray-light);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--orange-bright);
  background: rgba(232,116,12,0.08);
}
.nav-links a.active {
  background: var(--orange);
  color: #fff;
}
.nav-links a.active:hover {
  background: var(--orange-bright);
  color: #fff;
}
.nav-links a.cta {
  background: var(--orange);
  color: #fff;
  margin-left: 1rem;
  padding: 0 1.5rem;
  font-weight: 600;
}
.nav-links a.cta:hover { background: var(--orange-bright); }

/* ─── 80s BANNER ─────────────────────────────────────────
   Header (1000×157): full width across the top, flush to nav.
   Sidebar (223×303): hangs from the bottom-left corner of the
   header, no overlap, no gap — L-shaped composition.

   At 100vw wide:
     header height  = 100vw × (157/1000) = 15.7vw
     sidebar width  = 100vw × (223/1000) = 22.3vw
     sidebar height = 100vw × (303/1000) = 30.3vw
     sidebar top inside wrap = 15.7vw (sits below header)
   ──────────────────────────────────────────────────────── */
.banner-top-wrap {
  position: absolute;
  top: 60px;           /* flush against the nav bar */
  left: 0;
  right: 0;
  /* tall enough for header + sidebar overhang below it */
  height: calc(30.3vw);
  z-index: 20;
  pointer-events: none;
}

.banner-header-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.banner-sidebar-img {
  display: block;
  position: absolute;
  /* sit flush below the header's bottom edge */
  top: 15.7vw;
  left: 0;
  width: 21.5vw;
  height: auto;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  /*
    Hero content only needs to clear nav(60px) + header image height(15.7vw).
    The sidebar hangs down on the left beside the content, not above it.
    Previously we were padding for the full sidebar height (30.3vw) which
    pushed everything ~220px too far down at desktop widths.
  */
  padding-top: calc(60px + 15.7vw + 2.5rem);
  padding-right: 2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
}

/* Retro grid floor */
.hero-grid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(12,56,130,0.25) 100%),
    linear-gradient(rgba(232,116,12,0.35) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(232,116,12,0.35) 1px, transparent 1px) 0 0 / 60px 60px;
  transform: perspective(500px) rotateX(35deg);
  transform-origin: bottom center;
  pointer-events: none;
}

/* Gradient sky */
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #000510 0%,
    #040E2A 25%,
    #071E50 50%,
    #0C3882 70%,
    #1a2040 85%,
    #000510 100%
  );
  pointer-events: none;
}

/* Neon sun */
.hero-sun {
  position: relative;
  display: block;
  margin: 1.8rem auto 0;
  width: 220px;
  height: 110px;
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
}
.hero-sun::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange-dark) 40%, #8B0000 100%);
  box-shadow:
    0 0 40px rgba(232,116,12,0.8),
    0 0 80px rgba(232,116,12,0.4),
    0 0 160px rgba(200,80,0,0.3);
}
.hero-sun::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 8px,
    rgba(4,14,42,0.7) 8px,
    rgba(4,14,42,0.7) 12px
  );
  border-radius: 0 0 110px 110px;
}

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--o, 0.6);
}
@keyframes twinkle {
  0%,100% { opacity: var(--o, 0.6); transform: scale(1); }
  50% { opacity: 0.1; transform: scale(0.5); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(232,116,12,0.8);
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow:
    0 0 30px rgba(232,116,12,0.5),
    0 4px 0 var(--blue-dark),
    0 8px 0 rgba(0,0,0,0.5);
  animation: fadeUp 0.8s 0.15s ease both;
  margin-bottom: 0.3rem;
}
.hero-title .year {
  color: var(--orange-bright);
  text-shadow:
    0 0 40px rgba(232,116,12,0.9),
    0 0 80px rgba(232,116,12,0.4),
    0 4px 0 var(--orange-dark);
}

.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245,200,66,0.6);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-cta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  justify-content: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  animation: fadeUp 0.8s 0.65s ease both;
}

.hero-cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
}
/* Bottom-row buttons each span two columns to align with the pair above */
.hero-cta .btn:nth-child(5),
.hero-cta .btn:nth-child(6) {
  grid-column: span 2;
}
/* Make the RAFFLE BASKETS hero button stand out — double the base .btn font.
   Higher specificity (a.raffle-cta-btn) so it holds at mobile breakpoints too. */
.hero-cta a.raffle-cta-btn {
  font-size: 1.64rem;   /* doubled from base .btn 0.82rem */
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 60%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow:
    0 6px 0 #8B4500,
    0 8px 16px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(0);
  transition: box-shadow 0.08s ease, transform 0.08s ease, background 0.08s ease;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #FFAA40 0%, var(--orange-bright) 60%, var(--orange) 100%);
  box-shadow:
    0 6px 0 #8B4500,
    0 10px 22px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(0);
}
.btn-primary:active {
  transform: translateY(5px);
  box-shadow:
    0 1px 0 #8B4500,
    0 2px 6px rgba(0,0,0,0.3),
    inset 0 2px 4px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(244,240,232,0.4);
}
.btn-outline:hover {
  border-color: var(--orange-bright);
  color: var(--orange-bright);
  transform: translateY(-2px);
}

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

/* Countdown */
.countdown-bar {
  background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  padding: 1rem 2rem;
  text-align: center;
}
.countdown-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.countdown-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.countdown-units {
  display: flex;
  gap: 1rem;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  display: block;
}
.countdown-unit-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
}
.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.1;
  align-self: flex-start;
  margin-top: 0.1rem;
}

/* ─── SECTION STYLES ─── */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--orange-bright); }

.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin-bottom: 2rem;
}

/* ─── WHAT TO EXPECT ─── */
.expect-section {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  border-top: 1px solid rgba(232,116,12,0.2);
  border-bottom: 1px solid rgba(232,116,12,0.2);
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.expect-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,116,12,0.2);
  border-top: 3px solid var(--orange);
  padding: 1.8rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.expect-card:hover {
  background: rgba(232,116,12,0.06);
  border-color: rgba(232,116,12,0.5);
  transform: translateY(-4px);
}
.expect-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.expect-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.5rem;
}
.expect-card p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-light); }

/* ─── ITINERARY ─── */
.itinerary-section { background: var(--blue-deep); }
.itinerary-days {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
.day-block {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--orange);
}
.day-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.day-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange-bright);
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(232,116,12,0.4);
}
.day-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}
.day-dress {
  margin-left: auto;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(245,200,66,0.4);
  color: var(--gold);
  border-radius: 2px;
}
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 1.5rem;
  transition: background 0.2s;
}
.event-item:hover { background: rgba(232,116,12,0.05); }

/* ── CLICKABLE EVENT LINK ── */
a.event-item {
  text-decoration: none;
  color: inherit;
  display: grid;
  cursor: pointer;
}
a.event-item:hover .event-body h4,
a.event-item:hover .event-body p,
a.event-item:hover .event-body .venue,
a.event-item:hover .event-body .address {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--orange);
}
a.event-item:hover .event-body .deadline,
a.event-item:hover .event-body .optional-tag {
  text-decoration: none;
}

/* ── TWO-COLUMN SPLIT EVENT ROW ── */
.event-item-split {
  display: grid;
  grid-template-columns: 120px minmax(0,1fr) minmax(0,1fr);
  gap: 1rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 1.5rem;
  transition: background 0.2s;
}
.event-item-split:hover { background: rgba(232,116,12,0.05); }
.event-body-split {
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
a.event-body:hover h4,
a.event-body:hover p,
a.event-body:hover .venue,
a.event-body:hover .address {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--orange);
}
a.event-body:hover .deadline,
a.event-body:hover .optional-tag {
  text-decoration: none;
}
.event-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 2px;
  border-right: 1px solid rgba(232,116,12,0.2);
}
.event-body h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.event-body p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.5; margin-bottom: 0.2rem; }
.event-body .venue { font-size: 0.8rem; color: var(--orange); font-style: italic; }
.event-body .address { font-size: 0.78rem; color: var(--gray); }
.event-body .note { display: inline-block; margin-top: 0.4rem; font-size: 0.75rem; color: var(--gold); font-style: italic; }
.event-body .deadline {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.optional-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(12,56,130,0.5);
  border: 1px solid rgba(26,79,187,0.5);
  color: #8ab4ff;
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.day-note {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(232,116,12,0.06);
  border-left: 3px solid var(--orange);
  font-size: 0.82rem;
  color: var(--gray-light);
  font-style: italic;
}
/* small inline cost / info note under an event or expect card */
.cost-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.5;
}
.cost-note.included { color: var(--gold); font-style: normal; }

/* ─── SPONSORSHIPS ─── */
.sponsor-section {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  border-top: 1px solid rgba(232,116,12,0.2);
}
.sponsor-intro {
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 3rem;
}
.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tier-royal {
  grid-column: 2;
}
.tier-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.tier-gold::before { background: linear-gradient(90deg, var(--gold), #c8a000); }
.tier-silver::before { background: linear-gradient(90deg, #c0c0c0, #808080); }
.tier-bronze::before { background: linear-gradient(90deg, #cd7f32, #8b4513); }
.tier-royal::before { background: linear-gradient(90deg, #9B59B6, #6C3483); }
.tier-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.tier-gold h3 { color: var(--gold); }
.tier-silver h3 { color: #c0c0c0; }
.tier-bronze h3 { color: #cd7f32; }
.tier-royal h3 { color: #C39BD3; }
.tier-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tier-features li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.tier-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
  top: 0.1em;
}
.sponsor-cta-box {
  background: rgba(232,116,12,0.08);
  border: 1px solid rgba(232,116,12,0.3);
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.sponsor-cta-box p {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ─── IN MEMORY ─── */
.memory-section {
  background: #050D1E;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.memory-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.memory-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(255,255,255,0.2);
  padding: 1.8rem;
  text-align: center;
}
.memory-candle { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.memory-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.memory-dates { font-size: 0.8rem; color: var(--gray); font-style: italic; }
.memory-obit-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,116,12,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,116,12,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.memory-obit-link:hover {
  color: var(--orange-bright);
  border-color: var(--orange-bright);
}

/* ─── CONTACT ─── */
.contact-section {
  background: linear-gradient(180deg, var(--blue-deep) 0%, #020A1A 100%);
  border-top: 3px solid var(--orange);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}
.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { background: var(--blue-dark); }

/* ─── FOOTER ─── */
footer {
  background: #000;
  border-top: 3px solid var(--blue);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--orange-bright);
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-bright); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(200,196,188,0.75);
  letter-spacing: 0.05em;
}
.footer-credit {
  font-size: 0.72rem;
  color: rgba(232,116,12,0.7);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  font-style: italic;
  font-weight: 700;
}
.footer-email {
  color: rgba(232,116,12,0.5);
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--orange-bright);
  text-decoration: underline;
}

/* ─── SECTION SEPARATORS ─── */
.stripe-sep {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px,
    var(--orange) 40px,
    var(--blue) 40px,
    var(--blue) 80px
  );
}

/* ─── HOTEL INFORMATION ─── */
.hotel-section {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  border-top: 1px solid rgba(232,116,12,0.2);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.hotel-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,116,12,0.25);
  border-top: 4px solid var(--orange);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hotel-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.hotel-code-block {
  background: rgba(232,116,12,0.08);
  border: 1px solid rgba(232,116,12,0.3);
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hotel-code-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}
.hotel-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--orange-bright);
}

.hotel-rates {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.hotel-rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.hotel-rate-row:last-child { border-bottom: none; }
.hotel-rate-row:hover { background: rgba(232,116,12,0.05); }

.hotel-rate-period {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gray-light);
}
.hotel-rate-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.hotel-fees {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.2rem;
}
.hotel-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}
.hotel-fee-row span:last-child { color: var(--gray-light); }

.hotel-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hotel-book-btn {
  display: block;
  text-align: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 60%, var(--orange-dark) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 8px 16px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(0);
  transition: box-shadow 0.08s ease, transform 0.08s ease, background 0.08s ease;
}
.hotel-book-btn:hover {
  background: linear-gradient(180deg, #FFAA40 0%, var(--orange-bright) 60%, var(--orange) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 10px 22px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(0);
}
.hotel-book-btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #8B4500, 0 2px 6px rgba(0,0,0,0.3), inset 0 2px 4px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.hotel-note {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── RAFFLE BASKETS ─── */
.raffle-section {
  background: var(--blue-deep);
  border-top: 1px solid rgba(232,116,12,0.2);
}

/* ─── RAFFLE LANDING PAGE HEADER CLEARANCE ───────────────
   This standalone page sits directly under the absolutely-
   positioned 80s banner (.banner-top-wrap), which reserves no
   layout space. We clear the full-width header strip vertically,
   then on desktop shift the content to the RIGHT of the hanging
   sidebar art (Reagan/Rocky, 21.5vw wide) so the heading and the
   top basket row clear it — WITHOUT pushing anything down, so the
   first row stays above the fold. Numbers below are tied to the
   banner's own dimensions: header strip = 15.7vw, sidebar = 21.5vw.
   ──────────────────────────────────────────────────────── */
.raffle-landing-section {
  padding-top: calc(60px + 15.7vw + 2rem);   /* nav (60px) + header strip + gap */
}
@media (min-width: 769px) {
  .raffle-landing-section .section-inner {
    margin-left: calc(21.5vw + 1.5rem);       /* clear the sidebar width + gap */
    margin-right: auto;
  }
}
/* ≤768px: sidebar image is display:none, so content stays full-width. */

.raffle-intro {
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 3rem;
}

.raffle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.raffle-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--orange);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
.raffle-card:hover {
  background: rgba(232,116,12,0.04);
  transform: translateY(-3px);
}

.raffle-card-num {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.1rem 0.6rem;
  line-height: 1.6;
}

.raffle-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding-right: 2.5rem;
  line-height: 1.3;
}

.raffle-card-desc {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.raffle-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.raffle-card-items li {
  font-size: 0.8rem;
  color: var(--gray-light);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.raffle-card-items li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.65rem;
  top: 0.15em;
}

.raffle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 0.4rem;
}

.raffle-card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.raffle-card-value-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.1rem;
}

.raffle-card-donor {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  text-align: right;
  max-width: 55%;
  line-height: 1.4;
}

.raffle-card-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 60%, var(--orange-dark) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 8px 16px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(0);
  transition: box-shadow 0.08s ease, transform 0.08s ease, background 0.08s ease;
}
.raffle-card-btn:hover {
  background: linear-gradient(180deg, #FFAA40 0%, var(--orange-bright) 60%, var(--orange) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 10px 22px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(0);
}
.raffle-card-btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #8B4500, 0 2px 6px rgba(0,0,0,0.3), inset 0 2px 4px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
}

/* TBD / Coming Soon card */
.raffle-card-tbd {
  border-color: rgba(255,255,255,0.04);
  border-top-color: rgba(136,132,128,0.4);
  opacity: 0.6;
}
.raffle-card-tbd .raffle-card-title { color: var(--gray); }
.raffle-card-tbd .raffle-card-desc {
  font-style: italic;
  color: var(--gray);
}

/* Mystery Cooler banner */
.raffle-mystery {
  background: linear-gradient(135deg, rgba(232,116,12,0.12) 0%, rgba(12,56,130,0.2) 100%);
  border: 1px solid rgba(232,116,12,0.4);
  border-left: 4px solid var(--orange-bright);
  padding: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.raffle-mystery-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.raffle-mystery-body { flex: 1; min-width: 200px; }
.raffle-mystery-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--orange-bright);
  margin-bottom: 0.4rem;
}
.raffle-mystery-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.raffle-mystery-donor {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gray);
  margin-top: 0.5rem;
}
.raffle-mystery-items {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.raffle-mystery-items li {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gray);
  padding-left: 0.8rem;
  position: relative;
}
.raffle-mystery-items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ─── PREVENT HORIZONTAL OVERFLOW ─── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV PANEL (hidden by default) ─── */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--blue-deep);
  border-bottom: 2px solid var(--orange);
  z-index: 999;
}
.mobile-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-panel ul li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-panel ul li a:hover {
  color: var(--orange);
  background: rgba(255,255,255,0.04);
}
.mobile-nav-panel.open { display: block; }

/* ─── DESKTOP NAV ─── */
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none !important; }
  .mobile-nav-panel { display: none !important; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 1rem; }

  /* BANNER — hide sidebar image, keep header strip */
  .banner-sidebar-img { display: none; }
  .banner-top-wrap { overflow: hidden; }

  /* HERO */
  .hero { padding-top: calc(60px + 15.7vw + 1.5rem); overflow-x: hidden; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; }
  .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-subtitle { font-size: clamp(1.2rem, 6vw, 2rem); }
  .hero-tagline { font-size: 0.75rem; letter-spacing: 0.08em; padding: 0 1rem; }

  /* HERO BUTTONS — single column stack */
  .hero-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.65rem;
    padding: 0 1.5rem;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
  .hero-cta .btn:nth-child(5),
  .hero-cta .btn:nth-child(6) {
    grid-column: auto;
  }

  /* COUNTDOWN */
  .countdown-bar { padding: 0.75rem 1rem; }
  .countdown-inner { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
  .countdown-num { font-size: 1.6rem; }

  /* WHAT TO EXPECT */
  .expect-grid { grid-template-columns: 1fr !important; }

  /* ITINERARY */
  .event-item { grid-template-columns: 1fr; }
  .event-item-split { grid-template-columns: 1fr; }
  .event-body-split { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem; }
  .event-time { border-right: none; border-bottom: 1px solid rgba(232,116,12,0.2); padding-bottom: 0.5rem; }

  /* HOTELS */
  .hotel-grid { grid-template-columns: 1fr; }
  .hotel-btn-group { flex-direction: column; gap: 0.5rem; }

  /* RAFFLE */
  .raffle-grid { grid-template-columns: 1fr; }

  /* SPONSORSHIPS */
  .sponsor-tiers {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .tier-royal { grid-column: 1 !important; }

  /* IN MEMORY */
  .memory-cards {
    flex-direction: column;
    align-items: center;
  }
  .memory-card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-links {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a { font-size: 0.75rem; }

  /* GENERAL */
  body { overflow-x: hidden; }
  section { padding-left: 1rem; padding-right: 1rem; }
}

/* ── SPONSOR DEADLINE ── */
.sponsor-deadline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  margin: 0 auto 1.8rem;
  max-width: 680px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ── RAFFLE CARD DETAIL LINK ── */
.raffle-card-detail-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.raffle-card-detail-link:hover .raffle-card-desc,
.raffle-card-detail-link:hover .raffle-card-items li,
.raffle-card-detail-link:hover .raffle-disclaimer {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

/* ── RAFFLE CARD THUMBNAIL ── */
.raffle-card-thumb {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  object-position: top;
  margin: 0.75rem 0;
  border-radius: 4px;
}

/* ── HOTEL VIDEO BUTTONS ── */
.hotel-video-btn {
  display: block;
  text-align: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 60%, var(--orange-dark) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 8px 16px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(0);
  transition: box-shadow 0.08s ease, transform 0.08s ease, background 0.08s ease;
}
.hotel-video-btn:hover {
  background: linear-gradient(180deg, #FFAA40 0%, var(--orange-bright) 60%, var(--orange) 100%);
  box-shadow: 0 6px 0 #8B4500, 0 10px 22px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(0);
}
.hotel-video-btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #8B4500, 0 2px 6px rgba(0,0,0,0.3), inset 0 2px 4px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
}

/* ── ITINERARY VENUE LINK ── */
.itinerary-venue-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,116,12,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.itinerary-venue-link:hover {
  color: var(--orange-bright);
  border-color: var(--orange-bright);
}

/* ── LINEUP LINKS (DJ / Band — underline on hover) ── */
.lineup-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.lineup-link:hover {
  color: var(--orange-bright);
  text-decoration: underline;
}

/* ── RAFFLE DISCLAIMER ── */
.raffle-disclaimer {
  font-family: inherit;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--gray-light);
  text-align: center;
  margin: 0.5rem auto 1.5rem;
  max-width: 640px;
  line-height: 1.7;
}
