:root {
  --ink: #161616;
  --paper: #f6f2ea;
  --paper-strong: #fffaf0;
  --muted: #66625d;
  --line: #d8cfc0;
  --red: #df3f31;
  --green: #167f68;
  --blue: #275a8f;
  --gold: #c3912f;
  --black: #0f0f0f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(246, 242, 234, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  font-size: 1.15rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 14px;
  background: var(--paper-strong);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.nav a:hover,
.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.nav .active {
  background: var(--ink);
  color: var(--paper-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 98px) clamp(18px, 5vw, 76px) 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: var(--gold);
}

.button[href*="bandcamp"] {
  background: var(--blue);
  color: #fff;
}

.button[href*="soundcloud"] {
  background: #ff5500;
  color: #fff;
}

.hero-art {
  position: relative;
  border: 2px solid var(--ink);
  background: var(--black);
  box-shadow: 12px 12px 0 var(--green);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 357 / 424;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.section {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 76px);
}

.section.alt {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
}

.section h1.page-title,
.section h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.release-card,
.platform-card {
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

.identity-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--green);
  color: #fff;
}

.identity-band strong {
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.identity-band span {
  color: var(--paper-strong);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.release-card {
  overflow: hidden;
}

.release-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--black);
}

.essential-release-grid {
  grid-template-columns: 1fr;
  max-width: 940px;
}

.essential-release-grid .release-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}

.essential-release-grid .release-card img {
  width: 132px;
  height: 132px;
  aspect-ratio: auto;
}

.essential-release-grid .release-body {
  padding: 16px 18px;
}

.essential-release-grid .links {
  max-width: 520px;
}

.release-body {
  padding: 18px;
}

.release-body h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1.05;
}

.release-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.release-badge {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-tracks {
  color: var(--muted);
  font-size: 0.9rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.catalog-grid .links {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.catalog-section {
  margin-top: 34px;
}

.catalog-section + .catalog-section {
  margin-top: 56px;
}

.catalog-title {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 14px;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
}

.links a:nth-child(1) {
  background: #1db954;
}

.links a:nth-child(2) {
  background: #f4f4f4;
}

.links a:nth-child(3) {
  background: #ff3030;
  color: #fff;
}

.links a[href*="bandcamp"] {
  background: var(--blue);
  color: #fff;
}

.links a[href*="open.spotify"] {
  background: #1db954;
  color: var(--ink);
}

.links a[href*="music.apple"] {
  background: #f4f4f4;
  color: var(--ink);
}

.links a[href*="youtube"] {
  background: #ff3030;
  color: #fff;
}

.links a[href*="soundcloud"] {
  background: #ff5500;
  color: #fff;
}

.links a[href$=".html"] {
  background: var(--gold);
  color: var(--ink);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.platform-card {
  padding: 20px;
}

.platform-card h2,
.platform-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-top: 28px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 20px;
  background: var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
}

.contact-platforms {
  margin-top: 34px;
}

.press-hero {
  padding-bottom: 22px;
}

.press-hero .section-head {
  max-width: 920px;
}

.press-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.9;
}

.press-subtitle {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 800;
}

.press-archive-section {
  padding-top: 18px;
}

.press-actions {
  margin-top: 24px;
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 18px;
}

.press-card {
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 20px;
  background: var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

.press-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.press-card p {
  color: var(--muted);
}

.press-card .button {
  margin-top: 8px;
}

.archive-note {
  max-width: 780px;
  margin-top: 26px;
}

.archive-note a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.timeline-head {
  margin-bottom: 28px;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 16px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.timeline-item.featured-release {
  grid-template-columns: 138px 72px minmax(0, 1fr) auto;
}

.timeline-item time {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-cover {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--black);
}

.timeline-cover img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.timeline-copy h3 {
  margin-bottom: 4px;
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
  line-height: 1.05;
}

.timeline-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.timeline-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-links a[href*="spotify"] {
  background: #1db954;
}

.timeline-links a[href*="music.apple"] {
  background: #f4f4f4;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.play-mark {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 14px;
  background: var(--red);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-body {
  padding: 18px;
}

.video-body h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.video-body .button {
  margin-top: 10px;
}

.footer {
  padding: 30px clamp(18px, 5vw, 76px);
  color: var(--paper-strong);
  background: var(--black);
}

.footer a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

@media (max-width: 900px) {
  .hero,
  .release-grid,
  .platforms,
  .form-grid,
  .video-grid,
  .timeline-item,
  .timeline-item.featured-release {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-art {
    max-width: 520px;
  }

  .timeline-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav a {
    padding-inline: 8px;
  }

  .identity-band {
    grid-template-columns: 1fr;
  }

  .essential-release-grid .release-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .essential-release-grid .release-card img {
    width: 96px;
    height: 96px;
  }

  .essential-release-grid .release-body {
    padding: 12px;
  }

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