:root { color-scheme: dark; --ink: #1b342c; --surface: #25473b; --paper: #f5f2e9; --muted: #c6d0c8; --line: #ffffff1f; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--ink); color: var(--paper); font: 16px/1.65 system-ui, sans-serif; }
a { color: inherit; }
.wrap { width: min(100% - 40px, 920px); margin-inline: auto; }
header, footer { border-bottom: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 72px; }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.brand { color: var(--paper); font: 700 22px/1 Georgia, serif; text-decoration: none; }
.brand span { display: block; color: var(--muted); font: 9px/1.4 system-ui, sans-serif; letter-spacing: .24em; margin-top: 5px; }
main { padding-top: 72px; }
.eyebrow { color: #d7e7b7; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1 { font: clamp(2.4rem, 7vw, 4.6rem)/1.05 Georgia, serif; margin: 10px 0 24px; }
h2 { font: 1.4rem/1.2 Georgia, serif; margin: 0 0 8px; }
p { max-width: 70ch; color: var(--muted); }
.cards { display: grid; gap: 16px; margin-top: 40px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 24px; }
.button { display: inline-block; background: var(--paper); color: var(--ink); font-weight: 700; padding: 12px 18px; text-decoration: none; }
.small { color: var(--muted); font-size: 13px; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
