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

:root {
  --gold: #E8B416;
  --gold-dark: #C49A12;
  --gold-light: #F2CC5B;
  --black: #0A0A0A;
  --near-black: #141414;
  --dark-surface: #1A1A1A;
  --dark-card: #222222;
  --border: rgba(232,180,22,0.12);
  --cream: #F5F0E8;
  --white: #FAFAFA;
  --muted: #999999;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

a { text-decoration: none; color: inherit; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.25s ease;
}
.nav-brand:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* SECTIONS */
.section {
  padding: 110px 40px;
  max-width: 1060px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 52px;
  line-height: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg svg { width: 100%; height: 100%; }

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse at center, rgba(232,180,22,0.06) 0%, rgba(232,180,22,0.02) 35%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.3); }
}

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232,180,22,0.25);
  box-shadow: 0 0 80px rgba(232,180,22,0.1), 0 0 160px rgba(232,180,22,0.04);
  margin-bottom: 28px;
  animation: logoReveal 1.2s ease-out both;
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.85); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

.hero-name {
  font-size: clamp(42px, 9vw, 88px);
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--white);
  animation: textUp 0.9s ease-out 0.3s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 36px;
  animation: textUp 0.9s ease-out 0.5s both;
}

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

/* HERO PLAYER */
.hero-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: 60px;
  margin-bottom: 36px;
  animation: textUp 0.9s ease-out 0.65s both;
  width: 100%;
}

.player-play-btn {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.player-play-btn:hover {
  background: rgba(232,180,22,0.12);
  box-shadow: 0 0 20px rgba(232,180,22,0.15);
}
.player-play-btn:disabled { opacity: 0.4; cursor: default; }
.player-play-btn svg { width: 16px; height: 16px; fill: var(--gold); }
.player-play-btn .icon-pause { display: none; }
.player-play-btn.playing .icon-play { display: none; }
.player-play-btn.playing .icon-pause { display: block; }

.player-info { flex: 1; min-width: 0; text-align: left; }
.player-track-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

.player-bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.player-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  height: 4px;
  opacity: 0.3;
  transition: height 0.2s ease, opacity 0.2s ease;
}
.player-bars.active .player-bar {
  opacity: 1;
  animation: barPulse 0.8s ease-in-out infinite alternate;
}
.player-bars.active .player-bar:nth-child(1) { animation-delay: 0s; }
.player-bars.active .player-bar:nth-child(2) { animation-delay: 0.15s; }
.player-bars.active .player-bar:nth-child(3) { animation-delay: 0.3s; }
.player-bars.active .player-bar:nth-child(4) { animation-delay: 0.1s; }
.player-bars.active .player-bar:nth-child(5) { animation-delay: 0.25s; }

@keyframes barPulse {
  0% { height: 4px; }
  100% { height: 18px; }
}

/* HERO SOCIALS */
.hero-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  animation: textUp 0.9s ease-out 0.8s both;
}
.hero-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  position: relative;
}
.hero-socials a svg {
  width: 20px; height: 20px;
  fill: var(--cream);
  transition: fill 0.25s ease, transform 0.25s ease;
}
.hero-socials a:hover svg { fill: var(--gold); transform: scale(1.15); }
.hero-socials a[aria-label]:hover::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollPulse 2.2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator span {
  display: block; width: 3px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.scroll-indicator svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--gold); stroke-width: 2;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

.hero-embed-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* GENRE STRIP */
.genre-strip {
  overflow: hidden;
  border-top: 1px solid rgba(232,180,22,0.07);
  border-bottom: 1px solid rgba(232,180,22,0.07);
  padding: 13px 0;
  background: var(--black);
}
.genre-strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: stripScroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.genre-strip-track span { padding: 0 20px; }
.genre-strip-track span.sep { color: rgba(232,180,22,0.35); padding: 0 4px; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* LISTEN */
.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.listen-item { position: relative; }
.listen-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.listen-grid iframe {
  border-radius: 8px;
  width: 100%; height: 152px;
  border: none;
  display: block;
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}
.spotify-btn:hover { background: var(--gold); color: var(--black); }

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-tile {
  background: var(--dark-card);
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── TERMS ─── */
#terms { background: var(--dark-surface); }
.terms-block { max-width: 680px; }
.terms-block p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--cream);
}
.terms-block p strong { color: var(--white); font-weight: 500; }
.terms-copy {
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ─── CTA ─── */
.cta-section {
  border-top: 1px solid rgba(232,180,22,0.07);
  border-bottom: 1px solid rgba(232,180,22,0.07);
  background: var(--black);
}
.cta-section .section { text-align: center; padding: 88px 24px; }
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-heading { font-size: clamp(36px, 6vw, 64px); margin-bottom: 32px; }
.cta-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.cta-link:hover { color: var(--gold); }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-direct:hover { color: var(--gold); border-color: var(--gold); }
.contact-direct svg { width: 14px; height: 14px; fill: currentColor; }

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-field { position: relative; margin-bottom: 20px; }

.form-field label {
  position: absolute;
  top: 15px; left: 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  background: var(--dark-card);
  padding: 0 4px;
  letter-spacing: 0.04em;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -9px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  background: var(--dark-card);
  border: 1px solid rgba(232,180,22,0.1);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s ease;
  caret-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: transparent; }

.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea { min-height: 130px; resize: vertical; }

.form-select-field { position: relative; margin-bottom: 20px; }

.form-select-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cream);
  background: var(--dark-card);
  border: 1px solid rgba(232,180,22,0.1);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--dark-card); }

.form-select-arrow {
  position: absolute;
  right: 14px; bottom: 13px;
  pointer-events: none;
  width: 14px; height: 14px;
  fill: var(--muted);
}

.form-status {
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 8px;
  min-height: 20px;
  letter-spacing: 0.04em;
  display: none;
}
.form-status.success { color: #6fcf7e; display: block; }
.form-status.error   { color: #e87070; display: block; }

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 13px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, box-shadow 0.25s ease, opacity 0.2s;
}
.submit-btn:hover { background: var(--gold-light); box-shadow: 0 0 24px rgba(232,180,22,0.2); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
}
.footer-socials a svg { width: 16px; height: 16px; fill: var(--muted); transition: fill 0.2s ease; }
.footer-socials a:hover svg { fill: var(--gold); }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-align: center; }

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid rgba(232,180,22,0.2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  z-index: 998;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { border-color: var(--gold); }
.scroll-top svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .listen-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav-brand { font-size: 12px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.08em; }
  .hero-logo { width: 120px; height: 120px; }
  .hero-player { padding: 10px 14px; gap: 10px; max-width: 100%; }
  .player-play-btn { width: 38px; height: 38px; min-width: 38px; }
  .cta-section .section { padding: 64px 20px; }
  .footer { padding: 40px 20px 32px; }
}

@media (max-width: 400px) {
  .nav-brand { display: none; }
  .nav { justify-content: center; }
  .nav-links { gap: 18px; }
}