@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Great+Vibes&family=Space+Grotesk:wght@400;500;700&family=Yellowtail&display=swap");

:root {
  --yellow: #ffdf00;
  --yellow-2: #f4c600;
  --ink: #111111;
  --paper: #fffbe6;
  --paper-2: #fff4bd;
  --blue: #005eb8;
  --red: #d71920;
  --green: #1f7a39;
  --muted: #4c4328;
  --line: #111111;
  --shadow: rgba(17, 17, 17, 0.24);
  --page-pad: clamp(16px, 4vw, 56px);
  --max: 1160px;
  --font-body: "Space Grotesk", Arial, Helvetica, sans-serif;
  --font-head: "Archivo Black", Arial Black, Arial, Helvetica, sans-serif;
  --font-label: "Bebas Neue", Arial, Helvetica, sans-serif;
  --font-script: "Yellowtail", Brush Script MT, cursive;
  --font-flourish: "Great Vibes", "Yellowtail", Brush Script MT, cursive;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--yellow);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 18px), var(--ink) calc(100% - 18px)),
    var(--yellow);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 10px;
  background: repeating-linear-gradient(135deg, var(--ink) 0 18px, var(--yellow) 18px 36px);
  pointer-events: none;
}

img,
audio,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--blue);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:visited {
  color: #5b2b92;
}

a:hover {
  color: var(--red);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 60;
  transform: translateY(-150%);
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.password-gate-pending {
  min-height: 100%;
  overflow: hidden;
}

.password-gate-pending .site-frame,
.password-gate-pending .skip-link {
  max-height: 100vh;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}

.password-gate,
.password-noscript {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(17, 17, 17, 0.08) 22px 44px),
    var(--yellow);
}

.password-gate__panel {
  display: grid;
  gap: 14px;
  width: min(430px, 100%);
  padding: 24px;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  text-align: left;
}

.password-gate__brand {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 2px 8px;
  color: var(--yellow);
  background: var(--ink);
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: uppercase;
}

.password-gate__panel h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(2rem, 10vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.password-gate__panel label {
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: uppercase;
}

.password-gate__entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.password-gate__entry input,
.password-gate__entry button {
  min-height: 44px;
  border: 3px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.password-gate__entry input {
  min-width: 0;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.password-gate__entry button {
  padding: 0 18px;
  color: var(--yellow);
  background: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  cursor: pointer;
}

.password-gate__entry button:hover,
.password-gate__entry button:focus {
  color: var(--ink);
  background: var(--yellow);
}

.password-gate__error {
  min-height: 1.4em;
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

.password-noscript {
  padding: 28px;
  font-weight: 700;
  text-align: center;
}

.site-frame {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 28px var(--page-pad) 16px;
  border-bottom: 8px solid var(--ink);
  color: var(--yellow);
  background: var(--ink);
}

.brand {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: min(100%, 290px);
  color: var(--yellow);
  text-decoration: none;
}

.brand:visited {
  color: var(--yellow);
}

.brand:hover {
  color: var(--paper);
}

.brand-kicker {
  font-family: var(--font-label);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
  max-width: 760px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-label);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-item:visited {
  color: var(--yellow);
}

.nav-item:hover,
.nav-item.is-current {
  color: var(--ink);
  background: var(--yellow);
}

.nav-index {
  display: inline-grid;
  place-items: center;
  min-width: 2.2em;
  min-height: 1.7em;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-item:hover .nav-index,
.nav-item.is-current .nav-index {
  color: var(--yellow);
  background: var(--ink);
}

.site-main {
  padding: 0 var(--page-pad) 56px;
}

.site-main > :not(.hero):not(.quote-strip):not(.old-note) {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--page-pad) 36px;
  border-top: 8px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.9rem;
}

.footer-callout span,
.footer-callout strong {
  display: block;
}

.footer-callout span {
  color: var(--yellow);
  font-family: var(--font-label);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.footer-callout strong {
  margin-top: 4px;
  color: var(--paper);
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.site-footer a {
  color: var(--yellow);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  font-style: normal;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 10px;
  border: 2px solid var(--yellow);
  font-family: var(--font-label);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-contact a:hover {
  color: var(--ink);
  background: var(--yellow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  min-height: min(62vh, 620px);
  margin: 0 calc(-1 * var(--page-pad)) 8px;
  padding: clamp(30px, 4vw, 52px) var(--page-pad) clamp(52px, 5vw, 66px);
  overflow: hidden;
  border-bottom: 6px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 38px), rgba(17, 17, 17, 0.12) calc(100% - 38px)),
    var(--yellow);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(34px, 6vw, 54px);
  border-top: 4px solid var(--ink);
  background: repeating-linear-gradient(135deg, var(--ink) 0 24px, var(--yellow) 24px 48px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 760px;
}

.hero-copy h1,
.page-intro h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(3rem, 7.8vw, 6.2rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .headline {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 2px 12px 8px;
  color: var(--yellow);
  background: var(--ink);
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
}

.headline-amp {
  display: inline-block;
  margin: 0 -0.03em 0 -0.2em;
  color: var(--paper);
  font-family: var(--font-flourish);
  font-size: 1.74em;
  font-weight: 400;
  line-height: 0.38;
  text-transform: none;
  transform: translate(-0.1em, 0.18em) rotate(-7deg);
  transform-origin: center;
}

.hero-copy p {
  max-width: 58ch;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  gap: 16px;
  align-self: stretch;
  transform: rotate(-1deg);
}

.hero-media img {
  display: block;
  width: 100%;
  height: clamp(240px, 22vw, 300px);
  min-height: 0;
  border: 8px solid var(--ink);
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.hero-sign {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.hero-sign span,
.quote-label,
.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  color: var(--yellow);
  background: var(--ink);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-sign strong {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.category-links,
.track-actions,
.lyric-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.category-links {
  margin-top: 12px;
}

.pill,
.track-actions a,
.category-links a,
.lyric-index a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.pill:visited,
.track-actions a:visited,
.category-links a:visited,
.lyric-index a:visited {
  color: var(--ink);
}

.pill:hover,
.track-actions a:hover,
.category-links a:hover,
.lyric-index a:hover {
  color: var(--yellow);
  background: var(--ink);
}

.quote-strip,
.old-note {
  margin: 10px calc(-1 * var(--page-pad));
  padding: 28px var(--page-pad);
  color: var(--paper);
  background: var(--ink);
}

.quote-strip {
  display: grid;
  grid-template-columns: minmax(160px, 0.25fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  border-top: 8px solid var(--ink);
  border-bottom: 8px solid var(--ink);
  box-shadow: inset 0 12px 0 var(--yellow), inset 0 -12px 0 var(--yellow);
}

.quote-strip blockquote {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.quote-strip cite {
  display: block;
  margin-top: 14px;
  color: var(--yellow);
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-label {
  color: var(--ink);
  background: var(--yellow);
}

.section-grid,
.track-grid,
.video-grid,
.gallery-grid,
.collab-grid,
.source-grid {
  display: grid;
  gap: 16px;
}

.section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.track-grid,
.video-grid,
.collab-grid,
.source-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.panel,
.track,
.video-card,
.gallery-item,
.collab-card,
.source-card,
.lyric-card {
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--shadow);
}

.panel h2,
.panel h3,
.track h2,
.track h3,
.video-card h2,
.video-card h3,
.collab-card h2,
.collab-card h3,
.source-card h2,
.source-card h3,
.lyric-card h2,
.lyric-card h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.old-note {
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--yellow);
}

.old-note p {
  max-width: var(--max);
  margin: 0 auto;
}

.old-note strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.page-intro {
  margin: 0 auto 24px;
  padding: 34px 0 18px;
}

.page-intro.narrow {
  max-width: 740px;
}

.page-intro h1 {
  max-width: 920px;
  font-size: clamp(3rem, 8.5vw, 7rem);
}

.eyebrow {
  margin: 0 0 10px;
}

.lead {
  max-width: 68ch;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 22px;
  align-items: start;
}

.image-stack {
  display: grid;
  gap: 14px;
}

.image-stack img {
  display: block;
  width: 100%;
  border: 6px solid var(--ink);
  background: var(--ink);
  filter: grayscale(1) contrast(1.08);
}

.track {
  display: grid;
  gap: 10px;
}

.track-meta,
.caption,
.source-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.track audio {
  width: 100%;
}

.archival-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-item {
  padding: 8px;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ink);
}

.gallery-item figcaption {
  padding: 8px 4px 2px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lyric-card {
  margin-bottom: 12px;
}

.lyric-card summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
}

.lyrics-body {
  margin-top: 14px;
  white-space: normal;
}

.lyrics-body br {
  content: "";
}

.archive-planets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px auto;
}

.archive-planets img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .two-column,
  .quote-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    grid-template-rows: auto auto;
    transform: none;
  }

  .hero-media img {
    height: clamp(220px, 42vw, 320px);
    min-height: 0;
  }

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

  .site-footer {
    display: grid;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 14px;
  }

  body {
    background: var(--yellow);
  }

  .site-header {
    padding-top: 24px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(2.1rem, 13vw, 3.2rem);
  }

  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    width: calc(100% + var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .nav-item {
    flex: 0 0 auto;
    justify-content: space-between;
    min-width: 0;
    min-height: 40px;
    padding: 7px 9px;
  }

  .hero {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .hero-copy h1,
  .page-intro h1 {
    font-size: clamp(2.7rem, 15vw, 3.8rem);
  }

  .category-links {
    flex-wrap: nowrap;
    margin-right: calc(-1 * var(--page-pad));
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .category-links a {
    flex: 0 0 auto;
    min-height: 36px;
  }

  .hero-media {
    grid-template-columns: minmax(120px, 0.46fr) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
  }

  .hero-media img {
    height: 140px;
    border-width: 6px;
  }

  .hero-sign {
    align-content: center;
    padding: 8px;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero-sign span {
    padding: 2px 6px;
    font-size: 0.8rem;
  }

  .hero-sign strong {
    font-size: 0.95rem;
  }

  .panel,
  .track,
  .video-card,
  .collab-card,
  .source-card,
  .lyric-card {
    padding: 12px;
  }

  .password-gate__panel {
    padding: 16px;
  }

  .password-gate__entry {
    grid-template-columns: 1fr;
  }
}
