* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 52px;
  font-family: Arial, Helvetica, sans-serif;
  color: #eaeaea;
  background: #050505;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(234,234,234,0.3);
}

a:hover {
  border-bottom-color: #fff;
}

/* NAV */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

nav {
  width: 100%;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(234,234,234,0.08);
}

.nav-inner {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}

nav a {
  border: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234,234,234,0.6);
}

nav a:hover {
  color: #fff;
}

/* LAYOUT */

.page {
  width: min(1120px, 90%);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 60px;
  align-items: center;
}

.cover img {
  width: 100%;
  max-width: 460px;
  display: block;
}

.meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234,234,234,0.5);
  margin-bottom: 10px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0;
}

.artist {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234,234,234,0.6);
}

.intro {
  margin-top: 40px;
  max-width: 720px;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.3;
  color: rgba(234,234,234,0.85);
}

.rule {
  height: 1px;
  margin: 50px 0;
  background: rgba(234,234,234,0.15);
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

h2 {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

p {
  font-size: 14px;
  color: rgba(234,234,234,0.7);
}

/* BUTTONS */

.actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  border: 1px solid rgba(234,234,234,0.3);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* PAGE CONTENTS */

.box {
  margin-bottom: 60px;
}

.box > img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  display: block;
  margin: 30px 0 50px;
  border-radius: 8px;
  background: #000;
}

.story {
  border-left: 2px solid #d7b86f;
  padding-left: 20px;
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 60px;
}

.chorus {
  font-style: italic;
  color: #d7b86f;
  margin: 20px 0;
}

.thumb {
  width: 200px;
  display: inline-block;
  margin: 10px 10px 10px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery a {
  border: 0;
}

.gallery img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

/* FOOTER */

#footer {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}

.site-footer {
  width: min(1120px, 90%);
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234,234,234,0.35);
}

/* RESPONSIVE */

@media (max-width: 820px) {
  body {
    padding-top: 64px;
  }

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

  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
}