*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --canvas: #faf8f5;
  --card: #ffffff;
  --text: #271a00;
  --headline: #121516;
  --muted: #7c7464;
  --border: #d1cfc7;
  --accent: #0f3639;
}
html, body { background: var(--canvas); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; letter-spacing: -0.028em; line-height: 1.7; }
.page { max-width: 720px; margin: 0 auto; padding: 56px 24px 96px; }
.home { display: inline-block; color: var(--muted); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; margin-bottom: 40px; }
.home:hover { color: var(--accent); }
h1 { font-family: 'Playwrite NZ', cursive; font-weight: 400; font-size: clamp(26px, 5vw, 36px); color: var(--headline); line-height: 1.6; margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
h2 { font-size: 17px; color: var(--headline); font-weight: 600; margin: 36px 0 10px; }
p, li { font-size: 15px; margin-bottom: 12px; }
ul { padding-left: 22px; margin-bottom: 12px; }
a { color: var(--accent); }
.card { background: var(--card); border-radius: 12px; border: 1px solid var(--border); padding: 18px 20px; font-size: 14px; color: var(--muted); margin-bottom: 36px; }
