/* ==========================================================================
   Reeguez Rocks 2026 - Clean, Mobile-First Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Brand Theme (Purple & Gold) */
  --color-bg: #0a0a0f;
  --color-bg-elevated: rgba(15, 15, 20, 0.95);
  --color-bg-card: rgba(0, 0, 0, 0.5);
  --color-bg-card-hover: rgba(0, 0, 0, 0.6);

  --color-text: #ffffff;
  --color-text-muted: #e0e0e0;
  --color-text-subtle: #c0c0c0;

  --color-accent: #f7a602;
  --color-accent-light: #ffd36a;
  --color-accent-secondary: #8A2BE2; /* Reeguez Purple */
  --color-success: #4ade80;
  --color-error: #ff6b6b;
  --color-discord: #5865F2;
  --color-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: rgba(247, 166, 2, 0.3);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans); /* Keeping Space Grotesk for now, it's clean enough */

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(247, 166, 2, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1100px;
  --container-narrow: 720px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-light);
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

/* --------------------------------------------------------------------------
   Background Layer
   -------------------------------------------------------------------------- */
.bg-layer {
  position: fixed;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: -2;
  background-image: url('../RR26BG.png');
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  position: fixed;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  background: transparent;
  display: none;
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-lg);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base), padding var(--transition-base);
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav__logo img {
  height: 36px;
  width: auto;
  transition: transform var(--transition-fast);
}

.nav__logo:hover img {
  transform: scale(1.05);
}

.nav__logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-xs);
  transform: translateY(-150%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  z-index: -1;
}

.nav__menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}

.nav__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.nav__link--active {
  color: var(--color-accent);
  background: rgba(247, 166, 2, 0.05);
}

/* Desktop Nav */
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding: 0;
    background: transparent;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    z-index: auto;
  }

  .nav__link {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) 8rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}

.hero__logo-wrapper {
  position: relative;
  animation: hero-fade-in 1s ease both;
}

.hero__logo-wrapper::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(247, 166, 2, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.hero__logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(247, 166, 2, 0.3));
}

@media (min-width: 640px) {
  .hero__logo {
    max-width: 500px;
  }
}

@media (min-width: 1024px) {
  .hero__logo {
    max-width: 580px;
  }
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: hero-fade-in 1s ease 0.2s both;
}

.hero__badge {
  display: inline-flex;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border-radius: var(--radius-full);
}

.hero__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-base);
  color: var(--color-text);
}

@media (min-width: 640px) {
  .hero__details {
    flex-direction: row;
    gap: var(--space-sm);
  }
}

.hero__date {
  font-weight: 600;
  color: var(--color-accent);
}

.hero__divider {
  display: none;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
}

@media (min-width: 640px) {
  .hero__divider {
    display: block;
  }
}

.hero__venue {
  color: var(--color-text-muted);
}

.hero__tagline {
  max-width: 400px;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .hero__tagline {
    font-size: var(--text-xl);
    max-width: 500px;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  animation: hero-fade-in 1s ease 0.4s both;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-subtle);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: hero-fade-in 1s ease 0.6s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  color: #000;
  box-shadow: 0 0 40px rgba(247, 166, 2, 0.25);
}

.btn--secondary {
  background: var(--color-accent-secondary);
  color: #fff;
}

.btn--secondary:hover {
  color: #fff;
}

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

.btn--outline:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(247, 166, 2, 0.1);
}

.btn--discord {
  background: var(--color-discord);
  color: #fff;
}

.btn--discord:hover {
  color: #fff;
}

.btn--instagram {
  background: var(--color-instagram);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--instagram svg {
  flex-shrink: 0;
}

.btn--instagram:hover {
  color: #fff;
  opacity: 0.9;
}

.btn--lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-3xl) var(--space-lg);
  background: rgba(0, 0, 0, 0.4);
}

/* Alternate Section (Darker Overlay) */
.section--alt, 
.section--perks, 
.section--community, 
.section--artists {
  background: rgba(0, 0, 0, 0.6);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__title {
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  color: var(--color-accent);
}

.section__subtitle {
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Specific darkening for Tickets section for readability */
#tickets {
  background: rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   Progress Card
   -------------------------------------------------------------------------- */
.progress-card {
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-lg);
}

.progress-card__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.progress-card__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.progress-card__tier {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-accent);
}

.progress-card__bar {
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent), var(--color-accent-secondary));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.progress-card__stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.progress-card__stats strong {
  color: var(--color-accent);
}

.progress-card__unlocked {
  color: var(--color-success);
  font-weight: 700;
}

.progress-card__total {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Tiers / Phases
   -------------------------------------------------------------------------- */
.tiers {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tiers__note {
  margin-top: var(--space-lg);
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
}

.phase {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.phase[data-phase="1"] {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-glow);
}

.phase__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .phase__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.phase__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.phase__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.phase__badge {
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  background: var(--color-accent);
  color: #000;
  border-radius: var(--radius-full);
}

.phase__badge--2 { background: #e8952f; }
.phase__badge--3 { background: #d97f3a; }
.phase__badge--4 { background: #c96a45; }
.phase__badge--5 { background: #ba5550; }

.phase__prices {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
}

.phase__tiers {
  padding: var(--space-sm);
}

/* Individual Tier */
.tier {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.tier + .tier {
  margin-top: var(--space-xs);
}

.tier--active {
  background: rgba(247, 166, 2, 0.08);
  border: 1px solid var(--color-border-accent);
}

.tier--complete,
.tier--completed {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.tier--complete .tier__number,
.tier--completed .tier__number {
  background: var(--color-success);
}

.tier--complete .tier__status {
  color: var(--color-success);
  font-weight: 600;
}

.tier__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
}

.tier__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--color-accent);
  color: #000;
  border-radius: 50%;
}

.tier__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.tier__amount {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.tier__progress {
  margin-top: var(--space-sm);
  margin-left: calc(28px + var(--space-md));
}

.tier__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.tier__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.tier__status {
  margin-top: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
}

/* Future Phases Collapsible */
.phase-details {
  margin-top: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.phase-details__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

.phase-details__summary::-webkit-details-marker {
  display: none;
}

.phase-details__summary::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: var(--space-sm);
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(-45deg);
  transition: transform var(--transition-fast);
}

.phase-details[open] .phase-details__summary::before {
  transform: rotate(45deg);
}

.phase-details__summary:hover {
  color: var(--color-text);
}

.phase-details__hint {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-subtle);
}

.phase-details__content {
  padding: 0 var(--space-lg) var(--space-lg);
}

.phase--future {
  opacity: 0.7;
}

.phase--future .tier__number {
  background: var(--color-text-subtle);
}

/* --------------------------------------------------------------------------
   Lineup Grid
   -------------------------------------------------------------------------- */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .lineup-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-lg);
  }
}

.artist {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.artist img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.artist .name {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-accent);
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.feature__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Tabs
   -------------------------------------------------------------------------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.tab {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.tab:hover {
  color: var(--color-text);
  border-color: var(--color-text-subtle);
}

.tab--active {
  color: #000;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.tab-panels {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.tab-panel {
  display: none;
}

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

/* --------------------------------------------------------------------------
   Info Components
   -------------------------------------------------------------------------- */
.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-list li {
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.info-list li strong {
  color: var(--color-text);
}

.info-lead {
  margin-bottom: var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.location-address {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  line-height: 1.6;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.map-link:hover {
  background: rgba(247, 166, 2, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.map-link svg {
  width: 18px;
  height: 18px;
}

.info-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.info-card h4 {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  color: var(--color-accent);
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-card li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-md);
  position: relative;
}

.info-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

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

.faq-q::after {
  content: '+';
  font-size: var(--text-lg);
  color: var(--color-accent);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Newsletter Form
   -------------------------------------------------------------------------- */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.newsletter-form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  width: 100%;
}

.input {
  flex: 1 1 200px;
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.input::placeholder {
  color: var(--color-text-subtle);
}

.input--sm {
  flex: 0 1 120px;
}

.newsletter-msg {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--space-xl) var(--space-lg);
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer p {
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.footer__links a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal-overlay.is-open {
  display: block;
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 2001;
  width: calc(100% - var(--space-xl));
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-xl);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.modal.is-open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: var(--space-sm);
  font-size: var(--text-2xl);
  line-height: 1;
  color: var(--color-text-muted);
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.modal__close:hover {
  color: var(--color-accent);
}

.modal__title {
  margin-bottom: var(--space-lg);
  font-size: var(--text-xl);
  color: var(--color-accent);
  text-align: center;
}

.modal__note {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  text-align: center;
}

.modal__success,
.modal__error {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
}

.modal__success {
  background: rgba(74, 222, 128, 0.1);
  color: var(--color-success);
}

.modal__error {
  background: rgba(255, 107, 107, 0.1);
  color: var(--color-error);
}

/* --------------------------------------------------------------------------
   Ticket List (in modal)
   -------------------------------------------------------------------------- */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ticket-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.ticket-option.current {
  border-color: var(--color-border-accent);
}

.ticket-option.sold {
  opacity: 0.6;
}

.ticket-info h3 {
  font-size: var(--text-base);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.ticket-info .description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.ticket-notes {
  margin-top: var(--space-sm);
  padding-left: var(--space-md);
}

.ticket-notes li {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-xs);
}

.ticket-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.ticket-action .price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

.ticket-action .availability {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(247, 166, 2, 0.1);
  color: var(--color-accent);
  border-radius: var(--radius-full);
}

.ticket-action .availability.soldout {
  background: rgba(255, 107, 107, 0.1);
  color: var(--color-error);
}

.ticket-button {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #000;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  transition: filter var(--transition-fast);
}

.ticket-button:hover {
  filter: brightness(1.1);
}

/* --------------------------------------------------------------------------
   Mobile CTA
   -------------------------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 999;
  padding: var(--space-md);
  font-size: var(--text-base);
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border: none;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

@media (max-width: 640px) {
  .mobile-cta {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --------------------------------------------------------------------------
   Schedule Dynamic Styles
   -------------------------------------------------------------------------- */
.schedule-dynamic {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.schedule-dynamic h3 {
  color: var(--color-accent);
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

.schedule-dynamic ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.schedule-dynamic li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

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

/* Schedule Grid (Fallback) */
.schedule-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.schedule-day {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.schedule-day__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.schedule-day__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.schedule-day__list li {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.schedule-time {
  flex-shrink: 0;
  min-width: 65px;
  font-weight: 600;
  color: var(--color-text);
}

.schedule-note {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Multi-Step Checkout
   -------------------------------------------------------------------------- */
.modal--checkout {
  max-width: 650px;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.checkout-step--active {
  opacity: 1;
}

.checkout-step--completed {
  opacity: 0.8;
}

.checkout-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: var(--text-xs);
  font-weight: 700;
  background: var(--color-border);
  color: var(--color-text);
  border-radius: 50%;
}

.checkout-step--active .checkout-step__num {
  background: var(--color-accent);
  color: #000;
}

.checkout-step--completed .checkout-step__num {
  background: var(--color-success);
  color: #000;
}

.checkout-step__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.checkout-step--active .checkout-step__label {
  color: var(--color-text);
}

@media (max-width: 480px) {
  .checkout-step__label {
    display: none;
  }
}

/* Checkout Panels */
.checkout-panel {
  display: none;
}

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

/* Quantity Selector */
.checkout-quantity {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.checkout-quantity label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Premium Quantity Selectors (Fixed) --- */
/* --- Final Polished Quantity Selector --- */
.addon-qty-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 1.25rem !important;
  padding: 0.75rem 1rem !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  max-width: 340px !important;
}

.addon-qty-controls label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #a0a0a8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
}

.qty-selector {
  display: grid !important;
  grid-template-columns: 36px 44px 36px !important;
  align-items: center !important;
  gap: 4px !important;
}

.qty-btn {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #333 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.qty-btn:hover {
  background: var(--color-accent) !important;
  color: #000 !important;
  border-color: var(--color-accent) !important;
}

.qty-selector input {
  width: 100% !important;
  height: 36px !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

/* Camping Options */
.camping-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.camping-option {
  display: block;
  cursor: pointer;
}

.camping-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.camping-option__content {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.camping-option:hover .camping-option__content {
  border-color: var(--color-text-subtle);
}

.camping-option--selected .camping-option__content,
.camping-option input:checked + .camping-option__content {
  border-color: var(--color-accent);
  background: rgba(247, 166, 2, 0.08);
}

.camping-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.camping-option__name {
  font-weight: 600;
  color: var(--color-text);
}

.camping-option__price {
  font-weight: 700;
  color: var(--color-accent);
}

.camping-option__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Addon Checkbox */
.checkout-addon {
  margin-top: var(--space-lg);
}

.addon-checkbox {
  display: block;
  cursor: pointer;
}

.addon-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-checkbox__content {
  display: block !important;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.addon-checkbox__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

/* Integrated Quantity Selector (No separate box look) */
.camping-option .addon-qty-controls,
.addon-checkbox .addon-qty-controls {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 1rem !important;
    justify-content: flex-start !important;
}

.addon-checkbox:hover .addon-checkbox__content {
  border-color: var(--color-text-subtle);
}

.addon-checkbox input:checked ~ .addon-checkbox__content {
  border-color: var(--color-accent);
  background: rgba(247, 166, 2, 0.08);
}

.addon-checkbox__name {
  font-weight: 600;
  color: var(--color-text);
}

.addon-checkbox__price {
  font-weight: 700;
  color: var(--color-accent);
}

.addon-checkbox__desc {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Order Summary */
.order-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.order-item__name {
  color: var(--color-text-muted);
}

.order-item__qty {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
}

.order-item__price {
  font-weight: 600;
  color: var(--color-text);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(247, 166, 2, 0.1);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
  font-weight: 700;
}

.order-total span:last-child {
  color: var(--color-accent);
}

/* Ticket Selection State */
.ticket-option.selected {
  border-color: var(--color-accent);
  background: rgba(247, 166, 2, 0.08);
}

/* --------------------------------------------------------------------------
   Affiliate Signup
   -------------------------------------------------------------------------- */
.affiliate-signup {
  text-align: center;
}

.affiliate-form__fields {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

@media (min-width: 480px) {
  .affiliate-form__fields {
    grid-template-columns: 1fr 1fr;
  }
}

.affiliate-result {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.affiliate-result__label {
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.affiliate-result__link {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.affiliate-result__link input {
  flex: 1;
}

.affiliate-result__code {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.affiliate-result__code strong {
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.affiliate-leaderboard-link {
  margin-top: var(--space-lg);
}

.affiliate-leaderboard-link a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.affiliate-leaderboard-link a:hover {
  color: var(--color-accent);
}


/* ========== ACCESSIBILITY IMPROVEMENTS ========== */

/* Focus styles for all interactive elements */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(247, 166, 2, 0.2);
}

/* Skip to content link for screen readers */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #000;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: var(--space-md) var(--space-lg);
  }
  
  .nav__toggle {
    min-height: 44px;
    min-width: 44px;
    padding: var(--space-sm);
  }
  
  .tab {
    min-height: 44px;
    padding: var(--space-md);
  }
  
  .faq-item summary {
    min-height: 44px;
    padding: var(--space-md);
  }
  
  .input, input[type="text"], input[type="email"], input[type="number"] {
    min-height: 44px;
    font-size: 16px; /* Prevents iOS auto-zoom */
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-border: #ffffff;
    --color-text-muted: #ffffff;
  }
}

/* ========== LOADING STATES ========== */

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--color-bg-card) 25%, rgba(255,255,255,0.1) 50%, var(--color-bg-card) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 1em;
  margin-bottom: var(--space-sm);
}

.skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton-card {
  height: 200px;
  width: 100%;
}

/* Loading spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn--loading {
  position: relative;
  color: transparent !important;
}

.btn--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Success state */
.btn--success {
  background: #22c55e !important;
  border-color: #22c55e !important;
}

/* ========== MICRO-INTERACTIONS ========== */

/* Hover lift effect */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Pulse animation for countdown */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.countdown__num {
  transition: transform 0.15s ease-out;
}

.countdown__num.tick {
  animation: pulse 0.3s ease-out;
}

/* Testimonial hover */
.testimonial {
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Gallery item overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Artist card hover enhancement */
.artist:hover {
  border-color: var(--color-accent);
}

/* Progress bar animation */
@keyframes progress-fill {
  from { width: 0; }
}

.progress-card__fill {
  animation: progress-fill 1s ease-out;
}

/* Tier unlock animation */
@keyframes tier-unlock {
  0% { background-color: var(--color-bg-card); }
  50% { background-color: rgba(247, 166, 2, 0.2); }
  100% { background-color: var(--color-bg-card); }
}

.tier--just-unlocked {
  animation: tier-unlock 1s ease-out;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-accent);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast--success {
  border-color: #22c55e;
}

.toast--error {
  border-color: #ef4444;
}
/* Original Flat Overlay Override */
.bg-overlay {
    background: rgba(10, 10, 15, 0.85) !important;
}

/* ==========================================================================
   ENHANCEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

/* Pulse for Primary Button */
@keyframes btn-pulse {
    0% { box-shadow: 0 0 0 0 rgba(247, 166, 2, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(247, 166, 2, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 166, 2, 0); }
}

.btn--pulse {
    animation: btn-pulse 2s infinite;
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), 
                transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

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

/* Card Hover Effects */
.progress-card, 
.feature, 
.community-card,
.artist,
.perk-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.progress-card:hover, 
.feature:hover, 
.community-card:hover,
.artist:hover,
.perk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-border-accent);
}

/* --------------------------------------------------------------------------
   Mobile Optimizations
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    /* Ensure Nav Menu is readable */
    .nav__menu {
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--color-border-accent);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    /* Larger Touch Targets */
    .nav__link {
        padding: 1rem; 
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav__link:last-child {
        border-bottom: none;
    }

    /* Hero Spacing */
    .hero {
        padding-top: calc(var(--nav-height) + 1rem);
        min-height: auto; /* Allow content to dictate height if needed */
        padding-bottom: 4rem;
    }

    .hero__logo {
        max-width: 280px; /* slightly smaller on very small screens */
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn--lg {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Additional Styles for New Sections (Preserved)
   -------------------------------------------------------------------------- */

/* Early Backer Perks Banner */
.perks-banner {
    background: linear-gradient(135deg, rgba(247,166,2,0.15), rgba(247,166,2,0.05));
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.perks-banner__badge {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}
.perks-banner__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}
.perks-banner__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.perk-item {
    background: rgba(255,255,255,0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}
.perks-banner__link {
    font-size: var(--text-sm);
    color: var(--color-accent);
}

/* Progress Card Stretch Goal */
.progress-card__stretch {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

/* Tier Perks */
.tier__perk {
    font-size: var(--text-sm);
    color: var(--color-accent);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--color-border);
    font-style: italic;
}

/* Perks Section */
.section--perks {
    background: rgba(0, 0, 0, 0.6);
}
.perks-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.perk-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.perk-card:hover {
    transform: translateY(-4px);
}
.perk-card--founder {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
}
.perk-card--pioneer {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), transparent);
}
.perk-card--builder {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), transparent);
}
.perk-card--supporter {
    border-color: var(--color-border);
}
.perk-card__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.perk-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}
.perk-card__desc {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    font-style: italic;
}
.perk-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.perk-card__list li {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
}
.perk-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Campaign Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}
.countdown__item {
    text-align: center;
}
.countdown__num {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}
.countdown__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Community Section */
.section--community {
    background: rgba(0, 0, 0, 0.6);
}
.community-grid {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.community-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}
.community-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.community-card__icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    color: var(--color-accent);
}
.community-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}
.community-card__desc {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}
.email-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
}
.email-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
}
.email-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}
.email-form__success {
    color: #4ade80;
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
}

/* Artist Teaser Section */
.section--artists {
    background: rgba(0, 0, 0, 0.6);
}
.artist-teaser {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 2px dashed var(--color-border-accent);
    border-radius: var(--radius-lg);
}
.artist-teaser__icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}
.artist-teaser__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}
.artist-teaser__hint {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}
.artist-teaser__cta {
    color: var(--color-accent);
    font-weight: 600;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gallery-item {
    aspect-ratio: 1;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    background: rgba(255,255,255,0.03);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}
.testimonial__quote {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}
.testimonial__author {
    font-weight: 600;
    color: var(--color-accent);
    font-size: var(--text-sm);
}
.testimonial__year {
    color: var(--color-text-muted);
    font-size: var(--text-xs);
}

/* Accommodations Info Styles */
.accommodations-info {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.accommodations-info__title {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.accommodations-info__note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.accommodations-info .info-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .accommodations-info .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Add-on Quantity Controls */
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}