/* ==========================================================================
   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); }
}
@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; }
}
