:root {
  --bg: #050505;
  --surface: #101010;
  --text: #eee9df;
  --text-soft: #9d9890;
  --text-muted: #6f6a63;
  --accent: #d6b35a;
  --accent-bright: #e4c46e;
  --line: rgba(238, 233, 223, 0.12);
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.46);
  --shadow-gold: 0 18px 48px rgba(214, 179, 90, 0.1);
  --radius-lg: 22px;
  --radius-md: 14px;
  --max-width: 1180px;
}

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

::selection {
  background: var(--accent);
  color: var(--bg);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 179, 90, 0.1), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

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

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  color: var(--text-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

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

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

.btn-secondary {
  background: rgba(238, 233, 223, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(214, 179, 90, 0.52);
  color: var(--accent);
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero p {
  max-width: 54ch;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 68% 48%, rgba(214, 179, 90, 0.12), transparent 16rem);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.92);
}

/* Sections */

.section {
  padding: 2rem 0 4rem;
}

#sound,
#tracks,
#identity {
  scroll-margin-top: 110px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section h2,
.sound-panel h2,
.identity-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 58ch;
  color: var(--text-soft);
}

/* Sound */

.sound-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: end;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 14% 0%, rgba(214, 179, 90, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(238, 233, 223, 0.035), rgba(238, 233, 223, 0.015)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sound-panel p {
  margin: 0;
  color: var(--text-soft);
}

/* Tracks */

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.track-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.track-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 90, 0.42);
  box-shadow: var(--shadow-gold);
}

.track-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.track-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.12) brightness(0.92);
}

.track-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 15% 10%, rgba(214, 179, 90, 0.12), transparent 14rem);
}

.track-number {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.track-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.track-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* Identity */

.identity-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.identity-copy,
.identity-mark,
.listen-box,
.legal-panel {
  background:
    linear-gradient(180deg, rgba(238, 233, 223, 0.035), rgba(238, 233, 223, 0.015)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.identity-copy,
.legal-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.identity-copy p {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.identity-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.identity-mark b {
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 700;
}

/* Listen */

.listen-section {
  padding: 0 0 5rem;
}

.listen-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.listen-box h3 {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.listen-box p {
  margin: 0;
  color: var(--text-soft);
}

/* Legal Pages */

.legal-section {
  padding-top: 5rem;
}

.legal-panel {
  max-width: 860px;
}

.legal-panel h1 {
  margin: 0 0 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.legal-panel h2 {
  margin: 2rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.legal-panel p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.legal-panel a {
  color: var(--accent);
  word-break: break-word;
}

.legal-note {
  margin-top: 2rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

/* Tablet */

@media (max-width: 960px) {
  .hero-grid,
  .section-head,
  .sound-panel,
  .track-grid,
  .identity-grid,
  .listen-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image-card {
    max-width: 720px;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-actions,
  .hero-actions .btn,
  .listen-box .btn {
    width: 100%;
  }

  .identity-mark {
    min-height: 200px;
    flex-direction: column;
    letter-spacing: 0.18em;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .brand-tag {
    font-size: 0.7rem;
  }

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

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}