﻿:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --ink: #f8f8f4;
  --muted: #b9b5ad;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c8a969;
  --panel: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.artist-tabs button,
.language-switch button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding: 12px 14px;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.artist-tabs button:hover,
.artist-tabs button.is-active,
.language-switch button:hover,
.language-switch button.is-active {
  border-color: var(--gold);
  background: rgba(200, 169, 105, 0.1);
  color: var(--ink);
}

.language-switch {
  display: flex;
  gap: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.language-switch button {
  min-width: 46px;
  padding: 10px 11px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.page {
  display: none;
  min-height: calc(100vh - 92px);
  padding: clamp(34px, 5vw, 72px);
}

.page.is-active {
  display: block;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  min-height: 520px;
  padding-bottom: clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow,
.artist-style,
.news-grid span,
.info-list span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  line-height: 1;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.contact-links a,
.platform-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.contact-links a:hover,
.platform-links a:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
}

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

.button-primary:hover {
  color: #080806;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.035);
}

.hero-logo {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #000;
}

.hero-logo img {
  width: min(100%, 520px);
}

.hero-logo span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-panel,
.distribution-panel,
.page-heading,
.split-page,
.contact-layout {
  padding-top: clamp(38px, 6vw, 76px);
}

.section-heading,
.page-heading {
  max-width: 850px;
}

.news-grid,
.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.distribution-panel {
  border-top: 1px solid var(--line);
}

.platform-compact {
  margin-top: 22px;
}

.platform-compact summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--gold);
  padding: 0 16px;
  background: rgba(200, 169, 105, 0.1);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-compact summary::marker {
  color: var(--gold);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.platform-grid span {
  min-height: 34px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.news-grid article,
.info-list article,
.contact-form,
.artist-page {
  border: 1px solid var(--line);
  background: var(--panel);
}

.news-grid article,
.info-list article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
}

.news-release {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.news-release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.news-release p {
  margin-top: 0;
}

.news-release .button {
  margin-top: 14px;
}

.news-album-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.news-album-strip a {
  min-width: 0;
  color: var(--ink);
}

.news-album-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(88, 180, 213, 0.72);
}

.news-album-strip span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.artist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.artist-directory {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.artist-directory a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.artist-directory a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.artist-pages {
  display: grid;
}

.artist-page {
  display: none;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(22px, 4vw, 42px);
}

.artist-page.is-active {
  display: grid;
}

.artist-copy {
  align-self: start;
}

.artist-copy h3 span {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.42em;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  vertical-align: middle;
}

.artist-detail-page {
  display: block;
}

.artist-detail-main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 70px;
}

.artist-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.52fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  min-height: 520px;
}

.artist-detail-hero h1 {
  margin-top: 10px;
}

.artist-detail-cover {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.32);
}

.artist-detail-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.artist-release-section {
  margin-top: 54px;
}

.artist-release-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.artist-release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.artist-release-grid .cover-release {
  display: grid;
}

.back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.back-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.artist-detail-footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.cover-releases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-cover {
  grid-template-columns: minmax(0, 0.5fr);
}

.cover-release {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
}

.cover-release.is-album {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
  align-items: stretch;
  border: 2px solid rgba(88, 180, 213, 0.88);
  background: linear-gradient(135deg, rgba(88, 180, 213, 0.2), rgba(0, 0, 0, 0.42) 58%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(88, 180, 213, 0.2);
}

.cover-release.is-album::before {
  content: "ALBUM";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(88, 180, 213, 0.9);
  padding: 0 11px;
  background: rgba(3, 19, 27, 0.86);
  color: #9fe8ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.cover-release:not(.is-album)::before {
  content: "SINGLE";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 169, 105, 0.8);
  padding: 0 9px;
  background: rgba(18, 14, 8, 0.82);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cover-release.is-upcoming {
  border-color: rgba(143, 184, 255, 0.55);
}

.cover-release.is-upcoming::before {
  content: "PRE-SAVE";
  background: #8fb8ff;
  color: #08101d;
}

.cover-release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cover-release.is-album img {
  height: 100%;
}

.cover-release div {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 14px;
}

.cover-release.is-album div {
  padding: clamp(18px, 3vw, 28px);
}

.cover-release strong {
  color: var(--ink);
}

.cover-release.is-album strong {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.cover-release span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-type {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 9px;
}

.release-type-single {
  color: var(--gold);
}

.release-type-album {
  color: #58b4d5;
}

.release-type-upcoming {
  color: #8fb8ff;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}

.platform-links a {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.61rem;
}

.track-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.track-list em {
  color: var(--gold);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  border: 1px solid var(--line);
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.company-card p {
  margin: 0;
}

.company-card strong {
  color: var(--ink);
}

.split-page,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 72px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

select option {
  color: #111;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero,
  .artist-page,
  .artist-detail-hero,
  .split-page,
  .contact-layout,
  .news-grid,
  .info-list,
  .artist-release-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .single-cover {
    grid-template-columns: 1fr;
  }

  .news-release {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .page {
    min-height: calc(100vh - 76px);
    padding: 26px 18px;
  }

  .artist-detail-main {
    width: min(100% - 28px, 1160px);
    padding-top: 96px;
  }

  .news-release {
    grid-template-columns: 1fr;
  }

  .news-release img {
    max-width: 220px;
  }

  .news-album-strip {
    grid-template-columns: 1fr;
  }

  .cover-releases {
    grid-template-columns: 1fr;
  }

  .cover-release.is-album {
    grid-template-columns: 1fr;
  }

  .cover-release.is-album img {
    height: auto;
  }

  .hero-actions,
  .contact-links,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
