:root {
  --ink: #18201d;
  --muted: #68716d;
  --paper: #f2efe7;
  --line: #cbc7bb;
  --accent: #d95f3b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(217,95,59,.09), transparent 25rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

a { color: inherit; }
.masthead, main, footer { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.masthead {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.mark {
  text-decoration: none;
  font: 700 25px/1 var(--serif);
  letter-spacing: -.08em;
}
.mark span { color: var(--accent); }
nav { display: flex; gap: 30px; }
nav a { text-decoration: none; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }

.hero { padding: clamp(80px, 13vw, 180px) 0 clamp(100px, 14vw, 190px); }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .2em; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
.hero h1 {
  margin: 20px 0 30px;
  max-width: 850px;
  font-size: clamp(64px, 11vw, 142px);
  line-height: .83;
  letter-spacing: -.065em;
}
.lede { max-width: 640px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); }

.notes, .about { border-top: 1px solid var(--line); padding: 28px 0 110px; }
.section-title { display: grid; grid-template-columns: minmax(150px, 1fr) 3fr; align-items: baseline; }
.section-title p { color: var(--accent); font-size: 12px; }
.section-title h2 { font-size: 38px; }
article { display: grid; grid-template-columns: minmax(150px, 1fr) 3fr; padding: 34px 0; border-top: 1px solid var(--line); }
article time { color: var(--muted); font-size: 13px; }
article h3 { margin: 0; font-size: clamp(27px, 3.3vw, 44px); line-height: 1.1; }
article p { max-width: 640px; margin-bottom: 0; color: var(--muted); }
.about > p { margin-left: 25%; max-width: 680px; font: 30px/1.45 var(--serif); }
footer { padding: 30px 0 60px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.not-found { min-height: 100vh; display: grid; place-items: center; }
.not-found main { max-width: 720px; }
.not-found h1 { margin: 15px 0; font-size: clamp(55px, 9vw, 100px); line-height: .95; letter-spacing: -.05em; }
.not-found main > p:not(.eyebrow) { color: var(--muted); }
.back { display: inline-block; margin-top: 26px; text-underline-offset: 5px; }

@media (max-width: 700px) {
  .masthead, main, footer { width: min(100% - 28px, 1120px); }
  .masthead { min-height: 72px; }
  nav { gap: 18px; }
  .hero { padding-top: 75px; }
  .section-title, article { grid-template-columns: 1fr; }
  .section-title p, article time { margin-bottom: 10px; }
  .about > p { margin-left: 0; font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
