/* ===================================================
   Wolfsterker — Main Stylesheet
   Viking Music | Born of Fire & Frost
   =================================================== */

/* ─── Custom Properties ──────────────────────────────── */
:root {
  --bg:            #090805;
  --bg-mid:        #111009;
  --bg-raised:     #1b1912;
  --bg-card:       #16140e;

  --gold:          #c9a84c;
  --gold-light:    #e8c96a;
  --gold-dark:     #7d6520;
  --gold-dim:      rgba(201, 168, 76, 0.12);
  --gold-glow:     rgba(201, 168, 76, 0.35);
  --gold-border:   rgba(201, 168, 76, 0.28);

  --text:          #ede0c4;
  --text-muted:    #9e8a65;
  --text-dim:      #5a4e38;

  --red-ember:     #a83020;
  --storm:         #1a2030;

  --font-display:  'Cinzel Decorative', serif;
  --font-heading:  'Cinzel', serif;
  --font-body:     'Raleway', sans-serif;

  --nav-h:         78px;
  --banner-height: 0px;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--gold-light); }

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text);
}

/* ─── Utility ────────────────────────────────────────── */
.hidden { display: none !important; }

.section-pad {
  padding: 100px 24px;
}

/* ─── Scroll Animations ─────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Header ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.left-align {
  text-align: left;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow), 0 2px 4px rgba(0,0,0,0.8);
  margin: 16px 0;
  letter-spacing: 0.06em;
}

.section-subtitle {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Rune Divider */
.rune-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  user-select: none;
  justify-content: center;
}

.rune-divider::before,
.rune-divider::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}

.rune-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}

.rune-divider.small::before,
.rune-divider.small::after {
  max-width: 60px;
}

/* ─── Announcement Banner ────────────────────────────── */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 48px;
  background: linear-gradient(90deg, #1a0e00 0%, #3a2000 40%, #3a2000 60%, #1a0e00 100%);
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.banner-cta {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.banner-cta:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: scale(1.04);
}

.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.banner-close:hover { color: var(--gold); }

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.3s var(--ease);
}

.banner:not(.hidden) ~ .navbar {
  top: 48px;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,8,5,0.95) 0%, rgba(9,8,5,0) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(9, 8, 5, 0.96);
  box-shadow: 0 1px 0 var(--gold-border), 0 4px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.navbar.scrolled::before { opacity: 0; }

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  /* Black bg becomes transparent via screen blend mode */
  mix-blend-mode: screen;
  filter: brightness(1.1);
  transition: filter 0.3s;
}

.logo-img:hover { filter: brightness(1.3) drop-shadow(0 0 8px var(--gold-glow)); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0 auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 2px;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Nav Social Icons */
#nav-socials {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}

.nav-social-icon:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(9,8,5,0.55) 0%,
      rgba(9,8,5,0.2)  40%,
      rgba(9,8,5,0.7)  80%,
      rgba(9,8,5,1)   100%
    ),
    radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 70%);
}

/* Rune Particles */
.rune-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.rune {
  position: absolute;
  bottom: -20px;
  color: var(--gold-dark);
  opacity: 0;
  animation: runeFloat linear infinite;
  user-select: none;
}

@keyframes runeFloat {
  0%   { opacity: 0;    transform: translateY(0)   rotate(0deg); }
  10%  { opacity: 0.4; }
  80%  { opacity: 0.15; }
  100% { opacity: 0;    transform: translateY(-110vh) rotate(180deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: calc(var(--nav-h) + var(--banner-height));
}

.hero-logo {
  width: min(480px, 85vw);
  height: auto;
  /* Removes the black background from the logo PNG */
  mix-blend-mode: screen;
  filter: brightness(1.15);
  animation: logoPulse 4s ease-in-out infinite;
  drop-shadow: none;
}

@keyframes logoPulse {
  0%, 100% { filter: brightness(1.15) drop-shadow(0 0 20px rgba(201,168,76,0.3)); }
  50%       { filter: brightness(1.25) drop-shadow(0 0 40px rgba(201,168,76,0.55)); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '⚔';
  margin: 0 12px;
  color: var(--gold-dark);
  font-size: 0.7em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroScrollFade 2s ease-in-out infinite;
}

.hero-scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: heroScrollArrow 2s ease-in-out infinite;
}

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

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

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

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

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

/* ─── Releases Section ───────────────────────────────── */
.releases-section {
  padding: 100px 24px;
  background: var(--bg);
  position: relative;
}

.releases-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(9,8,5,0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px var(--gold-glow);
  border-color: var(--gold);
}

.release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.release-card:hover .release-cover img {
  transform: scale(1.05);
}

.release-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,5,0.8) 0%, transparent 60%);
}

.release-info {
  padding: 20px 24px 24px;
}

.release-type {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}

.release-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.release-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.release-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.stream-btn:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

.no-content {
  text-align: center;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 60px 0;
  grid-column: 1 / -1;
}

/* ─── About Section ──────────────────────────────────── */
.about-section {
  padding: 100px 24px;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-image-frame {
  position: relative;
}

.about-image-frame::before,
.about-image-frame::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.about-image-frame::before {
  top: -12px;
  left: -12px;
  border-width: 2px 0 0 2px;
}

.about-image-frame::after {
  bottom: -12px;
  right: -12px;
  border-width: 0 2px 2px 0;
}

.about-photo {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--gold-border);
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s;
}

.about-photo:hover { filter: grayscale(0%) contrast(1.08); }

.about-text-col {}

#about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  margin: 16px 0 28px;
}

.about-bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.about-bio p { margin-bottom: 1.2em; }
.about-bio p:last-child { margin-bottom: 0; }

/* ─── Gallery Section ────────────────────────────────── */
.gallery-section {
  padding: 100px 24px;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.gallery-item:hover::after {
  border-color: var(--gold-border);
  box-shadow: inset 0 0 0 1px var(--gold-border);
}

/* ─── Connect / Socials ──────────────────────────────── */
.connect-section {
  padding: 100px 24px;
  background: var(--bg-mid);
  position: relative;
}

.connect-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 40px;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s, color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--platform-color, var(--gold)), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--platform-color, var(--gold));
  box-shadow: 0 16px 40px rgba(0,0,0,0.5),
              0 0 20px color-mix(in srgb, var(--platform-color, var(--gold)) 30%, transparent);
  color: #fff;
}

.social-card:hover::before { opacity: 0.08; }

.social-icon-wrap {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.social-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  padding: 60px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--gold-border);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(0.75);
  margin: 0 auto 24px;
  transition: filter 0.3s;
}

.footer-logo-img:hover { filter: brightness(1.1); }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.footer-admin a {
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-admin a:hover { opacity: 1; color: var(--gold); }

/* ─── Decorative Background Patterns ─────────────────── */
.releases-section,
.gallery-section {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.02) 0%, transparent 40%);
}

/* ─── Lightning flash animation (subtle, hero) ───────── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 70% 20%, rgba(180,200,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: lightningFlicker 12s ease-in-out infinite;
}

@keyframes lightningFlicker {
  0%, 88%, 92%, 96%, 100% { opacity: 1; }
  89%, 91%, 94%             { opacity: 0.3; }
  90%, 93%, 95%             { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-col {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--banner-height) + var(--nav-h));
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(9,8,5,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold-border);
    padding: 24px 0;
    gap: 4px;
    z-index: 998;
  }

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

  .nav-link {
    text-align: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .nav-link::after { display: none; }

  .nav-toggle { display: flex; }

  #nav-socials { display: none; }

  .hero-logo { width: min(340px, 80vw); }

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

  .navbar { padding: 0 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .releases-section, .gallery-section, .about-section, .connect-section { padding: 72px 16px; }
  .social-card { padding: 24px 28px; min-width: 110px; }
}
