:root {
  --cream: #fbf7f1; --sand: #f2e8da; --ink: #1f2a2e; --muted: #5b6b70;
  --teal: #1f5f5b; --clay: #d9774b; --line: #e6dccd; --white: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Inter", system-ui, sans-serif; background: var(--cream); color: var(--ink); line-height: 1.7; }
a { color: var(--teal); }
.wrap { width: min(820px, 100% - 32px); margin-inline: auto; }
header { background: rgba(251, 247, 241, .94); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", Georgia, serif; font-size: 21px; font-weight: 700; color: var(--teal); text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 11px; background: var(--clay); display: grid; place-items: center; }
.back { font-size: 14.5px; font-weight: 600; text-decoration: none; }
main { padding: 48px 0 64px; }
h1 { font-family: "Fraunces", Georgia, serif; font-size: clamp(32px, 5vw, 44px); line-height: 1.15; margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.summary { background: var(--sand); border-radius: 16px; padding: 20px 24px; margin-bottom: 36px; }
.summary ul { margin-left: 20px; }
h2 { font-family: "Fraunces", Georgia, serif; font-size: 23px; margin: 34px 0 10px; }
p, li { font-size: 16px; }
p { margin-bottom: 12px; }
main ul { margin: 0 0 12px 22px; }
li { margin-bottom: 6px; }
footer { background: var(--ink); color: #b9c4c7; padding: 36px 0; font-size: 14px; }
footer .links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 12px; }
footer a { color: #e7eef0; text-decoration: none; }
footer a:hover { text-decoration: underline; }
