:root {
  color-scheme: light;
  --ink: #241b17;
  --muted: #6d5b52;
  --paper: #fffaf2;
  --panel: #fff;
  --rule: #e7d9ca;
  --accent: #9a4d2d;
  --accent-dark: #71351f;
  --max: 70rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: var(--accent-dark); }
.site-header { border-bottom: 1px solid var(--rule); background: var(--panel); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: var(--max); margin: auto; padding: 1rem 1.25rem; }
.site-brand { color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.site-brand small { display: block; color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-toggle { display: none; border: 1px solid var(--rule); background: var(--panel); color: var(--ink); padding: .45rem .7rem; font: inherit; cursor: pointer; }
.site-nav { display: flex; gap: 1rem; }
.site-nav a { color: var(--ink); font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--accent); text-decoration: underline; }
.page-shell { max-width: var(--max); margin: auto; padding: 4rem 1.25rem 5rem; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, serif; line-height: 1.1; }
h1 { max-width: 46rem; margin: .5rem 0 1rem; font-size: clamp(2.3rem, 6vw, 4.6rem); letter-spacing: -.04em; }
h2 { margin-top: 0; font-size: 1.6rem; }
.lede { max-width: 48rem; color: var(--muted); font-size: 1.2rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.panel { padding: 1.25rem; border: 1px solid var(--rule); background: var(--panel); }
.panel p { margin-bottom: 0; color: var(--muted); }
.note { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--rule); color: var(--muted); }
.site-footer { border-top: 1px solid var(--rule); color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; max-width: var(--max); margin: auto; padding: 1rem 1.25rem; }
.footer-inner a { color: inherit; }
@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .site-nav { display: none; flex: 0 0 100%; flex-direction: column; gap: .5rem; padding-top: .5rem; }
  .site-nav.is-open { display: flex; }
  .page-shell { padding-top: 2.75rem; }
  .grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
