:root {
  color-scheme: light;
  --ink: #17201c;
  --paper: #f7f7f3;
  --line: #c7cbc4;
  --green: #315b47;
  --blue: #315f75;
  --red: #a44a39;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
.site-header {
  min-height: 64px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.wordmark { font-weight: 750; text-decoration: none; }
nav { display: flex; gap: 24px; }
nav a { font-size: 14px; text-decoration: none; }
nav a:hover { color: var(--red); }

.cover {
  position: relative;
  min-height: 68vh;
  max-height: 760px;
  overflow: hidden;
  background: #78909b;
}
.cover img {
  width: 100%;
  height: 100%;
  min-height: 68vh;
  max-height: 760px;
  object-fit: cover;
  display: block;
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 16, .7), rgba(10, 18, 16, .08) 68%);
}
.cover-copy {
  position: absolute;
  z-index: 1;
  left: 5vw;
  bottom: 8vh;
  width: min(590px, 88vw);
  color: white;
}
.cover-copy p, .section-label, .meta {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  color: inherit;
}
.cover-copy h1 {
  margin: 0 0 12px;
  font: 700 clamp(46px, 7vw, 92px)/.95 Georgia, serif;
  letter-spacing: 0;
}
.cover-copy span { font-size: clamp(16px, 2vw, 21px); }

.intro, .entries, .about, footer {
  width: min(1120px, 90vw);
  margin-inline: auto;
}
.intro { padding: 72px 0 42px; }
.section-label { color: var(--red); }
h2 {
  max-width: 760px;
  margin: 0;
  font: 650 clamp(30px, 4vw, 52px)/1.08 Georgia, serif;
  letter-spacing: 0;
}
.lede { max-width: 680px; color: #4d5651; font-size: 18px; }
.entries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.entries article { padding: 32px 28px 40px 0; }
.entries article + article { border-left: 1px solid var(--line); padding-left: 28px; }
.entries article:nth-child(2) .meta { color: var(--blue); }
.entries article:nth-child(3) .meta { color: var(--green); }
.meta { color: var(--red); }
h3 { margin: 0 0 14px; font: 650 24px/1.15 Georgia, serif; letter-spacing: 0; }
.entries p:last-child { color: #4d5651; }
.about { padding: 64px 0; max-width: 1120px; }
.about p:last-child { max-width: 650px; font: 500 24px/1.4 Georgia, serif; }
footer {
  padding: 24px 0 36px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 720px) {
  .site-header { padding-inline: 20px; }
  nav { gap: 14px; }
  nav a:nth-child(2) { display: none; }
  .cover, .cover img { min-height: 62vh; }
  .cover-copy { left: 20px; bottom: 44px; }
  .intro { padding-top: 48px; }
  .entries { grid-template-columns: 1fr; }
  .entries article { padding: 28px 0; }
  .entries article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
}
