:root {
  color-scheme: light;
  --bg: #fbfaf8;
  --ink: #211c18;
  --muted: #675c55;
  --accent: #a64f2b;
  --accent-ink: #ffffff;
  --line: #e2d8d1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 56px; }
.brand { font-weight: 800; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.nav a, .site-footer a { text-decoration: none; color: var(--muted); }
.hero { min-height: 58vh; display: grid; align-items: end; padding: clamp(48px, 8vw, 112px) clamp(20px, 5vw, 72px); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, transparent), transparent 58%); }
.hero-copy { max-width: 760px; }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1; margin: 0 0 22px; letter-spacing: 0; }
.hero p, .page-title p { color: var(--muted); font-size: 20px; max-width: 720px; }
.button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 6px; background: var(--accent); color: var(--accent-ink); text-decoration: none; font-weight: 700; }
.page-title, .content-band, .grid { padding: 48px clamp(20px, 5vw, 72px); }
.page-title { border-bottom: 1px solid var(--line); }
.page-title h1 { font-size: clamp(34px, 5vw, 64px); }
.prose { max-width: 820px; font-size: 18px; }
.prose h2 { font-size: 28px; line-height: 1.2; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tile { min-height: 148px; border: 1px solid var(--line); border-radius: 8px; padding: 20px; text-decoration: none; background: rgba(255, 255, 255, 0.55); }
.tile span { display: block; font-weight: 800; margin-bottom: 10px; }
.tile p { color: var(--muted); margin: 0; }
@media (max-width: 720px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 520px; }
}
