/* =====================================================
   ŠTIMUNG FEST 2026 – Redesigned Stylesheet

   DESIGN PHILOSOPHY:
   - Dark, immersive hero to create festival atmosphere
   - Warm golden-lime accent on charcoal — feels alive, not corporate
   - Syne (geometric display) + Outfit (modern body) — distinctive, not template
   - Grain texture + floating orbs = analog warmth meets digital energy
   - Every section serves DESIRE (want to go) or ACTION (buy/signup)

   Brand: #d4e157 (vibrant lime) | #1a1a1a (charcoal) | #f5f3ee (warm cream)
   Fonts: Space Grotesk (headings) | DM Sans (body)
===================================================== */

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

:root {
  /* Warmer, more vibrant lime — pops harder against dark backgrounds */
  --primary:      #d4e157;
  --primary-dk:   #c0cc3d;
  --primary-glow: rgba(212, 225, 87, 0.4);

  /* Secondary stays as trust accent */
  --secondary:    #37b6ff;
  --secondary-dk: #1e9fe8;

  /* Warmer backgrounds — cream not clinical white */
  --bg:           #faf9f6;
  --bg-alt:       #f0eeea;
  --bg-dark:      #111111;
  --bg-dark-2:    #1a1a1a;

  /* Text with warmth */
  --text:         #1a1a1a;
  --text-muted:   #5a5650;
  --text-light:   #8a857e;
  --text-on-dark: #f5f3ee;

  --border:       #e0ddd7;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow:  0 0 40px var(--primary-glow);
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:    'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --max-w:        1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SKIP LINK — keyboard a11y ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dk);
  background: rgba(212, 225, 87, 0.12);
  border: 1px solid rgba(212, 225, 87, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--lime {
  color: var(--primary);
  background: rgba(212, 225, 87, 0.15);
  border-color: rgba(212, 225, 87, 0.3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}

/* Syne has character — negative letter-spacing makes it feel modern, tight, intentional */
.section-title--white {
  color: var(--text-on-dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); }

/* Focus visible for keyboard navigation */
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Primary CTA — glowing lime, demands attention */
.btn-glow {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-glow:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(212, 225, 87, 0.08);
}

/* Hero CTA — dark button on green bg for contrast */
.btn-hero {
  background: var(--bg-dark);
  color: var(--primary);
  border-color: var(--bg-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-hero:hover {
  background: var(--bg-dark-2);
  border-color: var(--bg-dark-2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-disabled {
  background: var(--bg-alt);
  color: var(--text-light);
  border-color: var(--border);
  cursor: default;
  pointer-events: none;
}

.btn-full { width: 100%; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--bg-dark);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary-dk);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-dark);
  transition: width 0.3s ease, background 0.4s ease;
  border-radius: 2px;
}

.navbar.scrolled .nav-links a::after {
  background: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
  width: 100%;
}

/* CTA button in navbar — always visible on desktop */
.nav-cta {
  background: var(--primary) !important;
  color: var(--bg-dark) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--primary-dk) !important;
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================================================
   HERO — Warm, light, atmospheric
   WHY warm cream: Inviting and open — feels like golden-hour festival vibes.
   WHY grain: Adds analog warmth, prevents "flat digital" feel.
   WHY orbs: Subtle movement creates life without being distracting.
========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: url('../../hero_background.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Film grain texture — creates warmth and atmosphere */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Floating gradient orbs — subtle movement, creates depth */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb--2 {
  bottom: -15%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb--3 {
  top: 40%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-logo-wrapper {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 500px;
  height: auto;
  max-width: 85vw;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

/* Tagline — the emotional hook */
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(26, 26, 26, 0.6);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-date {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.hero-location {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 500;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-location svg {
  opacity: 0.5;
}

/* Scroll indicator — tells users there's more below */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(26, 26, 26, 0.2);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--bg-dark);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================================
   SOCIAL PROOF BAR — immediately after hero
   WHY: First thing after the hero. Answers "why should I care?" with numbers.
   Compact, scannable, builds trust before they even start scrolling.
========================================================================= */
.proof-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  white-space: nowrap;
}

.proof-item strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.proof-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- ABOUT ---------- */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gradient top bar on hover — subtle delight */
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-alt);
  border-radius: 14px;
}

.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================================
   COUNTDOWN — urgency engine
   WHY dark bg: Creates visual break, signals urgency
   WHY CTA added: Previous version had urgency but no action — conversion dead end
========================================================================= */
.countdown-section {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 225, 87, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(55, 182, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.countdown-section .section-title {
  color: #fff;
  position: relative;
  z-index: 1;
}

.countdown-section .section-tag {
  position: relative;
  z-index: 1;
}

.countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  min-width: 110px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.countdown-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 225, 87, 0.3);
  transform: translateY(-3px);
}

.countdown-box .number {
  display: block;
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}

.countdown-box .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* CTA within countdown — converts urgency into action */
.countdown-cta {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.countdown-cta-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* =========================================================================
   LINEUP — artist showcase
   WHY no emojis in day labels: Cleaner, more professional, the day name is enough
   WHY featured card styling added: Headliner MUST stand out visually
========================================================================= */
.lineup-section {
  background: var(--bg);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lineup-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

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

.lineup-card-day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dk);
  margin-bottom: 8px;
}

.lineup-card-artist {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.lineup-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Featured card — Magnifico headliner gets special treatment */
.lineup-card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(212, 225, 87, 0.08) 0%, var(--bg) 100%);
  box-shadow: 0 4px 20px rgba(212, 225, 87, 0.12);
}

.lineup-card--featured:hover {
  box-shadow: var(--shadow-glow);
}

.lineup-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---------- PROGRAM / TABS ---------- */
.program-section {
  background: var(--bg-alt);
}

.program-container {
  max-width: 760px;
  margin: 0 auto;
}

.program-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.program-loading-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}

.program-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 6px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}

.program-tab {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: calc(var(--radius-lg) - 4px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.program-tab:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.program-tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.program-tab.active {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.tab-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.program-tab.active .tab-icon {
  transform: scale(1.15);
}

.tab-day {
  font-size: 0.85rem;
}

.program-panels {
  width: 100%;
  min-height: 200px;
}

.program-panel {
  display: none;
  animation: fadeInUp 0.35s ease both;
}

.program-panel.active {
  display: block;
}

.program-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: var(--transition);
}

.program-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(212, 225, 87, 0.1);
}

.program-item.doors-item {
  background: var(--bg-alt);
  border-style: dashed;
  opacity: 0.7;
}

.program-item.headliner {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(212, 225, 87, 0.08) 0%, rgba(212, 225, 87, 0.02) 100%);
  box-shadow: 0 4px 20px rgba(212, 225, 87, 0.12);
}

.program-item.headliner:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 28px rgba(212, 225, 87, 0.2);
}

.program-time {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dk);
  min-width: 70px;
  flex-shrink: 0;
}

.program-item.doors-item .program-time {
  color: var(--text-light);
}

.program-artist-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.program-artist-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.program-item.doors-item .program-artist-name {
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

.program-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Sunday time banner + note */
.program-day-time {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.program-time-icon {
  font-size: 1.2rem;
}

.program-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 28px;
}

.program-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.program-artist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}

.program-artist-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.artist-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.artist-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.program-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 1rem;
}

/* =========================================================================
   TICKETS — pricing psychology
   WHY anchor pricing: Showing "was $X, now $Y" creates perceived value
   WHY savings callout: Reinforces the deal on featured card
   WHY early bird banner: Creates urgency without fake countdown
========================================================================= */
.tickets-section {
  background: var(--bg);
}

.early-bird-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 225, 87, 0.12);
  border: 1px solid rgba(212, 225, 87, 0.3);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 100px;
  margin-top: 16px;
}

.early-bird-icon {
  font-size: 1rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ticket-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

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

.ticket-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Featured 3-day card */
.ticket-card--featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(212, 225, 87, 0.06) 0%, var(--bg) 100%);
}

.ticket-card--featured:hover {
  box-shadow: var(--shadow-glow);
}

.ticket-day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dk);
  margin-bottom: 8px;
}

.ticket-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}

.ticket-price {
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Anchor pricing — crossed out old price creates perceived value */
.ticket-price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.ticket-price-current {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ticket-savings {
  display: inline-block;
  background: rgba(212, 225, 87, 0.15);
  color: var(--primary-dk);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.ticket-features {
  list-style: none;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

.ticket-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  /* Checkmark via pseudo — more elegant than emoji */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-card .btn {
  width: 100%;
  margin-top: 8px;
}

/* ---------- LOCATION ---------- */
.location-section {
  background: var(--bg-alt);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.location-info > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.location-details {
  margin-bottom: 28px;
}

.location-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* =========================================================================
   GALLERY — atmosphere / FOMO section
   WHY placeholders styled boldly: Even without real photos, the colored
   cards with emojis create a mood board effect. Replace with real images later.
========================================================================= */
.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
  font-size: 3rem;
}

.gallery-item--lime {
  background: linear-gradient(135deg, rgba(212, 225, 87, 0.2) 0%, rgba(212, 225, 87, 0.08) 100%);
  border: 1px solid rgba(212, 225, 87, 0.2);
}

.gallery-item--blue {
  background: linear-gradient(135deg, rgba(55, 182, 255, 0.15) 0%, rgba(55, 182, 255, 0.05) 100%);
  border: 1px solid rgba(55, 182, 255, 0.15);
}

.gallery-item--dark {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.04) 100%);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

/* =========================================================================
   FAQ — objection handling
   WHY accordion: Reduces page clutter while answering common questions.
   Each answered question removes a reason NOT to buy.
   Native <details> element — no JS needed, accessible by default.
========================================================================= */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

/* Custom chevron indicator */
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '-';
  color: var(--primary-dk);
}

.faq-question:hover {
  color: var(--primary-dk);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- SPONSORS ---------- */
.sponsors-section {
  background: var(--bg);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-height: 80px;
  width: 100%;
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: center;
}

.sponsor-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-info-item a {
  color: var(--secondary);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--secondary-dk);
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 225, 87, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: rgba(212, 225, 87, 0.12);
  border: 1px solid var(--primary);
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* =========================================================================
   FOOTER — last impression + newsletter capture
   WHY newsletter section prominent: Last chance to capture leads from visitors
   who scrolled the whole page but aren't ready to buy yet.
========================================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 24px;
}

.footer-newsletter-section {
  text-align: center;
  padding: 64px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 48px;
}

.footer-newsletter-section h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.footer-newsletter-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-success {
  color: #4ade80;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 0;
}

.newsletter-top-section {
  background: var(--bg-dark);
  padding: 0;
}

.newsletter-top-section .footer-newsletter-section {
  border-bottom: none;
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-logo img {
  max-height: 48px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(10);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-social-links a:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =========================================================================
   STICKY MOBILE CTA — always visible on phones
   WHY: On a 13-section page, the ticket button disappears once you scroll
   past the hero. This keeps "buy" always one tap away. Hidden on desktop
   where the nav CTA serves this purpose.
========================================================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  padding: 12px 16px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--bg-dark);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  background: var(--primary-dk);
}

.sticky-cta-price {
  font-weight: 500;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- UTILITIES ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* =========================================================================
   PREFERS-REDUCED-MOTION — a11y requirement
   Disables all animations for users who've opted out of motion.
   This was completely missing from the original.
========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-orb { animation: none !important; }
  .hero-scroll span::after { animation: none !important; }
}

/* =========================================================================
   RESPONSIVE BREAKPOINTS
   Mobile-first mindset: 70%+ of festival ticket buyers are on phones
========================================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Show hamburger, hide nav links */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 10px 0;
    color: var(--text-muted) !important;
  }

  .nav-links a:hover {
    color: var(--primary-dk) !important;
  }

  .nav-cta {
    margin-top: 8px;
  }

  /* Show sticky CTA on mobile */
  .sticky-cta {
    display: block;
  }

  /* Pad bottom of page so sticky CTA doesn't cover content */
  .footer {
    padding-bottom: 80px;
  }

  /* Hero adjustments */
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 100px 20px 60px;
  }

  .hero-logo {
    width: 340px;
  }

  .hero-tagline {
    font-size: 0.78rem;
  }

  /* Social proof bar stacks better */
  .proof-bar-inner {
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.78rem;
  }

  /* Grids to single column */
  .about-grid,
  .lineup-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-boxes {
    gap: 12px;
  }

  .countdown-box {
    min-width: 72px;
    padding: 20px 14px;
  }

  .countdown-box .number {
    font-size: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-logo img {
    margin: 0 auto 12px;
  }

  .footer-social-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-logo {
    width: 280px;
  }

  .hero-date {
    font-size: clamp(24px, 7vw, 36px);
  }

  .countdown-boxes {
    gap: 8px;
  }

  .countdown-box {
    min-width: 64px;
    padding: 16px 10px;
  }

  .countdown-box .number {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .program-tab {
    padding: 10px 14px;
    font-size: 0.82rem;
    min-width: 100px;
  }

  .program-item {
    padding: 14px 16px;
    gap: 14px;
  }

  .program-time {
    font-size: 1.2rem;
    min-width: 56px;
  }

  .program-artist-name {
    font-size: 0.92rem;
  }

  .program-artists-grid {
    grid-template-columns: 1fr;
  }

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

  .ticket-price-current {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }
}
