/* ═══════════════════════════════════════════════════════
   а. смоленский — Cinematic Artist Website
   Design System & Styles
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ──────────────────────────── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c547;
  --gold-gradient: linear-gradient(135deg, #c9a84c, #e8c547);
  --text-primary: #f0ece4;
  --text-secondary: #8a8578;
  --burgundy: #8b2020;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-primary);
  overflow-x: hidden;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; cursor: none; }
a:hover { color: var(--gold-light); }
img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ── Custom Cursor ──────────────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
  opacity: 0;
}
.custom-cursor.visible { opacity: 1; }
.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid var(--gold);
}

/* ── Film Grain Overlay ─────────────────────────────── */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  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;
  animation: grainShift 0.5s steps(1) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, -2px); }
  100% { transform: translate(1px, 1px); }
}

/* ── Ambient Music Player ──────────────────────────── */
.ambient-player {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0.6;
}
.ambient-player:hover {
  opacity: 1;
  border-color: rgba(201, 168, 76, 0.5);
}
.ambient-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}
.ambient-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}
.ambient-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  user-select: none;
}
.ambient-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.ambient-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}
.ambient-volume::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}
.ambient-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: lowercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  z-index: 1001;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: lowercase;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO SECTION ───────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
}
#hero-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: var(--bg-primary);
}
#hero-loading p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
#hero-canvas-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.0) 70%
  );
  z-index: 1;
}
#hero-text {
  position: absolute;
  bottom: 15%;
  width: 100%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}
#hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 5rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin: 0;
  text-transform: lowercase;
}
#hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 1rem;
  text-transform: uppercase;
}
#scroll-indicator {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
}
#scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}

/* ── Section Commons ────────────────────────────────── */
.section {
  position: relative;
  padding: 8rem 5%;
  overflow: hidden;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 2rem 0;
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-dramatic), transform 0.8s var(--ease-dramatic); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT SECTION ──────────────────────────────────── */
#about { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 1;
  pointer-events: none;
}
.about-image-wrap img {
  width: 100%;
  height: auto;
  filter: grayscale(30%);
  transition: filter 0.6s;
}
.about-image-wrap:hover img { filter: grayscale(0%); }
.about-content { padding: 2rem 0; }
.about-content .description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.about-content .description em {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 400;
}

/* ── BIOGRAPHY TIMELINE ─────────────────────────────── */
#biography {
  background: var(--bg-secondary);
  position: relative;
}
.bio-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('images/06.jpg') center center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(100%);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}
.timeline-year {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.timeline-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── GALLERY ────────────────────────────────────────── */
#gallery { background: var(--bg-primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 250px;
  background: var(--bg-secondary);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
  opacity: 1 !important;
}
.gallery-item:hover img {
  filter: grayscale(0%) sepia(15%);
  transform: scale(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid var(--gold);
  transition: border-width 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { border-width: 2px; }
.gallery-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 168, 76, 0.15);
  cursor: default;
}
.gallery-quote-card::after { display: none; }
.gallery-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.gallery-quote-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
}
.gallery-quote-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 1.2rem;
  text-transform: lowercase;
}
.gallery-quote-wide {
  grid-column: span 2;
}

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  cursor: none;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.8rem 1.5rem;
  cursor: none;
  transition: all 0.3s;
}
.lightbox-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── STREAMING ──────────────────────────────────────── */
#music {
  background: var(--bg-secondary);
  text-align: center;
}
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.stream-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.stream-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s;
}
.stream-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.stream-card:hover::before { opacity: 0.05; }
.stream-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.stream-card-icon svg {
  width: 36px;
  height: 36px;
}
.stream-card-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.stream-card-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── LIVE / STAGE ───────────────────────────────────── */
#stage { background: var(--bg-primary); }
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}
.stage-image {
  position: relative;
  overflow: hidden;
}
.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: filter 0.6s;
}
.stage-image:hover img { filter: grayscale(0%); }
.stage-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.stage-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.stage-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--text-primary);
  font-style: normal;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ── ALBUM TEASER ───────────────────────────────────── */
#album {
  background: var(--bg-secondary);
  text-align: center;
  padding: 10rem 5%;
  position: relative;
}
.album-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.6rem 2rem;
  margin-bottom: 2rem;
}
.album-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 200;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}
.album-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
}

/* ── FOOTER ─────────────────────────────────────────── */
#footer {
  background: var(--bg-primary);
  padding: 5rem 5% 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: lowercase;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-social a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
}

/* ── PAGE LOADER ────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-dramatic), visibility 0.8s;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 200;
  color: var(--gold);
  letter-spacing: 0.15em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stage-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .gallery-item:last-child { grid-column: auto; max-height: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .section { padding: 5rem 5%; }
  .stage-text { padding: 2rem 0; }
  #hero-name { letter-spacing: 0.08em; }
  .streaming-grid { grid-template-columns: 1fr 1fr; }
  body { cursor: auto; }
  .custom-cursor { display: none; }
  a { cursor: auto; }
  .hamburger { cursor: pointer; }
  .lightbox-close { cursor: pointer; }
  .gallery-item { cursor: pointer; }
  .stage-grid { gap: 1rem; }
  .about-image-wrap::before { display: none; }
  .timeline { padding-left: 2rem; }
  .timeline-item { padding-left: 1.5rem; }
  .timeline-item::before { left: -2rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  #album { padding: 6rem 5%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .gallery-item:last-child { grid-column: auto; max-height: none; }
  .streaming-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; flex-wrap: wrap; }
  .section { padding: 4rem 4%; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2.5rem); }
  #hero-name { font-size: clamp(1.4rem, 8vw, 2.5rem); }
  #hero-tagline { font-size: 0.75rem; letter-spacing: 0.2em; }
  .timeline-year { font-size: 1.4rem; }
  .stream-card { padding: 1.5rem 1rem; }
  .album-title { font-size: clamp(1.5rem, 9vw, 3rem); }
}
