:root {
  --ink: #12110e;
  --carbon: #1b1916;
  --paper: #f3eee4;
  --bone: #fffaf0;
  --muted: #71695d;
  --line: #2b2822;
  --signal: #e34b31;
  --brass: #b98b3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 17, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 14, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  padding: 20px 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nav a {
  border-bottom: 1px solid transparent;
  color: var(--muted);
}

.nav a:hover {
  border-color: var(--signal);
  color: var(--ink);
}

.eyebrow,
.label,
.meta,
.button,
.download-card span,
.footer {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 58px;
  align-items: end;
  padding: 68px 0 54px;
}

.hero h1,
.page-title,
.section-title,
.serif {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1,
.page-title {
  max-width: 850px;
  font-size: clamp(62px, 10vw, 122px);
  line-height: 0.86;
}

.hero p,
.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.32;
}

.portrait-card {
  border: 1px solid var(--ink);
  background: var(--carbon);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 17%;
}

.portrait-card figcaption,
.asset-preview figcaption {
  padding: 12px 16px;
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  padding: 0 18px;
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  border-top: 2px solid var(--ink);
  padding: 46px 0;
}

.section-title {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.copy p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.58;
}

.quote {
  margin: 0;
  padding: 30px;
  background: var(--carbon);
  color: var(--bone);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
}

.quote cite {
  display: block;
  margin-top: 24px;
  color: var(--brass);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.info-card,
.download-card {
  min-height: 230px;
  padding: 28px;
  background: var(--bone);
}

.info-card h3,
.download-card strong {
  display: block;
  margin: 58px 0 12px;
  font-size: 27px;
  line-height: 1.05;
}

.info-card p,
.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.release-box {
  border-top: 1px solid var(--ink);
  padding-top: 30px;
}

.release-box p {
  margin: 0 0 19px;
  font-size: 20px;
  line-height: 1.58;
}

.asset-preview {
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--carbon);
}

.asset-preview img {
  display: block;
  width: 100%;
}

.workshop-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--ink);
  background: var(--carbon);
  color: var(--bone);
}

.workshop-band > div {
  padding: 34px;
}

.workshop-band > div:first-child {
  border-right: 1px solid rgba(255, 250, 240, 0.22);
}

.workshop-band ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  font-weight: 800;
}

.workshop-band .serif {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 0.98;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
}

.step strong {
  font-size: 31px;
  line-height: 1.08;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.download-card {
  min-height: 190px;
}

.download-card:hover {
  background: #fff7e7;
}

.download-card span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.bio-strip {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.bio-strip figure,
.bio-strip div {
  margin: 0;
  background: var(--bone);
}

.bio-strip img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
}

.bio-strip div {
  padding: 36px;
}

.bio-strip h2 {
  margin: 44px 0 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.92;
}

.bio-strip p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 2px solid var(--ink);
  padding: 24px 0 42px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .two-col,
  .grid-3,
  .workshop-band,
  .download-grid,
  .bio-strip,
  .step {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding-top: 42px;
  }

  .portrait-card img,
  .bio-strip img {
    height: 420px;
  }

  .workshop-band > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.22);
  }
}
