/* ==========================================================================
   AGALLAH THE DON — Don't Kill The Messenger
   Premium editorial: onyx, gold leaf, film grain. Full-bleed hero.
   ========================================================================== */

:root {
  --bg: #080706;
  --bg-elevated: #12100e;
  --ink: #f4efe6;
  --muted: #9a9286;
  --dim: #5c564c;
  --gold: #d4a84b;
  --gold-bright: #f0d78c;
  --gold-deep: #8a6a28;
  --line: rgba(244, 239, 230, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.section-title em {
  font-style: normal;
  color: var(--gold-bright);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #120f0a;
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(244, 239, 230, 0.35);
}

/* —— Header —— */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.16em;
}

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

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-link:hover { color: var(--ink); }

.nav-ig {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* —— Hero (full-bleed) —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 4.5rem;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.04);
  animation: hero-drift 22s var(--ease) infinite alternate;
  filter: contrast(1.05) saturate(0.85);
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.35) 0%, rgba(8, 7, 6, 0.2) 35%, rgba(8, 7, 6, 0.92) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero-veil::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  animation: rise 1s var(--ease) both;
}

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

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.hero-line {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: rgba(244, 239, 230, 0.82);
  max-width: 28ch;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.6s var(--ease) infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* —— Unlock —— */
.unlock-section {
  padding: 3.5rem 1.5rem 2rem;
}

.listen-gate-banner {
  max-width: var(--max);
  margin: 0 auto;
}

.listen-gate-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0;
  text-align: center;
}

.listen-gate-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.listen-gate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.listen-gate-copy {
  color: var(--muted);
  max-width: 36ch;
  margin: 0 auto 1.5rem;
}

.listen-gate-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.listen-gate-input {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  font-size: 1rem;
}

.listen-gate-input:focus {
  outline: none;
  border-color: var(--gold);
}

.listen-gate-error {
  color: #e07a6a;
  min-height: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.listen-gate-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--dim);
}

#listenGate.unlocked,
#unlock.unlocked {
  display: none;
}

body:not(.album-unlocked) .album-locked-target,
body:not(.album-unlocked) .player-section {
  opacity: 0.45;
  filter: grayscale(0.35);
  pointer-events: none;
  user-select: none;
}

body.album-unlocked .album-locked-target,
body.album-unlocked .player-section {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

/* —— Album —— */
.album-section {
  padding: 4rem 1.5rem 2rem;
}

.album-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.album-cover {
  position: sticky;
  top: 5.5rem;
  animation: cover-in 1.1s var(--ease) both;
}

@keyframes cover-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.album-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.album-lede {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.tracklist-container {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.track-item:hover { color: var(--gold-bright); }
.track-item.playing { color: var(--gold); }

.track-item-left {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  min-width: 0;
}

.track-num {
  font-variant-numeric: tabular-nums;
  color: var(--dim);
  font-size: 0.8rem;
  width: 1.6rem;
  flex-shrink: 0;
}

.track-name-text {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 840px) {
  .album-layout { grid-template-columns: 1fr; }
  .album-cover { position: relative; top: 0; max-width: 320px; }
}

/* —— Player —— */
.player-section {
  padding: 1rem 1.5rem 4.5rem;
}

.player-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.player-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vinyl-disc {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--gold) 0 14%, #1a1714 15% 18%, #0c0b0a 19% 100%);
  box-shadow: inset 0 0 0 1px var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-disc.spinning { animation: spin 3.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.vinyl-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #120f0a;
}

.track-artist {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.track-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.controls-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.control-btn {
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1;
}

.control-btn:hover { color: var(--ink); }

.play-btn-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #120f0a;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.progress-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.progress-bar-container {
  height: 3px;
  background: rgba(244, 239, 230, 0.12);
  cursor: pointer;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

.visualizer-canvas-wrapper {
  grid-column: 1 / -1;
  height: 48px;
  opacity: 0.65;
}

.visualizer-canvas-wrapper canvas {
  width: 100%;
  height: 100%;
}

@media (max-width: 720px) {
  .player-shell { grid-template-columns: 1fr; }
}

/* —— Legacy —— */
.legacy-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0b09 50%, var(--bg) 100%);
}

.legacy-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.legacy-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.05) grayscale(0.15);
}

.legacy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.25rem;
  max-width: 28ch;
}

.legacy-body {
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
}

@media (max-width: 840px) {
  .legacy-layout { grid-template-columns: 1fr; }
}

/* —— Gallery —— */
.gallery-section {
  padding: 2rem 1.5rem 5rem;
}

.gallery-head {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--bg-elevated);
  padding: 0;
  text-align: left;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

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

/* —— Footer —— */
.footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
}

.footer-brand { font-size: 2rem; }
.footer-tag { color: var(--dim); font-size: 0.85rem; margin-top: 0.25rem; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  min-height: 48px;
  padding: 0 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  min-width: 220px;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--dim);
}

.footer-credit a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.footer-credit a:hover { border-bottom-color: var(--gold); }

/* —— Modal —— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 7, 6, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active { display: flex; }

.modal-content {
  position: relative;
  max-width: min(720px, 100%);
}

.modal-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: -2rem;
  right: 0;
  font-size: 1.75rem;
  color: var(--muted);
}

#modalTitle {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Toast (created by app.js) */
#toastNotification {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}

#toastNotification.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   GLOW UP — AAA Apple + Luxury Gold (2026-08-20 shipping)
   True-black refined, SF-adjacent precision, gold-leaf depth,
   quiet grain, spring ease. Keep onyx/gold, push to editorial luxury.
   ========================================================================== */

:root {
  --gold-glow: 0 8px 24px rgba(212,168,75,0.18), 0 2px 8px rgba(212,168,75,0.12);
  --gold-glow-strong: 0 12px 32px rgba(212,168,75,0.22), 0 4px 12px rgba(0,0,0,0.45);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: #050403;
}

/* Header — frosted onyx with hairline gold when scrolled */
.header.scrolled {
  background: rgba(5,4,3,0.72) !important;
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom-color: rgba(212,168,75,0.14) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
}
.brand-name {
  letter-spacing: 0.18em !important;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(212,168,75,0.12);
}
.nav-link {
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
  opacity: 0.9;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-ig {
  position: relative;
  padding: 6px 12px;
  border: 0.5px solid rgba(212,168,75,0.22);
  border-radius: 999px;
  background: rgba(212,168,75,0.06);
  transition: all 0.25s var(--ease-spring);
}
.nav-ig:hover {
  background: rgba(212,168,75,0.12);
  border-color: rgba(212,168,75,0.35);
  transform: translateY(-1px);
}

/* Hero — more cinematic depth */
.hero-veil {
  background:
    radial-gradient(ellipse 70% 45% at 50% 8%, rgba(212,168,75,0.04), transparent 60%),
    linear-gradient(180deg, rgba(5,4,3,0.18) 0%, rgba(5,4,3,0.08) 28%, rgba(5,4,3,0.45) 58%, rgba(5,4,3,0.92) 78%, #050403 100%),
    linear-gradient(90deg, rgba(5,4,3,0.55) 0%, transparent 62%) !important;
}
.hero-kicker {
  letter-spacing: 0.24em !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  color: #f0d78c !important;
  text-shadow: 0 1px 12px rgba(212,168,75,0.18);
  margin-bottom: 1.15rem !important;
}
.hero-title {
  letter-spacing: 0.01em !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 8px 24px rgba(0,0,0,0.45),
    0 2px 12px rgba(212,168,75,0.08);
  background: linear-gradient(180deg, #fffaf0 22%, #f4efe6 55%, #d4a84b 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-line {
  color: rgba(244,239,230,0.88) !important;
  font-size: clamp(1.08rem, 2.1vw, 1.32rem) !important;
  line-height: 1.45 !important;
  max-width: 30ch !important;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-cta .btn { position: relative; overflow: hidden; }
.hero-cta .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.hero-cta .btn:hover::before { opacity: 1; }

/* Buttons — gold with quiet shine, ghost with glass */
.btn-gold {
  background: linear-gradient(180deg, #e8c36a 0%, #d4a84b 52%, #b8923a 100%) !important;
  color: #1a1408 !important;
  border: 0.5px solid rgba(255,255,255,0.14) !important;
  box-shadow: var(--gold-glow), 0 1px 0 rgba(255,255,255,0.22) inset !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  transition: transform 0.22s var(--ease-spring), box-shadow 0.22s, background 0.22s !important;
}
.btn-gold:hover {
  background: linear-gradient(180deg, #f0d78c 0%, #dfb75e 100%) !important;
  transform: translateY(-1px);
  box-shadow: var(--gold-glow-strong), 0 1px 0 rgba(255,255,255,0.28) inset !important;
}
.btn-gold:active { transform: translateY(0) scale(0.99) !important; }
.btn-ghost {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(244,239,230,0.16) !important;
  color: #f4efe6 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(212,168,75,0.32) !important;
  transform: translateY(-1px);
}

/* Unlock — glass card, iOS inputs */
.listen-gate-card {
  background: rgba(18,16,14,0.72) !important;
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 0.5px solid rgba(244,239,230,0.08) !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 16px 48px rgba(0,0,0,0.45), 0 8px 16px rgba(0,0,0,0.35) !important;
}
.listen-gate-kicker { letter-spacing: 0.24em !important; font-weight: 700 !important; }
.listen-gate-title {
  letter-spacing: 0.02em !important;
  line-height: 0.98 !important;
}
.listen-gate-input {
  height: 48px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 0.5px solid rgba(244,239,230,0.10) !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.listen-gate-input::placeholder { color: rgba(244,239,230,0.35) !important; }
.listen-gate-input:focus {
  background: rgba(255,255,255,0.06) !important;
  border-color: #d4a84b !important;
  box-shadow: 0 0 0 4px rgba(212,168,75,0.14) !important;
}
.listen-gate-submit {
  height: 48px !important;
  border-radius: 10px !important;
  box-shadow: var(--gold-glow) !important;
}

/* Album — onyx frame, tracklist luxury */
.album-cover img {
  border-radius: 4px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 24px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.45),
    0 0 0 0.5px rgba(212,168,75,0.08) !important;
}
.track-item {
  border-bottom-color: rgba(244,239,230,0.06) !important;
  padding: 0.95rem 0.35rem !important;
  border-radius: 6px;
  margin: 0 -0.35rem;
  transition: background 0.22s, color 0.22s, transform 0.22s var(--ease-spring) !important;
}
.track-item:hover {
  background: rgba(244,239,230,0.04) !important;
  color: #f0d78c !important;
  transform: translateX(2px);
}
.track-item.playing {
  background: rgba(212,168,75,0.08) !important;
  color: #f0d78c !important;
  box-shadow: inset 3px 0 0 #d4a84b;
}
.track-num { color: rgba(244,239,230,0.32) !important; font-weight: 600 !important; }
.track-item.playing .track-num { color: #d4a84b !important; }
.track-name-text { font-weight: 500 !important; letter-spacing: -0.01em; }
.legacy-quote {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(212,168,75,0.55);
}
.legacy-body { line-height: 1.65 !important; letter-spacing: -0.01em; }

/* Player — frosted onyx, gold progress, breathing vinyl */
.player-shell {
  background: rgba(18,16,14,0.55) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(244,239,230,0.06) !important;
  border-radius: 14px !important;
  padding: 1.5rem 1.35rem !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 36px rgba(0,0,0,0.38) !important;
}
.vinyl-disc {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 8px 20px rgba(0,0,0,0.45),
    0 0 0 0.5px rgba(212,168,75,0.12) !important;
  background:
    radial-gradient(circle at center, #f0d78c 0 12%, #1a1714 13% 17%, #0c0b0a 18% 100%) !important;
}
.play-btn-large {
  background: linear-gradient(180deg, #f0d78c, #d4a84b) !important;
  box-shadow: var(--gold-glow), 0 1px 0 rgba(255,255,255,0.2) inset !important;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s !important;
}
.play-btn-large:hover { transform: scale(1.04); box-shadow: var(--gold-glow-strong) !important; }
.play-btn-large:active { transform: scale(0.97); }
.progress-bar-container {
  height: 4px !important;
  background: rgba(244,239,230,0.08) !important;
  border-radius: 999px !important;
  overflow: hidden;
}
.progress-bar-fill {
  background: linear-gradient(90deg, #d4a84b, #f0d78c) !important;
  box-shadow: 0 0 8px rgba(212,168,75,0.35);
}
.visualizer-canvas-wrapper { opacity: 0.75 !important; }

/* Gallery — gold hairline on hover */
.gallery-item {
  border-radius: 6px !important;
  overflow: hidden;
  position: relative;
  background: #0e0c0a !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color 0.35s, box-shadow 0.35s;
  pointer-events: none;
}
.gallery-item:hover::after {
  border-color: rgba(212,168,75,0.22);
  box-shadow: 0 0 0 1px rgba(212,168,75,0.08) inset;
}
.gallery-img { transition: transform 0.8s var(--ease-spring), filter 0.35s !important; }
.gallery-item:hover .gallery-img { transform: scale(1.06) !important; filter: contrast(1.06) !important; }

/* Footer — hairline, quiet gold */
.footer { border-top-color: rgba(244,239,230,0.06) !important; }
.newsletter-input {
  background: rgba(255,255,255,0.03) !important;
  border: 0.5px solid rgba(244,239,230,0.08) !important;
  border-radius: 10px !important;
  height: 44px !important;
  font-size: 14px !important;
}
.newsletter-input:focus {
  border-color: rgba(212,168,75,0.28) !important;
  box-shadow: 0 0 0 4px rgba(212,168,75,0.10) !important;
}
.footer-bottom { border-top-color: rgba(244,239,230,0.05) !important; }

/* Grain — softer */
.hero-veil::after { opacity: 0.05 !important; }

@media (max-width: 640px) {
  .listen-gate-card { padding: 1.75rem 1.25rem !important; }
  .player-shell { padding: 1.15rem 1rem !important; }
}

/* ——— Private Atelier — exclusive, no prices, quiet luxury ——— */
.services-section {
  padding: 5.5rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse 60% 35% at 50% 0%, rgba(212,168,75,0.04), transparent 62%),
    linear-gradient(180deg, #050403 0%, #070604 100%);
  border-top: 0.5px solid rgba(244,239,230,0.06);
  border-bottom: 0.5px solid rgba(244,239,230,0.05);
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.services-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}
.services-intro {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.service-card {
  position: relative;
  background: rgba(18,16,14,0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0.5px solid rgba(244,239,230,0.07);
  border-radius: 10px;
  padding: 1.55rem 1.4rem 1.35rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.55), transparent);
  opacity: 0.55;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,75,0.035), transparent 62%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,168,75,0.16);
  background: rgba(22,19,16,0.78);
  box-shadow: 0 12px 32px rgba(0,0,0,0.38), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.service-kicker {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.service-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  min-height: 4.8em;
  letter-spacing: -0.01em;
}
.service-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,168,75,0.85);
  border: 0.5px solid rgba(212,168,75,0.18);
  background: rgba(212,168,75,0.06);
  padding: 6px 10px;
  border-radius: 999px;
}
.services-cta {
  text-align: center;
  padding-top: 0.5rem;
}
.services-btn {
  min-height: 48px !important;
  padding: 0 1.9rem !important;
  box-shadow: var(--gold-glow), 0 1px 0 rgba(255,255,255,0.14) inset !important;
}
.services-fine {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── Agallah paywall: free 2-track preview → $9.99 full album ── */
.track-item.locked {
  opacity: 0.55;
  cursor: pointer;
}
.track-item.locked:hover {
  background: rgba(244,239,230,0.03) !important;
  opacity: 0.72;
}
.track-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.55rem;
  font-size: 0.72rem;
  opacity: 0.85;
  vertical-align: middle;
}
#agallahPaywall {
  margin-top: 1.1rem;
}
.paywall-card {
  background: rgba(18,16,14,0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0.5px solid rgba(212,168,75,0.18);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 36px rgba(0,0,0,0.38);
}
.paywall-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a84b;
  border: 0.5px solid rgba(212,168,75,0.2);
  background: rgba(212,168,75,0.08);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.paywall-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: #f4efe6;
  margin: 0 0 0.35rem;
  line-height: 1;
}
.paywall-copy {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(244,239,230,0.78);
  max-width: 44ch;
}
.paywall-copy em { color: #f0d78c; font-style: normal; font-weight: 600; }
.paywall-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.paywall-buy {
  min-height: 42px !important;
  padding: 0 1.2rem !important;
  font-weight: 700 !important;
}
.paywall-buy-eth {
  min-height: 42px !important;
  padding: 0 1.1rem !important;
  border-color: rgba(244,239,230,0.12) !important;
  color: #f4efe6 !important;
  background: rgba(244,239,230,0.06) !important;
}
.paywall-buy-eth:hover { background: rgba(244,239,230,0.1) !important; }
.paywall-fine {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: rgba(244,239,230,0.5);
}
.paywall-fine .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.72rem; }
.paywall-eth-line {
  margin-top: 0.45rem;
  font-size: 0.71rem;
  color: rgba(244,239,230,0.45);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
body.agallah-paid .track-item.locked { opacity: 1; }
body.agallah-paid .track-item.locked .track-lock { display: none; }
body.agallah-paid #agallahPaywall { display: none !important; }

@media (max-width: 640px) {
  .services-section { padding: 4rem 1.15rem 3.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-desc { min-height: 0; }
}

/* ── Track drop (uploads → label drive) ─────────────────────── */
.track-drop {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.track-drop .drop-btn {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  background: linear-gradient(160deg, rgba(212,168,75,0.16), rgba(212,168,75,0.05));
  border: 1px solid var(--gold-deep);
  border-radius: 8px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.track-drop .drop-btn:hover {
  background: linear-gradient(160deg, rgba(212,168,75,0.28), rgba(212,168,75,0.1));
  box-shadow: 0 0 18px rgba(212,168,75,0.25);
}
.track-drop .drop-btn:active { transform: scale(0.97); }
.track-drop .drop-status {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

/* —— VIP — prominent list capture (above footer, impossible to miss) —— */
.vip-section {
  padding: 5rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(212,168,75,0.07), transparent 65%),
    linear-gradient(180deg, #050403 0%, #0e0c0a 100%);
  border-top: 0.5px solid rgba(244,239,230,0.06);
}
.vip-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.vip-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: rgba(18,16,14,0.72);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 0.5px solid rgba(212,168,75,0.18);
  border-radius: 16px;
  padding: 2.75rem 2rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 16px 48px rgba(0,0,0,0.45), 0 8px 16px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.45), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.vip-eyebrow {
  margin-bottom: 0.65rem !important;
}
.vip-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.vip-title em {
  font-style: normal;
  color: var(--gold-bright);
}
.vip-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.01em;
}
.vip-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  padding: 0;
}
.vip-benefits li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,168,75,0.9);
  background: rgba(212,168,75,0.07);
  border: 0.5px solid rgba(212,168,75,0.18);
  padding: 6px 10px;
  border-radius: 999px;
}
.vip-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}
.vip-input {
  flex: 1 1 220px;
  min-height: 48px;
  height: 48px;
  padding: 0 1rem;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(244,239,230,0.10);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.vip-input::placeholder { color: rgba(244,239,230,0.35); }
.vip-input:focus {
  outline: none;
  background: rgba(255,255,255,0.06);
  border-color: #d4a84b;
  box-shadow: 0 0 0 4px rgba(212,168,75,0.14);
}
.vip-submit {
  height: 48px !important;
  border-radius: 10px !important;
  white-space: nowrap;
  box-shadow: var(--gold-glow) !important;
}
.vip-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--dim);
}
.vip-error {
  min-height: 1.1rem;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #e07a6a;
}
.vip-success {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gold-bright);
  font-weight: 600;
}
@media (max-width: 640px) {
  .vip-section { padding: 3.5rem 1.15rem 3rem; }
  .vip-card { padding: 2rem 1.25rem 1.5rem; }
}

/* ==========================================================================
   MAX PASS — vinyl teaser + AAA motion/a11y (dktm8)
   All-new selectors. Nothing above is re-declared.
   ========================================================================== */

/* —— Nav gold link —— */
.nav-link-gold {
  color: var(--gold-bright) !important;
}

/* —— Hero vinyl pill —— */
.hero-vinyl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 8px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 168, 75, 0.08);
  border: 0.5px solid rgba(212, 168, 75, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 168, 75, 0.08);
  transition: transform 0.25s var(--ease-spring), background 0.25s, border-color 0.25s;
}
.hero-vinyl-pill:hover {
  transform: translateY(-1px);
  background: rgba(212, 168, 75, 0.14);
  border-color: rgba(212, 168, 75, 0.45);
}
.hero-vinyl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(240, 215, 140, 0.9);
  animation: vinyl-pulse 2.2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes vinyl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* —— Vinyl teaser section —— */
.vinyl-section {
  padding: 5.5rem 1.5rem;
  background:
    radial-gradient(ellipse 65% 40% at 50% 100%, rgba(212, 168, 75, 0.06), transparent 65%),
    linear-gradient(180deg, #050403 0%, #0c0a08 55%, #050403 100%);
  border-top: 0.5px solid rgba(244, 239, 230, 0.06);
  overflow: hidden;
}
.vinyl-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Vinyl art: sleeve behind, record slid out, slow spin + shine sweep */
.vinyl-art {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}
.vinyl-sleeve {
  position: absolute;
  inset: 8% auto auto 0;
  width: 82%;
  aspect-ratio: 1;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 0.5px rgba(212, 168, 75, 0.14);
}
.vinyl-sleeve img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vinyl-record {
  position: absolute;
  inset: 2% 0 2% auto;
  width: 76%;
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--gold) 0 11%, #f0d78c 11.5% 12.5%, #141210 13% 16%, transparent 16.5%),
    repeating-radial-gradient(circle at center, #0d0c0b 0 2px, #171512 2px 4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 0.5px rgba(244, 239, 230, 0.1),
    0 0 44px rgba(212, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinyl-spin 14s linear infinite;
}
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
.vinyl-record::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 200deg, transparent 0deg, rgba(255, 255, 255, 0.09) 18deg, transparent 42deg, transparent 180deg, rgba(255, 255, 255, 0.05) 205deg, transparent 230deg);
  pointer-events: none;
}
.vinyl-record-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #120f0a;
  position: relative;
  z-index: 1;
}

.vinyl-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.vinyl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(240, 215, 140, 0.9);
  animation: vinyl-pulse 2.2s var(--ease) infinite;
  flex-shrink: 0;
}
.vinyl-lede {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.vinyl-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.6rem;
  padding: 0;
}
.vinyl-specs li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 168, 75, 0.9);
  background: rgba(212, 168, 75, 0.07);
  border: 0.5px solid rgba(212, 168, 75, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
}
.vinyl-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 520px;
}
.vinyl-input {
  flex: 1 1 220px;
  min-height: 48px;
  height: 48px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(244, 239, 230, 0.1);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.vinyl-input::placeholder { color: rgba(244, 239, 230, 0.35); }
.vinyl-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: #d4a84b;
  box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.14);
}
.vinyl-submit {
  height: 48px !important;
  border-radius: 10px !important;
  white-space: nowrap;
  box-shadow: var(--gold-glow) !important;
}
.vinyl-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--dim);
}
.vinyl-error {
  min-height: 1.1rem;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #e07a6a;
}
.vinyl-success {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gold-bright);
  font-weight: 600;
}

/* —— Scroll reveals (gated: no-JS shows everything) —— */
.js-reveal .album-layout,
.js-reveal .player-shell,
.js-reveal .legacy-layout,
.js-reveal .services-head,
.js-reveal .service-card,
.js-reveal .gallery-head,
.js-reveal .gallery-item,
.js-reveal .vip-card,
.js-reveal .listen-gate-card,
.js-reveal .vinyl-layout {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.js-reveal .in {
  opacity: 1 !important;
  transform: none !important;
}
/* restore card hover lift after reveal (beats .in above) */
.js-reveal .service-card.in:hover {
  transform: translateY(-2px) !important;
}

/* —— Focus visibility (keyboard AAA) —— */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .vinyl-record,
  .hero-vinyl-dot,
  .vinyl-dot,
  .hero-scroll span {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
  .js-reveal .album-layout,
  .js-reveal .player-shell,
  .js-reveal .legacy-layout,
  .js-reveal .services-head,
  .js-reveal .service-card,
  .js-reveal .gallery-head,
  .js-reveal .gallery-item,
  .js-reveal .vip-card,
  .js-reveal .listen-gate-card,
  .js-reveal .vinyl-layout {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 840px) {
  .vinyl-layout { grid-template-columns: 1fr; }
  .vinyl-art { max-width: 320px; }
  .vinyl-section { padding: 4rem 1.15rem 3.5rem; }
}
