:root {
  color-scheme: light;
  --paper: #ffffff;
  --paper-2: #ffffff;
  --ink: #12100c;
  --blue: #001b7a;
  --electric-blue: #003cff;
  --visited: #551a8b;
  --accent: #b00000;
  --rule: #bfbfbf;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: none;
}

button,
audio {
  font: inherit;
}

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

.page-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 14px auto 30px;
}

.old-nav {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.4;
}

a {
  color: var(--blue);
  text-decoration: underline;
}

a:visited {
  color: var(--visited);
}

.site-window {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 1px;
  border-bottom: 0;
  text-align: center;
}

.rough-title {
  display: block;
  margin: 0;
  max-width: 100%;
  color: var(--electric-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 9vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow: none;
  transform: none;
}

.rough-title::before,
.rough-title::after {
  content: none;
}

.profile-link {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.2;
}

.tagline {
  margin: 6px 0 0;
  max-width: 34rem;
  color: #222;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 400;
}

.manifest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
}

.manifest p {
  margin: 0;
  padding: 8px 12px;
  border-right: 1px solid var(--rule);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.manifest p:last-child {
  border-right: 0;
}

.section-block {
  padding: 22px;
  border-bottom: 0;
}

.section-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-transform: none;
}

.section-label span {
  color: var(--accent);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gif-grid,
.image-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 14px;
  margin: 26px 0;
}

.gif-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  margin-left: 16px;
  margin-right: 16px;
}

.image-wall {
  margin-left: 16px;
  margin-right: 16px;
}

.media-card {
  margin: 0;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  image-rendering: auto;
  border-bottom: 2px solid var(--ink);
  filter: contrast(1.12) saturate(0.95);
}

.media-card.tall img {
  height: 340px;
  object-fit: cover;
}

.media-card.wide img {
  height: 220px;
}

figcaption {
  padding: 7px 8px;
  color: var(--accent);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 12px;
  margin: 30px 0;
  margin-left: 16px;
  margin-right: 16px;
}

.track-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  border: 1px solid var(--rule);
  background: #fff;
  padding: 10px;
  box-shadow: none;
}

.track-no {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px outset #6f8dff;
  background: var(--electric-blue);
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
}

.track-card h3 {
  min-width: 0;
  margin: 0;
  color: var(--blue);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: underline;
  text-transform: none;
  overflow-wrap: anywhere;
}

.track-card audio {
  width: 100%;
  min-width: 0;
  height: 36px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 14px;
  color: var(--accent);
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1120px);
    margin-top: 10px;
  }

  .site-window {
    box-shadow: none;
  }

  .site-header {
    padding: 20px 10px 14px;
  }

  .rough-title {
    font-size: clamp(35px, 11vw, 54px);
    text-shadow: none;
  }

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

  .manifest p {
    border-right: 0;
    border-bottom: 0;
  }

  .manifest p:last-child {
    border-bottom: 0;
  }

  .section-block {
    padding: 16px;
  }

  .section-label {
    display: block;
  }

  .section-label span {
    display: block;
    margin-top: 5px;
  }

  .media-card img,
  .media-card.tall img,
  .media-card.wide img {
    height: auto;
    max-height: 440px;
    object-fit: contain;
    background: #fff;
  }

  .track-list {
    grid-template-columns: 1fr;
  }

  .track-card {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .track-no {
    width: 36px;
    height: 36px;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
  }

}
