/* Shared colors and base values for the full page. */
:root {
  --bg: #090b10;
  --bg-soft: #111722;
  --gold: #d9b56d;
  --copper: #a8613d;
  --text: #f4efe5;
  --muted: #b8ad9e;
  --line: rgba(255, 255, 255, 0.12);
}

/* Keeps padding from unexpectedly increasing element sizes. */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

/* The fixed header stays visible while scrolling. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(9, 11, 16, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

/* The section class keeps major page spacing consistent. */
.section {
  padding: 96px 6vw;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.98) 0%, rgba(9, 11, 16, 0.72) 48%, rgba(9, 11, 16, 0.34) 100%),
    url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

/* Adds a cinematic glow over the background image. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(217, 181, 109, 0.25), transparent 28%),
    linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding-top: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero-description {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button,
.play-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #15100a;
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.about,
.contact {
  background: var(--bg);
}

.portfolio {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.section-heading {
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}

.about-grid p,
.bio-copy p {
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div,
.track-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stats div {
  padding: 22px;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.track-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(9, 11, 16, 0.88)),
    linear-gradient(135deg, rgba(217, 181, 109, 0.22), rgba(168, 97, 61, 0.08));
}

.track-type {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.track-card p {
  color: var(--muted);
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.play-button {
  width: fit-content;
  margin-top: 16px;
  background: transparent;
  color: var(--text);
}

.play-button:hover,
.play-button.active {
  background: var(--copper);
  border-color: var(--copper);
}

.now-playing {
  min-height: 28px;
  margin-top: 24px;
  color: var(--gold);
}

.contact-panel {
  max-width: 760px;
  padding: 28px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-method {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-method span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.email-link {
  display: inline-block;
  margin-top: 8px;
  margin-right: 18px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .track-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Stacks layout columns on narrow screens for comfortable reading. */
@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .section {
    padding: 84px 22px;
  }

  .hero {
    min-height: 88vh;
  }

  .about-grid,
  .track-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}
