:root {
  --paper: #f6f1e8;
  --ink: #111;
  --muted: #666056;
  --line: #111;
  --soft-line: #c9c0b5;
  --focus: #005fcc;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.45;
}

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

img {
  display: block;
  height: auto;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--muted);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  background: var(--paper);
  border: 1px solid var(--line);
  left: 1rem;
  padding: 0.45rem 0.65rem;
  position: absolute;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 10;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 10rem 1fr;
  margin: 0 auto;
  max-width: 980px;
  padding: 0.65rem 1rem 0.75rem;
}

.site-logo {
  color: var(--ink);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
}

.site-logo img {
  display: block;
  max-width: 72px;
  width: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
}

.site-nav a {
  text-decoration: underline;
}

.site-nav a[aria-current="page"] {
  font-style: italic;
}

main,
.site-footer {
  margin: 0 auto;
  max-width: 980px;
  padding: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 2rem;
  padding-bottom: 2.5rem;
}

.home-page {
  padding: 1rem;
}

.home-index-header,
.home-index {
  margin: 0 auto;
  max-width: 900px;
}

.home-index-header {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 220px);
  padding: 0 0 1rem;
}

.home-index-logo {
  display: block;
  justify-self: end;
  width: 100%;
}

.home-index-logo img {
  width: 100%;
}

.home-index-header h1 {
  font-size: clamp(2.4rem, 10vw, 6rem);
  font-weight: normal;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.home-index-nav {
  display: grid;
  gap: 0.15rem;
  justify-items: start;
}

.home-index {
  padding: 0;
}

.home-index-item {
  border-bottom: 1px solid var(--soft-line);
  padding: 1rem 0;
}

.home-index-item h2 {
  font-size: 1.25rem;
}

.home-index-item p {
  margin: 0.25rem 0;
  max-width: 620px;
}

.home-index-item--media {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
}

.home-index-item--media > img {
  justify-self: end;
  width: 100%;
}

.home-index-item--media .responsive-embed {
  align-self: start;
  justify-self: end;
  max-width: 360px;
}

.page-shell {
  padding-bottom: 3rem;
}

.home-hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  padding: 1.25rem 0 1.5rem;
}

.home-hero__text {
  max-width: 660px;
}

.home-hero h1,
.page-intro h1 {
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  font-weight: normal;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.home-hero p {
  max-width: 700px;
}

.home-hero img {
  align-self: start;
  width: 100%;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
  padding: 1.25rem 0 1rem;
}

.page-intro p {
  max-width: 680px;
}

.eyebrow,
.meta-line,
time {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0 0 0.25rem;
  text-transform: none;
}

h2,
h3 {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.15;
  margin: 0 0 0.35rem;
}

.section-block {
  border-bottom: 1px solid var(--soft-line);
  padding: 1.25rem 0;
}

.section-heading,
.archive-links {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 0.75rem;
}

.feature-row,
.split-section,
.text-columns {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
}

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

.feature-row img {
  align-self: start;
  width: 100%;
}

.mini-grid,
.card-grid,
.video-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.mini-card,
.artist-card,
.video-card,
.split-section article,
.text-columns article {
  border-top: 1px solid var(--soft-line);
  padding: 0.75rem 0;
}

.artist-card,
.video-card {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: minmax(0, 1fr);
}

.artist-card img,
.video-card > img {
  margin: 0.15rem 0 0.4rem;
  max-width: 240px;
  width: 100%;
}

.artist-card--compact img {
  display: none;
}

.tag-list {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.35rem 0;
}

.tag-list span::before {
  content: "#";
}

.tag-list span + span::before {
  content: " / #";
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.65rem;
}

.button,
.filter-button,
.link-row a {
  background: transparent;
  border: 0;
  color: var(--ink);
  display: inline;
  font: inherit;
  line-height: inherit;
  padding: 0;
  text-decoration: underline;
  text-transform: none;
}

.filter-bar {
  border-bottom: 1px solid var(--soft-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 0 0 1rem;
  padding-bottom: 0.7rem;
}

.filter-bar::before {
  color: var(--muted);
  content: "filter:";
}

.filter-button {
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  font-style: italic;
}

.empty-state {
  border: 1px solid var(--line);
  margin: 1rem 0;
  padding: 0.75rem;
}

.show-list,
.release-list,
.media-list {
  display: grid;
  gap: 0;
}

.show-card,
.release-card,
.radio-card {
  border-bottom: 1px solid var(--soft-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  padding: 1rem 0;
}

.release-card--text,
.radio-card--text {
  grid-template-columns: minmax(0, 1fr);
}

.show-card img,
.release-card img,
.radio-card img {
  align-self: start;
  width: 100%;
}

.show-card__details,
.release-card > div,
.radio-card > div {
  align-content: start;
  display: grid;
  gap: 0.25rem;
}

.track-list {
  margin: 0.15rem 0 0.35rem;
  padding-left: 1.35rem;
}

audio {
  max-width: 100%;
  width: 100%;
}

.responsive-embed {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  margin: 0.35rem 0;
  max-width: 640px;
  overflow: hidden;
  width: 100%;
}

.responsive-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.responsive-embed--audio {
  aspect-ratio: auto;
  height: 166px;
}

.track-text,
.related {
  color: var(--muted);
  font-size: 0.95rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .site-header__inner,
  .home-hero,
  .feature-row,
  .split-section,
  .text-columns,
  .show-card,
  .release-card,
  .radio-card,
  .section-heading,
  .archive-links {
    grid-template-columns: 1fr;
  }

  .home-index-header,
  .home-index-item--media {
    grid-template-columns: 1fr;
  }

  .home-index-logo,
  .home-index-item--media > img,
  .home-index-item--media .responsive-embed {
    justify-self: start;
    max-width: 260px;
  }

  .site-nav {
    margin-top: 0.35rem;
  }

  .home-hero img {
    max-width: 260px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  main,
  .site-footer,
  .site-header__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
