:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0d0f14;
  --bg-elev: #141820;
  --text: #f5f2ec;
  --muted: #c2bdb3;
  --accent: #d9b464;
  --accent-strong: #f2d58c;
  --border: rgba(255, 255, 255, 0.1);
  --max-width: 1120px;
  --radius: 16px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #0b0b0b;
  line-height: 1.7;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.cta-link {
  border: 1px solid var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.cta-link:hover {
  background: var(--accent);
  color: #0b0b0b;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
  margin-top: 88px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  margin: 12px 0 16px;
  line-height: 1.05;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 32px;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  gap: 10px;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b0b0b;
  box-shadow: 0 12px 24px rgba(217, 180, 100, 0.2);
}

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

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent);
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-card {
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img {
  width: 70%;
  border-radius: 12px;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  gap: 12px;
}

.stat {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.stat strong {
  font-size: 15px;
  font-weight: 600;
}

.section {
  margin-top: 96px;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  margin: 12px 0 12px;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.pill-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}

.card-grid,
.release-grid,
.press-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

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

.card-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  color: inherit;
}

.artist-card {
  background: var(--bg-elev);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.artist-card:hover,
.artist-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}

.artist-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.portrait-focus {
  object-position: center 20%;
}

.artist-card div {
  padding: 20px;
}

.artist-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.artist-card p {
  margin: 0;
  color: var(--muted);
}

.release-grid,
.press-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-card,
.press-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.release-card:hover,
.release-card:focus-within,
.press-card:hover,
.press-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.release-card h3,
.press-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.release-card p,
.press-card p {
  margin: 0;
  color: var(--muted);
}

.release-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0b0b0b;
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  transition: color 0.2s ease;
}

.card-link:hover .text-link,
.card-link:focus-visible .text-link {
  color: var(--accent-strong);
}

.contact {
  margin-bottom: 80px;
}

.contact-card {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-link {
  color: var(--accent-strong);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .card-grid,
  .release-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 24px 18px 48px;
  }

  .hero {
    margin-top: 40px;
  }
}
