:root {
  --bg: #0e0e10;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e94f8a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

header h1 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}

header .tagline {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin: 0 0 2.5rem;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

p {
  color: var(--fg);
  margin: 0 0 1rem;
}

.accent-link {
  color: var(--accent);
}

.artists {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.artists a {
  display: block;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid #26262b;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.artists a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.artists .photo {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.artists .body {
  padding: 1.25rem 1.5rem;
}

.artists .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.artists .name {
  font-size: 1.25rem;
  font-weight: 600;
}

.artists .url {
  color: var(--muted);
  font-size: 0.9rem;
}

.artists .desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid #1c1c20;
}
