@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #0b0a0f;
  --pink: #f3a6c7;
  --text: #f4f0f2;
  --muted: #aaa3aa;
  --line: #2b2730;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Mono", monospace;
}
a { color: inherit; text-decoration: none; }

.topbar {
  height: 78px;
  background: var(--pink);
  color: #111016;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.brand { font-size: 20px; }
.edition { opacity: .7; }

main { max-width: 1180px; margin: auto; padding: 0 7vw; }

.hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  color: var(--pink);
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 18px;
}
h1, h2 {
  font-family: "Archivo Black", sans-serif;
  margin: 0;
  letter-spacing: -.045em;
  line-height: .95;
}
h1 { font-size: clamp(52px, 8vw, 108px); }
h1 span { color: var(--pink); }
h2 { font-size: clamp(40px, 6vw, 78px); }
.subtitle {
  color: var(--muted);
  max-width: 590px;
  line-height: 1.7;
  margin: 28px 0;
  font-size: 13px;
}
.button {
  display: inline-block;
  width: fit-content;
  background: var(--pink);
  color: #111016;
  padding: 15px 21px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.button:hover { transform: translateY(-2px); }

.artist {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.artist-copy { color: var(--muted); font-size: 13px; line-height: 1.8; }
.meta {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 10px;
}
.meta span:last-child { color: var(--pink); }

.release {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.release img {
  width: 100%;
  display: block;
}
.release .button { grid-column: 1; }
.muted { color: var(--muted); line-height: 1.7; font-size: 13px; }

.label {
  padding: 120px 0;
  text-align: center;
}
.label p:last-child { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  padding: 25px 7vw;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
footer a { color: var(--pink); }

@media (max-width: 700px) {
  .topbar { padding: 0 5vw; }
  .brand { font-size: 14px; }
  .edition { display: none; }
  main { padding: 0 5vw; }
  .hero { min-height: 500px; }
  .artist { grid-template-columns: 1fr; padding: 80px 0; gap: 45px; }
  .release { grid-template-columns: 1fr; }
  .release img { max-width: 300px; }
  .release .button { grid-column: auto; }
}
