:root {
  --bg: #f4f1ea;
  --ink: #1b1b18;
  --muted: #5c5850;
  --card: #fffdf8;
  --line: #d9d2c5;
  --accent: #0b3d2e;
  --warn: #8a1c1c;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
a { color: var(--accent); }
.site-header, .site-footer, main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
nav { display: flex; gap: 16px; }
h1, h2 { font-family: var(--serif); font-weight: 700; }
.lede, .meta, .kicker, .site-footer { color: var(--muted); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 18px;
}
.card.expired, .expired-flag { outline: 2px solid var(--warn); }
.price { font-size: 1.2rem; font-weight: 650; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
}
table { width: 100%; border-collapse: collapse; background: var(--card); }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.site-footer { padding: 32px 0 48px; font-size: 0.92rem; }
code { font-size: 0.9em; }
