@font-face {
  font-family: "Archivo Local";
  src: url("/assets/fonts/archivo.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader Local";
  src: url("/assets/fonts/newsreader.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ink: #11130f;
  --paper: #f4f5ef;
  --white: #fff;
  --acid: #d7ff3f;
  --red: #d94b35;
  --blue: #c5d8e6;
  --green: #183e34;
  --line: #b8bdb2;
  --muted: #5f655b;
  --sans: "Archivo Local", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  --serif: "Newsreader Local", Georgia, serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow--accent {
  color: var(--red);
}

.site-nav {
  min-height: 76px;
  padding: 14px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-nav--overlay {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__brand span,
.site-footer__brand span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-nav__brand strong {
  font-family: var(--serif);
  font-size: 1.13rem;
  font-weight: 650;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.72rem;
  font-weight: 760;
}

.site-nav__links a {
  padding: 9px 0 7px;
  border-bottom: 2px solid transparent;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  border-color: currentColor;
}

.hero {
  position: relative;
  height: min(790px, 79svh);
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 56%;
}

.hero__shade {
  background: rgba(8, 10, 8, 0.52);
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: 4vw;
  bottom: 132px;
  width: min(760px, 66vw);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 6.4rem;
  font-weight: 570;
  line-height: 0.84;
}

.hero__summary {
  max-width: 600px;
  margin: 25px 0 28px;
  font-size: 1.2rem;
  font-weight: 550;
  line-height: 1.65;
}

.primary-link,
.download-link {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 850;
}

.primary-link span,
.download-link span {
  font-size: 1.1rem;
}

.primary-link:hover,
.download-link:hover {
  background: var(--white);
}

.hero__feature {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 132px;
  width: 278px;
  padding: 18px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--white);
}

.hero__feature span,
.hero__feature small {
  font-size: 0.65rem;
  font-weight: 720;
}

.hero__feature strong {
  font-size: 1.1rem;
}

.hero__status {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 12, 9, 0.46);
}

.hero__status span {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.66rem;
  font-weight: 720;
}

.hero__status span + span {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__status strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 580;
}

.catalog {
  padding: 96px 4vw 118px;
}

.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 8vw;
}

.section-heading h2,
.collection-band h2,
.page-header h1,
.archive-preview h2,
.release-log h2,
.record-header h1,
.record-notes h2,
.license-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 520;
}

.section-heading h2 {
  font-size: 4rem;
  line-height: 1;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.catalog-controls {
  min-height: 102px;
  margin-bottom: 44px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 230px 120px;
  align-items: end;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-controls label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-controls label span,
.catalog-count {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
}

.catalog-controls input,
.catalog-controls select {
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  font-size: 0.82rem;
}

.catalog-count {
  padding-bottom: 13px;
  text-align: right;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 2vw;
}

.media-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.media-card--featured {
  grid-column: span 2;
}

.media-card--wide {
  grid-column: span 2;
}

.media-card__preview {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue);
}

.media-card--featured .media-card__preview {
  aspect-ratio: 16 / 9;
}

.media-card--wide .media-card__preview {
  aspect-ratio: 16 / 9;
}

.media-card__preview picture,
.media-card__preview img {
  width: 100%;
  height: 100%;
}

.media-card__preview img {
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-card__preview:hover img {
  transform: scale(1.025);
}

.media-card__type,
.media-card__open {
  position: absolute;
  top: 13px;
  z-index: 1;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 820;
}

.media-card__type {
  left: 13px;
  min-height: 30px;
  padding: 0 10px;
}

.media-card__open {
  right: 13px;
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.media-card__body {
  padding: 20px;
}

.media-card__heading {
  min-height: 82px;
}

.media-card__heading p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 780;
}

.media-card__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.media-card__facts,
.record-facts {
  margin: 0;
}

.media-card__facts div {
  min-height: 37px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  border-top: 1px solid #d7d9d3;
}

.media-card__facts dt,
.record-facts dt {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 780;
}

.media-card__facts dd,
.record-facts dd {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 680;
}

.download-link--compact {
  width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
}

.catalog-empty {
  min-height: 230px;
  margin: 0;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.collection-band {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--green);
  color: var(--white);
}

.collection-band__visual {
  min-height: 570px;
  overflow: hidden;
}

.collection-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.collection-band__copy {
  padding: 80px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-band h2 {
  font-size: 4.1rem;
  line-height: 0.96;
}

.collection-band__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0;
  font-size: 0.94rem;
  line-height: 1.8;
}

.text-link {
  width: fit-content;
  padding: 9px 0 7px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  font-size: 0.7rem;
  font-weight: 820;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  border-color: var(--acid);
}

.release-log {
  padding: 92px 4vw 110px;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 7vw;
}

.release-log h2 {
  font-size: 3.2rem;
}

.release-list {
  border-top: 2px solid var(--ink);
}

.release-list div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr 60px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.release-list time,
.release-list span,
.release-list b {
  font-size: 0.65rem;
  font-weight: 700;
}

.release-list span {
  color: var(--muted);
}

.release-list strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.release-list b {
  text-align: right;
}

.site-footer {
  min-height: 112px;
  padding: 28px 4vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 620;
}

.site-footer__brand span {
  width: 34px;
  height: 34px;
  font-family: var(--sans);
  font-size: 0.62rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.63rem;
  font-weight: 660;
}

.site-footer div {
  display: flex;
  gap: 24px;
  font-size: 0.64rem;
  font-weight: 720;
}

.site-footer div a {
  border-bottom: 1px solid transparent;
}

.site-footer div a:hover {
  border-color: currentColor;
}

.page--archive {
  background: var(--blue);
}

.page-header {
  min-height: 460px;
  padding: 108px 8vw 72px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 1000px;
  font-size: 5.2rem;
  line-height: 0.98;
}

.page-header__summary {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.collection-list {
  padding: 0 4vw 105px;
}

.collection-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 70px 1.4fr 1fr 130px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.collection-row > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.collection-row strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 560;
}

.collection-row em,
.collection-row b {
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 740;
}

.collection-row--current {
  margin: 0 -4vw;
  padding: 0 4vw;
  background: var(--paper);
}

.collection-row--current:hover strong {
  color: var(--red);
}

.archive-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--paper);
}

.archive-preview img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.archive-preview > div {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-preview h2 {
  margin-bottom: 30px;
  font-size: 3rem;
}

.license-intro {
  padding: 90px 8vw 105px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
}

.license-intro__lead {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 540;
  line-height: 1.2;
}

.prose {
  font-size: 0.94rem;
  line-height: 1.85;
}

.prose p:first-child {
  margin-top: 0;
}

.license-section {
  padding: 84px 8vw 100px;
  background: var(--ink);
  color: var(--white);
}

.license-section h2 {
  margin-bottom: 40px;
  font-size: 3rem;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.license-grid article {
  min-height: 240px;
  padding: 28px 30px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.license-grid article + article {
  padding-left: 30px;
}

.license-grid h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.license-grid p {
  margin: 0;
  color: #c9ccc3;
  font-size: 0.82rem;
  line-height: 1.75;
}

.credits {
  max-width: 1040px;
  margin: 0 auto;
  padding: 90px 4vw 105px;
}

.credits h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 540;
}

.credits .text-link {
  margin-top: 22px;
}

.record-header {
  min-height: 510px;
  padding: 100px 7vw 70px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 9vw;
}

.record-header h1 {
  max-width: 850px;
  font-size: 4.9rem;
  line-height: 0.98;
}

.record-header__summary {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.record-facts {
  border-top: 2px solid var(--ink);
}

.record-facts div {
  min-height: 52px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.record-facts dd {
  font-size: 0.74rem;
}

.record-image {
  margin: 0;
  background: var(--ink);
}

.record-image img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
}

.record-image--panorama {
  padding: 8vh 0;
}

.record-image figcaption {
  padding: 13px 4vw;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.64rem;
}

.record-notes {
  padding: 88px 7vw 105px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 11vw;
}

.record-notes__text {
  max-width: 720px;
}

.record-notes h2 {
  margin-bottom: 25px;
  font-size: 2.65rem;
}

.record-download {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--acid);
  background: var(--green);
  color: var(--white);
}

.record-download strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 580;
}

.record-download > span {
  margin-top: 8px;
  color: #cbd1c7;
  font-size: 0.66rem;
  font-weight: 700;
}

.record-download .download-link {
  margin-top: auto;
}

.record-next {
  min-height: 126px;
  padding: 34px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--blue);
}

.record-next span {
  font-size: 0.66rem;
  font-weight: 760;
}

.record-next a {
  font-family: var(--serif);
  font-size: 1.6rem;
}

.record-next b {
  margin-left: 10px;
  font-weight: 400;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
}

.not-found main {
  width: min(900px, 88vw);
}

.not-found h1 {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 520;
  line-height: 0.92;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .hero h1 {
    font-size: 5.2rem;
  }

  .hero__feature {
    display: none;
  }

  .hero__content {
    width: 86vw;
  }

  .section-heading,
  .record-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card--featured {
    grid-column: span 2;
  }

  .release-log {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    display: none;
  }

  .page-header h1,
  .record-header h1 {
    font-size: 4.3rem;
  }
}

@media (max-width: 720px) {
  .site-nav {
    min-height: 68px;
    padding: 11px 5vw;
  }

  .site-nav__brand strong {
    display: none;
  }

  .site-nav__brand span {
    width: 38px;
    height: 38px;
  }

  .site-nav__links {
    gap: 18px;
    font-size: 0.65rem;
  }

  .hero {
    height: 76svh;
    min-height: 570px;
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__shade {
    background: rgba(8, 10, 8, 0.55);
  }

  .hero__content {
    left: 5vw;
    bottom: 112px;
    width: 90vw;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero__summary {
    max-width: 88vw;
    margin: 20px 0 24px;
    font-size: 1rem;
  }

  .hero__status {
    height: 76px;
    padding: 0 5vw;
    grid-template-columns: 1fr 1fr;
  }

  .hero__status span {
    display: block;
    font-size: 0.59rem;
  }

  .hero__status span + span {
    padding-left: 18px;
  }

  .hero__status span:nth-child(3) {
    display: none;
  }

  .hero__status strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .catalog {
    padding: 72px 5vw 86px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .collection-band h2 {
    font-size: 3rem;
  }

  .catalog-controls {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .catalog-count {
    grid-column: 1 / -1;
    padding: 0;
    text-align: left;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-card--featured {
    grid-column: auto;
  }

  .media-card--wide {
    grid-column: auto;
  }

  .media-card--featured .media-card__preview {
    aspect-ratio: 4 / 3;
  }

  .media-card--wide .media-card__preview {
    aspect-ratio: 4 / 3;
  }

  .collection-band {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .collection-band__visual {
    min-height: 280px;
  }

  .collection-band__copy {
    padding: 66px 6vw 74px;
  }

  .release-log {
    padding: 72px 5vw 86px;
  }

  .release-list div {
    min-height: 96px;
    grid-template-columns: 90px 1fr 45px;
    gap: 12px;
  }

  .release-list span {
    display: none;
  }

  .site-footer {
    min-height: 150px;
    padding: 28px 5vw;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer div {
    flex-wrap: wrap;
  }

  .page-header {
    min-height: 400px;
    padding: 80px 6vw 62px;
  }

  .page-header h1,
  .record-header h1 {
    font-size: 3.25rem;
  }

  .collection-list {
    padding: 0 5vw 85px;
  }

  .collection-row {
    min-height: 105px;
    grid-template-columns: 42px 1fr;
    gap: 8px 12px;
  }

  .collection-row em {
    grid-column: 2;
  }

  .collection-row b {
    display: none;
  }

  .collection-row strong {
    font-size: 1.35rem;
  }

  .archive-preview {
    grid-template-columns: 1fr;
  }

  .archive-preview img {
    min-height: 260px;
  }

  .archive-preview > div {
    padding: 60px 6vw;
  }

  .license-intro {
    padding: 72px 6vw 84px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .license-intro__lead {
    font-size: 1.9rem;
  }

  .license-section {
    padding: 66px 6vw 76px;
  }

  .license-grid {
    grid-template-columns: 1fr;
  }

  .license-grid article,
  .license-grid article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .credits {
    padding: 72px 6vw 86px;
  }

  .record-header {
    min-height: 0;
    padding: 76px 6vw 62px;
    gap: 48px;
  }

  .record-image--panorama {
    padding: 5vh 0;
  }

  .record-notes {
    padding: 70px 6vw 84px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .record-download {
    min-height: 240px;
  }

  .record-next {
    min-height: 140px;
    padding: 30px 6vw;
    display: block;
  }

  .record-next a {
    display: block;
    margin-top: 14px;
    font-size: 1.35rem;
  }

  .not-found h1 {
    font-size: 4rem;
  }
}

@media (max-width: 440px) {
  .site-nav__links {
    gap: 14px;
    font-size: 0.61rem;
  }

  .site-nav__links a:nth-child(2) {
    display: none;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .catalog-count {
    grid-column: auto;
  }

  .media-card__heading {
    min-height: 75px;
  }

  .release-list div {
    grid-template-columns: 80px 1fr;
  }

  .release-list b {
    display: none;
  }

  .record-facts div {
    grid-template-columns: 76px 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .media-card__preview img,
  .text-link span {
    transition: none;
  }
}
