/* ============================================================
   Charles Ex Savior — Premium Dark Luxury Theme
   ============================================================
   Dark cinematic aesthetic with gold accents,
   vinyl textures, and smooth animations.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --bg-black:       #050505;
  --bg-dark:        #0a0a0a;
  --bg-panel:       #0f0f0f;
  --bg-card:        #141414;
  --bg-card-hover:  #1a1a1a;
  --bg-input:       #111;
  --border:         #1e1e1e;
  --border-light:   #2a2a2a;
  --text-primary:   #f0ece4;
  --text-secondary: #a09882;
  --text-muted:     #5a5548;
  --gold:           #d4a853;
  --gold-light:     #e8c777;
  --gold-dark:      #8b6914;
  --gold-glow:      rgba(212, 168, 83, 0.25);
  --gold-glow-soft: rgba(212, 168, 83, 0.08);
  --white:          #f0ece4;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.5);
  --shadow-md:      0 4px 20px rgba(0,0,0,.6);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.7);
  --shadow-gold:    0 0 30px var(--gold-glow);
  --font-display:   'Bebas Neue', 'Impact', sans-serif;
  --font-main:      'Inter', 'Segoe UI', -apple-system, sans-serif;
  --font-heading:   'Space Grotesk', 'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', 'Consolas', monospace;
  --transition:     0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg-black); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Cursor Glow ---------- */
#cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}
body:hover #cursor-glow { opacity: 1; }

/* ---------- Particle Canvas ---------- */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 168, 83, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding var(--transition);
}
#navbar.scrolled .nav-inner { padding: 14px 0; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.nav-logo:hover .logo-mark {
  background: var(--gold);
  color: var(--bg-black);
  box-shadow: var(--shadow-gold);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; }
.nav-link {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.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); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-noise {
  position: absolute;
  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='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)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 168, 83, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-black) 0%, #080808 50%, var(--bg-black) 100%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 100px,
    rgba(212, 168, 83, 0.015) 100px,
    rgba(212, 168, 83, 0.015) 101px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  padding: 120px 24px 80px;
}

/* Vinyl */
.hero-vinyl-container {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 380px;
}
.vinyl-record {
  width: 100%;
  height: 100%;
  animation: vinylSpin 8s linear infinite;
  filter: drop-shadow(0 0 40px rgba(212, 168, 83, 0.1));
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tonearm {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 160px;
  height: 240px;
  transform-origin: 85% 10%;
  transform: rotate(-15deg);
  animation: tonearmDrop 2s ease-out 0.5s forwards;
  opacity: 0;
}
@keyframes tonearmDrop {
  0% { transform: rotate(-30deg); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: rotate(-8deg); opacity: 1; }
}

/* Hero Text */
.hero-text { flex: 1; }

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.tag-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.tag-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 24px;
}
.title-line {
  display: block;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 4px;
  color: var(--text-primary);
}
.title-line.accent {
  color: var(--gold);
  text-shadow: 0 0 60px var(--gold-glow);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--gold);
  color: var(--bg-black);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-black);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-soft);
  transform: translateY(-2px);
}

.btn-icon { font-size: 12px; }

.btn-full { width: 100%; justify-content: center; }

/* Hero Waveform */
.hero-waveform {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}
.scroll-text {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.accent { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.section-header.center { text-align: center; margin-bottom: 60px; }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- ABOUT ---------- */
.section-about {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-black) 100%);
}

.about-image-frame {
  position: relative;
  padding: 20px;
}
.frame-corner {
  position: absolute;
  width: 30px; height: 30px;
  border-color: var(--gold);
  border-style: solid;
}
.frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.about-image-placeholder {
  background: var(--bg-panel);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Profile Image */
.about-image-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.profile-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--gold) 0%,
    var(--gold-dark) 25%,
    var(--gold) 50%,
    var(--gold-dark) 75%,
    var(--gold) 100%
  );
  animation: glowSpin 6s linear infinite;
  z-index: 0;
}
@keyframes glowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.profile-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-black);
  transition: transform 0.5s ease;
  filter: contrast(1.05) brightness(1.05);
}
.about-image-frame:hover .profile-img {
  transform: scale(1.05);
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 2;
}

.profile-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  text-align: center;
}
.caption-name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.caption-divider {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.caption-location {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .about-image-wrap {
    width: 240px;
    height: 240px;
  }
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.about-text strong { color: var(--gold); font-weight: 600; }
.about-text em { color: var(--text-primary); font-style: italic; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- THE CRAFT ---------- */
.section-craft {
  background: var(--bg-black);
}

.craft-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.craft-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  opacity: 0.3;
}

.craft-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.step-icon {
  width: 64px; height: 64px;
  margin: 24px auto 20px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- BEATS ---------- */
.section-beats {
  background: linear-gradient(180deg, var(--bg-black) 0%, #080806 50%, var(--bg-black) 100%);
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.beat-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow-soft);
}

.beat-artwork {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #0c0c0c 0%, #161616 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.beat-vinyl-mini {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 70%);
  border: 1px solid #222;
  position: relative;
  transition: transform 0.5s ease;
}
.beat-vinyl-mini::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
}
.beat-vinyl-mini::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bg-black);
}
.beat-card:hover .beat-vinyl-mini {
  transform: rotate(90deg);
}

.beat-play {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--gold-glow);
  z-index: 2;
}
.beat-card:hover .beat-play {
  opacity: 1;
  transform: scale(1);
}
.beat-play:hover { transform: scale(1.1) !important; }

.beat-info { padding: 16px 20px 8px; }
.beat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.beat-meta {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.beat-waveform {
  padding: 0 20px 16px;
  height: 40px;
}
.mini-wave {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- GEAR ---------- */
.section-gear {
  background: var(--bg-black);
}

.gear-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gear-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.gear-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gear-item:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gear-item:hover::before { opacity: 1; }

.gear-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
}
.gear-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.gear-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- QUOTE ---------- */
.section-quote {
  background: var(--bg-dark);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.big-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 16px;
}
.big-quote p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}
.big-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
}

/* ---------- CONTACT ---------- */
.section-contact {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.contact-icon {
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow-soft);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a853' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-form select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand .logo-mark {
  width: 32px; height: 32px;
  font-size: 14px;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.footer-bottom {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 40px; text-align: center; padding-top: 140px; }
  .hero-vinyl-container { width: 280px; height: 280px; }
  .hero-tag { justify-content: center; }
  .hero-cta { justify-content: center; }
  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .craft-timeline { grid-template-columns: repeat(2, 1fr); }
  .beats-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-showcase { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-vinyl-container { width: 220px; height: 220px; }
  .craft-timeline { grid-template-columns: 1fr; }
  .craft-timeline::before { display: none; }
  .beats-grid { grid-template-columns: 1fr; }
  .gear-showcase { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
  .section { padding: 80px 0; }
  .hero-subtitle { font-size: 13px; letter-spacing: 2px; }
}

/* ---------- Loading shimmer for cards ---------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- HERO SOCIALS ---------- */
.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow-soft);
  transform: translateY(-2px);
}

/* ---------- NAV BANDCAMP ---------- */
.nav-link-bandcamp {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ---------- BANDCAMP EMBED ---------- */
.bandcamp-embed {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.bandcamp-embed iframe {
  display: block;
}
.bandcamp-card {
  max-width: 700px;
  margin: 0 auto;
}
.bandcamp-card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.bandcamp-card-inner:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px var(--gold-glow-soft);
}
.bandcamp-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 83, 0.15);
}
.bandcamp-card-text {
  flex: 1;
}
.bandcamp-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.bandcamp-card-sub {
  font-size: 14px;
  color: var(--text-secondary);
}
@media (max-width: 640px) {
  .bandcamp-card-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}
.bandcamp-cta {
  text-align: center;
  margin-top: 32px;
}

/* ---------- CONTACT SOCIALS ---------- */
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.social-link-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.social-link-lg:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.04);
  transform: translateX(4px);
}

/* ---------- FOOTER SOCIALS ---------- */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow-soft);
}
