@font-face {
  font-family: 'Outfit';
  src: url('fonts/outfit.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #0a0a0a;
  --dark: #111;
  --mid: #1a1a1a;
  --border: #2a2a2a;
  --muted: #666;
  --text: #ccc;
  --white: #f0f0f0;
  --accent: #e8e8e8;
  --font: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-social {
  color: var(--muted);
  transition: color 0.2s;
  line-height: 0;
}

.header-social:hover { color: var(--white); }

.header-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-header a { display: inline-block; }

.site-logo {
  height: 72px;
  width: auto;
}

/* ── Hero panel ── */
.hero-panel {
  background: var(--mid);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-panel h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.hero-panel p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Artists section ── */
.artists-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.artist-card {
  background: var(--black);
  display: block;
  position: relative;
}

.artist-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.artist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(20%);
}

.artist-card:hover .artist-card__img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.artist-card__info {
  padding: 1rem 0 0.5rem;
}

.artist-card__name {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.artist-card__genre {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.artist-card__excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ── Socials / Footer ── */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-social:hover { color: var(--white); }

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════
   ARTIST PAGE
══════════════════════════════ */

.artist-banner {
  width: 100%;
  height: clamp(360px, 55vw, 640px);
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(20%);
}

.artist-banner--top {
  object-position: top;
}

.artist-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 760px) {
  .artist-page-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.artist-info__name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.artist-info__origin {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.artist-info__excerpt {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 540px;
}

.artist-info__bio p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.artist-info__bio p:last-child {
  margin-bottom: 0;
}

.artist-info__members-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.artist-info__members {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}

/* Sidebar */
.artist-sidebar {}

.sidebar-block {
  margin-bottom: 2.5rem;
}

.sidebar-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.stream-links, .follow-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stream-link, .follow-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.stream-link:hover, .follow-link:hover {
  background: var(--border);
  border-color: #444;
  color: var(--white);
}

.stream-link svg, .follow-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.5rem 2rem 0;
  transition: color 0.2s;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

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

@media (max-width: 600px) {
  .artist-grid { grid-template-columns: 1fr 1fr; }
  .hero-panel { padding: 3rem 1.5rem; }
}
