:root {
  --ink: #1d2925;
  --muted: #62706a;
  --paper: #f4f1e9;
  --surface: #fffdf7;
  --line: #cfd5cd;
  --accent: #e45838;
  --focus: #195da8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header, .site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.site-header { padding: 26px 0 18px; border-bottom: 1px solid var(--line); }
.site-name { font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.site-kicker, .site-footer { color: var(--muted); font-size: .875rem; }
.home-main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.intro { padding: clamp(70px, 13vw, 160px) 0 clamp(64px, 10vw, 120px); max-width: 800px; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 18px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 8vw, 7.5rem); font-weight: 400; line-height: .91; letter-spacing: -.055em; }
.intro > p:last-child { max-width: 520px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.6; }
.project-grid { padding-bottom: 80px; }
.project-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: start; gap: 20px; padding: 26px 0; border-top: 1px solid var(--ink); text-decoration: none; transition: color 150ms ease; }
.project-card:last-child { border-bottom: 1px solid var(--ink); }
.project-card:hover { color: var(--accent); }
.project-number { color: var(--muted); font-size: .8rem; }
.project-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 400; }
.project-card small { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; line-height: 1.5; }
.arrow { font-size: 1.5rem; }
.site-footer { padding: 22px 0 40px; border-top: 1px solid var(--line); }

@media (max-width: 600px) {
  .site-header, .site-footer, .home-main { width: min(100% - 28px, 1180px); }
  .site-kicker { display: none; }
  .project-card { grid-template-columns: 34px 1fr auto; gap: 12px; }
}

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