:root {
  /* ── Page backgrounds (light palette) ───────── */
  --color-bg: #f7f3ee;
  --color-surface: #fdfcf9;
  --color-cream: #f7f3ee;
  --color-taupe: #e9dfd3;
  --color-peach: #f2c6a6;
  --color-tan: #cba57d;

  /* ── Dark (used sparingly for contrast) ──────── */
  --color-base: #1f1f1f;

  /* ── Accents ─────────────────────────────────── */
  --color-accent: #e36414;
  --color-accent-secondary: #dd7a27;
  --color-accent-hover: #c4540f;
  --color-accent-light: rgba(227, 100, 20, 0.10);

  /* ── Text ────────────────────────────────────── */
  --color-text-primary: #1f1f1f;
  --color-text-light: #fdfcf9;
  --color-text-muted-light: rgba(253, 252, 249, 0.70);
  --color-muted: #7a6a5c;
  --color-border: #e9dfd3;
  --color-error: #dc2626;

  /* ── Typography ──────────────────────────────── */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --font-accent: 'Great Vibes', cursive;

  /* ── Layout ──────────────────────────────────── */
  --max-width: 1200px;
  --section-pad-v: 100px;
  --section-pad-h: 24px;

  /* ── Decoration ──────────────────────────────── */
  --radius: 8px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition: 200ms ease;
}

@media (max-width: 640px) {
  :root {
    --section-pad-v: 64px;
    --section-pad-h: 20px;
  }
}
