/* ==========================================================================
   TOKENS — the per-client file.
   To reskin this template for a new client, duplicate this repo and edit
   ONLY this file (colors + fonts). Everything else should stay untouched.
   ========================================================================== */

:root {
  color-scheme: light;
  /* --- Brand colors: swap these two per client, everything else derives --- */
  --signage: #3D2817;
  /* primary "shopfront" color — nav, footer, headings */
  --accent: #A8501E;
  /* secondary "gold leaf" color — labels, links, plaque */

  /* --- Neutral palette: rarely needs to change --- */
  --ink: #16231C;
  --paper: #E8DAC0;
  --paper-dim: #F1EEE4;
  --muted: #6E7C74;
  --border: #DDD8CC;
  --white: #FFFFFF;

  /* --- Type: swap the family names to re-theme typography per client --- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-label: "IBM Plex Mono", ui-monospace, monospace;

  /* --- Scale --- */
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  --step-2: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step-3: clamp(2.5rem, 2rem + 2vw, 3.75rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 4px;
  --radius-plaque: 999px;

  --max-width: 1100px;
}