/* ============================================================
   BLAQBOOK SHARED STYLES
   Updated: April 10, 2026
   Font: Orbitron (all weights)
   Palette: Warm darks, ember/amber/warm-purple accents
   Artwork: Shuggie (used with permission)
   ============================================================ */

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

:root {
  --void: #0a0806;
  --deep: #0e0c09;
  --surface: #131110;
  --surface-2: #1a1714;
  --surface-3: #211e1a;
  --ember: #c4453a;
  --rust: #a83828;
  --wine: #8a2040;
  --blood: #6b1a30;
  --warm-purple: #7a3a8a;
  --deep-violet: #5a2868;
  --cream: #e8dcc8;
  --parchment: #d4c8b0;
  --sand: #b8a88e;
  --ash: #8a7e6e;
  --muted: #5a5248;
  --line: #2a2520;
  --amber: #d4943a;
  --warm-white: #f0e6d6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--cream);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  cursor: crosshair;
}

a, button, input[type="submit"] { cursor: pointer; }
a { text-decoration: none; }

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

/* SCANLINES */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 3px);
  animation: scanFlicker 0.3s steps(4) infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes scanFlicker {
  0% { opacity: 0.04; } 5% { opacity: 0.08; } 10% { opacity: 0.03; }
  15% { opacity: 0.06; } 20% { opacity: 0.04; } 100% { opacity: 0.04; }
}

@keyframes neonFlicker {
  0% { opacity: 1; } 3% { opacity: 0.6; } 6% { opacity: 1; }
  7% { opacity: 0.6; } 8% { opacity: 1; } 25% { opacity: 1; }
  30% { opacity: 0.75; } 31% { opacity: 1; } 100% { opacity: 1; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientScroll {
  0% { background-position: 0% 50%; } 100% { background-position: 400% 50%; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(196,69,58,0.3), 0 0 10px rgba(196,69,58,0.1); }
  50% { box-shadow: 0 0 20px rgba(196,69,58,0.5), 0 0 40px rgba(196,69,58,0.2), 0 0 60px rgba(196,69,58,0.1); }
  100% { box-shadow: 0 0 5px rgba(196,69,58,0.3), 0 0 10px rgba(196,69,58,0.1); }
}

@keyframes pulseGlowAmber {
  0% { box-shadow: 0 0 5px rgba(212,148,58,0.3), 0 0 10px rgba(212,148,58,0.1); }
  50% { box-shadow: 0 0 20px rgba(212,148,58,0.5), 0 0 40px rgba(212,148,58,0.2), 0 0 60px rgba(212,148,58,0.1); }
  100% { box-shadow: 0 0 5px rgba(212,148,58,0.3), 0 0 10px rgba(212,148,58,0.1); }
}

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

@keyframes float {
  0% { transform: translateY(0); } 50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes glitchShift {
  0% { transform: translate(0,0); } 20% { transform: translate(-2px,1px); }
  40% { transform: translate(1px,-1px); } 60% { transform: translate(-1px,2px); }
  80% { transform: translate(2px,-1px); } 100% { transform: translate(0,0); }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10,8,6,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,69,58,0.15);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--ember), var(--warm-purple), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%; animation: gradientShift 4s ease infinite; letter-spacing: 0.2em;
}

.nav-logo a {
  background: linear-gradient(135deg, var(--ember), var(--warm-purple), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%; animation: gradientShift 4s ease infinite;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-family: 'Orbitron', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--parchment);
  transition: color 0.3s ease, filter 0.3s ease;
}

.nav-links a:hover { color: var(--ember); filter: drop-shadow(0 0 8px rgba(196,69,58,0.5)); }

.nav-links a.active { color: var(--ember); }

.nav-cta {
  font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 8px 24px; background: transparent;
  border: 2px solid var(--ember); color: var(--ember); text-transform: uppercase;
  animation: pulseGlow 3s ease-in-out infinite; transition: all 0.3s ease;
}

.nav-cta:hover { background: var(--ember); color: var(--void); box-shadow: 0 0 30px rgba(196,69,58,0.4); }

/* ===== PAGE HERO (shared across subpages) ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}

.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.45) 30%,
    rgba(10,8,6,0.5) 60%, rgba(10,8,6,0.92) 100%);
}

.page-hero-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem); line-height: 0.95;
  background: linear-gradient(90deg, var(--ember), var(--warm-purple), var(--amber), var(--ember));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 400% 100%;
  animation: neonFlicker 5s ease-in-out infinite, gradientScroll 6s linear infinite, fadeInUp 1s ease 0.3s forwards;
  text-shadow: 0 0 10px rgba(196,69,58,0.4), 0 0 30px rgba(122,58,138,0.3);
  margin-bottom: 1.5rem; opacity: 0;
}

.page-hero-sub {
  font-family: 'Orbitron', sans-serif; font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  font-weight: 500; max-width: 600px; line-height: 2; color: var(--cream);
  opacity: 0; animation: fadeInUp 1s ease 0.6s forwards;
}

/* ===== FULL HERO (homepage only) ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 8rem 2rem 4rem; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.45) 30%,
    rgba(10,8,6,0.5) 60%, rgba(10,8,6,0.9) 100%);
}

.hero-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 6vw, 8rem); line-height: 0.95;
  background: linear-gradient(90deg, var(--ember), var(--warm-purple), var(--amber), var(--ember));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 400% 100%;
  animation: neonFlicker 5s ease-in-out infinite, gradientScroll 6s linear infinite, fadeInUp 1s ease 0.3s forwards;
  text-shadow: 0 0 10px rgba(196,69,58,0.4), 0 0 30px rgba(122,58,138,0.3), 0 0 60px rgba(196,69,58,0.15);
  margin-bottom: 2rem; opacity: 0;
}

.hero-sub {
  font-family: 'Orbitron', sans-serif; font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 500; max-width: 700px; line-height: 2; color: var(--cream);
  margin-bottom: 3rem; opacity: 0; animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem; font-weight: 500;
  color: var(--ash); letter-spacing: 0.3em; text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ash), transparent); margin: 0.5rem auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; padding: 14px 40px; border: 2px solid;
  background: transparent; text-transform: uppercase; transition: all 0.3s ease;
  position: relative; display: inline-block;
}

.btn-primary { border-color: var(--ember); color: var(--ember); animation: pulseGlow 3s ease-in-out infinite; }
.btn-primary:hover { background: var(--ember); color: var(--void); box-shadow: 0 0 40px rgba(196,69,58,0.4); }
.btn-secondary { border-color: var(--amber); color: var(--amber); animation: pulseGlowAmber 3s ease-in-out infinite; }
.btn-secondary:hover { background: var(--amber); color: var(--void); box-shadow: 0 0 40px rgba(212,148,58,0.4); }

.btn-small {
  font-size: 0.55rem; padding: 10px 24px;
}

/* ===== ART STRIP ===== */
.art-strip {
  width: 100%; height: 200px; background-size: cover; background-position: center;
  position: relative;
}

.art-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--void) 0%, rgba(10,8,6,0.15) 20%, rgba(10,8,6,0.15) 80%, var(--void) 100%);
}

/* ===== SECTION SHARED ===== */
.section { padding: 6rem 3rem; position: relative; }

.section-label {
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--ash); margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--ember), var(--warm-purple), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: neonFlicker 6s ease-in-out infinite, gradientShift 5s ease infinite;
  text-shadow: 0 0 8px rgba(196,69,58,0.4), 0 0 25px rgba(122,58,138,0.2);
  margin-bottom: 1rem;
}

.section-desc {
  font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 500;
  line-height: 2; max-width: 600px; color: var(--parchment);
}

.section-divider {
  width: 100%; height: 2px; border: none; opacity: 0.4;
  background: linear-gradient(90deg, transparent, var(--ember), var(--warm-purple), var(--amber), transparent);
}

/* Section with art background */
.section-art {
  background-size: cover; background-position: center;
}

.section-art::before {
  content: ''; position: absolute; inset: 0; background: rgba(14,12,9,0.88);
}

.section-art > * { position: relative; z-index: 1; }

/* ===== PRODUCT / MERCH GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem; max-width: 1200px;
  margin-left: auto; margin-right: auto;
}

.product-card {
  background: rgba(19,17,16,0.85);
  border: 1px solid rgba(196,69,58,0.08);
  border-radius: 4px; overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,69,58,0.2);
  box-shadow: 0 10px 40px rgba(196,69,58,0.1);
}

.product-img {
  width: 100%; height: 280px;
  background: var(--surface-2);
  background-size: cover; background-position: center;
  position: relative;
}

.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(19,17,16,0.9) 100%);
}

.product-badge {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  font-family: 'Orbitron', sans-serif; font-size: 0.45rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 4px 10px;
  background: var(--ember); color: var(--void); text-transform: uppercase;
}

.product-info { padding: 1.5rem; }

.product-name {
  font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem; letter-spacing: 0.1em;
}

.product-desc {
  font-family: 'Orbitron', sans-serif; font-size: 0.55rem; font-weight: 500;
  line-height: 1.8; color: var(--sand); margin-bottom: 1rem;
}

.product-price {
  font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 900;
  color: var(--amber); margin-bottom: 1rem;
}

/* ===== EVENT CARDS ===== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 3rem; max-width: 1200px;
  margin-left: auto; margin-right: auto;
}

.event-card {
  background: rgba(19,17,16,0.85);
  border: 1px solid rgba(196,69,58,0.08);
  border-radius: 4px; overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,69,58,0.2);
  box-shadow: 0 10px 40px rgba(196,69,58,0.1);
}

.event-img {
  width: 100%; height: 220px;
  background: var(--surface-2);
  background-size: cover; background-position: center;
  position: relative;
}

.event-date-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-family: 'Orbitron', sans-serif; text-align: center;
  background: rgba(10,8,6,0.85); border: 1px solid rgba(196,69,58,0.3);
  padding: 8px 12px;
}

.event-date-badge .month {
  font-size: 0.45rem; font-weight: 700; color: var(--ember);
  letter-spacing: 0.2em; display: block;
}

.event-date-badge .day {
  font-size: 1.4rem; font-weight: 900; color: var(--cream);
  line-height: 1; display: block;
}

.event-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }

.event-name {
  font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem; letter-spacing: 0.1em;
}

.event-meta {
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem; font-weight: 500;
  color: var(--ash); margin-bottom: 1rem; letter-spacing: 0.1em;
}

.event-meta span { margin-right: 1.5rem; }

.event-desc {
  font-family: 'Orbitron', sans-serif; font-size: 0.55rem; font-weight: 500;
  line-height: 1.8; color: var(--sand); margin-bottom: 1.5rem; flex-grow: 1;
}

.event-footer {
  display: flex; justify-content: space-between; align-items: center;
}

.event-price {
  font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 900;
  color: var(--amber);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px; margin: 3rem auto 0;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--sand); display: block;
  margin-bottom: 0.5rem; text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: 12px 16px;
  background: rgba(19,17,16,0.85);
  border: 1px solid rgba(196,69,58,0.15);
  border-radius: 2px;
  font-family: 'Orbitron', sans-serif; font-size: 0.65rem; font-weight: 500;
  color: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 15px rgba(196,69,58,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted); font-weight: 400;
}

.form-textarea { min-height: 150px; resize: vertical; }

.form-select option {
  background: var(--surface); color: var(--cream);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* ===== FEATURES GRID (homepage) ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem; max-width: 1200px;
  margin-left: auto; margin-right: auto;
}

.feature-card {
  background: rgba(19,17,16,0.85); border: 1px solid rgba(196,69,58,0.08);
  border-radius: 4px; padding: 2rem; transition: all 0.4s ease;
  position: relative; overflow: hidden; backdrop-filter: blur(10px);
}

.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--warm-purple));
  opacity: 0; transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px); border-color: rgba(196,69,58,0.2);
  box-shadow: 0 10px 40px rgba(196,69,58,0.1);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px; margin-bottom: 1rem; display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.feature-icon svg {
  width: 48px; height: 48px; filter: drop-shadow(0 0 4px rgba(196,69,58,0.3));
}

.feature-card:hover .feature-icon svg {
  animation: glitchShift 0.3s ease infinite;
  filter: drop-shadow(0 0 8px rgba(196,69,58,0.6));
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

.feature-title {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--amber), var(--ember));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 500;
  line-height: 2; color: var(--parchment);
}

/* ===== STATS ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem; max-width: 900px; margin: 3rem auto 0;
}

.stat-item { padding: 2rem; }

.stat-number {
  font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--ember), var(--warm-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%; animation: gradientShift 4s ease infinite; margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--sand);
}

/* ===== STEPS (how it works) ===== */
.steps { max-width: 800px; margin: 3rem auto 0; position: relative; }

.steps::before {
  content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--ember), var(--warm-purple), var(--amber), var(--muted));
}

.step { display: flex; gap: 2rem; padding: 2rem 0; position: relative; }

.step-num {
  flex-shrink: 0; width: 60px; height: 60px; border: 2px solid var(--ember);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 900;
  color: var(--ember); background: var(--deep); z-index: 1; transition: all 0.3s ease;
}

.step:hover .step-num {
  background: var(--ember); color: var(--void);
  box-shadow: 0 0 25px rgba(196,69,58,0.4);
}

.step-content h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--amber), var(--ember), var(--warm-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 500;
  line-height: 2; color: var(--parchment);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 8rem 3rem; position: relative;
  background-size: cover; background-position: center;
}

.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,8,6,0.82); }
.cta-section > * { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--ember), var(--warm-purple), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: neonFlicker 5s ease-in-out infinite, gradientShift 6s ease infinite;
  text-shadow: 0 0 10px rgba(196,69,58,0.4), 0 0 30px rgba(122,58,138,0.3);
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 500;
  max-width: 500px; margin: 0 auto 2.5rem; line-height: 2; color: var(--cream);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface); border-top: 1px solid rgba(196,69,58,0.15);
  padding: 3rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}

.footer-brand {
  font-family: 'Orbitron', sans-serif; font-size: 0.9rem; letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--ember), var(--warm-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem; font-weight: 700;
  color: var(--sand); transition: color 0.3s ease, filter 0.3s ease; position: relative;
}

.footer-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  transition: width 0.4s ease;
}

.footer-links a:hover::after { width: 100%; }
.footer-links a:hover { color: var(--ember); filter: drop-shadow(0 0 6px rgba(196,69,58,0.4)); }

.footer-copy {
  font-family: 'Orbitron', sans-serif; font-size: 0.45rem; font-weight: 500;
  color: var(--muted); width: 100%; text-align: center; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--line);
}

.artist-credit {
  font-family: 'Orbitron', sans-serif; font-size: 0.45rem; font-weight: 500;
  color: var(--ash); text-align: center; width: 100%; letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 6rem 1.5rem 3rem; min-height: 100vh; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub { font-size: 0.65rem; line-height: 1.8; max-width: 90%; }
  .hero-logo img { height: 100px; }
  .hero-scroll { font-size: 0.45rem; }
  .page-hero { padding: 6rem 1.5rem 3rem; min-height: 40vh; }
  .page-hero-title { font-size: clamp(1.6rem, 7vw, 3rem); }
  .page-hero-sub { font-size: 0.6rem; line-height: 1.8; }
  .page-hero-logo img { height: 80px; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2.5rem); }
  .section-desc { font-size: 0.6rem; line-height: 1.8; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; text-align: center; font-size: 0.6rem; padding: 12px 30px; }
  .steps::before { left: 20px; }
  .step-num { width: 40px; height: 40px; font-size: 0.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-title { font-size: 0.7rem; }
  .feature-desc { font-size: 0.55rem; line-height: 1.7; }
  .footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .art-strip { height: 120px; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ember); transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

.nav-logo img { height: 50px; }

@media (max-width: 768px) {
  .nav-logo img { height: 36px; }
}
.hero-logo { margin-bottom: 1rem; opacity: 0; animation: fadeInUp 1s ease 0.1s forwards; }
.hero-logo img { height: 160px; }
.page-hero-logo { margin-bottom: 1rem; opacity: 0; animation: fadeInUp 1s ease 0.1s forwards; }
.page-hero-logo img { height: 120px; }
