/* ================================================
   VaseBit Artists Label — style.css
   ================================================ */

/* ── Variables ── */
:root {
  --black:       #0a0a0a;          /* pure black                      */
  --off-black:   #111111;          /* slightly lighter black          */
  --card-bg:     #1a1a1a;          /* card surface                    */
  --border:      #2a2a2a;          /* subtle gray border               */
  --gray-mid:    #3a3a3a;          /* mid gray                         */
  --white:       #e0e0e0;          /* light gray text                  */
  --white-dim:   rgba(224,224,224,0.5);
  --accent:      #888888;          /* neutral gray accent              */
  --accent-glow: rgba(136,136,136,0.18);
  --accent-light:#b0b0b0;          /* lighter gray for highlights      */
  --accent-dark: #666666;          /* darker gray for secondary use    */
  --nav-h:       72px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-bold:    'Bodoni Moda', serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(9,9,11,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--accent-light);
  letter-spacing: 0.22em;
  text-shadow: 0 0 14px rgba(176,176,176,0.3);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-light); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px 32px 32px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent-light); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 7s ease-out;
  filter: saturate(0.88) brightness(0.9);
}
.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9,9,11,0.88) 0%,
    rgba(9,9,11,0.52) 50%,
    rgba(9,9,11,0.14) 100%
  );
}

/* gray scan-line on slide-in */
.hero-slide.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-light);
  opacity: 0.35;
  top: 0;
  animation: scanLine 1.6s var(--ease-out) forwards;
}
@keyframes scanLine {
  from { top: 0; opacity: 0.5; }
  to   { top: 100%; opacity: 0; }
}

.hero-content {
  position: absolute;
  bottom: 12vh;
  left: 8vw;
  max-width: 560px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out) 0.3s, transform 0.9s var(--ease-out) 0.3s;
}
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(176,176,176,0.3);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-bio {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(238,242,227,0.78);
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-bio em { color: var(--accent-light); font-style: italic; }

.hero-cta {
  display: inline-block;
  padding: 13px 36px;
  background: var(--accent-light);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s, box-shadow 0.25s;
}
.hero-cta:hover {
  background: #d0d0d0;
  box-shadow: 0 0 28px rgba(176,176,176,0.4);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(238,242,227,0.2);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hero-arrow:hover {
  background: var(--accent-glow);
  border-color: var(--accent-light);
  box-shadow: 0 0 18px var(--accent-glow);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Hero Dots */
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(238,242,227,0.25);
  border-radius: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--accent-light);
  width: 52px;
  box-shadow: 0 0 8px rgba(176,176,176,0.5);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--white-dim);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── SECTION COMMONS ── */
.section-header {
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: 'NON·PROFIT';
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 16rem);
  color: rgba(200,245,60,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.phil-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 56px;
}

.phil-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.phil-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.ph-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.ph-for, .ph-by {
  color: var(--white-dim);
}
.ph-artists, .ph-artists2 {
  color: var(--accent-light);
  text-shadow: 0 0 30px rgba(176,176,176,0.2);
}
.phil-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-style: italic;
  color: var(--white-dim);
  margin-top: 28px;
  line-height: 1.55;
}

.phil-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.phil-pillar {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.phil-pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-icon {
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.phil-pillar h3 {
  font-family: var(--font-bold);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.phil-pillar p {
  font-size: 0.93rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── ARTISTS SECTION ── */
.artists-section {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.artist-card {
  display: block;
  background: var(--card-bg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  border: 1px solid var(--border);
}
.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-light);
}

.artist-img-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.artist-img-wrap img {
  transition: transform 0.7s var(--ease-out);
  object-position: top center;
  filter: saturate(0.85);
}
.artist-card:hover .artist-img-wrap img {
  transform: scale(1.05);
  filter: saturate(1);
}
.artist-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.75), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.artist-card:hover .artist-img-overlay { opacity: 1; }
.artist-img-overlay span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.artist-card-body {
  padding: 28px 28px 32px;
}
.artist-card-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.artist-card-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.72;
  margin-bottom: 16px;
}
.artist-card-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ── MUSIC SECTION ── */
.music-section {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.music-artist-block {
  margin-bottom: 64px;
  position: relative;
}
.music-artist-block:last-child {
  margin-bottom: 0;
}

.music-artist-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white-dim);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.music-artist-name::before {
  content: '— ';
  color: var(--accent-light);
}

.tracks-scroll {
  position: relative;
  margin: 0 -8vw;
  padding: 0 8vw;
}

.tracks-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 20px;
}
.tracks-grid::-webkit-scrollbar {
  height: 4px;
}
.tracks-grid::-webkit-scrollbar-track {
  background: transparent;
}
.tracks-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}
.tracks-grid::-webkit-scrollbar-thumb:hover {
  background: var(--gray-mid);
}

.track-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--card-bg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  border: 1px solid var(--border);
  scroll-snap-align: start;
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(176,176,176,0.3);
}

.track-album-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.track-album-wrap img {
  transition: transform 0.5s var(--ease-out);
  filter: saturate(0.8);
}
.track-card:hover .track-album-wrap img {
  transform: scale(1.06);
  filter: saturate(1);
}

.track-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.track-card:hover .track-play-overlay { opacity: 1; }

.play-btn {
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.play-btn:hover {
  background: var(--accent-light);
  color: var(--black);
  box-shadow: 0 0 24px rgba(176,176,176,0.4);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.track-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 22px;
}
.track-info > div { flex: 1; min-width: 0; }
.track-title {
  font-family: var(--font-bold);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-title em { font-weight: 400; color: var(--white-dim); font-style: italic; }
.track-artist {
  font-size: 0.74rem;
  color: var(--white-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-mv-link {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: color 0.2s;
}
.track-mv-link:hover { color: var(--white); }

/* ── GLOBAL SECTION ── */
.global-section {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}
.global-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: var(--white-dim);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.global-scroll {
  position: relative;
  margin: 0 -8vw;
  padding: 0 8vw;
}

.global-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 20px;
}
.global-grid::-webkit-scrollbar {
  height: 4px;
}
.global-grid::-webkit-scrollbar-track {
  background: transparent;
}
.global-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}
.global-grid::-webkit-scrollbar-thumb:hover {
  background: var(--gray-mid);
}

.global-card {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  overflow: hidden;
  cursor: default;
  scroll-snap-align: start;
}
.global-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.global-img-wrap img {
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(50%) saturate(0.6);
}
.global-card:hover .global-img-wrap img {
  transform: scale(1.07);
  filter: grayscale(0%) saturate(1);
}
.global-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.8) 0%, rgba(9,9,11,0.1) 60%);
}
.global-card-info {
  padding: 16px 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.global-flag { font-size: 1.4rem; }
.global-card-info h4 {
  font-family: var(--font-bold);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.global-card-info p {
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-top: 2px;
}

/* ── DISTRIBUTION ── */
.distribution-section {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
  background: var(--off-black);
}
.distro-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.distro-platforms {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
}

.distro-platforms img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s;
  cursor: pointer;
  flex-shrink: 0;
}

.distro-platforms img:hover {
  opacity: 1;
  transform: scale(1.2) translateY(-4px);
}

.distro-more-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--white-dim);
  margin-left: 16px;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.distro-platforms:hover .distro-more-badge {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .distro-platforms {
    gap: 24px;
    padding: 24px 0;
    flex-wrap: wrap;
  }
  .distro-platforms img {
    width: 32px;
    height: 32px;
  }
  .distro-ellipsis {
    font-size: 1rem;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 8vw 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.footer-logo .logo-a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo .logo-b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--accent-light);
  letter-spacing: 0.22em;
  text-shadow: 0 0 14px rgba(176,176,176,0.25);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--white-dim);
}
.footer-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(224,224,224,0.3);
}
.footer-sub a {
  color: var(--accent-light);
  transition: opacity 0.2s;
}
.footer-sub a:hover { opacity: 0.7; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .phil-main { grid-template-columns: 1fr; gap: 56px; }
  .artists-grid { grid-template-columns: 1fr; }
  .artist-img-wrap { height: 420px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .philosophy, .artists-section, .music-section,
  .global-section, .distribution-section { padding: 80px 6vw; }

  .global-scroll { margin: 0 -6vw; padding: 0 6vw; }
  .global-card { width: 240px; }
  .global-img-wrap { height: 200px; }

  .tracks-grid { gap: 16px; }
  .tracks-scroll { margin: 0 -6vw; padding: 0 6vw; }
  .track-card { width: 200px; }

  .hero-name { font-size: clamp(3.5rem, 14vw, 7rem); }
  .hero-content { left: 6vw; right: 6vw; bottom: 10vh; max-width: none; }
  .hero-bio { font-size: 0.95rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-scroll-hint { display: none; }
  .hero-controls { right: 24px; bottom: 24px; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .track-card { width: 180px; }
  .tracks-grid { gap: 14px; }
  .global-card { width: 200px; }
  .hero-arrow { display: none; }
}
