:root {
  --bg: #0E0C10;
  --bg-alt: #150F12;
  --bg-card: #150F11;
  --wine: #5C1A2B;
  --wine-light: #7a2338;
  --gold: #EDE6DC;
  --gold-soft: #F5F0E8;
  --text: #DCD3C6;
  --text-muted: #9C9086;
  --border: rgba(237,230,220,0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(14,12,16,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 20px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.logo {
  grid-column: 1;
  justify-self: start;
  display: block;
}
.logo-icon {
  display: block;
  height: 54px;
  width: auto;
}
nav.main-nav { grid-column: 2; justify-self: center; }
nav.main-nav ul { display: flex; gap: 28px; }
nav.main-nav a {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color .2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold); }
.nav-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 760px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; padding: 20px 24px; gap: 18px; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: radial-gradient(ellipse at 50% 30%, rgba(92,26,43,0.35), transparent 60%), var(--bg);
}
.hero.hero-sm { min-height: 42vh; }
.hero .kicker {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 300;
  font-size: clamp(44px, 9vw, 92px);
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0,0,0,0.45), 0 16px 30px rgba(92,26,43,0.4);
}
.hero.hero-sm h1 { font-size: clamp(34px, 6vw, 54px); }
.hero p.tagline {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--wine);
  color: var(--gold-soft);
  border: none;
  box-shadow: 0 12px 28px -10px rgba(92,26,43,0.7), 0 2px 10px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary:hover {
  background: var(--wine-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(92,26,43,0.8), 0 4px 14px rgba(0,0,0,0.4);
}
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-book {
  background: linear-gradient(180deg, #201A1D, var(--bg-card));
  color: var(--gold-soft);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(237,230,220,0.05), 0 10px 26px -8px rgba(0,0,0,0.7), 0 0 24px -4px rgba(245,240,232,0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn-book:hover {
  transform: translateY(-2px);
  border-color: rgba(237,230,220,0.22);
  box-shadow: 0 0 0 1px rgba(237,230,220,0.08), 0 12px 30px -8px rgba(0,0,0,0.75), 0 0 32px -4px rgba(245,240,232,0.28);
}

/* Sections */
section { padding: 90px 0; }
section.alt { background: var(--bg-alt); }
h2.section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 12px;
}
p.section-sub { color: var(--text-muted); max-width: 560px; margin-bottom: 48px; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.card {
  background: radial-gradient(ellipse at 20% -10%, rgba(92,26,43,0.35), transparent 65%), var(--bg-card);
  border: none;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.55), 0 3px 12px rgba(92,26,43,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px -16px rgba(0,0,0,0.65), 0 6px 18px rgba(92,26,43,0.4);
}
.card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.card .price { color: var(--gold-soft); font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; display: block; }
.card .service-note { color: var(--text-muted); font-size: 12px; margin-top: 10px; }

/* Track list */
.track-list { display: flex; flex-direction: column; gap: 14px; }
.track-list iframe { border-radius: 6px; border: 1px solid var(--border); width: 100%; }

/* License cards */
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 16px; margin-top: 20px; }
.license-card {
  background: radial-gradient(ellipse at 20% -10%, rgba(92,26,43,0.35), transparent 65%), var(--bg-card);
  border: none;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.55), 0 3px 12px rgba(92,26,43,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px -16px rgba(0,0,0,0.65), 0 6px 18px rgba(92,26,43,0.4);
}
.license-card.featured {
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.55), 0 4px 16px rgba(237,230,220,0.18);
}
.license-card.featured:hover {
  box-shadow: 0 22px 46px -16px rgba(0,0,0,0.65), 0 8px 22px rgba(237,230,220,0.25);
}
.license-card h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.license-card .price {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  font-size: 28px;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.license-card ul { text-align: left; margin-bottom: 20px; flex: 1; }
.license-card li {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.license-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.license-card .btn { width: 100%; text-align: center; }
.license-card .bulk { font-size: 11px; color: var(--text-muted); margin-top: 14px; }
.license-card .bulk strong { display: block; font-size: 12.5px; color: var(--gold); margin-top: 4px; font-weight: 500; }
.license-card .service-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; }

/* About */
.about-content { max-width: 680px; }
.about-content p { margin-bottom: 20px; color: var(--text); font-size: 16px; }
.about-portrait {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.55), 0 3px 12px rgba(92,26,43,0.3);
  margin: -20px auto 52px;
}

/* Contact */
.contact-box { max-width: 480px; margin: 0 auto; text-align: center; }
.contact-email {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  font-size: clamp(22px, 4vw, 28px);
  color: var(--gold);
  display: inline-block;
  margin: 20px 0;
  word-break: break-word;
}

.placeholder-note { color: var(--text-muted); font-size: 13px; font-style: italic; margin-top: 20px; }

/* Playlist tabs */
.playlist-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.playlist-tab {
  background: radial-gradient(ellipse at 20% -10%, rgba(92,26,43,0.35), transparent 65%), var(--bg-card);
  border: none;
  border-radius: 10px;
  padding: 18px 26px;
  color: var(--text);
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.55), 0 3px 12px rgba(92,26,43,0.3);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.playlist-tab:hover { transform: translateY(-4px); }
.playlist-tab.active {
  background: var(--wine);
  color: var(--gold-soft);
  box-shadow: 0 18px 40px -14px rgba(92,26,43,0.7), 0 4px 14px rgba(0,0,0,0.4);
}

.playlist-frame {
  display: none;
  max-width: 1250px;
  margin: 0 auto;
  border: none;
}
.playlist-frame.active { display: block; }

/* Player loading state */
.player-wrap { position: relative; }
.player-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg);
  border-radius: 6px;
  z-index: 1;
}
.player-loading p { color: var(--text-muted); font-size: 13px; letter-spacing: 0.3px; margin: 0; }
.loading-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
footer.site-footer { border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; }
footer.site-footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
footer.site-footer a { color: var(--gold); }

/* Legal doc pages */
.back-link { display: inline-block; margin-bottom: 28px; font-size: 13px; color: var(--text-muted); }
.back-link:hover { color: var(--gold); }
.legal-doc { max-width: 720px; margin: 0 auto; }
.legal-doc .doc-price { color: var(--gold-soft); font-family: var(--font-display); font-variation-settings: 'opsz' 10, 'wght' 420; font-size: 22px; margin-bottom: 28px; }
.legal-doc .callout {
  background: radial-gradient(ellipse at 20% -10%, rgba(92,26,43,0.35), transparent 65%), var(--bg-card);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 44px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.legal-doc .callout strong { color: var(--gold); }
.legal-doc h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 10, 'wght' 420;
  color: var(--gold);
  font-size: 18px;
  margin: 36px 0 12px;
}
.legal-doc p { color: var(--text); font-size: 14.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 16px 22px; }
.legal-doc ul { list-style: disc; }
.legal-doc ol { list-style: lower-alpha; }
.legal-doc li { color: var(--text); font-size: 14.5px; line-height: 1.75; margin-bottom: 10px; }
.legal-doc .doc-footer-note { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 13px; }
.legal-doc .doc-footer-note a { color: var(--gold); }
