:root {
  --bg: #0a0a0a;
  --bg-alt: #060606;
  --panel: #0d0d0d;
  --panel-2: #111111;
  --text: #f2f2f2;
  --muted: #bfbfbf;
  --muted-2: #555555;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --content: 1200px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 20px 20px 19px;
  background: var(--bg);
}

.hero-logo-link { display: inline-flex; }
.hero-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 1920px;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.nav {
  width: min(100%, var(--content));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 50px;
}

.nav a {
  color: #606060;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: #8c8c8c;
  outline: none;
}

main { width: 100%; }

.feature-band {
  width: 100%;
  background: var(--bg-alt);
  display: flex;
  justify-content: center;
  padding: 128px 20px;
}

.feature {
  width: min(100%, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cover-card {
  width: 451px;
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
  flex: 0 0 auto;
  transition: transform .25s ease, filter .25s ease;
}

.cover-card:hover {
  transform: scale(1.03);
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.copy {
  width: 447px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.copy h1 {
  margin: 0;
  width: min(100%, 320px);
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.copy p {
  margin: 0;
  width: min(100%, 320px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.content-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 96px 20px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 84px;
}

.content-section.alt { background: #080808; }

.section-inner {
  width: min(100%, 960px);
}

.section-inner h2 {
  margin: 0 0 20px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 700px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.info-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.music-links,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-link,
.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.platform-link:hover,
.contact-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.2);
  color: #ffffff;
}

.platform-link[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}

.footer-top {
  width: 1920px;
  min-height: 50px;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top-inner {
  width: 100%;
  min-height: 50px;
  position: relative;
  padding: 0 50px;
}

.social-left,
.copyright-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.social-left {
  left: 50px;
  gap: 26px;
}

.social-left a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .95;
  transition: transform .2s ease, opacity .2s ease;
}

.social-left a:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.social-left img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.copyright-right {
  right: 50px;
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-bottom {
  width: 100%;
  min-height: 97px;
  background: var(--bg);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.footer-bottom-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-bottom .social-left {
  position: static;
  transform: none;
  gap: 20px;
}

.footer-bottom .copyright-right {
  position: static;
  transform: none;
  width: 50%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .hero { padding: 35px 20px 30px; }
  .nav-wrap { padding: 10px 20px 10px; }
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: auto;
  }
  .feature-band { padding: 48px 20px; }
  .feature { flex-direction: column; }
  .cover-card { width: 280px; }
  .copy { width: 281px; }
  .copy h1,
  .copy p { width: 100%; }
  .content-section { padding: 64px 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-top { display: none; }
  .footer-bottom { display: flex; }
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Card container */
.music-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* Image inside card */
.music-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(1.05) contrast(1.05);
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

/* Subtle highlight overlay */
.music-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.18),
    transparent 45%
  );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Hover state */
.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  filter: brightness(1.04);
}

.music-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.1) brightness(1.05);
}

.music-card:hover::after {
  opacity: 1;
}

/* Keyboard focus */
.music-card:focus-visible {
  outline: 2px solid #f2f2f2;
  outline-offset: 4px;
}

.contacts-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 60vh;
}

.contact-row {
  display: flex;
  width:100%;
  align-items: center;
  gap: 20px;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-row:hover {
  opacity: 0.75;
  transform: translateX(3px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-handle {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* ── Artists band ───────────────────────────────────────────── */
.artists-band {
  width: 100%;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: calc(100vh - 160px); /* fill below header + nav */
}

.artists-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* ── Individual artist card ─────────────────────────────────── */
.artist-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background 0.3s ease;
}

.artist-card:last-child {
  border-right: none;
}

.artist-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ── Artist name ─────────────────────────────────────────────── */
.artist-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  flex-shrink: 0;
  text-align: right;
  max-width: 45%;
}

/* ── Artist image as background (pseudo-element) ─────────────── */
.artist-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 48px; /* align with card padding */
  transform: translateY(-50%);
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--panel);
  /* set --artist-image inline on the element, e.g. --artist-image: url('...') */
  background-image: var(--artist-image);
  background-repeat: no-repeat;
  background-size: cover;       /* preserves aspect ratio and crops */
  background-position: center top;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
  pointer-events: none; /* keep anchor clickable */
}

.artist-card:hover::before {
  transform: translateY(-50%) scale(1.03);
  filter: grayscale(0.8) contrast(1.1);
}

.artist-card:focus-visible::before {
  transform: translateY(-50%) scale(1.03);
  filter: grayscale(0.8) contrast(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 40px 24px;
    justify-content: space-between;
  }

  .artist-card:last-child {
    border-bottom: none;
  }

  .artist-name {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 50%;
  }

  /* scale down the pseudo-element on mobile to match previous 180px width */
  .artist-card::before {
    right: 24px;   /* match mobile padding */
    width: 180px;
  }
}
