* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #fafaf7;
  --ink: #10100f;
  --muted: #6f6d67;
  --faint: #d9d6cb;
  --accent: #9b8655;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Instrument Serif', Georgia, serif;
}

a {
  color: inherit;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.18em;
}

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

.page {
  min-height: 100vh;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.shell {
  width: min(720px, 100%);
  margin: 0 auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 clamp(3rem, 9vw, 6.5rem);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo {
  display: block;
  width: clamp(108px, 12vw, 148px);
  height: auto;
}

.back-link {
  white-space: nowrap;
  text-decoration: none;
}

.kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.05rem;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.lede {
  max-width: 660px;
  font-size: clamp(1.32rem, 3vw, 1.68rem);
  line-height: 1.42;
  color: #383733;
  margin-bottom: clamp(2.25rem, 6vw, 4rem);
}

.article {
  border-top: 0.5px solid var(--faint);
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.section {
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-bottom: 0.5px solid var(--faint);
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #9a978f;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 1.45rem 0 0.45rem;
}

p {
  font-size: clamp(1.08rem, 2.2vw, 1.22rem);
  line-height: 1.64;
  color: #32312e;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin: 1.15rem 0 0;
}

li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.72rem;
  font-size: clamp(1.04rem, 2.1vw, 1.16rem);
  line-height: 1.55;
  color: #34332f;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--accent);
}

.note {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--accent);
  font-style: italic;
  color: #34332f;
}

.footer {
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--muted);
}

.footer a {
  text-decoration: none;
}

.footer .sep {
  color: #b8b4aa;
  margin: 0 0.55rem;
}

@media (max-width: 640px) {
  .page {
    padding: 1.2rem;
  }

  .masthead {
    align-items: flex-start;
    padding-bottom: 3rem;
  }

  .section {
    display: block;
    padding: 1.8rem 0;
  }

  .section-label {
    margin-bottom: 0.8rem;
  }

  .footer {
    line-height: 2.2;
  }

  .footer .sep {
    margin: 0 0.25rem;
  }
}
