/* =============================================================
   ASTROLABE FESTIVAL — Vibrant Newfoundland Concert Style
   Colors from the poster: Deep navy, fiery orange/red, cyan blue
   ============================================================= */

/* ---- CSS VARIABLES ---- */
:root {
  /* Poster Colors */
  --navy-deep: #0a0d1a;
  --navy-mid: #111633;
  --navy-light: #1e2a4a;
  --orange-fire: #e8540a;
  --orange-warm: #f07024;
  --orange-light: #f5a623;
  --cyan-sky: #00b4d8;
  --cyan-bright: #48cae4;
  --cyan-pale: #90e0ef;
  --red-stage: #c0392b;
  --red-warm: #e74c3c;
  --white: #ffffff;
  --cream: #fdf8f0;
  --light-gray: #f0f0f0;
  --text-muted: #94a3b8;
  --text-dark: #1a202c;
  --gold: #f4d03f;
  --gold-dark: #d4a017;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, var(--navy-deep) 0%, #0d1b3e 40%, #1a0a2e 70%, var(--navy-deep) 100%);
  --orange-gradient: linear-gradient(135deg, var(--orange-fire) 0%, var(--orange-warm) 50%, var(--orange-light) 100%);
  --cyan-gradient: linear-gradient(135deg, var(--cyan-sky) 0%, var(--cyan-bright) 100%);
  
  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Spacing */
  --section-padding: 90px 0;
  --container-width: 1200px;
  --container-pad: 0 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --glow-orange: 0 0 30px rgba(232, 84, 10, 0.5), 0 0 60px rgba(232, 84, 10, 0.2);
  --glow-cyan: 0 0 20px rgba(0, 180, 216, 0.4), 0 0 40px rgba(0, 180, 216, 0.2);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background-color: var(--navy-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.hidden {
  display: none !important;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ---- SECTION TAGS ---- */
.section-tag {
  display: inline-block;
  background: var(--orange-gradient);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.light-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.8);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(232, 84, 10, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 84, 10, 0.6);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* ---- LINK BUTTONS ---- */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

.link-btn:hover {
  background: rgba(232, 84, 10, 0.3);
  border-color: var(--orange-warm);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 16px 0;
}

#main-nav.scrolled {
  background: rgba(10, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 84, 10, 0.3);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--cyan-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-astrolabe {
  font-size: 1.6rem;
  color: var(--orange-fire);
  animation: spin-slow 20s linear infinite;
}

.logo-astrolabe.large {
  font-size: 2.5rem;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 30px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--orange-gradient) !important;
  color: var(--white) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(232, 84, 10, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 84, 10, 0.6) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: var(--hero-gradient);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 57, 43, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 180, 216, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 84, 10, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Stage Light Beams */
.hero-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  top: -5%;
  width: 3px;
  height: 110%;
  transform-origin: top center;
  opacity: 0;
  border-radius: 2px;
}

.beam-1 {
  left: 10%;
  background: linear-gradient(180deg, rgba(232, 84, 10, 0.8) 0%, transparent 100%);
  transform: rotate(-15deg);
  animation: beam-swing 4s ease-in-out infinite;
  animation-delay: 0s;
  width: 80px;
  opacity: 0.12;
}

.beam-2 {
  left: 25%;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.8) 0%, transparent 100%);
  transform: rotate(-8deg);
  animation: beam-swing 5s ease-in-out infinite reverse;
  animation-delay: 0.5s;
  width: 60px;
  opacity: 0.1;
}

.beam-3 {
  left: 50%;
  background: linear-gradient(180deg, rgba(244, 208, 63, 0.9) 0%, transparent 100%);
  transform: rotate(0deg);
  animation: beam-swing 6s ease-in-out infinite;
  animation-delay: 1s;
  width: 100px;
  opacity: 0.08;
}

.beam-4 {
  left: 70%;
  background: linear-gradient(180deg, rgba(192, 57, 43, 0.8) 0%, transparent 100%);
  transform: rotate(8deg);
  animation: beam-swing 4.5s ease-in-out infinite reverse;
  animation-delay: 0.3s;
  width: 70px;
  opacity: 0.12;
}

.beam-5 {
  left: 85%;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.8) 0%, transparent 100%);
  transform: rotate(15deg);
  animation: beam-swing 5.5s ease-in-out infinite;
  animation-delay: 0.8s;
  width: 55px;
  opacity: 0.1;
}

@keyframes beam-swing {
  0%, 100% { transform: rotate(-20deg) scaleX(1); }
  50% { transform: rotate(20deg) scaleX(1.3); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Astrolabe Badge */
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  animation: fade-down 0.8s ease both;
}

.astrolabe-svg {
  width: 70px;
  height: 70px;
  color: var(--cyan-bright);
  animation: spin-slow 20s linear infinite;
  filter: drop-shadow(var(--glow-cyan));
}

.badge-text {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--cyan-pale);
  letter-spacing: 0.1em;
}

/* Hero Date */
.hero-date-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
  animation: fade-down 0.8s ease 0.1s both;
}

/* Hero Title */
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 24px;
  animation: fade-down 0.8s ease 0.2s both;
}

.title-astro {
  display: block;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--white);
  text-shadow: 0 0 40px rgba(232, 84, 10, 0.4), 0 4px 0 rgba(0,0,0,0.3);
  letter-spacing: 0.05em;
}

.title-o {
  color: var(--orange-fire);
  text-shadow: 0 0 30px var(--orange-fire), 0 0 60px rgba(232, 84, 10, 0.4);
}

.title-festival {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--cyan-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
  margin-top: 4px;
}

/* Hero Location */
.hero-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
  animation: fade-up 0.8s ease 0.3s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-location i {
  color: var(--orange-warm);
}

.hero-gates {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 0.35s both;
}

/* Hero Lineup */
.hero-lineup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 36px;
  animation: fade-up 0.8s ease 0.4s both;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 12px 28px;
}

.lineup-headliner {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lineup-divider {
  color: var(--cyan-bright);
  font-size: 0.8rem;
}

.lineup-acts {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.5s both;
}

.hero-price-preview {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  animation: fade-up 0.8s ease 0.6s both;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-price-preview strong {
  color: var(--gold);
}

.price-sep {
  opacity: 0.4;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-hint 2s ease-in-out infinite;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section {
  padding: var(--section-padding);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-bg-coastal {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 180, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 84, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-gradient);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px auto 36px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 120px;
  backdrop-filter: blur(4px);
  transition: border-color var(--transition);
}

.countdown-unit:hover {
  border-color: var(--orange-warm);
}

.countdown-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.15s ease;
}

.countdown-number.tick {
  transform: scale(1.08);
}

.countdown-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.countdown-colon {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange-fire);
  margin-bottom: 20px;
  animation: blink-colon 1s step-start infinite;
}

@keyframes blink-colon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.countdown-complete {
  background: var(--orange-gradient);
  padding: 20px 36px;
  border-radius: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.complete-emoji { font-size: 2rem; }

/* ============================================================
   ARTISTS
   ============================================================ */
.artists-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
}

/* Wave top */
.artists-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 80px;
  background: var(--navy-mid);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.artists-section .section-title,
.artists-section .section-subtitle {
  color: var(--navy-deep);
}

/* Filter Tabs */
.artist-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #d1d5db;
  color: #4b5563;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--orange-warm);
  color: var(--orange-fire);
}

.filter-btn.active {
  background: var(--orange-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 84, 10, 0.3);
}

/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Artist Card */
.artist-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.artist-card.hidden-card {
  display: none;
}

/* Card Image */
.artist-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--navy-deep);
}

.artist-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-card-img-wrap img {
  transform: scale(1.05);
}

.artist-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,26,0.6) 0%, transparent 60%);
  pointer-events: none;
}

/* JDB Card (logo instead of photo) */
.jdb-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a0a2e 100%);
}

.jdb-logo-display {
  text-align: center;
  padding: 20px;
}

.jdb-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  gap: 4px;
  box-shadow: var(--glow-orange);
}

.jdb-logo-circle i {
  font-size: 1.5rem;
}

.jdb-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* Card Badge */
.artist-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange-gradient);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.headliner {
  background: linear-gradient(135deg, #f4d03f, #d4a017);
  color: var(--navy-deep);
}

.local-badge {
  background: linear-gradient(135deg, var(--cyan-sky), var(--cyan-bright));
  color: var(--navy-deep);
}

/* Card Body */
.artist-card-body {
  padding: 24px;
}

.artist-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-folk { background: #e8f5e9; color: #2e7d32; }
.tag-country { background: #fff3e0; color: #e65100; }
.tag-celtic { background: #e3f2fd; color: #1565c0; }
.tag-rock { background: #fce4ec; color: #c62828; }
.tag-blues { background: #ede7f6; color: #4527a0; }
.tag-covers { background: #f3e5f5; color: #6a1b9a; }

.artist-bio-short {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.artist-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 10px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-fire);
}

.stat span {
  font-size: 0.68rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Expand Button */
.expand-btn {
  width: 100%;
  justify-content: space-between;
  background: transparent;
  border: 2px solid #e5e7eb;
  color: var(--navy-deep);
  font-family: 'Oswald', sans-serif;
}

.expand-btn:hover {
  border-color: var(--orange-warm);
  color: var(--orange-fire);
}

.expand-btn[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.expand-btn .fa-chevron-down {
  transition: transform var(--transition);
}

/* Artist Profile (expanded) */
.artist-profile {
  border-top: 2px solid var(--light-gray);
  background: #f9fafb;
}

.profile-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-section h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
}

.profile-section h4 i {
  color: var(--orange-fire);
}

.profile-section p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 8px;
}

.profile-section p:last-child { margin-bottom: 0; }

.profile-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-list li {
  font-size: 0.88rem;
  color: #374151;
  padding-left: 20px;
  position: relative;
}

.profile-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange-fire);
}

.song-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.song-list li {
  font-size: 0.88rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.song-list li i {
  color: var(--orange-fire);
  flex-shrink: 0;
}

/* Video Embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.embed-note {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  font-style: italic;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   JIMMY RANKIN SPOTLIGHT
   ============================================================ */
.spotlight-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

.jimmy-spotlight {
  background: var(--navy-deep);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
}

.spotlight-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(40%) brightness(0.3);
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,13,26,0.97) 0%, rgba(10,13,26,0.75) 60%, rgba(10,13,26,0.4) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(192, 57, 43, 0.15) 0%, transparent 60%);
}

.spotlight-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.spotlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4d03f, #d4a017);
  color: var(--navy-deep);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.spotlight-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.spotlight-subtitle {
  font-size: 1.1rem;
  color: var(--orange-light);
  font-style: italic;
  margin-bottom: 28px;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
}

.spotlight-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.spotlight-body strong {
  color: var(--orange-light);
}

.spotlight-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.award-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232, 84, 10, 0.4);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ============================================================
   LUCAS KETTLE SPOTLIGHT
   ============================================================ */
.lucas-spotlight {
  background: var(--cream);
  padding: var(--section-padding);
}

.local-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.local-spotlight-img {
  position: relative;
}

.local-spotlight-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.local-img-frame {
  position: absolute;
  inset: -12px;
  border: 3px solid var(--orange-fire);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.local-spotlight-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.local-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--orange-fire);
  margin-bottom: 20px;
}

.local-spotlight-text p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}

.local-quote {
  background: var(--navy-deep);
  color: var(--white);
  border-left: 4px solid var(--orange-fire);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-style: italic;
  font-size: 0.95rem;
}

.local-quote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--orange-light);
  font-style: normal;
  margin-top: 8px;
  font-weight: 500;
}

.local-badge-alt {
  background: var(--cyan-gradient);
  color: var(--navy-deep);
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.local-links .link-btn {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.local-links .link-btn:hover {
  background: var(--orange-fire);
  border-color: var(--orange-fire);
}

/* ============================================================
   TICKETS
   ============================================================ */
.tickets-section {
  padding: var(--section-padding);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tickets-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 84, 10, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.ticket-card {
  transition: transform var(--transition);
}

.ticket-card:hover {
  transform: translateY(-8px);
}

.ticket-tier {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  text-align: center;
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: border-color var(--transition);
}

.ticket-tier:hover {
  border-color: rgba(232, 84, 10, 0.5);
}

.featured-ticket .ticket-tier {
  border-color: var(--orange-fire);
  background: linear-gradient(135deg, rgba(232, 84, 10, 0.15) 0%, rgba(232, 84, 10, 0.05) 100%);
  box-shadow: 0 0 40px rgba(232, 84, 10, 0.2);
}

.ticket-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--cyan-gradient);
  color: var(--navy-deep);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 40px;
  transform: rotate(45deg);
  transform-origin: center;
}

.featured-ribbon {
  background: var(--orange-gradient);
  color: var(--white);
}

.ticket-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.ticket-tier h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticket-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.price-dollar {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-top: 12px;
}

.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-cents {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ticket-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-perks li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-perks li .fa-check {
  color: var(--cyan-bright);
}

.ticket-perks li .fa-info-circle {
  color: var(--text-muted);
}

/* QR Section */
.qr-section {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.qr-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.qr-text {
  text-align: left;
  max-width: 340px;
}

.qr-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.qr-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.qr-text strong {
  color: var(--orange-light);
}

.qr-box {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}

.qr-box svg {
  border: 6px solid white;
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
}

.qr-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   VENUE
   ============================================================ */
.venue-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.venue-bg-wrap {
  position: absolute;
  inset: 0;
}

.venue-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) saturate(0.8);
}

.venue-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,26,0.5) 0%, rgba(10,13,26,0.3) 50%, rgba(10,13,26,0.7) 100%);
}

.venue-section .container {
  position: relative;
  z-index: 2;
}

/* Venue Grid */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.venue-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.venue-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--orange-warm);
  transform: translateY(-4px);
}

.venue-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.venue-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.venue-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.venue-card strong {
  color: var(--orange-light);
}

/* What to Bring */
.what-to-bring {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.what-to-bring h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.bring-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 14px;
}

.bring-item span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.faq-section .section-title,
.faq-section .section-subtitle {
  color: var(--navy-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 16px;
}

.faq-category-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--orange-fire);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category-title i {
  color: var(--orange-fire);
}

.faq-category {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--transition);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--orange-fire);
  background: rgba(232, 84, 10, 0.04);
}

.faq-question[aria-expanded="true"] {
  color: var(--orange-fire);
  background: rgba(232, 84, 10, 0.05);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--orange-fire);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.7;
  animation: slide-down 0.2s ease;
}

.faq-answer a {
  color: var(--orange-fire);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--orange-warm);
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: var(--section-padding);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(232, 84, 10, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan-gradient);
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-content .section-tag {
  background: var(--cyan-gradient);
  color: var(--navy-deep);
}

.newsletter-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.newsletter-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.newsletter-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.newsletter-perks li i {
  color: var(--cyan-bright);
  flex-shrink: 0;
}

/* Form */
.newsletter-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus {
  border-color: var(--orange-fire);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(232, 84, 10, 0.2);
}

.form-group input.error {
  border-color: var(--red-warm);
  background: rgba(231, 76, 60, 0.1);
}

.form-message {
  font-size: 0.9rem;
  padding: 0;
  border-radius: 8px;
  min-height: 0;
  transition: all var(--transition);
}

.form-message.success {
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.4);
  color: #2ed573;
  padding: 12px 16px;
}

.form-message.error-msg {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #ff6b81;
  padding: 12px 16px;
}

.form-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-section {
  padding: 70px 0;
  background: var(--navy-deep);
  border-top: 3px solid rgba(232, 84, 10, 0.3);
  text-align: center;
}

.sponsors-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.sponsors-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sponsor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.sponsor-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange-warm);
  transform: translateY(-4px);
}

.sponsor-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sponsor-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.sponsor-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 70px 0 30px;
  border-top: 3px solid rgba(0, 180, 216, 0.3);
}

.footer-bg-coastal {
  position: absolute;
  inset: 0;
}

.footer-bg-coastal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.12) saturate(0.5);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,13,26,0.7) 0%, rgba(10,13,26,0.95) 100%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
}

.footer-logo span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-detail-block h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.footer-detail-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-detail-block i {
  color: var(--orange-warm);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-ticket-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: color var(--transition);
}

.footer-ticket-link:hover {
  color: var(--white);
}

.footer-sponsors-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer-sponsor {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 84, 10, 0.5);
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 84, 10, 0.7);
}

.back-to-top[hidden] {
  display: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    transition: right var(--transition-slow);
    border-left: 1px solid rgba(232, 84, 10, 0.3);
    z-index: 100;
    gap: 4px;
  }

  .nav-links.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 200;
    position: relative;
  }

  .local-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .local-spotlight-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-lineup {
    border-radius: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .lineup-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .countdown-unit {
    min-width: 80px;
    padding: 16px 12px;
  }

  .countdown-colon {
    font-size: 2rem;
  }

  .ticket-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .qr-inner {
    flex-direction: column;
    text-align: center;
  }

  .qr-text {
    text-align: center;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-content {
    text-align: center;
  }

  .spotlight-awards {
    justify-content: center;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    margin-top: 12px;
    display: block;
    text-align: center;
  }
}
