:root {
  --black-1: #050812;
  --black-2: #0a1020;
  --gray-1: #111827;
  --gray-2: #253044;
  --gray-3: #aaa6a0;
  --greige: #d8d0c8;
  --greige-soft: #ede8e2;
  --accent-red: #b1121b;
  --frame: rgba(216, 208, 200, 0.24);
  --frame-strong: rgba(216, 208, 200, 0.34);
  --white-soft: #ede8e2;
  --shadow: 0 10px 30px rgba(0, 0, 18, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--black-2), var(--black-1));
  color: var(--white-soft);
  line-height: 1.7;
}

::selection {
  background: rgba(177, 18, 27, 0.72);
  color: #fff;
}

img {
  width: 100%;
  display: block;
}

.hero {
  padding: 4.75rem 1rem 2.9rem;
  border-bottom: 1px solid var(--frame);
}

.hero-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-3);
}

h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(2.3rem, 12vw, 4.8rem);
  letter-spacing: 0.12em;
  font-weight: 500;
}

.hero-logo {
  margin: 0.4rem 0 2.1rem;
  line-height: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.hero-logo img {
  display: block;
  width: min(520px, 86vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.tagline {
  margin: 0;
  color: var(--gray-3);
  max-width: 34rem;
  font-size: 0.92rem;
  font-style: oblique 8deg;
  letter-spacing: 0.04em;
}

main {
  padding: 1.45rem 0.9rem 1.1rem;
}

.section {
  background: linear-gradient(160deg, rgba(216, 208, 200, 0.035), rgba(18, 25, 40, 0.70) 28%, rgba(7, 10, 19, 0.94));
  border: 1px solid var(--frame);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  margin-bottom: 1.35rem;
}

.artist-image {
  border-color: var(--frame-strong);
  margin-bottom: 1.55rem;
}

.artist-image img {
  border: 0;
}

h2 {
  margin-top: 0;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

p,
li {
  color: rgba(237, 232, 226, 0.72);
  font-size: 0.96rem;
  line-height: 1.85;
}

.section p:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

#releases {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 3rem;
  margin-bottom: 1.6rem;
}

#releases h2 {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: 0 0 1.35rem;
  color: rgba(237, 232, 226, 0.68);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  line-height: 1;
  text-transform: uppercase;
}

#releases h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--frame);
}

.release-grid {
  display: grid;
  gap: 1.1rem;
}

.release-card {
  background: linear-gradient(160deg, rgba(216, 208, 200, 0.035), rgba(18, 25, 40, 0.70) 28%, rgba(7, 10, 19, 0.94));
  border: 1px solid var(--frame);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.release-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--frame-strong);
}

.release-type {
  margin: 1.15rem 0 0.4rem;
  color: rgba(237, 232, 226, 0.62);
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 0;
  color: var(--white-soft);
  font-size: clamp(1.38rem, 6.2vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.release-date {
  margin: 0.55rem 0 0;
  color: var(--gray-3);
  font-size: 0.98rem;
  line-height: 1.6;
}

.release-card .button {
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.74rem 0.9rem;
  border: 1px solid var(--frame-strong);
  color: var(--white-soft);
  text-decoration: none;
}

.button-disabled {
  opacity: 0.72;
  border-style: dashed;
  cursor: not-allowed;
}

.button.inline {
  margin-top: 0;
}

.link-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.link-list li + li {
  margin-top: 0.5rem;
}

a {
  color: var(--white-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--frame-strong);
  -webkit-tap-highlight-color: rgba(177, 18, 27, 0.25);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

a:hover,
a:focus-visible,
a:active {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.button:hover,
.button:focus-visible,
.button:active {
  color: var(--white-soft);
  border-color: var(--accent-red);
  background: rgba(177, 18, 27, 0.08);
}

footer {
  border-top: 1px solid var(--frame);
  padding: 1.7rem 1rem 2.4rem;
  color: var(--gray-3);
}

footer a {
  display: inline-block;
  margin-top: 0.55rem;
}

@media (min-width: 760px) {
  .hero,
  main,
  footer {
    max-width: 60rem;
    margin: 0 auto;
  }

  .hero {
    padding: 6.8rem 1.5rem 4rem;
  }

  .hero-logo {
    margin-bottom: 2.4rem;
  }

  main {
    padding: 2rem 1.5rem 1.4rem;
  }

  .section {
    padding: 1.6rem;
    margin-bottom: 1.4rem;
  }

  .artist-image {
    margin-bottom: 1.8rem;
  }

  p,
  li {
    font-size: 1rem;
    line-height: 1.8;
  }

  #releases {
    margin-top: 3.6rem;
    margin-bottom: 1.9rem;
  }

  #releases h2 {
    margin-bottom: 1.55rem;
  }

  .release-grid {
    gap: 1rem;
  }

  .release-card {
    padding: 1.6rem;
  }

  .release-card .button {
    max-width: 22rem;
  }

  footer {
    padding: 2rem 1.5rem 2.8rem;
  }
}