/*
  BRAND TOKENS — the only stylesheet the builder edits for colour and type.
  Everything in base.css reads from these variables. Keep every value here
  traceable to the shop's own branding (logo, shopfront, Instagram grid) or to
  the design-system run recorded in company-profile.md.
*/
:root {
  /* Colour */
  --color-primary: #3e2b1e;        /* main brand colour: headings, header, footer */
  --color-on-primary: #f8f4f2;     /* text on primary */
  --color-accent: #a95328;         /* buttons, links, highlights */
  --color-on-accent: #ffffff;      /* text on accent */
  --color-bg: #f8f4f2;             /* page background */
  --color-surface: #fdfcfc;        /* cards, menu panels */
  --color-ink: #231e1a;            /* body text */
  --color-muted: #766960;          /* secondary text */
  --color-border: #e7dfda;         /* hairlines */

  /* Type — set the Google Fonts import in fonts.css to match */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display-weight: 600;
  --display-tracking: -0.01em;
  --display-transform: none;       /* uppercase for shouty brands, none otherwise */

  /* Shape and texture */
  --radius: 14px;                  /* 0 for sharp brands, 999px for pill brands */
  --radius-sm: 8px;
  --hero-overlay: linear-gradient(180deg, rgba(20, 12, 6, 0.25), rgba(20, 12, 6, 0.65));
  --shadow: 0 10px 30px rgba(33, 27, 22, 0.08);
}
