/* ================================================================
   Sandy Music Festival – style.css v2.0
   Dark atmospheric festival design
   Fonts: Space Grotesk (headings) + Inter (body) via Google Fonts
   ================================================================ */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  /* Backgrounds – deep dark layered system */
  --bg:           #08080d;
  --bg-dark:      #0c0c14;
  --bg-mid:       #111120;
  --bg-raised:    #181826;
  --bg-card:      #1c1c2c;
  --bg-card-h:    #232336;

  /* Festival amber/orange palette */
  --amber:        #f59e0b;
  --amber-lt:     #fbbf24;
  --amber-dk:     #d97706;
  --amber-glow:   rgba(245, 158, 11, 0.14);
  --amber-glow2:  rgba(245, 158, 11, 0.28);
  --orange:       #ea580c;
  --orange-glow:  rgba(234, 88, 12, 0.12);

  /* Accent purples/blues */
  --purple:       #8b5cf6;
  --purple-glow:  rgba(139, 92, 246, 0.12);

  /* Venue colour palette (5 venues) */
  --v0: #f59e0b;   /* Sandy Conservative Club – amber   */
  --v1: #8b5cf6;   /* The Four Horsemen      – purple   */
  --v2: #0ea5e9;   /* The Queens Head        – sky blue */
  --v3: #22c55e;   /* The Bell               – green    */
  --v4: #ec4899;   /* Sandy Roundabout Club  – pink     */

  /* Typography */
  --text:         #eeeef8;
  --text-muted:   #8892a4;
  --text-dim:     #545468;

  /* Borders */
  --border:       rgba(255, 255, 255, 0.06);
  --border-lt:    rgba(255, 255, 255, 0.11);
  --border-amb:   rgba(245, 158, 11, 0.22);

  /* Shape */
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    26px;

  /* Shadows */
  --shadow:       0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-amb:   0 0 32px rgba(245, 158, 11, 0.1);
  --shadow-lg:    0 16px 56px rgba(0, 0, 0, 0.6);

  /* Layout */
  --max: 1100px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { margin: 0; padding: 0; list-style: none; }
p     { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 8vw, 5.5rem);  letter-spacing: -0.05em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem);  letter-spacing: -0.04em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1rem; letter-spacing: -0.01em; }

/* Section label (eyebrow line) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Layout ────────────────────────────────────────────────────── */
.wrap {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ── Scroll Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible           { opacity: 1; transform: none; }
.reveal-delay-1              { transition-delay: 0.1s; }
.reveal-delay-2              { transition-delay: 0.2s; }
.reveal-delay-3              { transition-delay: 0.3s; }
.reveal-delay-4              { transition-delay: 0.4s; }

/* ── Navigation ────────────────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 13, 0.75);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background 0.3s, border-color 0.3s;
}

.top-nav.is-scrolled {
  background: rgba(8, 8, 13, 0.96);
  border-bottom-color: var(--border-lt);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.85; }

.nav-brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-brand-text {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover {
  color: var(--amber);
  background: var(--amber-glow);
}

.nav-cta { display: none; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1.1rem;
  background: var(--amber);
  color: #0a0808 !important;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-btn:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
}

.menu-toggle {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: 999px;
  min-height: 36px;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.menu-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.menu-toggle-icon {
  width: 16px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.menu-toggle-label {
  line-height: 1;
}

/* Mobile open state */
.site-nav.is-open {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(8, 8, 13, 0.98);
  border-bottom: 1px solid var(--border-lt);
  padding: 0.5rem 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.site-nav.is-open a {
  padding: 0.9rem 5vw;
  border-radius: 0;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border);
}
.site-nav.is-open a:last-child { border-bottom: none; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  min-height: 46px;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: #0a0808;
  box-shadow: 0 4px 22px var(--amber-glow2);
}
.btn-primary:hover {
  background: var(--amber-lt);
  box-shadow: 0 8px 32px var(--amber-glow2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-glow);
}

.btn-outline-amber {
  border-color: var(--border-amb);
  color: var(--amber);
  background: transparent;
}
.btn-outline-amber:hover {
  background: var(--amber-glow);
  border-color: var(--amber);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Badges ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.badge-amber  { background: rgba(245, 158, 11, 0.1);  color: var(--amber);  border: 1px solid rgba(245,158,11,0.2);  }
.badge-purple { background: var(--purple-glow);        color: #c4b5fd;       border: 1px solid rgba(139,92,246,0.2);  }
.badge-blue   { background: rgba(14,165,233,0.1);      color: #7dd3fc;       border: 1px solid rgba(14,165,233,0.2);  }
.badge-green  { background: rgba(34,197,94,0.1);       color: #86efac;       border: 1px solid rgba(34,197,94,0.2);   }
.badge-pink   { background: rgba(236,72,153,0.1);      color: #f9a8d4;       border: 1px solid rgba(236,72,153,0.2);  }

/* ── HERO SECTION ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 30svh;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 7rem 0 4.5rem;
  text-align: center;
}

/* Atmospheric gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(245,158,11,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 15% 85%, rgba(234,88,12,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 50% 45% at 85% 65%, rgba(139,92,246,0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

/* Animated light beams */
.hero-beam {
  position: absolute;
  top: -5%;
  width: 2px;
  height: 65%;
  background: linear-gradient(to bottom, transparent 0%, rgba(245,158,11,0.25) 40%, rgba(245,158,11,0.08) 70%, transparent 100%);
  filter: blur(6px);
  pointer-events: none;
  border-radius: 999px;
}
.hero-beam:nth-child(1) { left: 14%; animation: smf-beam 9s ease-in-out infinite;        }
.hero-beam:nth-child(2) { left: 49%; animation: smf-beam 9s ease-in-out 2.5s infinite; opacity: 0.55; }
.hero-beam:nth-child(3) { left: 80%; animation: smf-beam 9s ease-in-out 5s infinite;   opacity: 0.35; }

@keyframes smf-beam {
  0%,100% { opacity: 0.35; transform: scaleX(1); }
  50%      { opacity: 0.7;  transform: scaleX(1.5); }
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: smf-glow-pulse 7s ease-in-out infinite;
}
.hero-glow-1 {
  width: 520px; height: 280px;
  background: rgba(245,158,11,0.11);
  top: 8%; left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 320px; height: 220px;
  background: rgba(139,92,246,0.08);
  bottom: 18%; right: 8%;
  animation-delay: 2s;
}

@keyframes smf-glow-pulse {
  0%,100% { opacity: 0.7; }
  50%      { opacity: 1;   }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  background: rgba(245,158,11,0.09);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  margin-bottom: 2rem;
}

.hero-logo-wrap { margin-bottom: 1.75rem; }

.hero-logo {
  width: min(200px, 45vw);
  filter: drop-shadow(0 0 44px rgba(245,158,11,0.22));
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.8rem, 9vw, 6rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 0.65rem;
  color: #FDCD3A;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 40ch;
  line-height: 1.55;
}

/* Date pill */
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-lt);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.hero-date-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: smf-pulse-dot 2.2s ease-in-out infinite;
}

@keyframes smf-pulse-dot {
  0%,100% { opacity: 1;   transform: scale(1);   }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

/* Countdown */
.hero-countdown {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.countdown-digit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  min-width: 68px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: color 0.4s;
}

.countdown-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-dim);
}

.countdown-passed {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0.5rem 0;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: smf-bounce 2.5s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll-hint svg { opacity: 0.5; }

@keyframes smf-bounce {
  0%,100% { transform: translateX(-50%) translateY(0);   }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── QUICK FACTS STRIP ─────────────────────────────────────────── */
.facts-strip {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.5rem;
  justify-content: center;
  align-items: center;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.fact-item strong { color: var(--text); }

.fact-sep {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* ── OVERVIEW SECTION ─────────────────────────────────────────── */
.overview-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
}

.overview-card p { color: var(--text-muted); line-height: 1.72; }
.overview-card p + p { margin-top: 0.85rem; }

.overview-trail {
  display: flex;
  gap: 5px;
  margin-top: 1.75rem;
}
.overview-trail span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
}
.overview-trail span:nth-child(1) { background: var(--v0); }
.overview-trail span:nth-child(2) { background: var(--v1); }
.overview-trail span:nth-child(3) { background: var(--v2); }
.overview-trail span:nth-child(4) { background: var(--v3); }
.overview-trail span:nth-child(5) { background: var(--v4); }

.quick-details-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-amb);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-amb);
}

.quick-details-card .qd-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.qd-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.qd-row:last-child { border-bottom: none; padding-bottom: 0; }

.qd-key {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  flex-shrink: 0;
}

.qd-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

/* ── VENUES / LINEUP SECTION ───────────────────────────────────── */
.venues-section {
  background: var(--bg);
  padding: 5rem 0;
}

/* Tab controls */
.tab-controls {
  display: flex;
  gap: 0;
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 2.5rem;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.86rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tab-btn.is-active {
  background: var(--amber);
  color: #0a0808;
}
.tab-btn:not(.is-active):hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.tab-panel        { display: none; }
.tab-panel.is-active { display: block; }

/* Venue cards */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 1.5rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.venue-card:hover {
  border-color: var(--border-lt);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}

/* Coloured top bar per venue */
.venue-card-accent {
  height: 4px;
  margin: 0 -1.5rem 1.25rem;
  border-radius: 0;
}

.venue-card[data-venue="0"] .venue-card-accent { background: var(--v0); }
.venue-card[data-venue="1"] .venue-card-accent { background: var(--v1); }
.venue-card[data-venue="2"] .venue-card-accent { background: var(--v2); }
.venue-card[data-venue="3"] .venue-card-accent { background: var(--v3); }
.venue-card[data-venue="4"] .venue-card-accent { background: var(--v4); }

.venue-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.venue-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.venue-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.venue-meta-icon { opacity: 0.55; flex-shrink: 0; margin-top: 1px; }

.venue-badge-row {
  margin-bottom: 0.75rem;
}

.venue-acts {
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.venue-acts-title {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.venue-acts-list {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.venue-act-item {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.venue-act-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  min-width: 38px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.venue-card[data-venue="0"] .venue-act-time { color: var(--v0); }
.venue-card[data-venue="1"] .venue-act-time { color: var(--v1); }
.venue-card[data-venue="2"] .venue-act-time { color: var(--v2); }
.venue-card[data-venue="3"] .venue-act-time { color: var(--v3); }
.venue-card[data-venue="4"] .venue-act-time { color: var(--v4); }

.venue-act-name { color: var(--text-muted); }

/* Schedule table */
.lineup-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.14);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.86rem;
  color: #fde68a;
  line-height: 1.5;
}

.schedule-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.schedule thead tr { background: var(--bg-raised); }

.schedule th {
  padding: 0.85rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-dim);
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border-lt);
}

.schedule tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.schedule tbody tr:last-child { border-bottom: none; }
.schedule tbody tr:hover { background: var(--bg-raised); }

.schedule td {
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  vertical-align: middle;
}

.td-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--amber) !important;
  font-size: 0.85rem;
  white-space: nowrap;
}

.td-venue {
  font-size: 0.82rem;
  white-space: nowrap;
}

.td-act {
  color: var(--text) !important;
  font-weight: 500;
}

.venue-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── WRISTBAND / TICKETS ───────────────────────────────────────── */
.wristband-section {
  background: var(--bg-mid);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wristband-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.wristband-inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.wristband-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.09);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  margin: 1.5rem auto 0.5rem;
}

.wristband-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

/* ── LOCATION ──────────────────────────────────────────────────── */
.location-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.location-info-card p { color: var(--text-muted); font-size: 0.92rem; }

.location-map-placeholder {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.map-icon { font-size: 2.8rem; opacity: 0.35; }

/* ── GET INVOLVED ──────────────────────────────────────────────── */
.involved-section {
  background: var(--bg);
  padding: 5rem 0;
}

.involved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.involved-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.22s;
}
.involved-card:hover {
  border-color: var(--border-lt);
  transform: translateY(-3px);
}

.involved-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.involved-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }

.involved-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
  line-height: 1.65;
}

.involved-link {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(245,158,11,0.28);
  transition: border-color 0.2s;
}
.involved-link:hover { border-bottom-color: var(--amber); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg-mid);
  padding: 5rem 0;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-amb); }

.faq-item summary {
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--amber); }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.22s, color 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--amber);
}

.faq-answer {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

/* ── SPONSORS ──────────────────────────────────────────────────── */
.sponsors-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.sponsor-slot {
  background: var(--bg-raised);
  border: 1px dashed rgba(255,255,255,0.09);
  border-radius: var(--radius);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s;
}
.sponsor-slot:hover { border-color: rgba(245,158,11,0.2); }

.sponsors-cta {
  margin-top: 2.5rem;
}
.sponsors-cta p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

/* ── MAILING SIGNUP ─────────────────────────────────────────────── */
.signup-section {
  background: var(--bg-mid);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.signup-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, var(--orange-glow) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5%  50%, var(--purple-glow) 0%, transparent 60%);
  pointer-events: none;
}

.signup-inner {
  position: relative;
  max-width: 560px;
}

.signup-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.signup-field { display: grid; gap: 0.4rem; }

.signup-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.signup-field input {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-field input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.11);
}
.signup-field input::placeholder { color: var(--text-dim); }

.signup-consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.signup-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  accent-color: var(--amber);
  flex-shrink: 0;
}
.signup-consent-row span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.signup-submit { width: 100%; }

/* Alert messages (used on standalone mailing pages too) */
.mailing-alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.mailing-alert-success {
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.22);
  color: #86efac;
}
.mailing-alert-error {
  background: rgba(239,68,68,0.09);
  border: 1px solid rgba(239,68,68,0.22);
  color: #fca5a5;
}

/* ── SITE FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 30ch;
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-col a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .venues-grid    { grid-template-columns: repeat(2, 1fr); }
  .involved-grid  { grid-template-columns: repeat(3, 1fr); }
  .sponsor-grid   { grid-template-columns: repeat(4, 1fr); }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .site-nav    { display: flex; }
  .nav-cta     { display: flex; }

  .overview-grid  { grid-template-columns: 1.35fr 0.65fr; }
  .location-grid  { grid-template-columns: 1fr 1fr; }
  .venues-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .venues-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

@media (max-width: 639px) {
  .section-pad    { padding: 3.5rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
  .hero           { padding: 5.5rem 0 3rem; min-height: 30svh; }
  .hero-countdown { gap: 0.5rem; }
  .countdown-unit { min-width: 58px; }
  .countdown-digit {
    font-size: 1.75rem;
    min-width: 60px;
    padding: 0.48rem 0.65rem;
  }
  .facts-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1vw;
    gap: 0.65rem;
  }
  .fact-sep { display: none; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn { width: 100%; max-width: 300px; }
  .tab-controls { max-width: 100%; }
  .overview-card { padding: 1.4rem 1.2rem; }
}

@media (max-width: 430px) {
  .menu-toggle {
    padding-inline: 0.7rem;
  }

  .menu-toggle-label {
    display: none;
  }
}

/* ── LEGACY COMPAT – standalone mailing pages ───────────────────── */
/*
 * subscribe.php / confirm-subscription.php / unsubscribe.php
 * use the old class names below. Kept for backward compatibility.
 */
.mailing-shell { padding: 2rem 0 4rem; }

.section { padding: 2.5rem 0; }

.signup-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.signup-panel-page {
  max-width: 700px;
  margin: 0 auto;
}

.signup-panel-status { grid-template-columns: 1fr; gap: 1.5rem; }

.signup-copy p { color: var(--text-muted); margin: 0; }

.signup-copy-status { max-width: 42rem; }

.signup-status-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.05em;
  max-width: 14ch;
}

.signup-status-actions { align-items: flex-start; }
.signup-status-actions .btn { width: auto; }

.signup-back-link {
  color: var(--amber);
  border-color: var(--border-amb);
}

/* eyebrow used on standalone pages */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--amber-glow);
  border: 1px solid var(--border-amb);
  color: var(--amber);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.8rem;
}

.signup-eyebrow {
  color: var(--amber);
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.18);
}

/* Legacy form field inside old .signup-form */
.signup-form .field {
  display: grid;
  gap: 0.4rem;
}
.signup-form .field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.signup-form .field input {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  width: 100%;
}
.signup-form .field input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.11);
}

.signup-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.signup-consent input { width: 18px; height: 18px; accent-color: var(--amber); margin-top: 0.1rem; }

/* utilities */
.text-muted  { color: var(--text-muted); }
.text-dim    { color: var(--text-dim);   }
.text-amber  { color: var(--amber);      }
.text-center { text-align: center;       }
.muted       { color: var(--text-muted); }    /* used on standalone mailing pages */
.mt-1 { margin-top: 0.5rem;  }
.mt-2 { margin-top: 1rem;    }
.mt-3 { margin-top: 1.5rem;  }
.mb-0 { margin-bottom: 0;    }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem;   }

/* ================================================================
   LIGHT / DARK MODE TOGGLE
   ================================================================ */

/* ── Theme toggle button ────────────────────────────────────────── */
.theme-toggle {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.theme-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Icons tied to the button's own data-mode attribute — avoids specificity fights */
.theme-toggle[data-mode="dark"]  .theme-icon-sun  { display: block; }
.theme-toggle[data-mode="dark"]  .theme-icon-moon { display: none;  }
.theme-toggle[data-mode="light"] .theme-icon-sun  { display: none;  }
.theme-toggle[data-mode="light"] .theme-icon-moon { display: block; }
/* Fallback if attribute not yet set */
.theme-toggle:not([data-mode])   .theme-icon-moon { display: none;  }

/* ── Light mode CSS variables ───────────────────────────────────── */
[data-theme="light"] {
  /* Backgrounds – warm cream/pastel system */
  --bg:           #fffbf0;
  --bg-dark:      #fff7e6;
  --bg-mid:       #fef5e4;
  --bg-raised:    #ffffff;
  --bg-card:      #ffffff;
  --bg-card-h:    #fefce8;

  /* Orange/coral works better than amber-yellow on white */
  --amber:        #ea580c;
  --amber-lt:     #f97316;
  --amber-dk:     #c2410c;
  --amber-glow:   rgba(234, 88, 12, 0.08);
  --amber-glow2:  rgba(234, 88, 12, 0.2);
  --orange:       #dc2626;
  --orange-glow:  rgba(220, 38, 38, 0.08);
  --purple:       #7c3aed;
  --purple-glow:  rgba(124, 58, 237, 0.08);

  /* Text */
  --text:         #1c1917;
  --text-muted:   #57534e;
  --text-dim:     #a8a29e;

  /* Borders */
  --border:       rgba(0, 0, 0, 0.07);
  --border-lt:    rgba(0, 0, 0, 0.12);
  --border-amb:   rgba(234, 88, 12, 0.18);

  /* Shadows */
  --shadow:       0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-amb:   0 0 28px rgba(234, 88, 12, 0.07);
  --shadow-lg:    0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ── Navigation (light) ─────────────────────────────────────────── */
[data-theme="light"] .top-nav {
  background: rgba(255, 251, 240, 0.82);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .top-nav.is-scrolled {
  background: rgba(255, 251, 240, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .site-nav.is-open {
  background: rgba(255, 251, 240, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ── Section label (light) ──────────────────────────────────────── */
[data-theme="light"] .section-label         { color: #c2410c; }
[data-theme="light"] .section-label::before { background: #c2410c; }

/* ── HERO (light) – warm rainbow gradient, no dark atmospheric FX ─ */
[data-theme="light"] .hero {
  background: linear-gradient(145deg, #fef9c3 0%, #fed7aa 30%, #fecaca 65%, #dbeafe 100%);
}

/* Softer, colourful atmosphere rather than dark glow */
[data-theme="light"] .hero::before {
  background:
    radial-gradient(ellipse 55% 40% at 25% 35%, rgba(251, 191, 36, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 55%);
}
[data-theme="light"] .hero::after { opacity: 0.1; }
[data-theme="light"] .hero-beam  { opacity: 0.18; filter: blur(6px); }
[data-theme="light"] .hero-glow-1 { background: rgba(251, 191, 36, 0.2); }
[data-theme="light"] .hero-glow-2 { background: rgba(236, 72, 153, 0.1); }

[data-theme="light"] .hero-title {
  color: #FDCD3A;
  -webkit-text-stroke: 2px #7c2d12;
  paint-order: stroke fill;
  background: none;
  -webkit-text-fill-color: #FDCD3A;
}
[data-theme="light"] .hero-eyebrow {
  background: rgba(194, 65, 12, 0.08);
  border-color: rgba(194, 65, 12, 0.2);
  color: #c2410c;
}
[data-theme="light"] .hero-date-badge {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.14);
  color: #1c1917;
}
[data-theme="light"] .hero-scroll-hint { color: #92400e; opacity: 0.6; }
[data-theme="light"] .btn-secondary {
  border-color: rgba(0, 0, 0, 0.22);
  color: #1c1917;
  background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .btn-secondary:hover {
  border-color: #ea580c;
  color: #c2410c;
  background: rgba(234, 88, 12, 0.06);
}

/* ── Quick facts strip (light) ──────────────────────────────────── */
[data-theme="light"] .facts-strip {
  background: #fffbeb;
  border-color: rgba(0, 0, 0, 0.07);
}

/* ── RAINBOW PASTEL section backgrounds ─────────────────────────── */
/*
 * Each section gets its own pastel colour in light mode,
 * creating a soft rainbow effect as the user scrolls down.
 */
[data-theme="light"] .overview-section   { background: #f0fdf4; }   /* mint    */
[data-theme="light"] .venues-section     { background: #f0f9ff; }   /* sky     */
[data-theme="light"] .wristband-section  { background: #fff1f2; }   /* rose    */
[data-theme="light"] .wristband-section::before {
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(251, 113, 133, 0.12) 0%, transparent 70%);
}
[data-theme="light"] .location-section  { background: #faf5ff; }    /* lavender */
[data-theme="light"] .involved-section  { background: #fefce8; }    /* lemon   */
[data-theme="light"] .faq-section       { background: #fdf2f8; }    /* blush pink */
[data-theme="light"] .sponsors-section  { background: #f0fdf4; }    /* mint    */
[data-theme="light"] .signup-section    { background: #eff6ff; }    /* periwinkle */
[data-theme="light"] .signup-section::before {
  background:
    radial-gradient(ellipse 50% 80% at 92% 50%, rgba(251, 113, 133, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at  5% 50%, rgba(167, 139, 250, 0.07) 0%, transparent 60%);
}
[data-theme="light"] .site-footer {
  background: #fff7f0;
  border-top-color: rgba(0, 0, 0, 0.07);
}

/* ── Cards (light) ──────────────────────────────────────────────── */
[data-theme="light"] .overview-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .overview-card p { color: #57534e; }

[data-theme="light"] .quick-details-card {
  background: #fffbeb;
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 0 2px 12px rgba(234, 88, 12, 0.06);
}
[data-theme="light"] .qd-row { border-bottom-color: rgba(0, 0, 0, 0.07); }
[data-theme="light"] .qd-key { color: #a8a29e; }
[data-theme="light"] .qd-val { color: #1c1917; }

/* Venue cards: each gets a pastel tint matching its accent colour */
[data-theme="light"] .venue-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .venue-card[data-venue="0"] { background: #fffbeb; border-color: rgba(245,158,11,0.2); }
[data-theme="light"] .venue-card[data-venue="1"] { background: #faf5ff; border-color: rgba(139,92,246,0.18); }
[data-theme="light"] .venue-card[data-venue="2"] { background: #f0f9ff; border-color: rgba(14,165,233,0.18); }
[data-theme="light"] .venue-card[data-venue="3"] { background: #f0fdf4; border-color: rgba(34,197,94,0.18); }
[data-theme="light"] .venue-card[data-venue="4"] { background: #fdf2f8; border-color: rgba(236,72,153,0.18); }
[data-theme="light"] .venue-card:hover { border-color: rgba(0,0,0,0.18); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

[data-theme="light"] .venue-meta-row { color: #57534e; }
[data-theme="light"] .venue-act-name { color: #57534e; }

/* ── Tab controls (light) ───────────────────────────────────────── */
[data-theme="light"] .tab-controls {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .tab-btn:not(.is-active) { color: #57534e; }
[data-theme="light"] .tab-btn:not(.is-active):hover { background: rgba(0,0,0,0.06); color: #1c1917; }

/* ── Schedule table (light) ─────────────────────────────────────── */
[data-theme="light"] .schedule-wrapper { border-color: rgba(0, 0, 0, 0.1); }
[data-theme="light"] .schedule thead tr { background: #f5f5f5; }
[data-theme="light"] .schedule th { color: #a8a29e; border-bottom-color: rgba(0,0,0,0.1); }
[data-theme="light"] .schedule tbody tr { border-bottom-color: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .schedule tbody tr:hover { background: #fafafa; }
[data-theme="light"] .schedule td { color: #57534e; }
[data-theme="light"] .td-act { color: #1c1917 !important; }

[data-theme="light"] .lineup-warning {
  background: rgba(234, 88, 12, 0.06);
  border-color: rgba(234, 88, 12, 0.15);
  color: #9a3412;
}

/* ── Location (light) ───────────────────────────────────────────── */
[data-theme="light"] .location-info-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .location-info-card p { color: #57534e; }
[data-theme="light"] .location-map-placeholder {
  background: #f5f5f0;
  border-color: rgba(0, 0, 0, 0.1);
  color: #78716c;
}
[data-theme="light"] .btn-outline-amber {
  border-color: rgba(194, 65, 12, 0.3);
  color: #c2410c;
}
[data-theme="light"] .btn-outline-amber:hover {
  background: rgba(234, 88, 12, 0.06);
  border-color: #ea580c;
}

/* ── Wristband (light) ──────────────────────────────────────────── */
[data-theme="light"] .wristband-price-badge {
  background: rgba(234, 88, 12, 0.07);
  border-color: rgba(234, 88, 12, 0.2);
  color: #c2410c;
}
[data-theme="light"] .wristband-note { color: #57534e; }

/* ── Involved cards (light) ─────────────────────────────────────── */
[data-theme="light"] .involved-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .involved-card:nth-child(1) { background: #fffbeb; }
[data-theme="light"] .involved-card:nth-child(2) { background: #f0fdf4; }
[data-theme="light"] .involved-card:nth-child(3) { background: #faf5ff; }
[data-theme="light"] .involved-card p { color: #57534e; }
[data-theme="light"] .involved-link { color: #c2410c; border-bottom-color: rgba(194,65,12,0.28); }
[data-theme="light"] .involved-link:hover { border-bottom-color: #c2410c; }

/* ── FAQ (light) ────────────────────────────────────────────────── */
[data-theme="light"] .faq-item { background: #ffffff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .faq-item[open] { border-color: rgba(234,88,12,0.25); }
[data-theme="light"] .faq-item summary { color: #1c1917; }
[data-theme="light"] .faq-item summary::after { color: #a8a29e; }
[data-theme="light"] .faq-item[open] summary { color: #c2410c; }
[data-theme="light"] .faq-item[open] summary::after { color: #c2410c; }
[data-theme="light"] .faq-answer { color: #57534e; }

/* ── Sponsors (light) ───────────────────────────────────────────── */
[data-theme="light"] .sponsor-slot {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #a8a29e;
}
[data-theme="light"] .sponsor-slot:hover { border-color: rgba(234,88,12,0.2); }
[data-theme="light"] .sponsors-cta p { color: #57534e; }

/* ── Mailing signup (light) ─────────────────────────────────────── */
[data-theme="light"] .signup-field label { color: #78716c; }
[data-theme="light"] .signup-field input {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #1c1917;
}
[data-theme="light"] .signup-field input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}
[data-theme="light"] .signup-field input::placeholder { color: #c4b9ae; }
[data-theme="light"] .signup-consent-row {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .signup-consent-row span { color: #57534e; }

/* ── Footer (light) ─────────────────────────────────────────────── */
[data-theme="light"] .footer-col a { color: #57534e; }
[data-theme="light"] .footer-col h4 { color: #a8a29e; }
[data-theme="light"] .footer-brand-desc { color: #a8a29e; }
[data-theme="light"] .footer-bottom { color: #a8a29e; border-top-color: rgba(0,0,0,0.07); }
[data-theme="light"] .footer-bottom a { color: #a8a29e; }
[data-theme="light"] .footer-bottom a:hover { color: #ea580c; }
[data-theme="light"] .footer-col a:hover { color: #ea580c; }

/* ── Legacy mailing pages (light) ───────────────────────────────── */
[data-theme="light"] .signup-panel {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
[data-theme="light"] .signup-form .field input {
  background: #ffffff;
  border-color: rgba(0,0,0,0.15);
  color: #1c1917;
}
[data-theme="light"] .signup-consent {
  background: #f9f9f9;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .mailing-alert-success { background: #f0fdf4; border-color: #86efac; color: #166534; }
[data-theme="light"] .mailing-alert-error   { background: #fef2f2; border-color: #fca5a5; color: #991b1b; }

/* Minimal nav on standalone mailing pages */
[data-theme="light"] .mailing-page-nav {
  background: rgba(255, 251, 240, 0.97);
  border-bottom-color: rgba(0,0,0,0.08);
}

/* ── Smooth colour transition between modes ─────────────────────── */
body,
.top-nav,
.hero,
.facts-strip,
.overview-section,
.venues-section,
.wristband-section,
.location-section,
.involved-section,
.faq-section,
.sponsors-section,
.signup-section,
.site-footer,
.venue-card,
.overview-card,
.quick-details-card,
.involved-card,
.faq-item,
.sponsor-slot,
.location-info-card {
  transition: background-color 0.35s ease, border-color 0.3s ease, color 0.3s ease;
}

/* ================================================================
   MULTI-PAGE ADDITIONS
   ================================================================ */

/* ── Active nav link ────────────────────────────────────────────── */
.site-nav a.is-active {
  color: var(--amber);
  font-weight: 600;
}

/* ── News section ───────────────────────────────────────────────── */
.news-section {
  padding: 5rem 0 4rem;
  background: var(--bg-mid);
}

/* Full-width stacked list */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.news-row {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.news-row:first-child { border-top: 1px solid var(--border); }

.news-row-aside {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.2rem;
}

.news-row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--border-amb);
  padding: 0.15rem 0.55rem;
  border-radius: 99px;
  display: inline-block;
  width: fit-content;
}

.news-title {
  font-family: 'Space Grotesk', var(--font-head);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
}

.news-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 72ch;
}

.news-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-link:hover { color: var(--amber-lt); }

/* Mobile: stack aside above body */
@media (max-width: 600px) {
  .news-row { flex-direction: column; gap: 0.75rem; }
  .news-row-aside { flex-direction: row; align-items: center; gap: 0.6rem; }
}

/* ── Pagination ─────────────────────────────────────────────────── */
.news-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.news-pag-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-amb);
  border-radius: var(--radius-sm);
  background: var(--amber-glow);
  transition: background 0.2s ease, color 0.2s ease;
}
.news-pag-btn:hover { background: var(--amber-glow2); color: var(--amber-lt); }
.news-pag-btn.is-disabled {
  color: var(--text-dim);
  background: transparent;
  border-color: var(--border);
  cursor: default;
  pointer-events: none;
}

.news-pag-count {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.news-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 2rem 0;
}
.news-empty a { color: var(--amber); }

/* ── News light mode ────────────────────────────────────────────── */
[data-theme="light"] .news-section  { background: #f0f8ff; }
[data-theme="light"] .news-row      { border-color: rgba(0,0,0,0.09); }
[data-theme="light"] .news-category {
  color: var(--orange);
  background: rgba(234,88,12,0.08);
  border-color: rgba(234,88,12,0.2);
}
[data-theme="light"] .news-link          { color: var(--orange); }
[data-theme="light"] .news-link:hover    { color: #c2410c; }
[data-theme="light"] .news-pag-btn       { color: var(--orange); background: rgba(234,88,12,0.08); border-color: rgba(234,88,12,0.2); }
[data-theme="light"] .news-pag-btn:hover { background: rgba(234,88,12,0.15); }

/* ── Add news-section to theme transition ───────────────────────── */
.news-section {
  transition: background-color 0.35s ease, border-color 0.3s ease, color 0.3s ease;
}
