/* ==========================================================================
   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: this is the studio's own palette, distinct from every
     client demo (salon green, café terracotta, plumber navy) --- */
   --signage: #232A4D;
   /* deep plum — nav, footer, headings */
   --accent: #B8863A;
   /* gold — labels, links, plaque */

   /* --- Neutral palette: rarely needs to change --- */
   --ink: #16231C;
   --paper: #F4EDE1;
   --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.25rem, 1.6rem + 2.5vw, 3.5rem);

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

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

   --max-width: 1100px;
}