:root {
  --ink: #05070a;
  --panel: #0d1117;
  --panel-soft: #131923;
  --gold: #d8aa63;
  --cream: #f4ead6;
  --teal: #31c4c7;
  --wine: #a52258;
  --muted: #b8b9b8;
  --line: rgba(244, 234, 214, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(49, 196, 199, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 11%, rgba(165, 34, 88, 0.16), transparent 28rem),
    linear-gradient(180deg, #040609 0%, #0a0f16 52%, #05070a 100%);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, dl, dd { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 82px; height: 58px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.7vw, 34px); color: rgba(244, 234, 214, 0.76); font-size: 13px; font-weight: 800; }
.nav a { padding: 12px 0; transition: color 160ms ease; }
.nav a:hover { color: var(--gold); }

main { overflow: hidden; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(58px, 7vw, 112px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(49, 196, 199, 0.16);
}
.hero::after {
  content: "";
  position: absolute;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 196, 199, 0.62), rgba(216, 170, 99, 0.5), transparent);
}
.hero-copy { max-width: 780px; }
.eyebrow, .section-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.025em; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(50px, 8vw, 112px); line-height: 0.94; }
h2 { margin-bottom: 0; font-size: clamp(36px, 5vw, 66px); line-height: 1; }
.hero-text { max-width: 650px; margin-bottom: 0; color: rgba(244, 234, 214, 0.78); font-size: clamp(17px, 1.55vw, 22px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 7px; font-size: 14px; font-weight: 800; transition: transform 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--teal), #6fd7cb); color: #031014; }
.button.secondary { border: 1px solid rgba(49, 196, 199, 0.4); background: rgba(13, 17, 23, 0.45); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px 32px; margin: 42px 0 0; }
.hero-stats div { display: grid; gap: 2px; padding-left: 14px; border-left: 2px solid rgba(216, 170, 99, 0.55); }
.hero-stats dt { color: var(--cream); font-size: 16px; font-weight: 800; }
.hero-stats dd { margin: 0; color: rgba(244, 234, 214, 0.58); font-size: 12px; }
.hero-mark { position: relative; display: grid; min-height: 510px; place-items: center; }
.hero-mark::before { content: ""; position: absolute; width: min(42vw, 610px); aspect-ratio: 1; border: 1px solid rgba(49, 196, 199, 0.22); border-radius: 50%; background: radial-gradient(circle, rgba(49, 196, 199, 0.12), transparent 58%), radial-gradient(circle at 70% 30%, rgba(165, 34, 88, 0.2), transparent 34%); }
.hero-mark img { position: relative; width: min(38vw, 550px); filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.55)); }

.intro-band, .metrics-section, .artists-section, .songs-section, .platform-section, .contact-section { padding: clamp(68px, 8vw, 118px) clamp(20px, 5vw, 76px); }
.intro-band { display: grid; grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr); gap: clamp(32px, 6vw, 92px); align-items: start; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(49, 196, 199, 0.08), rgba(165, 34, 88, 0.1)), #090d13; }
.prose { max-width: 760px; color: rgba(244, 234, 214, 0.76); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.8; }
.prose p:last-child { margin-bottom: 0; }
.section-heading { max-width: 900px; margin-bottom: 42px; }
.section-heading > p:last-child { max-width: 680px; margin: 20px 0 0; color: rgba(244, 234, 214, 0.65); line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr); gap: 38px; max-width: none; align-items: end; }
.split-heading > p:last-child { margin: 0; }

.metrics-section { border-bottom: 1px solid var(--line); background: rgba(5, 7, 10, 0.36); }
.metrics-heading { display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr); gap: 24px 56px; align-items: end; }
.metrics-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -4px; }
.metrics-heading > p:last-child { max-width: 580px; margin: 0; color: rgba(244, 234, 214, 0.65); line-height: 1.75; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 44px 0 0; }
.metrics-grid > div { min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(49, 196, 199, 0.1), rgba(165, 34, 88, 0.08)), var(--panel); }
.metrics-grid dt { margin-bottom: 28px; color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-size: clamp(44px, 5vw, 72px); font-weight: 700; line-height: 0.9; }
.metrics-grid dd { display: grid; gap: 8px; margin: 0; }
.metrics-grid strong { font-size: 17px; }
.metrics-grid span { color: rgba(244, 234, 214, 0.62); font-size: 13px; line-height: 1.6; }
.metrics-note { margin: 18px 0 0; color: rgba(244, 234, 214, 0.48); font-size: 12px; }

.artist-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.artist-card { position: relative; min-height: 440px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); box-shadow: var(--shadow); }
.artist-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transition: transform 420ms ease; }
.artist-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(5, 7, 10, 0.16) 48%, rgba(5, 7, 10, 0.96) 100%); }
.artist-card:hover img { transform: scale(1.035); }
.artist-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 24px; }
.artist-copy span, .song-copy span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.artist-copy h3 { margin: 8px 0 8px; font-family: "Playfair Display", Georgia, serif; font-size: 32px; line-height: 1; }
.artist-copy p { margin-bottom: 0; color: rgba(244, 234, 214, 0.73); font-size: 14px; line-height: 1.55; }

.songs-section { background: rgba(5, 7, 10, 0.34); }
.song-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.song-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: rgba(13, 17, 23, 0.84); box-shadow: var(--shadow); }
.video-shell { width: 100%; aspect-ratio: 16 / 9; background: #070a0f; }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.song-copy { padding: 20px; }
.song-copy h3 { margin: 8px 0 12px; font-size: 23px; }
.song-copy a { color: var(--teal); font-size: 13px; font-weight: 800; }
.section-action { display: flex; justify-content: flex-end; margin-top: 28px; }
.text-link { color: var(--gold); font-weight: 800; }

.platform-section { display: grid; grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr); gap: clamp(34px, 6vw, 90px); align-items: center; border-top: 1px solid var(--line); background: linear-gradient(135deg, rgba(49, 196, 199, 0.1), rgba(165, 34, 88, 0.13)), var(--panel); }
.platform-copy p:last-child { max-width: 540px; margin: 22px 0 0; color: rgba(244, 234, 214, 0.68); line-height: 1.75; }
.platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.platform-grid a { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 18px; padding: 0 22px; border: 1px solid var(--line); border-radius: 8px; background: rgba(5, 7, 10, 0.48); transition: border-color 160ms ease, transform 160ms ease; }
.platform-grid a:hover { transform: translateY(-2px); border-color: rgba(49, 196, 199, 0.48); }
.platform-grid span { font-size: 17px; font-weight: 800; }
.platform-grid strong { color: var(--gold); font-size: 12px; }

.contact-section { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr); gap: 42px; align-items: center; border-top: 1px solid var(--line); }
.contact-panel { display: grid; gap: 12px; padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: rgba(13, 17, 23, 0.72); }
.contact-panel p { margin-bottom: 0; color: rgba(244, 234, 214, 0.62); }
.contact-panel a { color: var(--gold); font-size: clamp(18px, 2vw, 29px); font-weight: 800; overflow-wrap: anywhere; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px clamp(20px, 5vw, 76px); border-top: 1px solid var(--line); color: rgba(244, 234, 214, 0.52); font-size: 13px; }
.footer img { width: 82px; height: 58px; object-fit: contain; }
.footer p { margin-bottom: 0; }
.footer a { color: rgba(244, 234, 214, 0.76); font-weight: 700; }

@media (max-width: 1180px) {
  .artist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 0; }
  .site-header { position: static; display: grid; gap: 10px; justify-items: center; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .nav a { white-space: nowrap; }
  .hero, .intro-band, .split-heading, .platform-section, .contact-section { grid-template-columns: 1fr; }
  .metrics-heading { grid-template-columns: 1fr; }
  .metrics-heading .section-kicker { grid-column: auto; }
  .metrics-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero-mark { min-height: 320px; order: -1; }
  .hero-mark img { width: min(68vw, 380px); }
  .hero-mark::before { width: min(74vw, 430px); }
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .song-grid { grid-template-columns: 1fr; }
  .split-heading > p:last-child { margin-top: 0; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(45px, 15vw, 70px); }
  .button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .artist-grid, .platform-grid { grid-template-columns: 1fr; }
  .artist-card, .artist-card img { min-height: 470px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
