:root {
  --cream: #DAD6B9;
  --olive: #A29F8B;
  --olive-dark: #6D6A5F;
  --ink: #0a0a08;
  --ink-soft: #1B1C17;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(109, 106, 95, 0.35), transparent 60%),
    linear-gradient(180deg, #16160f 0%, #0a0a08 40%, #000000 100%);
  overflow-x: hidden;
}

/* ---------- Header ---------- */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  text-align: center;
}

.logo {
  width: 128px;
  height: 128px;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.brand {
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--cream);
}

.tagline {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  color: var(--olive);
  letter-spacing: 0.02em;
  margin: 0;
  font-weight: 400;
}

.tagline .sep {
  margin: 0 0.5em;
  color: var(--olive-dark);
}

.tagline .en {
  font-style: italic;
}

/* ---------- Section title ---------- */

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.section-title-sep {
  color: var(--olive-dark);
  margin: 0 0.4em;
}

/* ---------- Releases grid ---------- */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.releases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.release {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 159, 139, 0.2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.release:hover {
  transform: translateY(-4px);
  border-color: rgba(218, 214, 185, 0.4);
}

.cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-soft);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(0.9) brightness(0.55) blur(1.5px);
  transform: scale(1.05);
  opacity: 0.85;
}

/* diagonal "under construction" hazard stripes to mark the cover as a placeholder */
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(218, 214, 185, 0.08) 0px,
    rgba(218, 214, 185, 0.08) 14px,
    transparent 14px,
    transparent 28px
  );
  pointer-events: none;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.cover-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid rgba(218, 214, 185, 0.55);
  padding: 0.6em 0.9em;
  border-radius: 3px;
  background: rgba(10, 10, 8, 0.45);
  backdrop-filter: blur(2px);
  line-height: 1.5;
}

.info {
  padding: 1.4rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catno {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--olive);
  font-weight: 600;
}

.release-title {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.release-title .dash {
  color: var(--olive-dark);
}

.meta,
.formats {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  color: var(--olive);
}

.link {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--olive-dark);
  align-self: flex-start;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.link:hover {
  color: var(--olive);
  border-color: var(--cream);
}

/* ---------- Contact ---------- */

.contact {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}

.contact-email {
  display: inline-block;
  color: var(--cream);
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--olive-dark);
  padding-bottom: 0.2em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-email:hover {
  color: var(--olive);
  border-color: var(--cream);
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--olive-dark);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .releases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .logo {
    width: 96px;
    height: 96px;
  }

  .releases {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
