:root {
  color-scheme: light dark;
  --bg: #f7f4ef;
  --surface: #fffdf9;
  --text: #211d1a;
  --muted: #6f665f;
  --accent: #7a263a;
  --accent-soft: #f0e1e3;
  --line: #ddd5cd;
  --shadow: 0 18px 50px rgba(57, 39, 31, .08);
}
* { box-sizing: border-box; }
html { font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: var(--accent); text-underline-offset: .2em; }
.site-header, main, footer { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 1.2rem; font-weight: 750; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: white; background: var(--accent); font-family: Georgia, serif; }
nav { display: flex; gap: 24px; }
nav a { color: var(--text); font-weight: 650; text-decoration: none; }
.hero { padding: clamp(70px, 12vw, 140px) 0 clamp(65px, 10vw, 110px); max-width: 800px; }
.eyebrow { color: var(--accent); font-weight: 750; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; }
h1 { margin: 10px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: .98; letter-spacing: -.045em; }
.lede { max-width: 700px; color: var(--muted); font-size: clamp(1.15rem, 2.4vw, 1.45rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-block; padding: 12px 19px; border-radius: 999px; font-weight: 700; text-decoration: none; }
.primary { color: white; background: var(--accent); }
.secondary { color: var(--text); background: var(--surface); border: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 90px; }
.feature-grid article, .policy-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
h2 { margin: 0 0 8px; font-size: 1.15rem; }
.feature-grid p, .policy-card p { margin: 0; color: var(--muted); }
.page-intro { max-width: 760px; padding: 72px 0 34px; }
.page-intro h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.content-stack { display: grid; gap: 16px; max-width: 850px; padding-bottom: 80px; }
.policy-card h2 { font-size: 1.3rem; }
.policy-card p + p, .policy-card ul { margin-top: 12px; }
.policy-card ul { color: var(--muted); padding-left: 1.3rem; }
.contact { border-left: 5px solid var(--accent); }
footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 28px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .site-header { min-height: 70px; }
  nav { gap: 14px; }
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #171313; --surface: #211b1c; --text: #f5eeee; --muted: #c3b7b4; --accent: #e49aae; --accent-soft: #3d262d; --line: #463a3b; --shadow: none; }
  .primary { color: #251218; }
}
@media (prefers-reduced-motion: no-preference) {
  .button { transition: transform .16s ease, filter .16s ease; }
  .button:hover { transform: translateY(-1px); filter: brightness(1.04); }
}
