:root {
  color-scheme: light;
  --paper: #f2efe8;
  --surface: #fffdf8;
  --ink: #18201d;
  --muted: #66706b;
  --line: #d8d5cc;
  --accent: #1b6957;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body { min-height: 100vh; max-width: 76rem; margin: 0 auto; padding: 0 2rem; display: flex; flex-direction: column; }
a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: .2em; }
a:hover { text-decoration-color: currentColor; }
.site-header { min-height: 6.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.mark { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--accent); font-family: Georgia, serif; }
nav { display: flex; gap: 1.5rem; }
nav a { color: var(--muted); text-decoration: none; font-size: .95rem; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
main { flex: 1; }
.hero { max-width: 54rem; padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.eyebrow, .meta { margin: 0 0 1rem; color: var(--accent); font-size: .75rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 13ch; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 9vw, 7rem); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.lede { max-width: 42rem; margin: 2rem 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.65; }
.button { display: inline-flex; gap: .75rem; align-items: center; padding: .8rem 1.1rem; border-radius: 999px; color: white; background: var(--accent); text-decoration: none; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.grid article { min-height: 15rem; padding: 2rem; background: var(--surface); }
.grid h2 { margin: 0 0 1rem; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; line-height: 1.2; }
.grid p:last-child { color: var(--muted); line-height: 1.6; }
.page { max-width: 48rem; padding: clamp(4rem, 10vw, 7rem) 0; }
.page h1 { max-width: none; font-size: clamp(3rem, 8vw, 5.5rem); }
.page h2 { margin: 4rem 0 1rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; scroll-margin-top: 2rem; }
.page p, .page li { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.page .intro { color: var(--ink); font-size: 1.35rem; }
footer { margin-top: 5rem; padding: 2rem 0 3rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
@media (max-width: 760px) {
  body { padding: 0 1.25rem; }
  .site-header { min-height: 5.5rem; align-items: flex-start; padding: 1.25rem 0; gap: 1rem; flex-direction: column; }
  nav { gap: 1.1rem; }
  .grid { grid-template-columns: 1fr; }
  .grid article { min-height: auto; }
  footer { flex-direction: column; }
}
@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; --paper: #111714; --surface: #18201d; --ink: #edf2ee; --muted: #a4afa9; --line: #344039; --accent: #62bca5; }
  .button { color: #10211c; }
}
