/* =====================================================================
   World Lindy Hop Day 2026 — Styles
   ===================================================================== */

/* --- Custom Properties --- */
:root {
  /* Colour Palette */
  --color-crimson:       #8B1A1A;
  --color-crimson-deep:  #6B0F0F;
  --color-crimson-mid:   #7A1515;
  --color-gold:          #C9A84C;
  --color-gold-bright:   #D4AF37;
  --color-gold-light:    #E8C96A;
  --color-gold-pale:     #F5E6B8;
  --color-amber:         #CC8800;
  --color-ivory:         #F5F0E8;
  --color-cream:         #EDE3CC;
  --color-parchment:     #D9CCAA;
  --color-near-black:    #1A1008;
  --color-near-black-2:  #0F0A04;
  --color-warm-dark:     #221608;
  --color-dark-mid:      #2E1E0A;
  --color-body-text:     #2A1F0E;
  --color-light-text:    #F0E4C8;
  --color-muted:         #8A7055;
  --color-muted-light:   #B09A78;
  --color-teal:          #1A4A4A;

  /* Typography */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;

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

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;

  /* Motion */
  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   500ms ease;
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-body-text);
  line-height: 1.65;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

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

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background-color: var(--color-warm-dark);
  color: var(--color-light-text);
  position: relative;
}

/* Subtle art-deco geometric texture on dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      120deg,
      rgba(201, 168, 76, 0.018) 0px,
      rgba(201, 168, 76, 0.018) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      60deg,
      rgba(201, 168, 76, 0.018) 0px,
      rgba(201, 168, 76, 0.018) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 2px solid transparent;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.4s ease;
}

.btn:hover::after {
  left: 160%;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-near-black);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.3);
}

/* Pulsing glow — neon sign effect */
.btn--pulse {
  animation: btnGlowPulse 3s ease-in-out infinite;
}

.btn--pulse:hover {
  animation: none;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.7), 0 4px 24px rgba(201, 168, 76, 0.5);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-ivory);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn--secondary:hover {
  background-color: rgba(245, 240, 232, 0.08);
  border-color: var(--color-ivory);
}

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

.btn--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-near-black);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 1.1rem;
  min-height: 56px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-ornament {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  animation: floatGentle 5s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: inherit;
}

.section--dark .section-title {
  color: var(--color-cream);
}

.section-subtitle {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section-subtitle {
  color: var(--color-muted-light);
}

/* =====================================================================
   ANIMATIONS — Keyframes
   ===================================================================== */

/* Hero entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes goldGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 168, 76, 0.1); }
  50%      { text-shadow: 0 0 40px rgba(201, 168, 76, 0.3), 0 0 80px rgba(201, 168, 76, 0.1); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.2); box-shadow: 0 0 0 rgba(201, 168, 76, 0); }
  50%      { border-color: rgba(201, 168, 76, 0.5); box-shadow: 0 0 20px rgba(201, 168, 76, 0.08); }
}

/* Spotlight sweep across hero bg */
@keyframes spotlightSweep {
  0%   { background-position: 20% 30%; opacity: 0.6; }
  30%  { background-position: 50% 45%; opacity: 0.8; }
  60%  { background-position: 70% 55%; opacity: 0.7; }
  100% { background-position: 20% 30%; opacity: 0.6; }
}

/* Marquee light flicker — sequential via nth-child delays */
@keyframes marqueeLightOn {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50%       { opacity: 1;    transform: scale(1.1); }
}

/* CTA button glow pulse — like a neon sign */
@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.3), 0 2px 12px rgba(201, 168, 76, 0.2); }
  50%       { box-shadow: 0 0 20px rgba(212, 175, 55, 0.65), 0 4px 24px rgba(201, 168, 76, 0.4); }
}

/* Ornament rule draw-in from center */
@keyframes ruleDrawIn {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}

/* Gold shimmer sweep on price cards */
@keyframes shimmerSweep {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* Scroll reveal — enhanced with multiple flavours */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal--scale {
  opacity: 0;
  transform: scale(0.92) translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(26, 16, 8, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(15, 10, 4, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-gold-pale);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-pale);
  border-radius: 1px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 80%;
}

.nav-link--active {
  color: var(--color-gold);
}

.nav-cta-link {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-near-black);
  background-color: var(--color-gold);
  border-radius: 1px;
  margin-left: 0.5rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  min-height: 36px;
  display: flex;
  align-items: center;
}

.nav-cta-link:hover {
  background-color: var(--color-gold-light);
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--space-md) var(--space-lg);
  background-color: var(--color-near-black-2);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Art deco sunburst — stage spotlight radiating from behind the title */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(201, 168, 76, 0.035) 0deg,
    transparent 2.5deg,
    transparent 10deg
  );
  mask-image: radial-gradient(ellipse 50% 45% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 50%, black 0%, transparent 100%);
  opacity: 1;
  animation: spotlightSweep 14s ease-in-out infinite;
}

/* Slow spotlight sweep — looking down at the dance floor from the balcony */
.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 40% 55%,
    rgba(180, 120, 20, 0.18) 0%,
    rgba(139, 26, 26, 0.12) 35%,
    transparent 70%
  );
  animation: spotlightSweep 14s ease-in-out infinite;
}

/* Floor grid — perspective lines suggesting ballroom floor */
.hero-floor-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(201, 168, 76, 0.04) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(201, 168, 76, 0.04) 0px,
      rgba(201, 168, 76, 0.04) 1px,
      transparent 1px,
      transparent 60px
    );
  transform: perspective(400px) rotateX(20deg);
  transform-origin: bottom center;
}

/* Deep ambient glow layers */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-glow--1 {
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.45) 0%, transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.hero-glow--2 {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
  opacity: 0.5;
}

.hero-glow--3 {
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 136, 0, 0.15) 0%, transparent 70%);
  top: 30%;
  left: -80px;
  opacity: 0.4;
}

/* Marquee lights along top edge */
.marquee-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 2rem;
}

.marquee-light {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 6px 2px rgba(201, 168, 76, 0.8);
  animation: marqueeLightOn 2.4s ease-in-out infinite;
}

.marquee-light:nth-child(1)  { animation-delay: 0s; }
.marquee-light:nth-child(2)  { animation-delay: 0.2s; }
.marquee-light:nth-child(3)  { animation-delay: 0.4s; }
.marquee-light:nth-child(4)  { animation-delay: 0.6s; }
.marquee-light:nth-child(5)  { animation-delay: 0.8s; }
.marquee-light:nth-child(6)  { animation-delay: 1.0s; }
.marquee-light:nth-child(7)  { animation-delay: 1.2s; }
.marquee-light:nth-child(8)  { animation-delay: 1.0s; }
.marquee-light:nth-child(9)  { animation-delay: 0.8s; }
.marquee-light:nth-child(10) { animation-delay: 0.6s; }
.marquee-light:nth-child(11) { animation-delay: 0.4s; }
.marquee-light:nth-child(12) { animation-delay: 0.2s; }

.hero-ornament {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 1em;
  color: var(--color-gold);
  opacity: 0.5;
}

.hero-ornament--bottom {
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.hero-presented-by {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gold shimmer glint on WORLD — light catching brass */
.hero-title-world {
  font-size: clamp(1rem, 3.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  position: relative;
}

.hero-title-world::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 240, 160, 0.7) 45%,
    rgba(255, 255, 220, 0.9) 50%,
    rgba(255, 240, 160, 0.7) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 4s ease 1.5s infinite;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.hero-title-lindy {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  padding: 0.1em 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  /* Warm gold on near-black — maximum contrast, maximum glamour */
  background: linear-gradient(
    180deg,
    var(--color-cream) 0%,
    var(--color-gold-pale) 50%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-day {
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-pale);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.hero-title-year {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.35rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted-light);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Ornament rule — draws in from center outward */
.hero-ornament-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  width: 0;
  margin: 0 auto var(--space-lg);
  max-width: 400px;
  animation: ruleDrawIn 1s ease 0.9s forwards;
  opacity: 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem var(--space-sm);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.75s forwards;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--color-light-text);
}

.hero-meta-icon {
  font-size: 0.45rem;
  color: var(--color-gold);
}

.hero-meta-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(201, 168, 76, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.85s forwards;
}

.hero-note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-muted-light);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.95s forwards;
}

/* =====================================================================
   EVENT META STRIP
   ===================================================================== */
.event-meta {
  background-color: var(--color-warm-dark);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background-color: rgba(201, 168, 76, 0.12);
}

.event-meta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-warm-dark);
  gap: 0.35rem;
  transition: background-color var(--transition-base);
}

.event-meta-card:hover {
  background-color: rgba(139, 26, 26, 0.25);
  transform: translateY(-3px);
}

.event-meta-card {
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.event-meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.event-meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-cream);
}

.event-meta-sub {
  font-size: 0.82rem;
  color: var(--color-muted-light);
}

/* =====================================================================
   EVENT META STRIP — gold rules
   ===================================================================== */
.event-meta-rule-top,
.event-meta-rule-bottom {
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--color-gold) 20%, var(--color-gold-bright) 50%, var(--color-gold) 80%, transparent 100%);
  opacity: 0.6;
}

/* =====================================================================
   WHY ATTEND
   ===================================================================== */
.why-attend {
  background-color: var(--color-ivory);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.why-card {
  flex: 0 1 300px;
  max-width: 380px;
}

/* --- Live Music Feature Block --- */
.live-music-feature {
  margin: 0 auto var(--space-xl);
  max-width: 800px;
}

.live-music-feature-inner {
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--color-warm-dark);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-top: 3px solid var(--color-gold);
  border-radius: 1px;
  overflow: hidden;
}

.live-music-feature-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Art-deco corner brackets */
.live-music-feature-inner::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  pointer-events: none;
  mask-image:
    linear-gradient(to right, black 24px, transparent 24px, transparent calc(100% - 24px), black calc(100% - 24px)),
    linear-gradient(to bottom, black 24px, transparent 24px, transparent calc(100% - 24px), black calc(100% - 24px));
  -webkit-mask-image:
    linear-gradient(to right, black 24px, transparent 24px, transparent calc(100% - 24px), black calc(100% - 24px)),
    linear-gradient(to bottom, black 24px, transparent 24px, transparent calc(100% - 24px), black calc(100% - 24px));
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.live-music-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.live-music-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.live-music-detail {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold-pale);
  opacity: 0.85;
}

.live-music-photo-wrap {
  margin-bottom: var(--space-md);
}

.live-music-photo-placeholder {
  width: 200px;
  height: 130px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: 1px;
  margin: 0 auto;
}

/* When a real photo is added: replace the placeholder div with an <img> */
.live-music-feature-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 1px;
  margin: 0 auto var(--space-md);
  display: block;
}

/* Stretch goal callout */
.live-music-stretch {
  margin: var(--space-lg) auto var(--space-md);
  max-width: 620px;
  padding: var(--space-md) var(--space-lg);
  background: rgba(139, 26, 26, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-left: 3px solid var(--color-gold);
  border-radius: 1px;
  text-align: left;
}

/* Eyebrow + headline on left, percentage stat on right */
.stretch-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.live-music-stretch-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.live-music-stretch-headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-cream);
  margin: 0;
}

/* Percentage stat */
.bom-pct-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.bom-pct {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bom-pct-sign {
  font-size: 1.2rem;
  opacity: 0.75;
  margin-left: 0.05em;
}

.bom-pct-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  margin-top: 0.2rem;
}

.live-music-stretch-body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-muted-light);
  margin-bottom: 0;
}

.live-music-stretch-body strong {
  color: var(--color-gold-pale);
}

/* =================================================================
   BAND-O-METER — Marquee Bulb Style
   ================================================================= */

.bandometer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.bom-header {
  margin-bottom: 0.5rem;
}

.bom-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.bom-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Bulb row */
.bom-stage {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: var(--space-sm) 0;
}

.bom-bulb {
  flex: 1;
  aspect-ratio: 1;
  max-width: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.18);
  transition: none;
  position: relative;
}

/* Lit bulbs start dim until animate fires */
.bom-bulb--lit {
  background: rgba(201, 168, 76, 0.12);
}

/* On animate: each lit bulb switches on with a staggered delay */
.bandometer--animate .bom-bulb--lit {
  animation: bomBulbOn 0.35s ease forwards;
  animation-delay: calc((var(--i, 1) - 1) * 90ms);
}

@keyframes bomBulbOn {
  0%   {
    background: rgba(201, 168, 76, 0.12);
    box-shadow: none;
  }
  60%  {
    background: radial-gradient(circle at 38% 35%, #fff8d0 0%, var(--color-gold-pale) 25%, var(--color-gold-bright) 55%, var(--color-amber) 100%);
    box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.9), 0 0 22px 8px rgba(212, 175, 55, 0.45);
  }
  100% {
    background: radial-gradient(circle at 38% 35%, #fff8d0 0%, var(--color-gold-pale) 25%, var(--color-gold-bright) 55%, var(--color-amber) 100%);
    box-shadow: 0 0 8px 2px rgba(212, 175, 55, 0.75), 0 0 16px 6px rgba(212, 175, 55, 0.3);
  }
}

/* Leading-edge bulb pulses to draw attention */
.bandometer--animate .bom-bulb--edge {
  animation: bomBulbOn 0.35s ease forwards, bomEdgePulse 1.6s ease-in-out infinite alternate;
  animation-delay: calc((var(--i, 1) - 1) * 90ms), calc((var(--i, 1) - 1) * 90ms + 0.35s);
}

@keyframes bomEdgePulse {
  from { box-shadow: 0 0 10px 4px rgba(212, 175, 55, 0.7),  0 0 20px 8px  rgba(212, 175, 55, 0.25); }
  to   { box-shadow: 0 0 18px 8px rgba(212, 175, 55, 0.95), 0 0 36px 14px rgba(212, 175, 55, 0.45); }
}

/* Specular highlight dot on each lit bulb */
.bom-bulb--lit::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 22%;
  width: 28%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
}

.bandometer--animate .bom-bulb--lit::after {
  opacity: 1;
  transition: opacity 0.2s ease;
  transition-delay: calc((var(--i, 1) - 1) * 90ms + 0.15s);
}

/* Labels */
.bom-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.bom-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted-light);
}

.bom-label--goal {
  color: var(--color-gold);
}

@media (max-width: 480px) {
  .stretch-top    { gap: var(--space-sm); }
  .bom-pct        { font-size: 2rem; }
  .bom-stage      { gap: 4px; }
  .bom-bulb       { max-width: 28px; }
  .live-music-stretch { padding: var(--space-md); }
}

/* Bio text block */
.live-music-bio-wrap {
  margin-top: var(--space-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.live-music-bio {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--color-muted-light);
  margin-bottom: var(--space-sm);
}

.live-music-quote {
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  border-left: 2px solid rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
}

.live-music-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-gold-pale);
  margin-bottom: 0.5rem;
}

.live-music-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.why-card {
  padding: var(--space-lg);
  background-color: #fff;
  border: 1px solid var(--color-parchment);
  border-radius: 1px;
  box-shadow: 0 2px 12px rgba(26, 16, 8, 0.06);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 16, 8, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
}

.why-card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto var(--space-sm);
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 85% 50%, 50% 100%, 15% 50%);
  opacity: 0.85;
  line-height: 1;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
  margin-bottom: 0.5rem;
}

.why-card-body {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--color-muted);
}

/* =====================================================================
   WORKSHOPS
   ===================================================================== */
.workshops-note {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-near-black);
  background-color: rgba(201, 168, 76, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.6);
  border-radius: 1px;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* Workshop card — warm border glow on hover */
.workshop-card {
  padding: var(--space-lg);
  background-color: rgba(139, 26, 26, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    transform var(--transition-base);
}

.workshop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.workshop-card:hover {
  border-color: rgba(201, 168, 76, 0.7);
  box-shadow: 0 0 28px rgba(139, 26, 26, 0.4), inset 0 0 20px rgba(201, 168, 76, 0.06);
  background-color: rgba(139, 26, 26, 0.22);
  transform: translateY(-4px) scale(1.015);
}

.workshop-card.revealed {
  animation: borderGlow 4s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 1.3s);
}

.workshop-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  letter-spacing: -0.02em;
}

.workshop-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.2;
}

.workshop-hook {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold-pale);
  line-height: 1.4;
  margin-bottom: 0.1rem;
}

.workshop-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.85;
}

.workshops-footnote {
  font-size: 0.82rem;
  color: var(--color-muted-light);
  opacity: 0.7;
  font-style: italic;
  margin-top: -0.5rem;
}

.workshops-footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.workshops-footer-note {
  font-size: 0.88rem;
  color: var(--color-muted-light);
}

/* =====================================================================
   MID-PAGE PULSE INTERSTITIAL
   ===================================================================== */
.pulse-interstitial {
  background-color: var(--color-near-black-2);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pulse-interstitial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(139, 26, 26, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.pulse-interstitial-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.pulse-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(
    90deg,
    var(--color-gold-pale) 0%,
    var(--color-gold-bright) 40%,
    var(--color-cream) 60%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing {
  background-color: var(--color-ivory);
}

/* Pricing package logic guide */
.pricing-package-guide {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background-color: #fff;
  border: 1px solid var(--color-parchment);
  border-radius: 1px;
}

.pricing-package-intro {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.pricing-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.pricing-package {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-sm);
  border-left: 2px solid var(--color-parchment);
}

.pricing-package--best {
  border-left-color: var(--color-gold);
  background-color: rgba(201, 168, 76, 0.04);
}

.pricing-package-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
}

.pricing-package--best .pricing-package-name {
  color: var(--color-amber);
}

.pricing-package-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-muted);
}

/* Shoe bag callout banner */
.pricing-shoe-callout {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 1px;
}

.pricing-shoe-callout-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pricing-shoe-callout-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-amber);
  line-height: 1.5;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  align-items: start;
}

.pricing-tier {
  border: 1px solid var(--color-parchment);
  border-radius: 1px;
  background-color: #fff;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

/* Shimmer sweep on hover */
.pricing-tier::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.07) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -200% 0;
  pointer-events: none;
  transition: background-position 0s;
}

.pricing-tier:hover::after {
  animation: shimmerSweep 0.8s ease forwards;
}

.pricing-tier:hover {
  box-shadow: 0 4px 20px rgba(26, 16, 8, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Featured tier — Tier 1 */
.pricing-tier--featured {
  border: 2px solid var(--color-gold);
  border-top: 4px solid var(--color-gold-bright);
  background: linear-gradient(
    160deg,
    #fff 0%,
    rgba(245, 230, 184, 0.25) 100%
  );
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.2), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

/* Art-deco corner brackets on featured tier */
.pricing-tier--featured::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  z-index: 1;
  mask-image:
    linear-gradient(to right, black 18px, transparent 18px, transparent calc(100% - 18px), black calc(100% - 18px)),
    linear-gradient(to bottom, black 18px, transparent 18px, transparent calc(100% - 18px), black calc(100% - 18px));
  -webkit-mask-image:
    linear-gradient(to right, black 18px, transparent 18px, transparent calc(100% - 18px), black calc(100% - 18px)),
    linear-gradient(to bottom, black 18px, transparent 18px, transparent calc(100% - 18px), black calc(100% - 18px));
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.pricing-tier--featured:hover {
  box-shadow: 0 6px 36px rgba(201, 168, 76, 0.32), 0 0 0 1px rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

/* Gold shimmer sweep when pricing card enters viewport */
.pricing-tier--featured.pricing-tier--entered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(201, 168, 76, 0.08) 40%,
    rgba(201, 168, 76, 0.15) 50%,
    rgba(201, 168, 76, 0.08) 60%,
    transparent 80%
  );
  animation: pricingShimmer 1.2s ease forwards;
  pointer-events: none;
  z-index: 2;
}

@keyframes pricingShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); opacity: 0; }
}

.pricing-tier-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: var(--color-gold);
  color: var(--color-near-black);
  border-radius: 1px;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
}

.pricing-tier-dates {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-parchment);
  border-radius: 1px;
  overflow: hidden;
  margin: 0.25rem 0;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.7rem var(--space-sm);
  border-bottom: 1px solid var(--color-parchment);
  background-color: var(--color-ivory);
  font-size: 0.9rem;
}

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

.pricing-item:nth-child(even) {
  background-color: #fff;
}

/* Featured price row */
.pricing-item--highlight {
  background-color: rgba(201, 168, 76, 0.08) !important;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: none;
}

.pricing-item-name {
  color: var(--color-body-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pricing-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
  white-space: nowrap;
}

.pricing-shoe-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 1px;
  color: var(--color-amber);
}

.pricing-increase-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
}

.pricing-refund-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-refund-note a {
  color: var(--color-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-refund-note a:hover {
  color: var(--color-crimson-deep);
}

/* =====================================================================
   SCHEDULE
   ===================================================================== */
.schedule {
  background-color: var(--color-warm-dark);
}

.schedule-block {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.35rem;
}

.schedule-venue-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-near-black);
  background-color: rgba(201, 168, 76, 0.85);
  border-radius: 1px;
  margin-bottom: var(--space-md);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 1px;
  overflow: hidden;
}

.schedule-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  padding: 0.85rem var(--space-md);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  transition: background-color var(--transition-fast);
}

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

.schedule-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.schedule-item:hover {
  background-color: rgba(201, 168, 76, 0.06);
}

/* Timeline dot lights up on scroll */
.schedule-item .schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
  margin-top: 0.35rem;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.schedule-item.lit .schedule-dot {
  background-color: var(--color-gold);
  box-shadow: 0 0 6px 2px rgba(201, 168, 76, 0.5);
}

/* Live band items */
.schedule-item--live {
  background-color: rgba(139, 26, 26, 0.2) !important;
  border-left: 3px solid var(--color-crimson);
}

.schedule-item--live .schedule-event {
  color: var(--color-cream);
}

/* Workshop items */
.schedule-item--workshop {
  border-left: 3px solid var(--color-gold);
  background-color: rgba(201, 168, 76, 0.05) !important;
}

/* Doors open / break items */
.schedule-item--doors {
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.schedule-item--doors .schedule-event {
  color: var(--color-muted-light);
  font-style: italic;
}

/* Beginner lesson */
.schedule-item--beginner {
  background-color: rgba(26, 74, 74, 0.2) !important;
  border-left: 3px solid var(--color-teal);
}

/* DJ breaks */
.schedule-item--dj .schedule-event {
  font-size: 0.85rem;
  color: var(--color-muted-light);
}

.schedule-item--highlight {
  border-left: 2px solid var(--color-gold);
}

.schedule-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  white-space: nowrap;
  min-width: 150px;
}

.schedule-event {
  font-size: 0.93rem;
  color: var(--color-light-text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.schedule-event strong {
  color: var(--color-cream);
}

.schedule-divider {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

/* =====================================================================
   VENUE
   ===================================================================== */
.venue {
  background-color: var(--color-ivory);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.venue-card {
  padding: var(--space-xl);
  background-color: #fff;
  border: 1px solid var(--color-parchment);
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.venue-card:hover {
  box-shadow: 0 6px 28px rgba(26, 16, 8, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.venue-card--main {
  border-color: rgba(139, 26, 26, 0.3);
  border-top: 3px solid var(--color-crimson);
}

.venue-card--workshop {
  border-top: 3px solid var(--color-gold);
}

.venue-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-crimson);
  border-radius: 1px;
  width: fit-content;
}

.venue-card-badge--secondary {
  background-color: var(--color-amber);
  color: var(--color-near-black);
}

.venue-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
}

.venue-card-address {
  font-size: 0.85rem;
  color: var(--color-amber);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.venue-card-desc {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--color-muted);
}

.venue-card-details {
  font-size: 0.88rem;
  color: var(--color-body-text);
  line-height: 1.65;
  padding: var(--space-sm);
  background-color: var(--color-ivory);
  border-radius: 1px;
  border-left: 2px solid var(--color-gold);
}

.venue-card-details strong {
  color: var(--color-crimson-deep);
}

.venue-card-transit {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  font-style: italic;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-cream);
  background-color: rgba(255, 255, 255, 0.04);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  min-height: 60px;
}

.faq-question:hover {
  background-color: rgba(201, 168, 76, 0.08);
  color: var(--color-gold);
}

.faq-question[aria-expanded="true"] {
  background-color: rgba(139, 26, 26, 0.3);
  color: var(--color-gold);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.93rem;
  line-height: 1.72;
  color: #C5AA88;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--color-gold-light);
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about {
  background-color: var(--color-ivory);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.about-band {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-parchment);
}

.about-band-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-crimson-deep);
  margin-bottom: var(--space-md);
}

.about-band-quote {
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  border-left: 2px solid var(--color-gold);
  background-color: rgba(201, 168, 76, 0.04);
}

.about-band-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.about-band-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-amber);
  text-transform: uppercase;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-final {
  background-color: var(--color-crimson-deep);
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139, 26, 26, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(204, 136, 0, 0.15) 0%, transparent 60%);
}

.cta-final-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-final-ornament {
  font-size: 0.65rem;
  letter-spacing: 1.2em;
  color: rgba(201, 168, 76, 0.6);
  margin-bottom: 0.5rem;
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
}

.cta-final-body {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold-pale);
}

.cta-final-sub {
  font-size: 0.87rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: var(--space-sm);
}

.cta-final-note {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background-color: var(--color-near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-org {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.footer-event {
  font-size: 0.82rem;
  color: var(--color-muted-light);
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem var(--space-sm);
}

.footer-nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover {
  color: var(--color-gold-light);
}

/* =====================================================================
   REDUCED MOTION — All motion disabled or instant
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Hero elements must be immediately visible */
  .hero-presented-by,
  .hero-title-world,
  .hero-title-lindy,
  .hero-title-day,
  .hero-title-year,
  .hero-tagline,
  .hero-ornament-rule,
  .hero-meta,
  .hero-actions,
  .hero-note {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .hero-ornament-rule {
    width: 100% !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn--pulse {
    animation: none !important;
  }

  .hero-spotlight {
    animation: none !important;
  }

  .marquee-light {
    animation: none !important;
    opacity: 0.7;
  }

  .hero-title-world::after {
    animation: none !important;
  }
}

/* =====================================================================
   RESPONSIVE — MOBILE FIRST
   ===================================================================== */

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--color-near-black);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: var(--space-sm) 0;
    gap: 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem var(--space-lg);
    display: block;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-cta-link {
    margin: var(--space-sm) var(--space-md);
    justify-content: center;
    padding: 0.75rem var(--space-md);
    font-size: 0.95rem;
  }

  /* Hero mobile */
  .hero {
    padding: 90px var(--space-md) var(--space-xl);
    min-height: 100svh;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-meta-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Schedule on mobile */
  .schedule-item {
    flex-direction: column;
    gap: 0.2rem;
  }

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

  /* Pricing on mobile */
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  /* Venue on mobile */
  .venue-grid {
    grid-template-columns: 1fr;
  }

  /* Footer on mobile */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer-cta {
    width: 100%;
  }

  .footer-cta .btn {
    width: 100%;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 100px var(--space-lg) var(--space-xl);
  }

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

/* Prevent horizontal overflow at very small sizes */
@media (max-width: 390px) {
  .hero-title-lindy {
    font-size: clamp(3rem, 18vw, 9rem);
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .pricing-item {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }
}
