:root { color-scheme: light; --paper: #FDF8F3; --ink: #352335; --muted: #665663; --accent: #A63D38; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.7 system-ui, sans-serif; }
header, main, footer { max-width: 800px; margin: auto; padding: 24px; }
header { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
header > a { font: bold 28px Georgia, serif; text-decoration: none; color: var(--ink); }
nav { display: flex; gap: 24px; }
main { padding-block: 32px 48px; }
h1 { font: 600 clamp(32px, 7vw, 48px)/1.2 Georgia, serif; margin-block: 16px 32px; }
h2 { font-size: 23px; line-height: 1.35; margin-top: 36px; }
h3 { font-size: 19px; }
p { color: var(--muted); overflow-wrap: anywhere; }
a { color: var(--accent); text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.notice { font-size: 14px; }
footer { border-top: 1px solid #E5D7DA; font-size: 14px; padding-bottom: 48px; }
@media (max-width: 400px) { header { flex-direction: column; align-items: flex-start; gap: 8px; } }
