*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0d0d0d;
  --text:    #f0f0f0;
  --dim:     #aaa;
  --rule:    #2a2a2a;
  --font:    'Inter', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a { color: inherit; text-decoration: none; }

/* ---- Glow -------------------------------------------------- */
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 120% 55% at 50% 100%, rgba(210, 155, 70, 0.28) 0%, transparent 70%);
  opacity: 0;
  will-change: opacity;
}

/* ---- Nav --------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---- Hero -------------------------------------------------- */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
}

.hero__svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero__scroll {
  color: var(--dim);
  margin-top: 2rem;
  transition: color 0.15s;
  animation: bob 2s ease-in-out infinite;
}

.hero__scroll:hover { color: var(--text); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.eyebrow {
  display: block;
  width: 28px;
  height: auto;
  margin: 0 auto 1.5rem;
  color: var(--dim);
}

.about__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}

.about__body {
  font-size: 1rem;
  color: var(--dim);
  max-width: 48ch;
  line-height: 1.8;
  margin: 0 auto;
  text-align: center;
}

/* ---- Sections ---------------------------------------------- */
.section {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--rule);
  max-width: 700px;
  width: 100%;
}

.section__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ---- Releases ---------------------------------------------- */
.releases__empty {
  font-size: 0.9rem;
  color: var(--dim);
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.release__art {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.release {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.release + .release {
  border-top: none;
}

.release:last-child {
  border-bottom: 1px solid var(--rule);
}

.release__date {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.release__title {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 0.2rem;
}

.release__artist {
  font-size: 0.85rem;
  color: var(--dim);
}

.release__blurb {
  font-size: 0.85rem;
  color: var(--dim);
  margin-top: 0.6rem;
  line-height: 1.6;
  max-width: 48ch;
}

/* ---- Artists ----------------------------------------------- */
.artist__list { list-style: none; }

.artist__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.15s;
}

.artist__item a:hover { opacity: 0.6; }

.artist__name {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.artist__desc {
  font-size: 0.85rem;
  color: var(--dim);
  max-width: 44ch;
  line-height: 1.6;
}

.artist__arrow {
  font-size: 1.1rem;
  color: var(--dim);
  flex-shrink: 0;
}

/* ---- Contact ----------------------------------------------- */
.contact { text-align: center; }

.contact__line {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  max-width: 30ch;
  margin: 0 auto 2.4rem;
  color: var(--text);
}

.contact__form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.contact__field input,
.contact__field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: rgba(210, 155, 70, 0.6);
}

.btn {
  background: transparent;
  border: 1px solid var(--dim);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn:hover { border-color: var(--text); }

.contact__form .btn { align-self: flex-start; }

.contact__thanks {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--dim);
  font-weight: 300;
  text-align: center;
}

/* ---- Footer ------------------------------------------------ */
.footer {
  margin-top: auto;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.06em;
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .footer { padding: 1.5rem; }
  .release { gap: 1.5rem; }
}
