/* =========================================================
   Blue Moon Souls — Stylesheet
   Dark gothic metal aesthetic · Electric blue palette
   ========================================================= */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #04080f;
  --bg-alt:      #070c16;
  --bg-card:     #0b1220;
  --blue-moon:   #4fc8ff;
  --blue-bright: #7ddcff;
  --blue-dim:    #1a6fa8;
  --blue-deep:   #0d3356;
  --white:       #e8f0ff;
  --grey:        #7a8ba0;
  --purple:      #7b2fa0;
  --glow-sm:     0 0 12px rgba(79, 200, 255, 0.4);
  --glow-md:     0 0 30px rgba(79, 200, 255, 0.35);
  --glow-lg:     0 0 60px rgba(79, 200, 255, 0.25);
  --transition:  0.3s ease;
  --radius:      8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blue-moon);
  text-shadow: var(--glow-sm);
}

h3 { font-size: clamp(1rem, 2vw, 1.3rem); }

p { color: rgba(232, 240, 255, 0.82); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

.section {
  padding: 100px 0;
}

.section--dark { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--grey);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--blue-moon);
  color: #030810;
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-moon);
  border: 1px solid var(--blue-moon);
}

.btn-ghost:hover {
  background: rgba(79, 200, 255, 0.1);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── All sections sit above the stars canvas ─────────────── */
.hero, .section, .footer { position: relative; z-index: 2; }

/* ── Navbar ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(79, 200, 255, 0.15);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  transition: opacity var(--transition);
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 240, 255, 0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-moon);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--blue-moon); }
.nav-links a:hover::after { width: 100%; }

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 8, 15, 0.25) 0%,
    rgba(4, 8, 15, 0.15) 35%,
    rgba(4, 8, 15, 0.6) 70%,
    rgba(4, 8, 15, 1) 100%
  );
}

#starsCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 120px;
  max-width: 900px;
}

.hero-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: var(--white);
  text-shadow: 0 0 20px rgba(79, 200, 255, 0.5);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--blue-moon);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1.5s ease 1s both;
}

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

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

.hero-scroll-hint span {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--blue-moon);
  text-transform: uppercase;
  opacity: 0.7;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ── Track Cards ─────────────────────────────────────────── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid rgba(79, 200, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.track-card:hover {
  border-color: rgba(79, 200, 255, 0.45);
  transform: translateY(-6px);
  box-shadow: var(--glow-md);
}

.track-cover {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.track-card:hover .track-cover img { transform: scale(1.06); }

.track-cover--placeholder {
  background: linear-gradient(135deg, #070c16 0%, #0d2540 50%, #070c16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.moon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.moon-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #b0e8ff, #4fc8ff 40%, #1a6fa8 70%, #0d3356 100%);
  box-shadow:
    0 0 30px rgba(79, 200, 255, 0.6),
    0 0 80px rgba(79, 200, 255, 0.3),
    inset 0 0 30px rgba(0, 60, 120, 0.4);
  animation: moonGlow 3s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(79, 200, 255, 0.6), 0 0 80px rgba(79, 200, 255, 0.3); }
  50%       { box-shadow: 0 0 50px rgba(79, 200, 255, 0.9), 0 0 120px rgba(79, 200, 255, 0.5); }
}

.track-info {
  padding: 20px;
}

.track-number {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blue-dim);
  display: block;
  margin-bottom: 6px;
}

.track-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.track-genre {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 14px;
}

.track-listen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-moon);
  transition: all var(--transition);
}

.track-listen:hover {
  color: var(--blue-bright);
  gap: 10px;
  text-shadow: var(--glow-sm);
}

/* ── Spotify Embed ───────────────────────────────────────── */
.spotify-embed-wrap {
  text-align: center;
}

.embed-label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

/* ── Streaming Platforms ─────────────────────────────────── */
.streaming-platforms {
  text-align: center;
  margin-bottom: 48px;
}

.streaming-label {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.streaming-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(79, 200, 255, 0.2);
  border-radius: 999px;
  color: var(--grey);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: rgba(79, 200, 255, 0.04);
}

.streaming-btn:hover {
  color: var(--blue-moon);
  border-color: rgba(79, 200, 255, 0.45);
  background: rgba(79, 200, 255, 0.09);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(79, 200, 255, 0.2);
}

.about-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(79, 200, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.about-lead {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--blue-moon);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-text p { margin-bottom: 16px; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  padding: 6px 16px;
  border: 1px solid rgba(79, 200, 255, 0.35);
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--blue-moon);
  background: rgba(79, 200, 255, 0.06);
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(79, 200, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-item:hover {
  border-color: rgba(79, 200, 255, 0.4);
  box-shadow: var(--glow-sm);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ── Licensing ───────────────────────────────────────────── */
.licensing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.licensing-card {
  background: var(--bg-card);
  border: 1px solid rgba(79, 200, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition);
}

.licensing-card:hover {
  border-color: rgba(79, 200, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.licensing-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.licensing-card h3 {
  color: var(--blue-moon);
  margin-bottom: 10px;
}

.licensing-card p { font-size: 0.92rem; }

.licensing-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(79, 200, 255, 0.06), rgba(13, 51, 86, 0.3));
  border: 1px solid rgba(79, 200, 255, 0.15);
  border-radius: 12px;
}

.licensing-cta p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--white);
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(79, 200, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); opacity: 0.7; }

.form-group select option { background: var(--bg-card); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-moon);
  box-shadow: 0 0 0 3px rgba(79, 200, 255, 0.12);
}

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

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #030608;
  border-top: 1px solid rgba(79, 200, 255, 0.1);
  padding: 52px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  border-radius: 4px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(79, 200, 255, 0.15);
  border-radius: 999px;
  color: var(--grey);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--blue-moon);
  border-color: rgba(79, 200, 255, 0.45);
  background: rgba(79, 200, 255, 0.06);
  box-shadow: var(--glow-sm);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(79, 200, 255, 0.07);
  border-bottom: 1px solid rgba(79, 200, 255, 0.07);
  margin-bottom: 24px;
}

.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
}

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

.footer-bottom { text-align: center; }

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(122, 139, 160, 0.7);
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  border: 1px solid rgba(79, 200, 255, 0.3);
  box-shadow: var(--glow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid rgba(79, 200, 255, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(79, 200, 255, 0.15);
  border-color: var(--blue-moon);
}

/* ── Fixed social sidebar ────────────────────────────────── */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(7, 12, 22, 0.82);
  border: 1px solid rgba(79, 200, 255, 0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--grey);
  text-decoration: none;
  transition: all 0.25s ease;
  transform: translateX(calc(100% - 46px));
  overflow: hidden;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.social-sidebar a span {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.social-sidebar a:hover {
  transform: translateX(0);
  color: var(--blue-moon);
  border-color: rgba(79, 200, 255, 0.45);
  background: rgba(7, 12, 22, 0.95);
  box-shadow: var(--glow-sm);
}

.social-sidebar a:hover span { opacity: 1; }

/* ── Mobile social bar (bottom, fixed) ──────────────────── */
.social-bar-mobile {
  display: none;
}

@media (max-width: 768px) {
  .social-sidebar { display: none; }

  .social-bar-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    justify-content: space-around;
    align-items: center;
    padding: 10px 16px;
    background: rgba(4, 8, 15, 0.88);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(79, 200, 255, 0.15);
  }

  .social-bar-mobile a {
    color: rgba(122, 139, 160, 0.8);
    padding: 6px;
    transition: color 0.25s ease, transform 0.2s ease;
  }

  .social-bar-mobile a:hover,
  .social-bar-mobile a:active {
    color: var(--blue-moon);
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  /* Extra bottom padding so footer clears the social bar */
  .footer { padding-bottom: 72px; }

  /* Hide nav logo on mobile — hero already shows the full logo */
  .nav-logo { display: none; }

  /* Mobile: content stacks below the contained logo */
  .hero { align-items: flex-start; }

  .hero-bg {
    background-size: contain;
    background-position: center top;
    background-color: var(--bg);
    transform: none;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 8, 15, 0) 0%,
      rgba(4, 8, 15, 0.05) 40%,
      rgba(4, 8, 15, 0.75) 60%,
      rgba(4, 8, 15, 1) 100%
    );
  }

  /* Push tagline below the contained 16:9 logo image */
  .hero-content {
    padding-bottom: 0;
    margin-top: calc(56.25vw + 16px);
  }
}

/* ── Toast notification ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid rgba(79, 200, 255, 0.3);
  border-radius: 999px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--glow-sm);
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.toast--success { border-color: rgba(79, 200, 255, 0.5); }
.toast.toast--error   { border-color: rgba(220, 60, 60, 0.5); }

/* ── Fade-in animation on scroll ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tracks-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(79, 200, 255, 0.15);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(79, 200, 255, 0.06);
  }

  /* Tracks */
  .tracks-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto 60px;
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }

  /* Licensing */
  .licensing-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner  { justify-content: center; text-align: center; }
  .footer-socials { justify-content: center; }
  .social-icon span { display: none; }
  .social-icon { padding: 10px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}
