:root {
  --bg: #f4efe6;
  --ink: #1b1712;
  --muted: #5c5348;
  --line: #d9cfc0;
  --scale: #1f6b3a;
  --kill: #8a1f1f;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 6vw;
  border-bottom: 1px solid var(--line);
}
.mark {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}
nav a {
  margin-left: 1.25rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
main { padding: 0 6vw 4rem; }
.hero { padding: 4rem 0 3rem; max-width: 42rem; }
.kicker {
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; font-weight: 500; }
.lede { font-size: 1.15rem; color: var(--muted); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}
.grid article {
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem 1.25rem;
  background: #fbf7f0;
}
.grid span { color: var(--muted); font-size: 0.85rem; }
.grid h2, #portfolio h2, #score h2 { font-size: 1.15rem; font-weight: 600; }
#portfolio, #score { margin-top: 3rem; max-width: 52rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.scale { color: var(--scale); font-weight: 700; }
.kill { color: var(--kill); font-weight: 700; }
.note, #score p, footer { color: var(--muted); }
footer { padding: 2rem 6vw 3rem; border-top: 1px solid var(--line); }
footer a { color: var(--ink); }
