/* ============================================
   THE UNBROKEN CHAIN — Design System
   Grateful Dead & JGB Covers | SF Bay Area
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette — drawn from the Bertha skull logo */
  --midnight: #0a0a1a;
  --deep-purple: #1a0a2e;
  --cosmic-blue: #0d1b3e;
  --rose-crimson: #c4384e;
  --rose-deep: #8b1a2b;
  --amber-gold: #d4a853;
  --amber-warm: #e8c86e;
  --sage-teal: #2a6b5a;

  /* Neutrals */
  --ivory: #f5f0e8;
  --ivory-muted: #ddd5c8;
  --smoke: rgba(255, 255, 255, 0.06);
  --smoke-light: rgba(255, 255, 255, 0.1);
  --smoke-medium: rgba(255, 255, 255, 0.15);

  /* Glass Effects */
  --glass-bg: rgba(15, 10, 30, 0.6);
  --glass-border: rgba(212, 168, 83, 0.15);
  --glass-blur: 20px;

  /* Typography */
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-medium: 0.4s var(--ease-smooth);
  --transition-slow: 0.8s var(--ease-smooth);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--midnight);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Persistent cosmic background gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 10, 46, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(13, 27, 62, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 26, 43, 0.15) 0%, transparent 40%),
    var(--midnight);
  z-index: -2;
  pointer-events: none;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

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

a:hover {
  color: var(--amber-warm);
}

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

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--amber-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 1px 0 var(--glass-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.3));
  transition: filter var(--transition-fast);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(212, 168, 83, 0.5));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--amber-gold), var(--rose-crimson));
  transition: width var(--transition-medium);
}

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

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

.nav-cta {
  font-size: 0.8rem !important;
  padding: 8px 20px !important;
  border: 1px solid var(--amber-gold);
  border-radius: 4px;
  color: var(--amber-gold) !important;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--amber-gold);
  color: var(--midnight) !important;
}

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

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

/* Psychedelic gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 26, 0.3) 0%,
      rgba(26, 10, 46, 0.5) 40%,
      rgba(10, 10, 26, 0.95) 100%
    ),
    radial-gradient(circle at 30% 40%, rgba(196, 56, 78, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}

.hero-logo {
  width: 220px;
  margin: 0 auto var(--space-lg);
  animation: logoFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.3));
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--amber-warm) 50%, var(--ivory) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--ivory-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero-subtitle span {
  color: var(--amber-gold);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-gold), var(--rose-crimson));
  color: var(--ivory);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45);
  color: var(--ivory);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--smoke-medium);
}

.btn-secondary:hover {
  border-color: var(--amber-gold);
  color: var(--amber-gold);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ivory-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--amber-gold), transparent);
  animation: scrollDraw 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes scrollDraw {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating particles in hero */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--amber-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade linear infinite;
}

@keyframes particleFade {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.3); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-3xl) 0;
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-slow);
  cursor: zoom-in;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Decorative frame */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  z-index: 1;
  pointer-events: none;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 26, 0.6));
  z-index: 1;
  pointer-events: none;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--ivory-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  color: var(--amber-gold);
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--smoke-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber-gold);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

/* Read more toggle */
.about-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-smooth);
}

.about-expanded.open {
  max-height: 500px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--amber-gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.read-more-btn:hover {
  color: var(--amber-warm);
  gap: 10px;
}

.read-more-btn .arrow {
  transition: transform var(--transition-fast);
}

.read-more-btn.open .arrow {
  transform: rotate(180deg);
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* Section divider */
.videos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.video-featured {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

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

.video-info {
  padding: var(--space-md) var(--space-md);
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

.video-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.video-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.video-card:hover {
  border-color: var(--amber-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-lg);
  padding: 12px 24px;
  border: 1px solid var(--smoke-medium);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  transition: all var(--transition-fast);
}

.youtube-link:hover {
  border-color: #ff0000;
  color: #ff4444;
}

.youtube-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   SHOWS SECTION
   ============================================ */
.shows {
  padding: var(--space-3xl) 0;
  position: relative;
}

.shows::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.show-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 var(--space-md);
  align-items: start;
  padding: var(--space-md) var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.show-item:hover {
  border-color: var(--amber-gold);
  background: rgba(212, 168, 83, 0.05);
}

/* Force date to always stack vertically */
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: var(--space-sm) 0;
}

.show-date .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-gold);
  display: block;
}

.show-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  line-height: 1;
  display: block;
}

.show-date .year {
  font-size: 0.7rem;
  color: var(--ivory-muted);
  display: block;
}

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

.show-details h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.show-details p {
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

/* Show image */
.show-image {
  margin-top: var(--space-sm);
  border-radius: 8px;
  overflow: hidden;
  max-width: 180px; /* Small thumbnail preview by default */
  cursor: pointer;
  position: relative;
  transition: max-width 0.4s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.show-image:hover {
  transform: translateY(-2px);
}

.show-image img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  transition: max-height 0.4s var(--ease-smooth), border-color var(--transition-fast);
  display: block;
}

.show-image:hover img {
  border-color: var(--amber-gold);
}

/* Glassmorphic hover overlay helper */
.show-image::after {
  content: '🔍 Expand';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--amber-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.show-image:hover::after {
  opacity: 1;
}

/* Expanded State */
.show-image.expanded {
  max-width: 500px; /* Expand to show poster details clearly */
}

.show-image.expanded img {
  max-height: 700px;
  object-fit: contain; /* Full poster visible without cropping */
}

.show-image.expanded::after {
  content: '🔍 Close';
}

.show-action {
  margin-top: var(--space-xs);
}

.show-action .btn {
  padding: 8px 20px;
  font-size: 0.75rem;
}

/* Empty state */
.shows-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 8px;
}

.shows-empty p {
  color: var(--ivory-muted);
  margin-bottom: var(--space-md);
}

.shows-empty .emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */
.contact {
  padding: var(--space-3xl) 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Accent glow */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-gold), var(--rose-crimson), var(--amber-gold));
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--smoke);
}

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

.contact-method .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--smoke-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method .icon svg {
  width: 18px;
  height: 18px;
  fill: var(--amber-gold);
}

.contact-method .details {
  flex: 1;
}

.contact-method .details .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.contact-method .details a,
.contact-method .details span {
  font-size: 0.95rem;
  display: block;
}

.contact-info p {
  color: var(--ivory-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--smoke-light);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--amber-gold);
  border-color: var(--amber-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

.social-link:hover svg {
  fill: var(--midnight);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--ivory-muted);
  transition: fill var(--transition-fast);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--smoke);
  text-align: center;
}

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

.footer-logo img {
  height: 50px;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover img {
  opacity: 0.8;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.footer-text span {
  color: var(--amber-gold);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--amber-gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   LOADING STATE
   ============================================ */
.videos-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  gap: var(--space-md);
  color: var(--ivory-muted);
  font-size: 0.9rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--smoke-light);
  border-top-color: var(--amber-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image-wrapper {
    max-height: 400px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    transition: right var(--transition-medium);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-text {
    display: block;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .video-secondary-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .show-item {
    grid-template-columns: 80px 1fr;
    gap: 0 var(--space-sm);
  }

  .show-image {
    grid-column: 1 / -1;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-logo {
    width: 130px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-align: left;
  }
}

/* ============================================
   LIGHTBOX OVERLAY (CLICK-TO-EXPAND)
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--amber-gold);
}
