:root {
  color-scheme: light;
  --ink: #19201d;
  --muted: #66706b;
  --line: #dfe4df;
  --paper: #f6f4ee;
  --card: #fffdf8;
  --accent: #d85b2a;
}

* { box-sizing: border-box; }

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.6;
}

header, main, footer {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

a { color: inherit; text-decoration: none; }
.brand { font-weight: 750; letter-spacing: -.02em; }
nav { display: flex; gap: 28px; color: var(--muted); font-size: .94rem; }

.hero { padding: 110px 0 90px; max-width: 850px; }
.eyebrow, .meta { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 12px 0 22px; font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: .98; letter-spacing: -.055em; }
.lede { max-width: 650px; color: var(--muted); font-size: 1.18rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
article { min-height: 250px; padding: 28px; background: var(--card); border: 1px solid var(--line); border-radius: 4px; }
article h2 { margin: 36px 0 12px; font-family: Georgia, serif; font-size: 1.65rem; }
article p:last-child { color: var(--muted); }

.about { margin: 96px 0 72px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); }
footer { padding: 24px 0 40px; color: var(--muted); font-size: .85rem; }

@media (max-width: 760px) {
  .hero { padding: 72px 0 58px; }
  .grid { grid-template-columns: 1fr; }
  article { min-height: 210px; }
}
