/* ============================================================
   Maple Pavers — Base element defaults
   Sets the warm page foundation. Consumers get sensible
   typography + background without extra wiring.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--body-md-size);
  line-height: var(--body-md-lh);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  margin: 0;
  font-weight: var(--fw-semibold);
}

p { margin: 0; }

a { color: var(--text-brand); text-decoration: none; }
a:hover { color: var(--terracotta-deep); }

::selection { background: var(--terracotta); color: #fff; }
