/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============ DESIGN TOKENS ============ */
:root {
  /* Color */
  --bg-primary: #08080A;
  --bg-secondary: #111114;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --white: #F9FAFB;
  --grey: #A1A1AA;
  --purple-glow: #6D28D9;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --fs-hero: clamp(3rem, 8vw, 6.25rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: 1.75rem;
  --fs-body: 1.125rem;
  --fs-small: 0.9rem;

  /* Spacing / radius */
  --radius-card: 20px;
  --radius-btn: 50px;
  --radius-img: 24px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  /* Shadow */
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
}

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ REUSABLE UI ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-primary:hover { box-shadow: var(--shadow-gold); }

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.4);
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 9999;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }

/* ============ LOGO MARK ============ */
.kairo-mark {
  overflow: visible;
}

.k-stem {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawStroke 0.5s var(--ease) forwards 0.1s;
}

.k-upper {
  stroke-dasharray: 27;
  stroke-dashoffset: 27;
  animation: drawStroke 0.4s var(--ease) forwards 0.55s;
}

.k-lower {
  stroke-dasharray: 27;
  stroke-dashoffset: 27;
  animation: drawStroke 0.4s var(--ease) forwards 0.75s;
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}


/* small nav version — no draw-on-load, just static + hover glow */
.navbar .kairo-mark {
  width: 34px;
  height: 34px;
}
.navbar .kairo-mark:hover line {
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.6));
}



.loader-line {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--gold);
  animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  background: transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(16px);
  padding: 1rem 5%;
  border-bottom: 1px solid var(--glass-border);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--grey);
  transition: color var(--dur) var(--ease);
  padding-bottom: 4px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  position: relative;
  z-index: 1100;
}


.menu-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1050;
  padding: 6rem 8% 3rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-secondary);
  filter: grayscale(0.25) contrast(1.15) brightness(0.8);
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.18) translate(-1.5%, -1.5%); }
}


.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.28) 0%, rgba(109,40,217,0.22) 60%, transparent 100%);
  mix-blend-mode: color;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,10,0.55) 0%,
    rgba(8,8,10,0.6) 40%,
    rgba(8,8,10,0.97) 100%
  );
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}


.hero-smoke {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(ellipse 35% 25% at 75% 40%, rgba(255,255,255,0.05), transparent 70%),
    radial-gradient(ellipse 45% 30% at 50% 80%, rgba(255,255,255,0.04), transparent 70%);
  filter: blur(30px);
  animation: smokeDrift 30s ease-in-out infinite alternate;
}

@keyframes smokeDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -2%) scale(1.08); }
  100% { transform: translate(-2%, 3%) scale(1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-105vh) translateX(20px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.reveal {
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: var(--fs-hero);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}

.hero-tagline {
  font-size: var(--fs-body);
  color: var(--grey);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  position: absolute;
  right: 6%;
  bottom: 14%;
  z-index: 2;
  width: 240px;
  padding: 1.5rem;
}

.hero-card-title {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.75rem;
}

.hero-card-meta {
  display: flex;
  gap: 0.5rem;
  color: var(--grey);
  font-size: var(--fs-small);
  margin-bottom: 1.25rem;
}

.hero-card-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease);
}
.hero-card-play:hover { transform: scale(1.1); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ---- Large desktop ---- */
@media (min-width: 1440px) {
  .hero-content { max-width: 800px; }
  .hero-card { width: 270px; }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) and (min-width: 861px) {
  .hero-card { right: 4%; width: 220px; }
}

/* ---- Mobile ---- */
@media (max-width: 860px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-card {
    position: static;
    width: 100%;
    margin-top: 2.5rem;
  }
  .hero-content { max-width: 100%; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; height: auto; min-height: 100vh; flex-direction: column; }
}

/* ---- Small phones ---- */
@media (max-width: 400px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-tagline { font-size: 1rem; }
}


/* ============ CUSTOM CURSOR + PROGRESS BAR ============ */
.cursor-dot,
.cursor-glow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.cursor-glow {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  filter: blur(6px);
  z-index: 9997;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
  .cursor-dot, .cursor-glow { display: block; }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
  z-index: 1200;
}
/* ============ MUSIC PLAYER ============ */
.music-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 300px;
  background: rgba(17, 17, 20, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: height var(--dur) var(--ease);
}

/* ---- Mini bar ---- */
.player-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.player-art {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.player-mini-info {
  flex: 1;
  min-width: 0;
}

.player-track {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  font-size: 0.75rem;
  color: var(--grey);
}

.player-mini-play,
.player-expand,
.player-collapse {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.player-mini-play:hover,
.player-expand:hover { transform: scale(1.08); }

.player-expand {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white);
}

/* ---- Full panel (hidden by default) ---- */
.player-full {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
  position: relative;
}

.player-collapse {
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white);
}

.player-full-art {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-img);
  object-fit: cover;
  background: var(--bg-secondary);
  margin: 1.5rem 0 1rem;
  box-shadow: var(--shadow-soft);
}

.player-full-track {
  font-size: 1.15rem;
}

.player-full-artist {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.player-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.player-time {
  font-size: 0.7rem;
  color: var(--grey);
  width: 32px;
}

.player-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 4px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.player-ctrl {
  font-size: 1.1rem;
  color: var(--white);
  transition: transform var(--dur) var(--ease);
}
.player-ctrl:hover { transform: scale(1.15); }

.player-ctrl-main {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  font-size: 0.8rem;
}

.player-volume input[type="range"] {
  flex: 1;
  accent-color: var(--gold);
}

/* Expanded state, toggled via JS */
.music-player.expanded .player-full { display: flex; }
.music-player.expanded .player-expand { display: none; }

@media (max-width: 600px) {
  .music-player { left: 1rem; right: 1rem; width: auto; bottom: 1rem; }
}

.icon {
  display: block;
}

.btn .icon {
  flex-shrink: 0;
}

.icon-wrap {
  display: flex;
  align-items: center;
}


/* ============ FEATURED ALBUM ============ */
.featured-album {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 8rem 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.album-visual {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-disc {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #0c0c0e;
  box-shadow: var(--shadow-soft);
  animation: vinylSpin 18s linear infinite;
  animation-play-state: paused;
}

.album-visual:hover .vinyl-disc,
.album-visual.playing .vinyl-disc {
  animation-play-state: running;
}

@keyframes vinylSpin {
  to { transform: rotate(360deg); }
}

.vinyl-grooves {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 2px,
    transparent 5px
  );
  pointer-events: none;
}

.vinyl-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.vinyl-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(255,255,255,0.15);
}

.vinyl-play-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  font-size: var(--fs-small);
  z-index: 2;
}

.album-visual:hover .vinyl-play-overlay {
  opacity: 1;
}

.album-info {
  flex: 1;
  min-width: 0;
}

.album-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}

.album-meta {
  display: flex;
  gap: 0.6rem;
  color: var(--grey);
  font-size: var(--fs-small);
  margin-bottom: 1.5rem;
}

.album-desc {
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .featured-album {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 6rem 8%;
  }
  .album-meta { justify-content: center; }
  .album-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
}

@media (max-width: 480px) {
  .album-visual { width: 280px; height: 280px; }
  .vinyl-disc, .vinyl-play-overlay { width: 250px; height: 250px; }
}

/* ============ SECTION HEAD (shared/reusable) ============ */
.section-head {
  padding: 0 8%;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: var(--fs-h1);
  margin-top: 0.5rem;
}

/* ============ LATEST RELEASES ============ */
.releases {
  padding: 6rem 0;
  position: relative;
}

.releases-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 8% 1.5rem;
  scrollbar-width: none;
}
.releases-track::-webkit-scrollbar { display: none; }

.release-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  transition: transform var(--dur) var(--ease);
}

.release-art-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-img);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.release-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
  transition: transform 0.7s var(--ease);
}

.release-card:hover .release-art {
  transform: scale(1.08);
}

.release-card:hover {
  transform: translateY(-8px);
}

.release-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: var(--shadow-gold);
}

.release-card:hover .release-play {
  opacity: 1;
  transform: translateY(0);
}

.release-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.release-meta {
  color: var(--grey);
  font-size: var(--fs-small);
}

.releases-nav {
  display: flex;
  gap: 0.75rem;
  padding: 0 8%;
  max-width: 1400px;
  margin: 1.5rem auto 0;
  justify-content: flex-end;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.carousel-arrow:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .release-card { width: 190px; }
  .releases-nav { display: none; } /* touch scroll works fine, arrows redundant on mobile */
}

/* ============ FEATURED VIDEO ============ */
.featured-video {
  padding: 4rem 8% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
  transition: transform 0.8s var(--ease);
}

.video-thumb-wrap:hover .video-thumb {
  transform: scale(1.05);
}

.video-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.2) 0%, rgba(8,8,10,0.75) 100%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--dur) var(--ease);
}

.video-thumb-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  animation: ringPulse 2.4s ease-out infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.video-caption {
  position: absolute;
  left: 2rem;
  bottom: 1.75rem;
  z-index: 2;
}

.video-caption h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 0.4rem;
}

@media (max-width: 600px) {
  .video-play-btn { width: 62px; height: 62px; }
  .video-caption { left: 1.25rem; bottom: 1.25rem; }
}

/* ============ VIDEO MODAL / LIGHTBOX ============ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(4,4,5,0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  width: 100%;
  max-width: 1000px;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: background var(--dur) var(--ease);
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.15);
}

/* ============ TOUR ============ */
.tour {
  padding: 6rem 0 8rem;
}

.tour-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8%;
}

.tour-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--glass-border);
  transform: translateX(-50%);
}

.tour-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 3.5rem;
}

.tour-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.tour-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.tour-item::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}

.tour-item:nth-child(odd)::before { right: -5px; }
.tour-item:nth-child(even)::before { left: -5px; }

.tour-card {
  display: inline-block;
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
}

.tour-date {
  font-size: var(--fs-small);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.tour-city {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.tour-venue {
  color: var(--grey);
  font-size: var(--fs-small);
  margin-bottom: 1.25rem;
}

.tour-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

.tour-soldout {
  opacity: 0.5;
  cursor: not-allowed;
}
.tour-soldout:hover {
  transform: none;
}

@media (max-width: 760px) {
  .tour-timeline::before { left: 20px; }
  .tour-item,
  .tour-item:nth-child(odd),
  .tour-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 2.5rem 3.5rem;
  }
  .tour-item:nth-child(odd)::before,
  .tour-item:nth-child(even)::before {
    left: 15px;
    right: auto;
  }
  .tour-card { max-width: 100%; }
}

/* ============ GALLERY (editorial masonry) ============ */
.gallery {
  padding: 6rem 8% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  columns: 4 260px;
  column-gap: 1.25rem;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  filter: grayscale(0.55) contrast(1.05);
  transform: scale(1.02);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

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

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Editorial rhythm: a couple of items span two columns worth of height visually
   by just being taller source images — but we also let a couple break pattern in width on large screens */
@media (min-width: 1024px) {
  .gallery-item:nth-child(3n+1) {
    margin-top: 2.5rem;
  }
}

@media (max-width: 760px) {
  .gallery-grid { columns: 2 160px; column-gap: 0.75rem; }
  .gallery-item { margin-bottom: 0.75rem; }
  .gallery-item::after { font-size: 0.7rem; left: 0.75rem; right: 0.75rem; bottom: 0.6rem; }
}

/* ============ GALLERY LIGHTBOX ============ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4,4,5,0.97);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 78vh;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============ AWARDS ============ */
.awards {
  padding: 6rem 8% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.award-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.35);
}

.award-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform var(--dur) var(--ease);
}

.award-card:hover .award-icon {
  transform: scale(1.08) rotate(-4deg);
}

.award-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.award-desc {
  color: var(--grey);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .awards-grid { grid-template-columns: 1fr; }
}


/* ============ MERCHANDISE ============ */
.merch {
  padding: 6rem 8% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.merch-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-img);
  overflow: hidden;
  margin-bottom: 1rem;
}

.merch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
  transition: transform 0.7s var(--ease);
}

.merch-card:hover .merch-img-wrap img {
  transform: scale(1.06);
}

.merch-quickview {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  background: rgba(8,8,10,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.merch-card:hover .merch-quickview {
  opacity: 1;
  transform: translateY(0);
}

.merch-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.merch-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.merch-price {
  color: var(--gold);
  font-size: 0.85rem;
}

.merch-cart-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.merch-cart-btn:hover,
.merch-cart-btn.added {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}

@media (max-width: 1024px) { .merch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* ---- Quick View modal ---- */
.quickview-modal {
  position: fixed;
  inset: 0;
  background: rgba(4,4,5,0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.quickview-modal.open {
  opacity: 1;
  visibility: visible;
}

.quickview-panel {
  display: flex;
  gap: 2.5rem;
  max-width: 720px;
  width: 100%;
  padding: 2rem;
  align-items: center;
}

.quickview-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-img);
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.quickview-info h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.quickview-price { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.5rem; }

@media (max-width: 640px) {
  .quickview-panel { flex-direction: column; text-align: center; padding: 1.5rem; }
  .quickview-img { width: 100%; height: 220px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 6rem 8% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.9rem; font-weight: 500; }
.testimonial-loc { font-size: 0.78rem; color: var(--grey); }

@media (max-width: 760px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
