﻿/* ============================================================
   JGM DUB вЂ” A VINYL EXPERIENCE
   Store В· Premium dark / amber vinyl aesthetic
   ============================================================ */

:root {
  --bg: #0a0806;
  --bg-soft: #100d0a;
  --surface: #15110d;
  --surface-2: #1c1712;
  --border: #2a2218;
  --border-soft: #221c14;
  --text: #f2e7d5;
  --text-dim: #a3947e;
  --text-faint: #6b5f4f;
  --accent: #d4a24e;
  --accent-2: #e0b870;
  --accent-dim: rgba(212, 162, 78, 0.12);
  --green: #7fbf9e;
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: 'Unbounded', 'Space Grotesk', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0a0806; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2e2518; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #4a3a24; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__vinyl {
  width: 110px; height: 110px; border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 14%, #0d0a08 14.5% 22%, transparent 22.5%),
    repeating-radial-gradient(circle at center, #1a1512 0 4px, #0f0c09 4.5px 9px);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(212, 162, 78, 0.15);
  animation: spin 1.1s linear infinite;
}
.preloader__bar {
  width: 160px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden;
}
.preloader__bar i {
  display: block; height: 100%; width: 40%;
  background: var(--accent);
  animation: loadbar 1.2s var(--ease) infinite;
}
.preloader__label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--text-faint); text-indent: 0.5em;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(10, 8, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.12em; }
.brand__vinyl {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent) 0 18%, #0d0a08 18.5% 28%, transparent 29%),
    repeating-radial-gradient(circle at center, #1a1512 0 3px, #0f0c09 3.5px 6px);
  border: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13.5px; letter-spacing: 0.06em; color: var(--text-dim);
  position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); border-radius: 999px;
  padding: 10px 18px; font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.cart-btn:hover { border-color: var(--accent); background: #221b12; }
.cart-btn:active { transform: scale(0.97); }
.cart-btn__count {
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--accent); color: #0a0806;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.cart-btn__count.is-pop { animation: pop 0.35s var(--ease); }

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s, top 0.35s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 75% 35%, rgba(212, 162, 78, 0.07), transparent 70%),
    radial-gradient(45% 40% at 15% 80%, rgba(212, 162, 78, 0.04), transparent 70%),
    var(--bg);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image:
    linear-gradient(rgba(212, 162, 78, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 78, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 60px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--accent); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 800; line-height: 1.04; letter-spacing: 0.01em;
}
.hero__title .serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--accent-2);
}
.hero__sub {
  margin-top: 26px; max-width: 480px;
  color: var(--text-dim); font-size: 16.5px;
}
.hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid transparent;
  overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.3s;
}
.btn--solid {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #140d04;
  box-shadow: 0 10px 34px rgba(212, 162, 78, 0.25);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(212, 162, 78, 0.35); }
.btn--ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }
.btn--lg { padding: 19px 38px; font-size: 15px; }

/* Hero vinyl visual */
.hero__visual { display: flex; justify-content: center; position: relative; }
.turntable {
  position: relative;
  width: min(430px, 78vw); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.turntable__base {
  position: absolute; z-index: 0;
  bottom: 3%; left: 50%; transform: translateX(-50%);
  width: 96%; height: 34%;
  border-radius: 24px;
  background: linear-gradient(165deg, #201811 0%, #0d0a08 70%);
  border: 1px solid #2e2518;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.turntable__base::after {
  content: ''; position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 56%; height: 46%; border-radius: 50%;
  background: radial-gradient(circle at center, #2a2118 0 30%, #17110c 31% 100%);
  border: 1px solid #33291c;
}
.turntable__tonearm {
  position: absolute; z-index: 2;
  top: 15%; right: 10%;
  width: 42%; height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #d4a24e, #8a6a30);
  transform: rotate(-32deg);
  transform-origin: 100% 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.turntable__tonearm::before {
  content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8c37e, #8a6a30);
  border: 1px solid #5c451f;
}
.hero__vinyl-wrap {
  position: relative; z-index: 1;
  width: 74%; aspect-ratio: 1;
  animation: dropIn 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 1.2s both;
}
.hero__vinyl {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 7%, #0d0a08 7.5% 12%, transparent 12.5%),
    repeating-radial-gradient(circle at center, #171310 0 5px, #0e0b08 5.5px 11px);
  border: 1px solid var(--border);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 90px rgba(212, 162, 78, 0.08);
  animation: spin 14s linear infinite;
}
@keyframes dropIn {
  0%   { transform: translateY(-200px) scale(0.85) rotate(-60deg); opacity: 0; }
  55%  { opacity: 1; }
  80%  { transform: translateY(10px) scale(1.03) rotate(5deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
}
.hero__vinyl::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 6%,   rgba(212, 162, 78, 0.85) 0 2.5px, transparent 3.2px),
    radial-gradient(circle at 30% 78%,  rgba(159, 205, 196, 0.7) 0 2px, transparent 2.7px),
    radial-gradient(circle at 74% 28%, rgba(212, 162, 78, 0.6) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 58% 84%, rgba(212, 162, 78, 0.5) 0 1.5px, transparent 2px),
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.06) 47%, rgba(255, 255, 255, 0.13) 50%, rgba(255, 255, 255, 0.06) 53%, transparent 58%);
}
.hero__vinyl::after {
  content: ''; position: absolute; inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #0d0a08 0 30%, transparent 31%);
  border: 1px solid #2e2518;
}
.hero__vinyl-label {
  position: absolute; inset: 32%; z-index: 2;
  border-radius: 50%;
  background: #120e0a;
  border: 1px solid #3a2e1e;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; padding: 10px;
  animation: spin-rev 14s linear infinite;
}
.hero__vinyl-label b {
  font-family: var(--font-display); font-size: clamp(13px, 1.6vw, 18px); letter-spacing: 0.14em;
}
.hero__vinyl-label span {
  font-size: 9px; letter-spacing: 0.3em; color: var(--accent); text-transform: uppercase;
}

.hero__float-note {
  position: absolute; bottom: 4%; left: -6%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  font-size: 12.5px; color: var(--text-dim);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  animation: float 5s ease-in-out infinite;
  display: flex; align-items: center; gap: 10px;
}
.hero__float-note i { font-style: normal; color: var(--accent); font-weight: 700; }

/* Equalizer */
.eq { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.eq i {
  width: 3px; border-radius: 2px; background: var(--accent);
  animation: eq 1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.eq i:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.eq i:nth-child(4) { height: 85%; animation-delay: 0.45s; }
.eq i:nth-child(5) { height: 45%; animation-delay: 0.6s; }

/* Scroll hint */
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-faint); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
  overflow: hidden; padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.marquee__track span::after { content: 'вњі'; color: var(--accent); font-size: 11px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }

.section-head { max-width: 620px; margin-bottom: 60px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow--center::after { content: ''; width: 34px; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; line-height: 1.12; letter-spacing: 0.005em;
}
.section-title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--accent-2); }
.section-sub { margin-top: 16px; color: var(--text-dim); font-size: 15.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RELEASE FEATURE
   ============================================================ */
.release { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }

.release__art {
  position: relative; perspective: 1200px;
}
.release__cover {
  position: relative; z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.7s var(--ease);
  aspect-ratio: 1;
}
.release__cover:hover { transform: rotateY(0deg) rotateX(0deg); }
.release__cover img { width: 100%; height: 100%; object-fit: cover; }

.release__vinyl-side {
  position: absolute; z-index: 1;
  top: 50%; left: -12%; width: 62%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 8%, #0d0a08 8.5% 13%, transparent 13.5%),
    repeating-radial-gradient(circle at center, #171310 0 5px, #0e0b08 5.5px 11px);
  border: 1px solid var(--border);
  transform: translateY(-50%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.release:hover .release__vinyl-side { animation: spin 6s linear infinite; }

.release__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 162, 78, 0.35);
  background: var(--accent-dim);
  border-radius: 999px; padding: 7px 14px;
}
.tag--green { color: var(--green); border-color: rgba(127, 191, 158, 0.35); background: rgba(127, 191, 158, 0.08); }

.release__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700; line-height: 1.15;
}
.release__desc { margin-top: 18px; color: var(--text-dim); font-size: 15.5px; max-width: 520px; }

/* Tracklist */
.tracklist { margin-top: 34px; border-top: 1px solid var(--border-soft); }
.tracklist__side {
  margin-top: 22px; padding: 12px 4px 2px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent);
}
.tracklist__side:first-child { margin-top: 18px; }
.tracklist__row {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 4px; border-bottom: 1px solid var(--border-soft);
  transition: background 0.25s, padding-left 0.25s;
}
.tracklist__row:hover { background: rgba(212, 162, 78, 0.04); padding-left: 12px; }
.tracklist__num { font-size: 12px; color: var(--text-faint); width: 34px; font-variant-numeric: tabular-nums; }
.tracklist__name { font-size: 14.5px; flex: 1; }

/* ============================================================
   SHOP GRID
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.product:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.product__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); will-change: transform; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product:hover .product__media img { transform: scale(1.06) rotate(1deg); }
.product__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--accent); color: #140d04; font-weight: 700;
  border-radius: 999px; padding: 6px 12px;
}
.product__quick {
  position: absolute; inset: auto 0 0 0; z-index: 3;
  background: rgba(10, 8, 6, 0.9);
  backdrop-filter: blur(8px);
  padding: 14px;
  display: flex; justify-content: center;
  transform: translateY(102%); transition: transform 0.4s var(--ease);
}
.product:hover .product__quick { transform: translateY(0); }
.product__quick .btn { padding: 12px 22px; font-size: 13px; width: 100%; justify-content: center; }
.product__body { padding: 20px 20px 22px; }
.product__format { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.product__name { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; line-height: 1.3; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.product__price { font-size: 17px; font-weight: 700; color: var(--accent-2); }
.product__price s { font-size: 12.5px; color: var(--text-faint); font-weight: 400; margin-right: 8px; }
.product__add {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--accent);
  font-size: 17px; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.product__add:hover { background: var(--accent); color: #140d04; border-color: var(--accent); }
.product__add:active { transform: scale(0.9); }

/* ============================================================
   ARTIST
   ============================================================ */
.artist { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.artist__photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.artist__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,8,6,0.55));
}
.artist__photo img { width: 100%; }
.artist__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px); line-height: 1.5;
  color: var(--text); margin: 26px 0 8px;
}
.artist__quote mark { background: none; color: var(--accent-2); }
.artist__name { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   SHIPPING / FAQ
   ============================================================ */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.perk {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 30px 28px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.perk:hover { border-color: var(--border); transform: translateY(-4px); }
.perk__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(212, 162, 78, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.perk h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.perk p { font-size: 13.5px; color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border-soft); padding: 70px 0 40px; background: var(--bg-soft); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer__brand { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer__desc { color: var(--text-dim); font-size: 13.5px; max-width: 280px; }
.footer h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13.5px; color: var(--text-dim); transition: color 0.25s; width: fit-content; }
.footer__col a:hover { color: var(--accent-2); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border-soft); padding-top: 28px;
  color: var(--text-faint); font-size: 12.5px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-dim); transition: all 0.3s;
}
.footer__socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 4, 3, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(440px, 94vw);
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.5s var(--ease);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px; border-bottom: 1px solid var(--border-soft);
}
.drawer__head h3 { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.08em; }
.drawer__close {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent; color: var(--text-dim);
  font-size: 16px; transition: all 0.3s;
}
.drawer__close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.drawer__items { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 18px; }

.cart-item { display: flex; gap: 16px; align-items: center; }
.cart-item__cover {
  width: 74px; height: 74px; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--border); flex-shrink: 0;
}
.cart-item__cover img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item__format { font-size: 11px; color: var(--text-faint); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty { display: flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.qty button {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: transparent; color: var(--text-dim); font-size: 14px; transition: all 0.2s;
}
.qty button:hover { background: var(--surface-2); color: var(--text); }
.qty span { min-width: 24px; text-align: center; font-size: 13px; font-variant-numeric: tabular-nums; }
.cart-item__price { font-size: 14px; font-weight: 700; color: var(--accent-2); }
.cart-item__remove { background: none; border: none; color: var(--text-faint); font-size: 13px; transition: color 0.25s; }
.cart-item__remove:hover { color: #e0836b; }

.drawer__empty {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--text-faint); text-align: center; padding: 40px 20px;
}
.drawer__empty .vinyl-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent) 0 15%, #0d0a08 15.5% 26%, transparent 26.5%),
    repeating-radial-gradient(circle at center, #1a1512 0 3px, #0f0c09 3.5px 7px);
  border: 1px solid var(--border);
}

.drawer__foot { border-top: 1px solid var(--border-soft); padding: 22px 28px 28px; }
.drawer__total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__total span { font-size: 13px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.drawer__total b { font-size: 24px; font-weight: 800; color: var(--accent-2); }
.drawer__note { font-size: 11.5px; color: var(--text-faint); text-align: center; margin-top: 12px; }
.drawer .btn { width: 100%; justify-content: center; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  width: min(520px, 100%);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 36px;
  transform: translateY(26px) scale(0.98);
  transition: transform 0.45s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.is-open .modal { transform: none; }
.modal__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.modal__sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 26px; }
.modal__total-row { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); margin-bottom: 22px; }
.modal__total-row b { color: var(--accent-2); font-size: 18px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 16px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 14.5px; font-family: inherit;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.modal__success { text-align: center; padding: 30px 10px; }
.modal__success .check {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #140d04;
  box-shadow: 0 16px 50px rgba(212, 162, 78, 0.35);
  animation: pop 0.5s var(--ease);
}
.modal__success h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.modal__success p { color: var(--text-dim); font-size: 14px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 400;
  transform: translateX(-50%) translateY(120%);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 14px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.5s var(--ease);
}
.toast.is-show { transform: translateX(-50%) translateY(0); }
.toast i { font-style: normal; color: var(--accent); font-weight: 700; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes eq { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
@keyframes scrollpulse { 0% { opacity: 0; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes loadbar { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .release, .artist { grid-template-columns: 1fr; gap: 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 70px; }
  .hero { padding-top: calc(var(--header-h) + 60px); }
  .perks { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { order: -1; }
}

@media (max-width: 680px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 80px 0; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__float-note { left: 0; bottom: 0; }
  .field-row { grid-template-columns: 1fr; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 8, 6, 0.97);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--text); opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--accent-2); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.25s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ============================================================
   Product details accordion + Contest (added 2026-08-07)
   ============================================================ */
.product__details-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 0; background: none; border: none;
  color: var(--accent); font: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: color 0.25s var(--ease);
}
.product__details-toggle::after {
  content: '+'; font-size: 15px; line-height: 1; transition: transform 0.3s var(--ease);
}
.product__details-toggle:hover { color: var(--accent-2); }
.product__details-toggle.is-open::after { transform: rotate(45deg); }

.product__details {
  display: none; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 13.5px; line-height: 1.7; color: var(--text-dim);
}
.product__details.is-open { display: block; animation: detailsIn 0.35s var(--ease); }
@keyframes detailsIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.product__details p { margin: 0 0 12px; }
.product__details ul { margin: 0 0 12px; padding-left: 18px; }
.product__details li { margin-bottom: 4px; }
.product__details-note {
  color: var(--accent-2); font-size: 12.5px; letter-spacing: 0.02em;
}

/* Contest */
.contest {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto;
}
.contest__card {
  background: var(--bg); border: 1px solid var(--border-soft); border-radius: 16px;
  padding: 28px; position: relative; overflow: hidden;
}
.contest__card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.contest__card h3 {
  margin: 0 0 16px; font-size: 15px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.contest__list { margin: 0; padding-left: 20px; color: var(--text-dim); font-size: 14px; line-height: 1.75; }
.contest__list li { margin-bottom: 6px; }
.contest__prize { font-size: 15px; margin: 0 0 12px; color: var(--text); }
.contest__cta {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--border-soft);
  font-size: 13.5px; line-height: 1.7; color: var(--text-dim);
}
@media (max-width: 760px) { .contest { grid-template-columns: 1fr; } }

/* ============================================================
   Cover -> Tracklist flip animation (added 2026-08-07)
   ============================================================ */
.flip {
  position: absolute; inset: 0;
  perspective: 1400px;
}
.flip__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: flipCycle 10s ease-in-out infinite;
}
.flip__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.flip__face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flip__face--back { transform: rotateY(180deg); }

@keyframes flipCycle {
  0%   { transform: rotateY(0deg); }
  42%  { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  92%  { transform: rotateY(180deg); }
  100% { transform: rotateY(0deg); }
}

/* pause flip while hovering */
.release__cover:hover .flip__inner,
.product__media:hover .flip__inner { animation-play-state: paused; }

/* Copies remaining counter (added 2026-08-07) */
.copies { max-width: 500px; margin: 30px auto 0; text-align: center; }
.copies__head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 10px;
}
.copies__count { color: var(--accent-2); font-weight: 700; letter-spacing: 0.14em; }
.copies__bar {
  height: 6px; border-radius: 999px; overflow: hidden;
  background: rgba(212, 162, 78, 0.1); border: 1px solid var(--border-soft);
}
.copies__bar i {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1.4s var(--ease);
}
.copies__note { margin-top: 12px; font-size: 13px; color: var(--text-dim); }
.copies__note b { color: var(--accent); }

@keyframes spin-rev { to { transform: rotate(-360deg); } }

