:root {
  color-scheme: light;
  --background: #ffffff;
  --text: #000000;
  --text-muted: #666666;
  --accent: #000000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--accent);
}

.shell {
  width: min(960px, 90vw);
  margin: 0 auto;
  padding: 2rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-shell {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #000000;
}

.site-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
}

.site-tagline {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0;
}


.site-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
  color: #000000;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 0.5;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section {
  position: relative;
}


.section--releases {
  padding-top: 3rem;
}

.section--releases .section-header {
  display: none;
}

.section-description {
  color: var(--text-muted);
}

.status {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.release-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.release {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
}

.release:last-child {
  border-bottom: none;
}

.release__image {
  overflow: hidden;
  background: transparent;
  aspect-ratio: 1 / 1;
}

.release__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.release__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
}

.release__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.release__artist {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  margin: 0;
}

.release__description {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.release__credits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.release__links {
  display: none;
}

.section--contact {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid #000000;
}

.contact-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.contact-content {
  flex: 1;
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-links a {
  text-decoration: underline;
  color: #000000;
  transition: opacity 0.2s ease;
}

.contact-links a:hover,
.contact-links a:focus {
  opacity: 0.5;
}

.contact-logo {
  display: flex;
  flex-shrink: 0;
  width: 200px;
  height: auto;
}

.contact-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  background: var(--background);
  padding: 2rem 0;
}

@media (max-width: 720px) {
  .shell {
    padding: 1.5rem 0;
  }

  .header-shell {
    padding: 0.75rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .contact-shell {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .contact-logo {
    width: 150px;
  }

  .site-nav ul {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .release {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .section--about {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section--about h1 {
    font-size: 1.5rem;
  }

  .section--contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Release card enhancements */
.release__image-link {
  display: block;
  text-decoration: none;
}

.release__image {
  aspect-ratio: 1 / 1;
}

.release__catalog {
  display: inline;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-right: 0.5rem;
}

.release__title a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.release__title a:hover,
.release__title a:focus {
  opacity: 0.5;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0;
  transition: opacity 0.2s ease;
}

.back-link:hover,
.back-link:focus {
  opacity: 0.5;
}

/* Release detail page */
.release-detail {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.release-detail__layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .release-detail__layout {
    grid-template-columns: 400px 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.release-detail__image {
  overflow: hidden;
  background: transparent;
}

.release-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.release-detail__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.release-detail__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.release-detail__catalog {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.release-detail__artist {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.release-detail__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.release-detail__date {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.release-detail__description {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

.release__credits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.release__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.release__links a {
  text-decoration: underline;
  color: #000000;
  font-size: 0.875rem;
  transition: opacity 0.2s ease;
}

.release__links a:hover,
.release__links a:focus {
  opacity: 0.5;
}

@media (min-width: 720px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
