/* ========================================
   Urban Garden — Event Page Styles
   ======================================== */

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

:root {
  --bg-dark: #0e0e0e;
  --bg-section: #131313;
  --bg-card: #1a1a1a;
  --text-primary: #f0ece4;
  --text-secondary: #9a958c;
  --text-dim: #5a564f;
  --accent-green: #5cb832;
  --accent-green-light: #7ed957;
  --accent-green-dark: #3a7a1e;
  --accent-vine: #4da52a;
  --accent-purple: #9b59b6;
  --accent-purple-deep: #6a1b8a;
  --border-subtle: rgba(255,255,255,0.06);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Safe area insets for mobile */
  --sat: env(safe-area-inset-top);
  --sab: env(safe-area-inset-bottom);
}

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

body {
  font-family: var(--font);
  background: var(--bg-dark);
  background-image: url('assets/concrete-bg.png');
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Darkness overlay — hardcoded at 0.55 */
.darkness-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* Vignette overlay — hardcoded at 0.70 */
.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.21) 60%,
    rgba(0, 0, 0, 0.49) 100%
  );
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* Purple glow from bottom — hardcoded at 0.25 */
body::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70vh;
  background: radial-gradient(
    ellipse 120% 60% at 50% 100%,
    rgba(155, 89, 182, 0.25) 0%,
    rgba(106, 27, 138, 0.15) 30%,
    rgba(80, 20, 110, 0.08) 50%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* Secondary softer purple ambient layer */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background: linear-gradient(
    to top,
    rgba(160, 80, 200, 0.12) 0%,
    rgba(130, 50, 170, 0.06) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* --- Canvas Background --- */
#vine-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  transform: translateZ(0);
}

/* --- Section Base --- */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* =====================
   STICKY NAV
   ===================== */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(14, 14, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-100%) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: var(--sat);
  will-change: transform;
}

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

.sticky-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #0e0e0e;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent-green-light);
  transform: translateY(-1px);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeSlideUp 1s 0.3s ease forwards;
}

.hero-logo {
  width: min(85vw, 600px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(92, 184, 50, 0.15));
  opacity: 0;
  animation: fadeScaleIn 1.2s 0.6s ease forwards;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeSlideUp 1s 1s ease forwards;
}

.x-mark {
  color: var(--accent-green);
  font-weight: 700;
  margin: 0 4px;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeSlideUp 1s 1.3s ease forwards;
}

.hero-cta-date {
  color: var(--text-secondary);
}

.hero-cta-divider {
  color: var(--accent-green);
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(92, 184, 50, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 184, 50, 0.1);
}

.hero-cta:hover svg {
  transform: translateX(3px);
  color: var(--accent-green);
}

.hero-cta svg {
  transition: all 0.3s ease;
}

/* =====================
   COUNTDOWN
   ===================== */
.countdown-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 100px;
}

.countdown-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

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

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
}

.countdown-number {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  position: relative;
}

.countdown-unit {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.countdown-separator {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 200;
  color: var(--accent-green-dark);
  line-height: 1;
  padding-bottom: 28px;
}

.event-date-location {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.event-date {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.event-dot {
  font-size: 1.8rem;
  color: var(--accent-green);
  line-height: 1;
}

.event-location {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

/* =====================
   ABOUT
   ===================== */
.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-subtle);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 56px;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.about-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.4s ease, transform 0.3s ease;
}

.about-block:hover {
  border-color: rgba(92, 184, 50, 0.15);
  transform: translateY(-3px);
}

.about-block-time {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.about-block-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.about-block-accent {
  color: var(--accent-green);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: block;
  margin-top: 4px;
}

.about-block-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-extra {
  background: rgba(155, 89, 182, 0.06);
  border: 1px solid rgba(155, 89, 182, 0.12);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
}

.about-extra-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-extra-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =====================
   SOCIAL PROOF STATS
   ===================== */
.social-proof-section {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.proof-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.proof-stat-number::after {
  content: '+';
  color: var(--accent-green);
  font-size: 0.8em;
  margin-left: 2px;
}

/* For the '1 Sauna' stat, hide the + */
.proof-stat:last-child .proof-stat-number::after {
  display: none;
}

.proof-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.proof-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.proof-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   LINEUP
   ===================== */
.lineup-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-subtle);
}

.section-title {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 64px;
}

.section-title--small {
  margin-bottom: 40px;
}

/* Stage blocks */
.stage-block {
  margin-bottom: 16px;
}

.stage-heading {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stage-genre-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.stage-divider {
  width: 60px;
  height: 1px;
  background: var(--border-subtle);
  margin: 48px auto;
}

/* Artist grid */
.artist-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.artist-card:hover {
  transform: translateY(-6px);
}

.artist-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.artist-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.artist-card:hover .artist-photo-wrap {
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(92, 184, 50, 0.2), 0 8px 30px rgba(0,0,0,0.4);
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.artist-card:hover .artist-photo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.artist-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.artist-card:hover .artist-card-name {
  color: var(--text-primary);
}

.lineup-more {
  text-align: center;
  margin-top: 48px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-style: italic;
}

/* =====================
   SCHEDULE
   ===================== */
.schedule-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-subtle);
}

.schedule-timeline {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

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

.schedule-time {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  min-width: 120px;
  font-variant-numeric: tabular-nums;
}

.schedule-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.schedule-stage {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.courtyard-tag {
  background: rgba(92, 184, 50, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(92, 184, 50, 0.2);
}

.basement-tag {
  background: rgba(155, 89, 182, 0.12);
  color: var(--accent-purple);
  border: 1px solid rgba(155, 89, 182, 0.2);
}

.schedule-artist {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* =====================
   TICKETS
   ===================== */
.tickets-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-subtle);
}

.tickets-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 184, 50, 0.1);
  border: 1px solid rgba(92, 184, 50, 0.2);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-green);
  margin-bottom: 40px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(92, 184, 50, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(92, 184, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 184, 50, 0); }
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.ticket-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ticket-card:hover {
  border-color: rgba(92, 184, 50, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ticket-card--featured {
  border-color: rgba(92, 184, 50, 0.25);
  background: rgba(92, 184, 50, 0.03);
}

.ticket-card--featured:hover {
  border-color: rgba(92, 184, 50, 0.4);
  box-shadow: 0 20px 40px rgba(92, 184, 50, 0.08);
}

.ticket-card-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(92, 184, 50, 0.3);
}

.ticket-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.ticket-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.ticket-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1;
}

.ticket-card-desc {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.ticket-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.ticket-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.ticket-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.ticket-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.ticket-card-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.ticket-card-btn--featured {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #000;
}

.ticket-card-btn--featured:hover {
  background: var(--accent-green-light);
  border-color: var(--accent-green-light);
}

.ticket-card-btn svg {
  transition: transform 0.3s ease;
}

.ticket-card-btn:hover svg {
  transform: translateX(4px);
}

.ticket-notes {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-note {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ticket-venue {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-subtle);
}

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

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease, margin 0.3s ease;
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
  opacity: 1;
}

.faq-answer a {
  color: var(--accent-green);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* =====================
   FLOATING CTA (MOBILE)
   ===================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 24px calc(16px + var(--sab));
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  transform: translateY(100%) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  display: none; /* Shown via JS/Media Queries */
  will-change: transform;
}

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

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

.floating-cta-info {
  display: flex;
  flex-direction: column;
}

.floating-cta-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-cta-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}

.floating-cta-btn:active {
  background: var(--accent-green-dark);
}

/* =====================
   PARTNERS
   ===================== */
.partners-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid var(--border-subtle);
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  width: 100%;
}

.partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  filter: brightness(0.9);
}

#logo-unilife {
  height: 22px;
}

.partner-logo:hover {
  opacity: 0.85;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 24px calc(40px + var(--sab)); /* Extra padding for mobile safe area */
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-green);
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

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

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal — gentle, no flash */
.reveal {
  opacity: 0;
  transform: translateY(18px) translateZ(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .sticky-nav-links {
    display: none; /* Hide links on tablet/mobile, keep only CTA */
  }
  .sticky-nav-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 20px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 60px;
  }

  .about-blocks {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    gap: 24px;
  }
  
  .proof-stat-divider {
    display: none;
  }
  
  .proof-stat {
    width: 40%; /* 2x2 grid on mobile */
  }

  .artist-grid {
    gap: 24px;
  }

  .artist-photo-wrap {
    width: 110px;
    height: 110px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-block {
    min-width: 70px;
  }

  .countdown-separator {
    padding-bottom: 22px;
  }

  .event-date-location {
    flex-direction: column;
    gap: 8px;
  }

  .event-dot {
    display: none;
  }

  .ticket-options {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .schedule-time {
    min-width: auto;
  }

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

  .partner-logos {
    gap: 32px;
  }
  
  /* Show floating CTA on mobile */
  .floating-cta {
    display: block;
  }
  
  /* Hide top nav CTA if we show floating bottom CTA to avoid double CTAs */
  .sticky-nav.visible {
    transform: translateY(-100%); 
  }
  
  /* Add padding to footer so content isn't hidden behind floating CTA */
  .footer {
    padding-bottom: calc(100px + var(--sab));
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 92vw;
  }

  .countdown-number {
    font-size: 2.6rem;
  }

  .countdown-separator {
    font-size: 1.8rem;
    padding-bottom: 18px;
  }

  .countdown-block {
    min-width: 58px;
  }

  .artist-grid {
    gap: 20px;
  }

  .artist-photo-wrap {
    width: 90px;
    height: 90px;
  }

  .artist-card-name {
    font-size: 0.75rem;
  }
  
  .floating-cta-info {
    display: none; /* Make button full width on very small screens */
  }
  
  .floating-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced Motion */
@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;
  }
}
