:root {
  --paper: #f3f0e8;
  --paper-2: #e9e5da;
  --ink: #171816;
  --muted: #64645f;
  --line: #c9c5ba;
  --blue: #2548ff;
  --blue-dark: #1732c7;
  --dark: #161714;
  --light: #f7f4ec;
  --max: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); color: var(--ink); }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.58; background: var(--paper); color: var(--ink); text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--blue); }
p, h1, h2, h3, h4, ul, ol, dl, figure, blockquote { margin-top: 0; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--blue); color: white; }

.skip-link { position: fixed; left: 1rem; top: 1rem; transform: translateY(-160%); background: var(--ink); color: white; padding: .7rem 1rem; z-index: 1000; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.kicker, .micro { margin: 0 0 1rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; line-height: 1.4; }
.kicker { color: var(--blue); font-weight: 700; }
.micro { color: var(--muted); }
.muted { color: var(--muted); }
.large-copy { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.95rem); line-height: 1.35; }
