:root {
  --bg: #e8dcc8;
  --surface: #fffaf1;
  --ink: #1e1a16;
  --muted: #655b4f;
  --accent: #0f6c5a;
  --line: rgba(30, 26, 22, 0.14);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Georgia, "Iowan Old Style", serif; background: var(--bg); color: var(--ink); }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }
a { color: var(--accent); }
a:focus-visible { outline: 3px solid #0a5bd8; outline-offset: 3px; }
.page { width: min(calc(100% - 2rem), 960px); margin: 0 auto; padding: 1rem 0 4rem; }
.topnav { width: min(calc(100% - 2rem), 1120px); margin: 0 auto; padding: 2rem 0 0; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.45rem; text-decoration: none; color: var(--ink); }
.brand img { width: 32px; height: 32px; border-radius: 4px; }
.brand span { font-family: "Trebuchet MS", "Gill Sans", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
.nav-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.nav-links a { display: inline-flex; min-height: 2.5rem; align-items: center; gap: 0.4rem; padding: 0 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.72); color: var(--ink); font-family: "Trebuchet MS", "Gill Sans", sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em; text-decoration: none; }
.nav-links a i { font-size: 0.8rem; color: var(--accent); }
.card { border: 1px solid var(--line); border-radius: 24px; background: var(--surface); padding: 1.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font: 0.75rem "Trebuchet MS", sans-serif; color: var(--muted); margin: 0 0 0.75rem; }
h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: 1.3rem; margin: 2rem 0 0.5rem; line-height: 1.15; letter-spacing: -0.03em; }
p, li { color: var(--muted); line-height: 1.6; }
ul { padding-left: 1.2rem; }
li { margin: 0.4rem 0; }
.updated { font-family: "Trebuchet MS", "Gill Sans", sans-serif; font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
footer { margin-top: 2.5rem; padding: 1.5rem 0; color: var(--muted); font-size: 0.92rem; text-align: center; border-top: 1px solid var(--line); }
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
