:root {
  --black: #030303;
  --ink: #08090b;
  --paper: #f0ecdf;
  --muted: #aaa69c;
  --red: #b11d16;
  --line: rgba(240, 236, 223, 0.18);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--black);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 34% 42%, rgba(30, 42, 58, 0.2), transparent 34%),
    linear-gradient(135deg, var(--black), var(--ink));
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

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

.masthead {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(28px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.masthead > span,
.index,
.release-date,
footer {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.brand {
  width: 128px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 128px;
  height: 50px;
  object-fit: contain;
}

main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 128px) clamp(28px, 7vw, 112px);
}

.release {
  min-height: calc(100svh - 300px);
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 9vw, 150px);
}

.cover {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1;
  margin: 0;
}

.cover::before {
  content: "001";
  position: absolute;
  z-index: 2;
  top: -16px;
  left: -18px;
  padding: 5px 8px;
  border-left: 1px solid var(--red);
  background: rgba(3, 3, 3, 0.86);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.release-copy {
  max-width: 560px;
  padding-left: clamp(18px, 3vw, 42px);
  border-left: 1px solid var(--red);
}

.index {
  margin: 0 0 clamp(34px, 6vh, 64px);
  color: var(--muted);
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 span { color: var(--red); }

.release-date {
  width: fit-content;
  margin: clamp(38px, 7vh, 68px) 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.listen {
  width: fit-content;
  min-height: 52px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--paper);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: color 160ms ease, border-color 160ms ease;
}

.listen:hover {
  color: var(--red);
  border-color: var(--red);
}

footer {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 760px) {
  .masthead {
    min-height: 82px;
    padding: 14px 20px;
  }

  .brand,
  .brand img {
    width: 108px;
    height: 46px;
  }

  main { padding: 62px 24px 76px; }

  .release {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cover {
    width: 100%;
    max-width: 560px;
  }

  .cover::before {
    top: -14px;
    left: -10px;
  }

  .release-copy {
    max-width: none;
    padding-left: 18px;
  }

  .index { margin-bottom: 28px; }

  h1 {
    max-width: 15ch;
    font-size: clamp(30px, 9vw, 42px);
  }

  .release-date { margin-top: 36px; }

  footer {
    min-height: 96px;
    padding: 18px 20px;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
