/**
 * IMMERSIVE MASTER - Complete CSS
 * MetaMask-style progress, dramatic reveals, 3D flips, explosions
 *
 * All CSS variables defined in themes.css
 * Mobile-first approach: base styles for mobile, min-width queries for desktop
 */

/* ============================================================
   NO-JS FALLBACK - Critical content visible without JavaScript
   ============================================================ */

.no-js .hero-meta,
.no-js .hero-tagline,
.no-js .hero-logo-reveal,
.no-js .hero-stamp,
.no-js .hero-scroll-cue,
.no-js .fullpage-card-content,
.no-js .tour-list-section,
.no-js .site-footer,
.no-js .menu-nav-link,
.no-js .menu-footer,
.no-js .tour-past-item,
.no-js .epk-split-section,
.no-js .epk-split-left .epk-split-band,
.no-js .epk-split-left .epk-split-book,
.no-js .epk-split-left .epk-dl-link,
.no-js .watch-player-frame,
.no-js .footer-utility {
  opacity: 1 !important;
  transform: none !important;
}

.no-js .tour-accordion-item {
  display: block !important;
}

.no-js .progress-nav {
  opacity: 1;
}

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

a:focus-visible,
button:focus-visible {
  box-shadow: var(--shadow-focus);
}

/* ============================================================
   BASE & RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
}

/* Lenis smooth scroll compatibility - required for sticky positioning */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-serif);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  /* NOTE: overflow-x: hidden breaks sticky positioning - use wrapper instead */
}

/* Contain horizontal overflow without breaking sticky */
.immersive {
  overflow-x: clip; /* clip doesn't affect sticky like hidden does */
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

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

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.section-header {
  margin-bottom: var(--spacing-2xl);
}

.section-header--center {
  text-align: center;
}

.section-number,
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-extreme);
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  line-height: 1.1;
}

/* ============================================================
   PROGRESS NAV (MetaMask Style - Vertical Pill with Blob)
   ============================================================ */

.progress-nav {
  position: fixed;
  right: var(--spacing-xl);
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-fixed);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.progress-nav.is-visible {
  opacity: 1;
}

.progress-pill {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-full);
  padding: var(--spacing-md) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-lg);
}

.progress-dot {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-raised);
  padding: 0;
}

/* The dot center */
.dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: all var(--duration-slow) ease;
  z-index: 91; /* shim: above raised */
  position: relative;
}

/* Active dot becomes gold */
.progress-dot.is-active .dot-inner {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(var(--color-accent-rgb), 0.6);
}

/* Past dots stay gold */
.progress-dot.is-past .dot-inner {
  background: var(--color-accent);
}

.progress-dot:hover .dot-inner {
  background: var(--color-text);
  transform: scale(1.2);
}

/* Progress bar between dots - positioned in the gap */
.dot-bar {
  position: absolute;
  top: calc(50% + 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: calc(100% + 12px - 10px);
  background: var(--color-border-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: var(--z-base);
}

/* Hide bar on last dot */
.progress-dot:last-child .dot-bar {
  display: none;
}

/* The fill inside the bar - controlled by CSS variable */
.dot-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-sm);
  transition: height var(--duration-fast) ease-out;
}

/* Past sections: bar is full */
.progress-dot.is-past .dot-bar::after {
  height: 100%;
}

/* Tooltip */
.dot-tooltip {
  position: absolute;
  right: calc(100% + var(--spacing-md));
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease, transform var(--duration-normal) ease;
  transform: translateY(-50%) translateX(8px);
  box-shadow: var(--shadow-md);
}

.dot-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-surface);
}

.progress-dot:hover .dot-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   UTILITY LINKS
   ============================================================ */

.skip-link,
.story-link {
  position: fixed;
  top: var(--spacing-xl);
  z-index: var(--z-fixed);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  padding: var(--spacing-sm) var(--spacing-md);
  border: var(--border-width) solid var(--color-border);
  background: rgba(var(--color-bg-rgb), 0.5);
  backdrop-filter: blur(10px);
  transition: all var(--duration-slow) ease;
}

.skip-link {
  right: var(--spacing-xl);
  color: var(--color-text-muted);
  transform: translateY(-200%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.story-link {
  right: var(--spacing-5xl);
  color: var(--color-accent);
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.skip-link:hover,
.story-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.immersive {
  position: relative;
  width: 100%;
}

.section {
  position: relative;
  width: 100%;
}

/* ============================================================
   HERO SECTION - Dark Video That GROWS on Scroll
   ============================================================ */

.section--hero {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Looping grunge video — covers hero, does the movement */
.hero-video-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  mix-blend-mode: screen;
}

/* Single drifting grunge overlay on top of video */
.hero-grain {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 1;
  background: url('../img/scratch-overlay.webp') center / cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: screen;
  animation: grungeDrift 80s ease-in-out infinite alternate;
}

@keyframes grungeDrift {
  0%   { transform: translate(-3%, -2%) scale(1); }
  50%  { transform: translate(2%, 1%) scale(1.05); }
  100% { transform: translate(-1%, 3%) scale(1.02); }
}

/* Ambient sparks floating over hero */
.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(var(--color-accent-rgb), 0.6);
  border-radius: var(--radius-full);
  box-shadow: 0 0 4px rgba(var(--color-accent-rgb), 0.3);
}

/* Logo reveal */
.hero-logo-reveal {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  opacity: 0;
}

.hero-logo-img {
  width: clamp(250px, 50vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

.hero-stamp {
  width: clamp(80px, 15vw, 130px);
  height: auto;
  opacity: 0;
  transform: scale(2.5) rotate(-25deg);
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* Meta */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 2.5vw, var(--font-size-xs));
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(30px);
}

.hero-meta.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo) 0.3s;
}

.meta-divider {
  opacity: 0.5;
}

/* Title - removed, now using logo reveal */

/* Tagline */
.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2.5vw, var(--font-size-sm));
  letter-spacing: var(--letter-spacing-ultra);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo) 0.5s;
}


/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-text-muted);
  opacity: 0;
}

.hero-scroll-cue.is-visible {
  opacity: 1;
  transition: opacity 1s ease 1s;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ============================================================
   ABOUT SECTION - Stacking Cards with Staggered Layout
   ============================================================ */

.section--about {
  position: relative;
  padding: 0;
  background: var(--color-bg);
}

/* Each card is sticky and stacks on top of previous */
.about-card {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-bg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Z-index stacking - later cards on top (1-4 for sequential stacking order) */
.about-card--1 {
  background: var(--color-bg);
  z-index: 1;
}

.about-card--2 {
  background: var(--color-bg-alt);
  z-index: 2;
}

.about-card--4 .about-card-image {
  background: #000;
}

.about-card--4 .about-card-image img {
  object-fit: contain;
}

.about-card--3 {
  background: var(--color-surface);
  z-index: 3;
}

.about-card--4 {
  background: var(--color-surface-raised);
  z-index: 4;
}

/* Reverse layout - text first, image second */
@media (min-width: 768px) {
  .about-card--reverse {
    direction: rtl;
  }

  .about-card--reverse > * {
    direction: ltr;
  }
}

/* Card content area */
.about-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  position: relative;
}

@media (min-width: 768px) {
  .about-card-content {
    padding: 4rem;
  }
}

/* Card number */
.about-card-number {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
}

/* Card title */
.about-card-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

/* Card text */
.about-card-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin: 0;
  max-width: 500px;
}

/* Card image area */
.about-card-image {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}

@media (min-width: 768px) {
  .about-card-image {
    min-height: auto;
  }
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.about-card:hover .about-card-image img {
  filter: grayscale(50%) contrast(1.1);
  transform: scale(1.02);
}

/* ============================================================
   BAND SECTION - Concom.tv Style Stacking Cards
   ============================================================ */

.section--band {
  padding: 0;
  background: var(--color-bg);
}

.section--band .section-header {
  padding: var(--spacing-5xl) var(--spacing-3xl) var(--spacing-3xl);
  position: relative;
  z-index: var(--z-raised);
}

.section--band .section-title {
  color: var(--color-text);
}

/* Stack container - needs sufficient height for sticky cards to work */
/* Each card is ~85vh, we need container height = (numCards * cardHeight) for proper stacking */
.stack-container {
  position: relative;
}

/* Each card is sticky and stacks on top of the previous */
/* NOTE: Do NOT add transform to this element - it breaks sticky positioning */
.stack-card {
  position: sticky;
  width: calc(100% - var(--spacing-5xl));
  margin: 0 auto;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-4xl);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-upward); /* Upward shadow for lifted card effect */
}

/* Different background colors for each card + staggered top position (z-index 1-4 for stacking order) */
.stack-card[data-index="0"] {
  background: #1a2744; /* Band card unique colors - intentionally not in theme */
  z-index: 1;
  top: var(--spacing-xl);
}

.stack-card[data-index="1"] {
  background: #2d1f3d;
  z-index: 2;
  top: calc(var(--spacing-xl) + 30px);
}

.stack-card[data-index="2"] {
  background: #1f3d2d;
  z-index: 3;
  top: calc(var(--spacing-xl) + 60px);
}

.stack-card[data-index="3"] {
  background: #3d2d1f;
  z-index: 4;
  top: calc(var(--spacing-xl) + 90px);
}

/* Inner card layout - wide format with image and content side by side */
.stack-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  will-change: transform;
  transform-origin: center top;
}

/* Alternate layout for even cards */
.stack-card[data-index="1"] .stack-card-inner,
.stack-card[data-index="3"] .stack-card-inner {
  direction: rtl;
}

.stack-card[data-index="1"] .stack-card-inner > *,
.stack-card[data-index="3"] .stack-card-inner > * {
  direction: ltr;
}

/* Image section */
.stack-card-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl); /* Deep shadow for image depth */
}

.stack-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.stack-card:hover .stack-card-image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Content section */
.stack-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-md);
  width: fit-content;
}

.member-name {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-accent);
  margin: 0 0 2rem;
  letter-spacing: var(--letter-spacing-wider);
}

.member-bio {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.85;
  margin: 0 0 2rem;
  max-width: 480px;
}

.member-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
  padding-left: 1.5rem;
  border-left: var(--border-width-heavy) solid var(--color-accent);
  max-width: 440px;
}

/* ============================================================
   TOUR SECTION - Full-Page Cards THEN List Accordion
   ============================================================ */

.section--tour {
  position: relative;
  background: var(--color-bg);
}

/* Full-page show cards - stack on top of each other */
.tour-fullpage-cards {
  position: relative;
}

.tour-fullpage-card {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Each card has different z-index - later cards stack ON TOP (1-5 for sequential stacking order) */
.tour-fullpage-card[data-show="0"] { z-index: 1; }
.tour-fullpage-card[data-show="1"] { z-index: 2; }
.tour-fullpage-card[data-show="2"] { z-index: 3; }
.tour-fullpage-card[data-show="3"] { z-index: 4; }
.tour-fullpage-card[data-show="4"] { z-index: 5; }

.fullpage-card-bg {
  position: absolute;
  inset: 0;
}

.fullpage-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.fullpage-card-bg--map {
  overflow: hidden;
}

.tour-static-map {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: brightness(0.4) saturate(0.3) contrast(1.2);
}

.fullpage-card-content {
  position: relative;
  z-index: var(--z-raised);
  text-align: center;
  padding: var(--spacing-xl);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.tour-fullpage-card.is-active .fullpage-card-content {
  opacity: 1;
  transform: translateY(0);
}

.show-date-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-xl);
}

.date-day {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: var(--color-accent);
  text-shadow: 0 4px 30px rgba(var(--color-accent-rgb), 0.3);
}

.date-month,
.date-year {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-widest);
  opacity: 0.8;
}

.show-venue-big {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin: 0 0 0.5rem;
}

.show-location-big {
  font-size: 1.25rem;
  opacity: 0.7;
  margin: 0 0 1.5rem;
}

.show-details-big {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-widest);
  text-transform: uppercase;
  opacity: 0.6;
}

/* Tour List Section - Hidden until all cards pass */
.tour-list-section {
  position: relative;
  padding: var(--spacing-5xl) var(--spacing-3xl);
  background: var(--color-bg);
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s var(--ease-out-expo);
}

.tour-list-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.tour-accordion-list {
  max-width: 900px;
  margin: 0 auto;
}

.tour-accordion-item {
  border-bottom: var(--border-width) solid var(--color-border);
}

.tour-accordion-item.is-hidden {
  display: none;
}

.tour-show-more {
  display: block;
  margin: var(--spacing-xl) auto 0;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  background: none;
  border: var(--border-width) solid var(--color-accent);
  cursor: pointer;
  transition: background var(--duration-slow) ease, color var(--duration-slow) ease;
}

.tour-show-more:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

.accordion-header {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 40px;
  gap: var(--spacing-xl);
  align-items: center;
  width: 100%;
  padding: var(--spacing-lg) 0;
  text-align: left;
  transition: all 0.3s ease;
}

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

.accordion-date {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-widest);
  color: var(--color-accent);
}

.accordion-venue {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.accordion-location {
  font-size: var(--font-size-sm);
  opacity: 0.6;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tour-accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.accordion-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo),
              padding 0.5s ease;
}

.tour-accordion-item.is-open .accordion-body {
  max-height: 600px;
  padding: 0 0 2rem;
}

@media (max-width: 480px) {
  .tour-accordion-item.is-open .accordion-body {
    max-height: 800px;
  }
}

.accordion-map {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}

.accordion-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(90%);
  transition: filter 0.4s ease;
}

/* Colorize map on hover */
.accordion-map:hover iframe {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

.accordion-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.accordion-details p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.btn-tickets {
  display: inline-block;
  margin-top: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-widest);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-tickets:hover {
  background: var(--color-text);
  transform: translateY(-2px);
}


/* ============================================================
   WATCH SECTION — YouTube facade embeds
   ============================================================ */

.section--watch {
  position: relative;
  background: var(--color-bg);
  z-index: 2;
}

.watch-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-4xl) var(--spacing-lg);
  text-align: center;
}

/* Main video frame with cinematic border */
.watch-player-frame {
  position: relative;
  margin-bottom: var(--spacing-xl);
  border: var(--border-width) solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.watch-player-frame.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo);
}

.watch-main {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  cursor: pointer;
}

.watch-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Facade thumbnail */
.watch-facade {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

.watch-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--duration-slow) ease;
}

.watch-main:hover .watch-facade::after {
  background: rgba(0,0,0,0.15);
}

/* Play button */
.watch-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 68px;
  height: 48px;
  background: rgba(var(--color-accent-rgb), 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-slow) ease, transform var(--duration-slow) ease;
}

.watch-main:hover .watch-play {
  background: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.watch-play svg {
  fill: var(--color-bg);
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

/* Thumbnail strip */
.watch-thumbs {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  overflow-x: auto;
}

.watch-thumb {
  position: relative;
  width: 120px;
  height: 68px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity var(--duration-slow) ease, border-color var(--duration-slow) ease;
}

.watch-thumb:hover,
.watch-thumb.is-active {
  opacity: 1;
}

.watch-thumb.is-active {
  border-color: var(--color-accent);
}

.watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Playlist link */
.watch-playlist-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity var(--duration-slow) ease;
}

.watch-playlist-link:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .watch-thumb {
    width: 150px;
    height: 84px;
  }
}

/* Footer */
.site-footer {
  width: 100%;
  margin-top: auto;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  border-top: var(--border-width) solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo) 0.4s;
}

.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: grayscale(100%) brightness(2);
  opacity: 0.6;
}

.site-footer p {
  margin: 0 0 0.25rem;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  opacity: 0.5;
}

/* ============================================================
   NEW SITE FOOTER — Quote + Next Show + Utility Grid
   ============================================================ */

/* --- Zone 1: Next Show (map background) --- */
.footer-next-show-zone {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-next-show-map {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  border: none;
  width: 100%;
  height: 100%;
  filter: saturate(0) contrast(1.2) brightness(0.4);
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer-next-show-map {
    top: -30%;
    height: 160%;
    will-change: transform;
  }
}

.footer-next-show-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(var(--color-bg-rgb), 0.55);
}

.footer-next-show-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 600px;
}

.footer-next-show-label {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
}

.footer-next-show-date {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--spacing-sm);
}

.footer-next-show-venue {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

.footer-next-show-location {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  opacity: 0.6;
  margin-bottom: var(--spacing-xl);
}

.footer-next-show-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  padding: var(--spacing-md) var(--spacing-xl);
  border: var(--border-width) solid var(--color-accent);
  transition: background var(--duration-slow) ease, color var(--duration-slow) ease;
}

.footer-next-show-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* --- Zone 3: Bayou Floor --- */
.footer-utility {
  position: relative;
  z-index: var(--z-raised);
  overflow: hidden;
  background: var(--color-bg);
}

/* Mobile-first: stacked, centered */
.footer-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-lg);
  min-height: 120px;
}

@media (min-width: 768px) {
  .footer-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }
}

/* Left: booking + socials */
.footer-strip-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  z-index: 2;
}

@media (min-width: 768px) {
  .footer-strip-left {
    align-items: flex-start;
  }
}

.footer-booking-email {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: var(--letter-spacing-wide);
  transition: opacity var(--duration-slow) ease;
}

.footer-booking-email:hover {
  opacity: 0.7;
}

.footer-brand-socials {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  opacity: 0.35;
  text-decoration: none;
  padding: var(--spacing-sm); /* 44px+ touch target */
  margin: calc(-1 * var(--spacing-sm)); /* Offset padding so layout is unaffected */
  transition: opacity var(--duration-slow) ease, color var(--duration-slow) ease;
}

.footer-social-icon:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-social-icon svg {
  fill: currentColor;
}

/* Center: Goon watermark */
/* Right: inline nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm) var(--spacing-lg);
  z-index: 2;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
    max-width: 380px;
    gap: var(--spacing-sm) var(--spacing-xl);
  }
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.5;
  padding: var(--spacing-xs) 0;
  transition: opacity var(--duration-slow) ease, color var(--duration-slow) ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* --- Bottom Bar --- */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: var(--border-width) solid rgba(255,255,255,0.05);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  opacity: 0.35;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.footer-bottom a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--duration-slow) ease, color var(--duration-slow) ease;
}

.back-to-top:hover {
  opacity: 1;
  color: var(--color-accent);
}

.back-to-top svg {
  width: 14px;
  height: 14px;
}

/* --- Footer animation initial states --- */
.footer-utility {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.footer-utility.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo);
}

/* ============================================================
   RESPONSIVE - Mobile-First Approach
   Base styles are for mobile, min-width queries enhance for larger screens
   ============================================================ */

/* --- MOBILE BASE (default, no query needed) --- */
/* Progress nav: hidden on mobile, shown on tablet+ */
.progress-nav {
  display: none;
}

.skip-link,
.story-link {
  top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-xs);
}

.skip-link {
  right: var(--spacing-md);
}

.story-link {
  right: var(--spacing-4xl);
}

/* Band section mobile base */
.section--band .section-header {
  padding: var(--spacing-3xl) var(--spacing-xl) 2rem;
}

.stack-card {
  width: calc(100% - var(--spacing-xl));
  padding: 3rem 1.5rem;
  border-radius: 16px;
}

.stack-card[data-index="0"] { top: var(--spacing-sm); }
.stack-card[data-index="1"] { top: calc(var(--spacing-sm) + 20px); }
.stack-card[data-index="2"] { top: calc(var(--spacing-sm) + 40px); }
.stack-card[data-index="3"] { top: calc(var(--spacing-sm) + 60px); }

.stack-card-inner {
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.stack-card[data-index="1"] .stack-card-inner,
.stack-card[data-index="3"] .stack-card-inner {
  direction: ltr;
}

.stack-card-image {
  max-width: 500px;
  margin: 0 auto;
}

.stack-card-content {
  align-items: center;
}

.member-name {
  font-size: 1.75rem;
}

.member-role {
  font-size: 1rem;
}

.member-bio,
.member-quote {
  font-size: 1rem;
  max-width: 600px;
  text-align: left;
}

.accordion-header {
  grid-template-columns: 80px 1fr 24px;
  gap: 1rem;
}

.accordion-location {
  display: none;
}

.accordion-body {
  grid-template-columns: 1fr;
}

.tour-list-section {
  padding: var(--spacing-xl) var(--spacing-lg);
}

.watch-thumbs {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.about-reveal-container {
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  padding: 2rem;
}

.about-image-revealer {
  height: 50vh;
}

/* --- TABLET (769px and up) --- */
@media (min-width: 769px) {
  .progress-nav {
    display: block;
    right: var(--spacing-md);
  }

  .progress-pill {
    padding: var(--spacing-md) var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .progress-dot {
    width: 28px;
    height: 28px;
  }

  .progress-blob {
    width: 28px;
    height: 28px;
  }

  .skip-link,
  .story-link {
    top: var(--spacing-xl);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-xs);
  }

  .skip-link {
    right: var(--spacing-xl);
  }

  .story-link {
    right: var(--spacing-5xl);
  }

  .section--band .section-header {
    padding: var(--spacing-5xl) var(--spacing-3xl) var(--spacing-3xl);
  }

  .stack-card {
    width: calc(100% - var(--spacing-3xl));
    min-height: auto;
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .stack-card[data-index="0"] { top: var(--spacing-md); }
  .stack-card[data-index="1"] { top: calc(var(--spacing-md) + 24px); }
  .stack-card[data-index="2"] { top: calc(var(--spacing-md) + 48px); }
  .stack-card[data-index="3"] { top: calc(var(--spacing-md) + 72px); }

  .accordion-body {
    grid-template-columns: 1fr 1fr;
  }

  .tour-list-section {
    padding: var(--spacing-5xl) var(--spacing-3xl);
  }

}

/* --- DESKTOP SMALL (1025px and up) --- */
@media (min-width: 1025px) {
  .progress-nav {
    right: var(--spacing-xl);
  }

  .progress-pill {
    padding: var(--spacing-md) var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .progress-dot {
    width: 32px;
    height: 32px;
  }

  .accordion-header {
    grid-template-columns: 100px 1fr 1fr 40px;
    gap: var(--spacing-xl);
  }

  .accordion-location {
    display: block;
  }

  .stack-card {
    width: calc(100% - var(--spacing-5xl));
    min-height: 85vh;
    padding: var(--spacing-3xl) var(--spacing-4xl);
    border-radius: 24px;
  }

  .stack-card[data-index="0"] { top: var(--spacing-xl); }
  .stack-card[data-index="1"] { top: calc(var(--spacing-xl) + 30px); }
  .stack-card[data-index="2"] { top: calc(var(--spacing-xl) + 60px); }
  .stack-card[data-index="3"] { top: calc(var(--spacing-xl) + 90px); }

  .stack-card-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    text-align: left;
  }

  .stack-card[data-index="1"] .stack-card-inner,
  .stack-card[data-index="3"] .stack-card-inner {
    direction: rtl;
  }

  .stack-card[data-index="1"] .stack-card-inner > *,
  .stack-card[data-index="3"] .stack-card-inner > * {
    direction: ltr;
  }

  .stack-card-image {
    max-width: none;
    margin: 0;
  }

  .stack-card-content {
    align-items: flex-start;
  }

  .member-name {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .member-bio,
  .member-quote {
    max-width: 480px;
  }

  .about-reveal-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-image-revealer {
    height: auto;
  }
}

/* --- DESKTOP LARGE (1201px and up) --- */
@media (min-width: 1201px) {
  .stack-card-inner {
    gap: 6rem;
  }

  .member-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
}

/* ============================================================
   HAMBURGER MENU BUTTON - Fixed position with black box
   ============================================================ */

.hamburger-container {
  position: fixed;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 9991; /* shim: above overlay, below critical */
  background: rgba(var(--color-bg-rgb), 0.9);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

/* Cart icon — matches hamburger 32x32 tap target */
.header-cart {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--duration-slow) ease;
}

.header-cart:hover {
  opacity: 0.7;
}

.header-cart svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-text);
  stroke-width: 1.5;
  fill: none;
}

.header-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header-cart-badge:empty,
.header-cart-badge[data-count="0"] {
  display: none;
}

/* Divider between cart and hamburger */
.header-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

/* Hamburger button */
.hamburger {
  display: flex;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when menu is open */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ============================================================
   STOMP MENU - Full-screen overlay with seismic effects
   ============================================================ */

/* NOTE: overflow-x: hidden on html/body breaks sticky positioning
   The shake animation overflow is now handled by .immersive { overflow-x: clip; } */

/* Menu background panel - slides in from right, behind menu content */
.menu-bg {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
  z-index: 991; /* shim: below overlay */
  visibility: hidden;
}

.menu-bg.is-open {
  visibility: visible;
}

/* Dust particle container */
.dust-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  pointer-events: none;
  z-index: var(--z-overlay);
  overflow: hidden;
}

.dust {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: rgba(var(--color-accent-rgb), 0.7);
  border-radius: var(--radius-full);
  box-shadow: 0 0 6px rgba(var(--color-accent-rgb), 0.5);
}

/* Screen shake container - wraps content for shake effect */
.shake-wrapper {
  width: 100%;
  height: 100%;
}

/* Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-3xl);
  padding-bottom: var(--spacing-5xl);
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay.is-open {
  pointer-events: all;
  visibility: visible;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.menu-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 600;
  opacity: 0;
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  /* Initial opacity/transform set by GSAP in main.js */
}

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

.menu-nav-link.is-active {
  color: var(--color-accent);
}

/* No underline effect - clean look like the demo */

/* Menu footer with social links */
.menu-footer {
  position: absolute;
  bottom: var(--spacing-3xl);
  left: var(--spacing-3xl);
  display: flex;
  gap: var(--spacing-xl);
  opacity: 0;
}

.menu-footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

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

/* Impact flash effect */
.impact-flash {
  position: fixed;
  inset: 0;
  background: rgba(var(--color-accent-rgb), 0.1);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
}

/* Menu responsive - Mobile-first */
/* Mobile base (default) */
.menu-overlay {
  padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-2xl);
  justify-content: flex-start;
  padding-top: 20vh;
}

.menu-nav {
  gap: var(--spacing-xs);
}

.menu-nav-link {
  font-size: clamp(1.5rem, 9vw, 2rem);
  padding: 0.25em 0;
}

.menu-footer {
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.menu-footer a {
  font-size: var(--font-size-xs);
}

/* Tablet menu (481px and up) */
@media (min-width: 481px) {
  .menu-overlay {
    padding: var(--spacing-4xl) var(--spacing-xl) 4rem;
    justify-content: flex-end;
    padding-top: unset;
  }

  .menu-nav {
    gap: var(--spacing-sm);
  }

  .menu-nav-link {
    font-size: clamp(2.5rem, 8vw, 4rem);
    padding: 0;
  }

  .menu-footer {
    left: var(--spacing-3xl);
    transform: none;
    bottom: var(--spacing-3xl);
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .menu-footer a {
    font-size: var(--font-size-sm);
  }
}

/* Desktop menu (1024px and up) */
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }

  /* Keep hamburger visible on desktop for the immersive Stomp menu experience */
  .hamburger {
    display: flex;
  }

  .menu-overlay {
    padding: var(--spacing-3xl);
    padding-bottom: var(--spacing-5xl);
  }

  .menu-nav-link {
    font-size: clamp(2rem, 8vw, 5rem);
  }

  .menu-footer {
    gap: var(--spacing-xl);
  }
}

/* ============================================================
   PAGE TRANSITIONS (Barba.js + GSAP)
   ============================================================ */

/* Transition overlay for lift effect */
.transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: var(--z-critical);
  pointer-events: none;
  opacity: 0;
}

/* ============================================================
   PAGE LAYOUTS - Sub-pages (Tour, Story, EPK, Merch, Contact)
   ============================================================ */

.page-main {
  padding-top: 80px; /* Account for fixed header */
}

/* Page Hero */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: var(--spacing-3xl) var(--spacing-xl);
}

.page-hero-content {
  max-width: 800px;
}

.page-hero .section-number,
.page-hero .eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-extreme);
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.page-title {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  line-height: 1.1;
}

/* EPK hero is shorter since it has a split-screen layout below */
.page-hero--epk { min-height: 25vh; }

/* Content Section */
.content-section {
  padding: var(--spacing-3xl) var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-4xl) var(--spacing-xl);
  text-align: center;
  background: var(--color-bg-alt);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  text-decoration: none;
  border: var(--border-width) solid var(--color-accent);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-wider);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================================
   TOUR PAGE
   ============================================================ */

/* Sub-page hero with background image */
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
  z-index: 0;
}

.page-hero:has(.page-hero-bg) {
  position: relative;
  overflow: hidden;
}

.page-hero:has(.page-hero-bg) .page-hero-content {
  position: relative;
  z-index: 1;
}

.tour-page-dates {
  max-width: 900px;
  margin: 0 auto;
}

.tour-no-shows {
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  opacity: 0.5;
  padding: var(--spacing-3xl) 0;
}


/* Legacy tour carousel styles below — safe to remove in future cleanup */

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.page-hero--tour .page-hero-content {
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.page-hero-scroll-cue {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.page-hero-scroll-cue span {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-text-muted);
  text-transform: uppercase;
}

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 50px; }
}

/* Horizontal Scroll Container */
.tour-horizontal {
  position: relative;
  overflow: hidden;
  /* Height set dynamically by JS for horizontal scroll */
}

.tour-horizontal-progress {
  position: fixed;
  top: 50%;
  right: var(--spacing-lg);
  transform: translateY(-50%);
  width: 3px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: var(--z-fixed);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-horizontal.is-active .tour-horizontal-progress {
  opacity: 1;
}

.tour-horizontal-progress-bar {
  width: 100%;
  height: 0%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: height 0.1s ease;
}

/* Cards Wrapper */
.tour-cards-wrapper {
  display: flex;
  height: 100vh;
  will-change: transform;
}

/* Horizontal Tour Card */
.tour-card-horizontal {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tour-card-horizontal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-card-horizontal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.8s ease;
}

.tour-card-horizontal:hover .tour-card-horizontal-bg img {
  transform: scale(1.15);
}

.tour-card-horizontal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.tour-card-horizontal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-2xl);
  max-width: 600px;
}

/* Date Display */
.tour-card-horizontal-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.tour-card-horizontal-date .date-day {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  text-shadow: 0 4px 30px rgba(201, 162, 39, 0.3);
}

.tour-card-horizontal-date .date-month {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: var(--letter-spacing-extreme);
  color: var(--color-text);
  margin-top: var(--spacing-xs);
}

.tour-card-horizontal-date .date-year {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-text-muted);
}

/* Venue Info */
.tour-card-horizontal-info {
  margin-bottom: var(--spacing-xl);
}

.tour-venue-large {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

.tour-location-large {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
}

.tour-time {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  letter-spacing: var(--letter-spacing-widest);
}

/* Large Button */
.btn-large {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: 1rem;
}

/* Card Number */
.tour-card-horizontal-number {
  position: absolute;
  bottom: var(--spacing-2xl);
  right: var(--spacing-2xl);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

/* Past Shows Section */
.tour-past-section {
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: var(--color-bg);
}

.tour-past-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
}

.tour-past-header h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

.tour-past-header p {
  color: var(--color-text-muted);
}

.tour-past-list {
  max-width: 800px;
  margin: 0 auto;
}

.tour-past-item {
  display: grid;
  grid-template-columns: 120px 1fr 150px;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tour-past-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-past-date {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tour-past-venue {
  font-family: var(--font-mono);
  font-size: 1rem;
}

.tour-past-location {
  font-family: var(--font-serif);
  color: var(--color-text-muted);
  text-align: right;
}

/* Tour CTA */
.tour-cta {
  background: linear-gradient(135deg, #1a1208 0%, var(--color-bg) 100%);
}

/* Tour page mobile-first responsive */
/* Mobile base (default) */
.tour-past-item {
  grid-template-columns: 1fr;
  gap: var(--spacing-xs);
}

.tour-past-location {
  text-align: left;
}

.tour-horizontal-progress {
  right: var(--spacing-sm);
}

.tour-card-horizontal-number {
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
}

/* Tablet and up (769px+) */
@media (min-width: 769px) {
  .tour-past-item {
    grid-template-columns: 120px 1fr 150px;
    gap: var(--spacing-md);
  }

  .tour-past-location {
    text-align: right;
  }

  .tour-horizontal-progress {
    right: var(--spacing-lg);
  }

  .tour-card-horizontal-number {
    bottom: var(--spacing-2xl);
    right: var(--spacing-2xl);
  }
}

/* ============================================================
   STORY PAGE — Staggered Timeline
   ============================================================ */

.story-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

/* Vertical center line */
.story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}

.story-node {
  position: relative;
  width: 50%;
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.story-node--left {
  padding-right: var(--spacing-3xl);
  text-align: right;
}

.story-node--right {
  margin-left: 50%;
  padding-left: var(--spacing-3xl);
}

/* Dot on the timeline */
.story-node::before {
  content: '';
  position: absolute;
  top: calc(var(--spacing-2xl) + 0.4em);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  z-index: 1;
}

.story-node--left::before {
  right: -4px;
}

.story-node--right::before {
  left: -4px;
}

.story-node-content h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--spacing-md);
}

.story-node-content p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

/* Closing quote — matches site footer-quote pattern */
.story-closing {
  padding: var(--spacing-5xl) var(--spacing-lg);
  text-align: center;
  border-top: var(--border-width) solid rgba(255,255,255,0.05);
}

.story-closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.story-closing-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  opacity: 0.85;
  margin: 0;
}

.story-closing-quote .gold {
  color: var(--color-accent);
}

/* Mobile: stack vertically, line on left */
@media (max-width: 768px) {
  .story-timeline::before {
    left: var(--spacing-md);
  }

  .story-node,
  .story-node--left,
  .story-node--right {
    width: 100%;
    margin-left: 0;
    padding-left: calc(var(--spacing-md) + var(--spacing-xl));
    padding-right: var(--spacing-md);
    text-align: left;
  }

  .story-node--left::before,
  .story-node--right::before {
    left: calc(var(--spacing-md) - 4px);
    right: auto;
  }
}

/* ============================================================
   EPK PAGE - Split Screen Layout
   ============================================================ */

/* --- Split container (mobile-first: stacked) --- */
.epk-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Left panel: sidebar (mobile: stacked header) --- */
.epk-split-left {
  width: 100%;
  background: var(--color-surface);
  padding: var(--spacing-2xl) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
  border-bottom: var(--border-width) solid var(--color-border);
}

.epk-split-band {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

.epk-split-left .section-number {
  margin-bottom: var(--spacing-xs);
}

.epk-split-location {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
}

.epk-split-book {
  margin-bottom: var(--spacing-xl);
  text-transform: uppercase;
}

/* --- Download links in sidebar --- */
.epk-split-downloads {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.epk-dl-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-slow) ease;
}

.epk-dl-link:hover {
  color: var(--color-accent);
}

.epk-dl-link svg {
  stroke: var(--color-accent);
  flex-shrink: 0;
}

/* --- Right panel: scrollable content --- */
.epk-split-right {
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.epk-split-section {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: var(--border-width) solid var(--color-border);
}

.epk-split-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Section headings match .section-number eyebrow pattern */
.epk-split-heading {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-extreme);
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
}

/* --- Bio --- */
.epk-split-bio-short {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.epk-split-bio-long {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

/* --- Tags --- */
.epk-split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.epk-split-tag {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border: var(--border-width) solid var(--color-border-strong);
  color: var(--color-text-secondary);
}

.epk-split-tag--gold {
  border-color: var(--color-accent-dark);
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
}

/* --- Set lengths list --- */
.epk-split-sets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.epk-split-sets li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: var(--spacing-sm) 0;
  border-bottom: var(--border-width) solid var(--color-border);
}

.epk-split-sets li span:first-child {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.epk-split-sets--featured span:first-child {
  color: var(--color-accent);
}

/* --- Members list --- */
.epk-split-members {
  list-style: none;
  padding: 0;
  margin: 0;
}

.epk-split-members li {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  padding: var(--spacing-sm) 0;
  border-bottom: var(--border-width) solid var(--color-border);
}

.epk-split-members li strong {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}

/* --- Quote block --- */
.epk-split-quote {
  border-left: var(--border-width-heavy) solid var(--color-accent);
  padding: var(--spacing-lg) var(--spacing-xl);
  background: rgba(var(--color-accent-rgb), 0.04);
}

.epk-split-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md);
}

.epk-split-quote cite {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-style: normal;
  letter-spacing: var(--letter-spacing-widest);
}

/* --- CTA actions --- */
.epk-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .epk-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* --- EPK animation initial states --- */
.epk-split-section,
.epk-split-left .epk-split-band,
.epk-split-left .epk-split-book,
.epk-split-left .epk-dl-link {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

/* --- EPK desktop: split layout with sticky sidebar --- */
@media (min-width: 768px) {
  .epk-split {
    flex-direction: row;
  }

  .epk-split-left {
    width: 40%;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--spacing-3xl) var(--spacing-xl);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    border-bottom: none;
    border-right: var(--border-width) solid var(--color-border);
  }

  .epk-split-right {
    width: 60%;
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }

  .epk-split-downloads {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

/* ============================================================
   MERCH PAGE - Product Slides (About Section Pattern)
   ============================================================ */

.section--merch-products {
  position: relative;
  padding: 0;
  background: var(--color-bg);
}

/* Product slides - sticky stacking layout */
.product-slide {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-slide {
    grid-template-columns: 1fr 1fr;
  }
}

/* Z-index stacking - later products on top (sequential for stacking order) */
.product-slide--1 { background: var(--color-bg); z-index: 1; }
.product-slide--2 { background: var(--color-bg-alt); z-index: 2; }
.product-slide--3 { background: var(--color-surface); z-index: 3; }
.product-slide--4 { background: var(--color-surface-raised); z-index: 4; }
.product-slide--5 { background: var(--color-bg); z-index: 5; }
.product-slide--6 { background: var(--color-bg-alt); z-index: 6; }

/* Reverse layout - image first, content second */
@media (min-width: 768px) {
  .product-slide--reverse {
    direction: rtl;
  }

  .product-slide--reverse > * {
    direction: ltr;
  }
}

/* Product image area */
.product-slide-image {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
}

@media (min-width: 768px) {
  .product-slide-image {
    min-height: auto;
  }
}

.product-slide-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  transition: transform 0.6s ease;
}

.product-slide:hover .product-slide-image img {
  transform: scale(1.03) rotate(1deg);
}

/* Product content area */
.product-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  position: relative;
}

@media (min-width: 768px) {
  .product-slide-content {
    padding: 4rem;
  }
}

/* Product category tag */
.product-slide-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-ultra);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-full);
  width: fit-content;
}

/* Product title */
.product-slide-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.1;
}

/* Product price */
.product-slide-price {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
}

/* Product description */
.product-slide-description {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 450px;
}

/* Product actions */
.product-slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-slide-actions .btn {
  padding: var(--spacing-md) var(--spacing-xl);
}

/* Size/variant selector */
.product-slide-variants {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.product-variant-btn {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: transparent;
  border: var(--border-width) solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-variant-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.product-variant-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
}

/* Merch CTA section */
.merch-cta {
  text-align: center;
  padding: var(--spacing-5xl) var(--spacing-xl);
  background: var(--color-bg-alt);
}

.merch-cta-text {
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact page mobile-first */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: single column */
  gap: var(--spacing-xl);
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }
}

.contact-form-wrapper h2 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
}

.form-status {
  padding: var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9rem;
  border-left: 3px solid;
}

.form-status--success {
  border-color: #4caf50;
  color: #4caf50;
}

.form-status--error {
  border-color: #e53935;
  color: #e53935;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--letter-spacing-wider);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--spacing-md);
  background: var(--color-bg-alt);
  border: var(--border-width) solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 16px; /* Prevent iOS auto-zoom on focus (triggers below 16px) */
  border-radius: var(--radius-md);
  transition: border-color var(--duration-slow) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group select {
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info .info-block a {
  color: var(--color-accent);
  transition: opacity 0.3s ease;
}

.contact-info .info-block a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.social-links a {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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