/* System fonts and local styles only. */
:root { color-scheme: light; --ink: #24362e; --paper: #f5f2e9; --accent: #934126; --line: #c9cbbd; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 18px/1.7 system-ui, sans-serif; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
header, main, footer { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
header { padding: 32px 0; display: flex; justify-content: space-between; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.brand { text-decoration: none; font-weight: 750; letter-spacing: -.03em; font-size: 24px; }
.brand span { display: block; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 500; }
nav { display: flex; gap: 28px; font-size: 15px; }
nav a { text-decoration-thickness: 1px; }
main { padding-block: 48px 80px; min-height: 65vh; overflow-wrap: anywhere; }
h1,h2,h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.12; letter-spacing: -.04em; }
h1 { font-size: clamp(44px, 7vw, 84px); max-width: 1000px; }
h2 { font-size: clamp(32px, 4vw, 46px); margin: 20px 0 32px; }
h3 { font-size: 32px; margin-block: 18px; }
p,ol,ul { max-width: 76ch; }
.hero { padding: 20px 0 76px; }
.hero h1 { font-size: clamp(60px, 8vw, 108px); margin-block: 24px 28px; }
.lede { font-size: 23px; max-width: 690px; line-height: 1.6; }
.eyebrow,.section-label { text-transform: uppercase; font-size: 12px; letter-spacing: .12em; font-weight: 650; }
.eyebrow { color: var(--accent); }
.button { display: inline-flex; gap: 36px; padding: 11px 20px; margin-top: 14px; border: 1px solid var(--ink); text-decoration: none; font-size: 16px; }
section + section { padding: 40px 0 54px; border-top: 1px solid var(--line); }
.books { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.books article { padding-right: 10px; }
.books a { font-size: 16px; }
.status { border-left: 3px solid var(--accent); padding: 16px 24px; max-width: 900px; font-size: 16px; }
.status strong { display: block; }
footer { padding: 28px 0 40px; border-top: 1px solid var(--line); font-size: 13px; }
footer p { margin: 4px 0; }
.skip { position: absolute; left: 20px; top: -80px; padding: 10px; background: var(--paper); }
.skip:focus { top: 8px; }
pre { padding: 20px; background: #e8e8dd; overflow-x: auto; font-size: 14px; }
code { font-size: .9em; }
table { display: block; overflow-x: auto; border-collapse: collapse; font-size: 15px; }
th,td { text-align: left; border: 1px solid var(--line); padding: 12px; min-width: 150px; }
@media (max-width: 600px) { header,main,footer { width: calc(100% - 40px); } header { align-items: flex-start; flex-direction: column; gap: 20px; padding-block: 24px; } nav { gap: 26px; } main { padding-top: 28px; } .hero { padding-top: 8px; padding-bottom: 44px; } .lede { font-size: 20px; } .books { grid-template-columns: 1fr; gap: 32px; } .status { padding: 12px 16px; } }
