/* palette-source: sampled — written by palette.mjs on 2026-09-10 */
/*
  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: #083923;        /* main brand colour: headings, header, footer */
  --color-on-primary: #f2f8f5;     /* text on primary */
  --color-accent: #9f5b1b;         /* buttons, links, highlights */
  --color-on-accent: #ffffff;      /* text on accent */
  --color-bg: #f2f8f5;             /* page background */
  --color-surface: #fcfdfd;        /* cards, menu panels */
  --color-ink: #1a231f;            /* body text */
  --color-muted: #60766c;          /* secondary text */
  --color-border: #dae7e1;         /* hairlines */

  /* Type — set the Google Fonts import in fonts.css to match */
  --font-display: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display-weight: 800;
  --display-tracking: -0.01em;
  --display-transform: none;       /* logo is not all-caps; nav caps are set in custom.css instead */

  /* Shape and texture: counter archetype is square throughout */
  --radius: 0;
  --radius-sm: 0;
  --hero-overlay: linear-gradient(90deg, rgba(4, 20, 13, 0.82), rgba(4, 20, 13, 0.55) 45%, rgba(4, 20, 13, 0.2));
  --shadow: 0 10px 30px rgba(8, 57, 35, 0.12);
}
