:root {
  --bg: #06b16f;
  --bg-dark: #04885b;
  --paper: #f6edd0;
  --paper-deep: #ecdca7;
  --ink: #111111;
  --link: #0f46c7;
  --link-dark: #082c84;
  --shadow: rgba(0, 0, 0, 0.25);
  --dot: rgba(255, 246, 215, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  background: linear-gradient(180deg, var(--bg) 0%, #05a464 100%);
}

.site-bg-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-bg-dots::before {
  content: "";
  display: none;
}

.site-bg-dot {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--dot);
  opacity: 0.9;
  box-shadow:
    0 0 0 2px rgba(255, 246, 215, 0.08),
    0 0 10px rgba(255, 246, 215, 0.16);
  will-change: opacity, box-shadow;
  --ring-color: rgba(247, 239, 207, 0.95);
}

.site-bg-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid color-mix(in srgb, var(--ring-color) 62%, transparent);
  border-radius: 999px;
  opacity: 0.11;
}

.dot-wave-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dot-wave-ring {
  position: absolute;
  display: block;
  border: 1px solid var(--ring-color);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: dotRingPulse 0.66s cubic-bezier(0.14, 0.78, 0.2, 1) both;
  animation-delay: var(--ripple-delay, 0ms);
  will-change: transform, opacity;
}

@keyframes dotRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
  }

  18% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.74;
  }

  62% {
    transform: translate(-50%, -50%) scale(1.94);
    opacity: 0.28;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.44);
    opacity: 0;
  }
}

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

a:hover {
  color: var(--link-dark);
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 26px 54px 38px;
}

.site-header {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 34px;
  padding: 0;
}

.logo {
  display: inline-block;
  color: var(--paper);
  font-family: "Alegreya", Georgia, serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 2px 2px 0 var(--ink);
}

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

.logo__word {
  display: inline-block;
  white-space: nowrap;
}

.logo__letter {
  display: inline-block;
  transform: translateY(0) rotate(0deg);
  transform-origin: 50% 70%;
}

.logo:hover .logo__letter,
.logo:focus-visible .logo__letter {
  animation: logoBobble 0.62s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--bobble-delay, 0s);
}

.logo:hover .logo__letter:nth-child(even),
.logo:focus-visible .logo__letter:nth-child(even) {
  animation-name: logoBobbleAlt;
}

.logo.logo--burst .logo__letter {
  animation: logoBurst 0.18s cubic-bezier(0.15, 0.88, 0.24, 1.25) both;
}

@keyframes logoBobble {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  42% {
    transform: translateY(-8px) rotate(-1.5deg);
  }

  72% {
    transform: translateY(3px) rotate(0.8deg);
  }
}

@keyframes logoBobbleAlt {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  42% {
    transform: translateY(7px) rotate(1.4deg);
  }

  72% {
    transform: translateY(-3px) rotate(-0.8deg);
  }
}

@keyframes logoBurst {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(var(--burst-x, 0), var(--burst-y, 0)) rotate(var(--burst-rotate, 0deg));
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  justify-content: flex-end;
  align-self: start;
  padding-top: 42px;
  flex: 1 1 auto;
}

.site-nav__link {
  color: var(--ink);
  font-size: 1.15rem;
}

.topbar__ornament {
  width: 112px;
  justify-self: end;
  padding-top: 18px;
}

.topbar__ornament .doodle {
  min-height: 70px;
}

.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  display: none;
}

.menu-toggle__bar {
  display: block;
  margin: 3px 0;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.home-layout,
.post-layout,
.simple-page,
.listing-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 500px);
  gap: 42px;
  align-items: start;
  justify-content: space-between;
  margin: 0 0 8px;
  padding: 26px 30px 28px;
  border-radius: 18px;
  background: rgba(4, 136, 91, 0.78);
  backdrop-filter: blur(1px);
}

.hero__title,
.feature-paper__title,
.post-card__title,
.more-post h3,
.sidebar-card__title,
.meta-column h2,
.post-title,
.section-title,
.mini-post-title,
.utility-title,
.mini-heading {
  font-family: "Alegreya", Georgia, serif;
}

.hero__title {
  margin: 0 0 24px;
  color: var(--paper);
  font-size: 6.2rem;
  line-height: 0.92;
  letter-spacing: 0;
  word-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero__copy {
  width: 100%;
  max-width: 760px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.eyebrow,
.hero__text,
.site-footer,
.prose,
.feature-paper__body,
.feature-paper__dek,
.post-card__summary,
.tag-row,
.archive-list__date,
.sidebar-note,
.meta-column p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow,
.hero__text {
  color: var(--paper);
}

.hero__text {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(247, 239, 207, 0.95);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.58;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26), 0 5px 14px rgba(0, 0, 0, 0.1);
}

.hero__cta,
.player-row__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.22);
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 700;
}

.hero__cta:after,
.post-card__link:after,
.archive-more:after {
  content: " →";
}

.hero__art {
  justify-self: start;
  width: min(100%, 500px);
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__scene {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 0;
  padding-top: 2px;
}

.backnav {
  padding: 0 0 14px;
}

.backnav a {
  color: var(--link);
  font-size: 16px;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 700;
}

.backnav a:before {
  content: "← ";
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.posts-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f0d6 0%, #f2e5bc 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  padding: 24px;
  font-weight: 700;
}

.empty-state--small {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.listing-hero {
  margin: 0 0 8px;
  padding: 26px 30px 28px;
  border-radius: 18px;
  background: rgba(4, 136, 91, 0.78);
  backdrop-filter: blur(1px);
}

.listing-hero__title {
  margin: 0;
  color: var(--paper);
  font-family: "Alegreya", Georgia, serif;
  font-size: 5rem;
  line-height: 0.95;
}

.listing-hero__text {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--paper);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26), 0 5px 14px rgba(0, 0, 0, 0.1);
}

.listing-panel {
  display: grid;
  gap: 16px;
}

.listing-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 18px;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f0d6 0%, #f2e5bc 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  padding: 18px;
}

.listing-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.listing-item__title {
  margin: 12px 0 8px;
  font-family: "Alegreya", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.listing-item__dek,
.listing-item__summary {
  margin: 0 0 10px;
}

.listing-item__media {
  display: block;
  align-self: stretch;
  min-height: 150px;
  border: 2px solid rgba(17, 17, 17, 0.85);
  border-radius: 10px;
  overflow: hidden;
  background: #fbf3d9;
}

.listing-item__media .doodle {
  display: block;
  min-height: 150px;
}

.listing-item__cover {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.artist-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: -2px 0 18px;
}

.artist-row__label {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 3px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #c4b0ff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
  color: var(--ink);
  font-weight: 800;
}

.artist-chip:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.artist-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.artist-index-card {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f0d6 0%, #f2e5bc 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  padding: 18px;
}

.artist-index-card__name {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Alegreya", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.artist-index-card__count {
  margin: 0;
  font-weight: 700;
}

.kind-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
}

.kind-badge--release {
  background: #ffbcda;
}

.kind-badge--mix {
  background: #c4b0ff;
}

.kind-badge--archive {
  background: #ffd69e;
}

.kind-badge--note {
  background: #a9e0cc;
}

.post-card,
.sidebar-card,
.feature-paper,
.more-post,
.meta-column {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f0d6 0%, #f2e5bc 100%);
  box-shadow: 0 12px 24px var(--shadow);
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 16px 16px 20px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.post-card--full {
  display: block;
  margin: 0 0 28px;
  padding: 18px 18px 20px;
  background: var(--paper);
  box-shadow: 0 4px 0 var(--shadow);
}

.post-card__date,
.feature-paper__meta {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border: 2px solid var(--link);
  border-radius: 8px;
  color: var(--link);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.date-pill {
  display: inline-block;
  padding: 4px 10px;
  border: 2px solid var(--link);
  border-radius: 8px;
  color: var(--link);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.post-card__art {
  aspect-ratio: 1 / 0.74;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.release-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.release-cover--hero {
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.post-card__title {
  margin: 0;
  font-size: 2.05rem;
  line-height: 1;
}

.post-card__summary {
  margin: 0;
}

.post-title {
  margin: 16px 0 10px;
  font-size: clamp(2.625rem, 8vw, 4rem);
  line-height: 0.95;
}

.title-rule,
.section-rule {
  height: 0;
  border-top: 3px dashed var(--ink);
  opacity: 0.85;
  margin: 12px 0 18px;
}

.post-dek {
  margin: 0 0 18px;
  max-width: 32ch;
  font-size: 18px;
  line-height: 1.45;
}

.post-hero {
  margin: 0 0 20px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: #f8f2dc;
}

.post-hero .doodle {
  display: block;
  width: 100%;
  min-height: 240px;
}

.post-body {
  font-size: 17px;
  line-height: 1.5;
}

.post-body p {
  margin: 0 0 14px;
}

.mini-heading {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.audio-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fbf5df;
}

.audio-row + .audio-row {
  margin-top: 10px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.track-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.track-player {
  display: block;
  width: 100%;
  max-width: 620px;
  height: 36px;
  accent-color: var(--link);
}

.track-time,
.download-link {
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.track-time {
  font-size: 14px;
}

.download-link {
  color: var(--link);
  font-weight: 700;
  justify-self: end;
}

.post-card__link,
.archive-more {
  font-weight: 700;
}

.post-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 15px;
}

.post-tags a {
  color: var(--link);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card,
.meta-column {
  padding: 22px;
}

.sidebar-card__title,
.meta-column h2,
.more-posts__title {
  margin: 0 0 14px;
  font-size: 2.25rem;
  line-height: 1;
}

.category-list,
.archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list__item,
.archive-list__item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(17, 17, 17, 0.45);
}

.category-list__item a:before {
  content: "* ";
}

.archive-list__item:last-child,
.category-list__item:last-child {
  border-bottom: 0;
}

.release-quick-list__items {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-quick-list__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px dashed rgba(17, 17, 17, 0.42);
  font-size: 0.86rem;
  line-height: 1.25;
}

.release-quick-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.release-quick-list__date {
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.76rem;
  white-space: nowrap;
}

.release-quick-list__link {
  color: var(--link);
  font-weight: 700;
}

.feature-paper {
  padding: 26px;
}

.feature-paper__title {
  margin: 18px 0 8px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.feature-paper__dek {
  margin: 0 0 20px;
  max-width: 700px;
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-paper__art {
  margin: 20px 0 18px;
  max-width: 860px;
}

.feature-paper__art--wide .doodle {
  min-height: 280px;
}

.player-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed rgba(17, 17, 17, 0.45);
}

.player-row__stub {
  display: flex;
  flex: 1 1 340px;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border: 2px solid rgba(17, 17, 17, 0.45);
  border-radius: 10px;
}

.player-row__play {
  font-size: 2rem;
}

.tag-row {
  margin: 18px 0 0;
}

.tag {
  color: var(--link);
  font-weight: 700;
}

.doodle {
  width: 100%;
  height: 100%;
}

.doodle-frame,
.ink-outline,
.ink-stroke,
.paper-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doodle-frame,
.ink-outline,
.ink-stroke {
  stroke: var(--ink);
  stroke-width: 4;
}

.paper-stroke {
  stroke: var(--paper);
  stroke-width: 3;
}

.ink-fill {
  fill: var(--ink);
}

.paper-cut {
  fill: var(--paper);
}

.doodle-text,
.doodle-label {
  fill: var(--ink);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
}

.doodle-label {
  fill: var(--paper);
}

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

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose pre {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose h2,
.prose h3 {
  margin: 1.6rem 0 0.8rem;
  font-family: "Alegreya", Georgia, serif;
}

.more-posts__grid,
.post-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-posts {
  padding: 0 0 24px;
}

.section-title {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 22px;
  font-weight: 700;
}

.mini-post-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 0 var(--shadow);
}

.mini-post-thumb .doodle {
  display: block;
  width: 100%;
  min-height: 92px;
}

.mini-post-title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.mini-post-excerpt {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
}

.mini-post-link {
  color: var(--link);
  font-weight: 700;
}

.utility-grid {
  display: grid;
  gap: 14px;
  padding: 0 0 28px;
}

.utility-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 14px;
}

.utility-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.category-list--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.category-list--chips li {
  list-style: none;
}

.category-list--chips a {
  color: var(--link);
}

.category-list--chips .category-list__item {
  border-bottom: 0;
  padding: 0;
}

.more-post {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px;
}

.more-post h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  border-top: 3px dashed rgba(247, 239, 207, 0.8);
  color: var(--paper);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__links a {
  color: var(--paper);
}

@media (max-width: 1260px) {
  .page-shell {
    padding-left: 34px;
    padding-right: 34px;
  }

  .logo {
    font-size: 4.7rem;
  }

  .hero__title {
    font-size: 5.4rem;
  }
}

@media (max-width: 1080px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr);
    gap: 24px;
    align-items: center;
  }

  .site-header {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .posts-column,
  .more-posts__grid,
  .post-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__copy {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(3.8rem, 8vw, 5rem);
    margin-bottom: 18px;
  }

  .hero__text {
    max-width: 44ch;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero__scene {
    justify-content: flex-end;
    padding-top: 0;
  }

  .hero__art {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 16px 28px;
  }

  .logo {
    font-size: 4rem;
  }

  .site-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .topbar__ornament {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 4;
    flex: 0 0 auto;
    margin-left: auto;
    margin-top: 4px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: rgba(246, 237, 208, 0.84);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }

  .site-nav {
    display: none;
  }

  .menu-open .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: auto;
    z-index: 3;
    display: grid;
    gap: 10px;
    min-width: 0;
    max-width: 220px;
    padding: 14px;
    border: 3px solid var(--ink);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  }

  .menu-open .site-nav__link {
    display: block;
    padding: 7px 4px;
    border-bottom: 1px dashed rgba(17, 17, 17, 0.34);
    font-size: 1rem;
  }

  .menu-open .site-nav__link:last-child {
    border-bottom: 0;
  }

  .site-bg-dots::before {
    display: none;
  }

  .site-bg-dot {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .hero__title {
    font-size: clamp(3.7rem, 16vw, 5rem);
  }

  .hero__scene {
    justify-content: center;
  }

  .hero__art {
    width: min(100%, 360px);
  }

  .posts-column,
  .more-posts__grid,
  .post-meta-grid,
  .artist-index-grid {
    grid-template-columns: 1fr;
  }

  .release-quick-list__item {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .release-quick-list__link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .more-post {
    grid-template-columns: 1fr;
  }

  .listing-item {
    grid-template-columns: 1fr;
  }

  .listing-item__media {
    grid-row: 1;
    min-height: 210px;
  }

  .listing-item__cover,
  .listing-item__media .doodle {
    min-height: 210px;
  }

  .audio-row {
    grid-template-columns: 1fr;
  }

  .download-link {
    justify-self: start;
  }

  .feature-paper,
  .sidebar-card,
  .meta-column,
  .post-card {
    padding: 16px;
  }
}
