/* Hantverksnavet — shared global tokens for EVERY page (current + future).
   The site WIDTH lives here, once. Change --maxw to re-flow every page at the same time.

   Usage on any page:
     <link rel="stylesheet" href="base.css">   <!-- in <head>, BEFORE the page's own <style> -->
   Then use max-width:var(--maxw) for the page frame and DO NOT redeclare --maxw
   in the page's inline :root (so this stays the single source of truth). */
:root{
  --maxw:1280px;            /* global page width — the standard for all pages */
  --conc:#e4e1d8; --conc2:#edeae2; --paper:#f3f1ea;
  --ink:#222019; --ochre:#c0852b; --rust:#a4592f; --green:#3f6b50;
  --muted:#6b6657; --line:#cfc9ba;
}
