:root {
  --bg: #050914;
  --surface: #0b1120;
  --surface-soft: #0f172a;
  --border: rgba(148, 163, 184, .22);
  --text: #f3f4f6;
  --muted: #a9b0bd;
  --accent: #e78200;
  --accent-bright: #ff9e2f;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(231, 130, 0, .12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 9, 20, .9);
  backdrop-filter: blur(12px);
}
.topbar-inner,
.footer-inner {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-inner { min-height: 62px; }
.brand { color: var(--text); font-weight: 900; letter-spacing: .01em; }
.brand:hover { text-decoration: none; }
.label-link { color: var(--muted); font-size: .86rem; }

.page {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 46px;
  display: grid;
  gap: 16px;
}
.hero,
.card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 17, 32, .97), rgba(2, 6, 23, .93));
  box-shadow: var(--shadow);
}
.hero > img { width: 100%; max-height: 680px; object-fit: cover; object-position: center 28%; }
.hero-inner { padding: 22px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-bright);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(2rem, 7vw, 4.5rem); line-height: .98; }
h2 { margin: 0 0 14px; font-size: 1.2rem; }
.artist-meta { margin: 12px 0 0; color: var(--muted); }
.artist-meta span { margin: 0 7px; }
.hero-quote { margin: 18px 0 0; font-size: 1.08rem; font-weight: 700; }
.card { padding: 22px; }
.bio { max-width: 78ch; color: var(--muted); line-height: 1.7; }
.section-heading { margin-top: 24px; }
.highlights { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.7; }
.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}
.fact {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 42, .55);
}
.fact span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.fact strong,
.fact a { font-weight: 800; }
.music-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.music-grid iframe { border: 0; border-radius: 12px; }
.gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; }
.contact-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.contact-card h2 { margin-bottom: 0; font-size: clamp(1.35rem, 4vw, 2rem); }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 850;
}
.button:hover { background: var(--accent-bright); text-decoration: none; }
.footer { border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; }
.footer-inner { min-height: 70px; flex-wrap: wrap; padding: 14px 0; }

@media (min-width: 720px) {
  .page { padding-top: 34px; }
  .hero-inner,
  .card { padding: 28px; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .music-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-card { flex-direction: row; align-items: center; justify-content: space-between; padding: 30px; }
}
