:root {
  --bg: #090909;
  --bg-soft: #121212;
  --bg-card: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f2eb;
  --muted: #b7b0a5;
  --accent: #d8b36a;
  --accent-hover: #e6c27c;
  --max-width: 1180px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85)),
    linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)),
    url("images/james-home-photo.jpg") center 20% / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 55%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(216, 179, 106, 0.15), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.6), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 14px;
  max-width: 720px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 34px;
}

.hero-buttons,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #101010;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  padding: 110px 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-black {
  background: var(--bg);
}

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

.section-heading h2,
.release-copy h2,
.signup-copy h2,
.about-copy h2,
.contact-copy h2,
.social-inner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-heading p,
.release-copy p,
.signup-copy p,
.about-copy p,
.contact-copy p,
.release-info p {
  color: var(--muted);
}

.release-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.release-artwork img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.release-info {
  padding: 22px;
}

.release-title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.release-subtitle {
  color: var(--muted);
}

.track-list {
  display: grid;
  gap: 22px;
}

.track {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.track-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.track-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.track-tag {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

audio {
  width: 100%;
}

.stream-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.stream-links a {
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.stream-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.signup-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
}

.signup-form input::placeholder {
  color: #9f978b;
}

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.contact-grid {
  align-items: start;
}

.form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: -4px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  padding: 14px 16px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.full-width {
  width: 100%;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  transition: 0.2s ease;
}

.download-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.social-inner {
  text-align: center;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 980px) {
  .release-grid,
  .about-grid,
  .contact-grid,
  .signup-box {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 110px 0 70px;
  }

  section {
    padding: 80px 0;
  }

  .track-top,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons,
  .release-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .download-btn {
    width: 100%;
  }
}