/* ==========================================================================
   Muzik Over Matter — Label site
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --gray-900: #0a0a0a;
  --gray-800: #141414;
  --gray-700: #1f1f1f;
  --gray-500: #555555;
  --gray-400: #888888;
  --gray-300: #b5b5b5;
  --gray-200: #e5e5e5;
  --accent: #d4a24c;
  --border: rgba(255, 255, 255, 0.1);
  --font-display: "Helvetica Neue", "Arial", sans-serif;
  --font-body: "Helvetica Neue", "Arial", sans-serif;
  --max-w: 1440px;
  --gutter: clamp(20px, 4vw, 60px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.display {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.h-xl { font-size: clamp(36px, 6vw, 84px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(28px, 4vw, 56px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; }
.h-md { font-size: clamp(20px, 2.4vw, 32px); font-weight: 700; }
.h-sm { font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }

p.lead { font-size: clamp(17px, 1.4vw, 22px); color: var(--gray-300); line-height: 1.55; max-width: 65ch; }
p { color: var(--gray-300); }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(60px, 10vw, 140px) 0; }
.tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand .dot { color: var(--accent); }

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -24px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--gutter) 80px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 60%, #000 100%),
    url('../images/hero/hero.jpg') center/cover no-repeat,
    #000;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 162, 76, 0.15), transparent 55%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-meta p { max-width: 520px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover { background: var(--white); color: var(--black); }

.btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

.btn-ghost { border-color: var(--border); color: var(--gray-300); }
.btn-ghost:hover { border-color: var(--white); background: transparent; color: var(--white); }

.btn .arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Section headers ---------- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.section-head .num {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.2em;
}

/* ---------- Artists grid ---------- */

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.artist-card {
  position: relative;
  background: var(--gray-900);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}

.artist-card .art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  transition: transform 0.6s ease;
  filter: grayscale(0.15) contrast(1.05);
}

.artist-card:hover .art { transform: scale(1.04); filter: grayscale(0) contrast(1.1); }

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.artist-card .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  z-index: 2;
}

.artist-card .info h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.artist-card .info span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 6px;
}

/* ---------- Releases ---------- */

.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.release {
  display: block;
  transition: transform 0.3s;
}

.release:hover { transform: translateY(-4px); }

.release .cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.release:hover .cover { transform: scale(1.02); }

.release .cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 162, 76, 0.15), transparent 60%);
}

.release .cover span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.03em;
}

.release .title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.release .artist {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}

.release .date {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.split .visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--gray-800), var(--black));
  position: relative;
  overflow: hidden;
}

.split .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 162, 76, 0.12), transparent 60%);
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  background: var(--black);
  padding: 40px 28px;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.stat .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ---------- Marquee ---------- */

.marquee {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-900);
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.marquee-item .mark { color: var(--accent); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA Band ---------- */

.cta-band {
  background: var(--white);
  color: var(--black);
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 900px;
  margin: 0 auto 32px;
}

.cta-band .btn {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.cta-band .btn:hover { background: var(--black); color: var(--white); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: var(--gray-300);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--white); }

.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 14px; max-width: 320px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

.socials { display: flex; gap: 20px; }
.socials a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.socials a:hover { color: var(--white); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 180px var(--gutter) 80px;
  background:
    radial-gradient(ellipse at top, rgba(212, 162, 76, 0.1), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
}

.page-hero .container { max-width: var(--max-w); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p.lead { color: var(--gray-300); }

/* ---------- About ---------- */

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.founder {
  background: var(--black);
  padding: 40px 32px;
}

.founder .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.founder h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.founder p { font-size: 14px; color: var(--gray-400); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info .value {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  display: block;
}

form .field {
  margin-bottom: 24px;
}

form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus,
form select:focus { border-color: var(--white); }

form textarea { min-height: 120px; resize: vertical; }

/* ---------- Artist Bio Page ---------- */

.bio-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 180px var(--gutter) 60px;
  overflow: hidden;
  background: var(--black);
}

.bio-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(0.25) contrast(1.05);
  z-index: 0;
}

.bio-hero .bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 80%, #000 100%),
    linear-gradient(90deg, rgba(0,0,0,0.6), transparent 60%);
  z-index: 1;
}

.bio-hero .content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.bio-hero h1 {
  font-size: clamp(54px, 10vw, 160px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 16px;
}

.bio-hero .genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bio-hero .tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.bio-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 100px;
}

.bio-sidebar .meta-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.bio-sidebar .meta-row:first-child { border-top: 1px solid var(--border); }

.bio-sidebar .meta-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.bio-sidebar .meta-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.bio-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
}

.bio-content h2:first-child { margin-top: 0; }

.bio-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.bio-content .pull {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
  letter-spacing: -0.01em;
}

.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bio-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.bio-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color 0.2s;
}

.bio-nav a:hover { color: var(--white); }

@media (max-width: 900px) {
  .bio-body { grid-template-columns: 1fr; gap: 48px; }
  .bio-sidebar { position: static; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 16px 0; display: block; border-bottom: 1px solid var(--border); }
  .nav-menu a.active::after { display: none; }
  .nav-toggle { display: block; }

  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
}
