/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-800: #222222;
  --gray-700: #333333;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --white: #f0ece4;
  --red: #c9302c;
  --red-bright: #e63946;
  --gold: #c9a84c;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: clip;
  line-height: 1.6;
  width: 100%;
}

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

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

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ===== PARALLAX ORBS ===== */
.parallax-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  filter: blur(80px);
  max-width: 100vw;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 48, 44, 0.12) 0%, transparent 70%);
  top: -10%; left: -10%;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 30%; right: -15%;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201, 48, 44, 0.06) 0%, transparent 70%);
  bottom: 20%; left: 10%;
}

.orb-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(240, 236, 228, 0.04) 0%, transparent 70%);
  top: 60%; right: 20%;
}

.orb-5 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  bottom: -5%; right: -5%;
}

/* ===== STAR FIELD ===== */
.star-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(240, 236, 228, 0.4);
  border-radius: 50%;
  animation: starTwinkle 4s ease-in-out infinite;
}

.star.sm {
  width: 2px;
  height: 2px;
  background: rgba(240, 236, 228, 0.2);
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--red);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s !important;
}

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

.nav-cta:hover {
  background: var(--red-bright) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

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

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 48, 44, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 10, 10, 1) 0%, transparent 50%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -55%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  z-index: 0;
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -55%) scale(1.15); opacity: 0.6; }
}

/* Hero Moon */
.hero-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -58%);
  z-index: 0;
  opacity: 0;
  animation: fadeUp 2s var(--ease-out) 0.2s forwards;
  pointer-events: none;
}

.hero-moon svg {
  width: 100%;
  height: 100%;
}

/* Hero Starbursts */
.hero-starburst {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1.5s var(--ease-out) 1s forwards;
}

.starburst-tl {
  top: 8%;
  left: 5%;
  width: 120px;
  height: 120px;
}

.starburst-tr {
  top: 12%;
  right: 8%;
  width: 80px;
  height: 80px;
}

.hero-starburst svg {
  width: 100%;
  height: 100%;
}

/* Hero Orbital Rings */
.hero-orbit {
  position: absolute;
  top: 50%;
  right: -5%;
  width: 300px;
  height: 300px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: fadeUp 2s var(--ease-out) 0.5s forwards;
}

.orbit-svg {
  width: 100%;
  height: 100%;
  animation: orbitSpin 40s linear infinite;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero Photos */
.hero-photo {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 1.5s var(--ease-out) 0.8s forwards;
}

.hero-photo-left {
  left: 3%;
  bottom: 5%;
}

.hero-photo-left img {
  width: 300px;
  height: auto;
  filter: brightness(0.75) contrast(1.05) saturate(0.9);
  mask-image: linear-gradient(to top, transparent 0%, black 15%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 90%, transparent 100%);
}

.hero-photo-right {
  right: 5%;
  bottom: 0;
  animation-delay: 1s;
}

.hero-photo-right img {
  width: 240px;
  height: auto;
  filter: brightness(0.65) contrast(1.08) saturate(0.8);
  mask-image: linear-gradient(to top, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 18%, black 82%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-line.accent {
  color: var(--red);
  animation-delay: 0.7s;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}

/* Only show scroll indicator when hero is tall enough */
@media (min-height: 700px) and (min-width: 769px) {
  .hero-scroll-indicator {
    display: flex;
  }
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 48, 44, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.2);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(240, 236, 228, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 500px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-grid.reverse > *:first-child {
  order: 2;
}

.section-grid.reverse > *:last-child {
  order: 1;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
  overflow: hidden;
}

/* About Skull Watermark */
.about-skull {
  position: absolute;
  right: -2%;
  top: 10%;
  width: 300px;
  height: 360px;
  pointer-events: none;
  opacity: 0.6;
}

.about-skull svg {
  width: 100%;
  height: 100%;
}

/* Card Skull Accent */
.card-skull-accent {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 42px;
  opacity: 0.5;
}

.card-skull-accent svg {
  width: 100%;
  height: 100%;
}

.about-text p {
  color: var(--gray-300);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-text strong {
  color: var(--white);
  font-weight: 600;
}

.about-card {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.about-stat {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: center;
}

.about-stat:last-child {
  border-bottom: none;
}

.stat-icon {
  font-size: 1.5rem;
  grid-row: span 2;
  opacity: 0.6;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stat-detail {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(240, 236, 228, 0.06);
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
  background: var(--darker);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.marquee-track span {
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SHOWS ===== */
.shows {
  background: var(--black);
  overflow: hidden;
}

/* Shows Spiral */
.shows-spiral {
  position: absolute;
  left: -5%;
  top: 15%;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.spiral-svg {
  width: 100%;
  height: 100%;
  animation: orbitSpin 60s linear infinite reverse;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.show-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--gray-900);
  border: 1px solid rgba(240, 236, 228, 0.04);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.show-card:hover {
  background: var(--gray-800);
  border-color: rgba(201, 48, 44, 0.3);
  transform: translateX(8px);
}

.show-card:hover .btn-sm {
  background: var(--red-bright);
  transform: translateX(4px);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.show-month {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}

.show-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.show-venue {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.show-location {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.show-detail {
  font-size: 0.75rem;
  color: var(--gray-700);
}

.show-cta .btn-sm {
  transition: all 0.3s var(--ease-out);
}

.shows-more {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ===== PODCAST ===== */
.podcast {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.podcast-card {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transition: opacity 0.4s;
}

.podcast-card:hover {
  border-color: rgba(201, 48, 44, 0.2);
  transform: translateY(-4px);
}

/* Camp Gagnon gold accent */
.podcast-card:nth-child(2)::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.podcast-card-graphic {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.podcast-rings {
  position: absolute;
  inset: 0;
}

.podcast-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 48, 44, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.podcast-rings .ring-1 {
  width: 100%; height: 100%;
  animation: ringPulse 4s ease-in-out infinite;
}

.podcast-rings .ring-2 {
  width: 70%; height: 70%;
  animation: ringPulse 4s ease-in-out 0.5s infinite;
  border-color: rgba(201, 168, 76, 0.1);
}

.podcast-rings .ring-3 {
  width: 40%; height: 40%;
  animation: ringPulse 4s ease-in-out 1s infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.4; }
}

.camp-rings .ring-1 {
  border-color: rgba(201, 168, 76, 0.15);
}

.camp-rings .ring-2 {
  border-color: rgba(201, 168, 76, 0.1);
}

.camp-rings .ring-3 {
  border-color: rgba(201, 168, 76, 0.12);
}

.podcast-card-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-card-content {
  text-align: center;
}

.podcast-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.podcast-card-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.podcast-card:nth-child(2) .podcast-card-role {
  color: var(--gold);
}

.podcast-card-desc {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.podcast-card-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.podcast-card-actions .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--black);
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
}

.newsletter-inner .section-label {
  padding-left: 0;
}

.newsletter-inner .section-label::before {
  display: none;
}

.newsletter-inner p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(240, 236, 228, 0.05);
  border: 1px solid rgba(240, 236, 228, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--gray-400);
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.contact-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-inner p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.contact-inner .section-label {
  padding-left: 0;
}

.contact-inner .section-label::before {
  display: none;
}

.contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 3.5rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card .btn {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(240, 236, 228, 0.06);
  background: var(--darker);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240, 236, 228, 0.1);
  color: var(--gray-400);
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(201, 48, 44, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 236, 228, 0.04);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-700);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid rgba(240, 236, 228, 0.06);
  }

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

  .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);
  }

  .section {
    padding: 5rem 0;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-grid.reverse > *:first-child,
  .section-grid.reverse > *:last-child {
    order: unset;
  }

  .show-card {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }

  .show-cta {
    grid-column: 1 / -1;
    text-align: right;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav, .footer-social {
    justify-content: center;
  }

  .newsletter-inner {
    padding: 2.5rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .podcast-card {
    padding: 2rem 1.5rem;
  }

  .hero-moon {
    width: 300px;
    height: 300px;
  }

  .hero-starburst {
    display: none;
  }

  .hero-orbit {
    width: 200px;
    height: 200px;
    right: -15%;
  }

  .about-skull {
    display: none;
  }

  .shows-spiral {
    display: none;
  }

  .hero-photo-left img {
    width: 180px;
  }

  .hero-photo-left {
    left: 0;
  }

  .hero-photo-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-line {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-card {
    padding: 1.5rem;
  }
}

/* ===== CUSTOM SELECTION ===== */
::selection {
  background: rgba(201, 48, 44, 0.4);
  color: var(--white);
}

/* ===== SMOOTH SCROLL BAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
