/* palette-source: archetype (green-natural) — written by palette.mjs on 2026-09-17 */
/*
  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: #2c3f36;        /* main brand colour: headings, header, footer — deep liturgical green, reads the exposed brick/statue/icon room */
  --color-on-primary: #f2f8f5;     /* text on primary */
  --color-accent: #84621f;         /* buttons, links, highlights — brass/old-gold, overriding the archetype's terracotta so it reads ecclesiastical rather than food-market */
  --color-on-accent: #ffffff;      /* text on accent */
  --color-bg: #f2f8f5;             /* page background */
  --color-surface: #fcfdfc;        /* cards, menu panels */
  --color-ink: #1a231f;            /* body text */
  --color-muted: #60766b;          /* secondary text */
  --color-border: #dae7e0;         /* hairlines */

  /* Type — set the Google Fonts import in fonts.css to match */
  --font-display: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body: "Karla", 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: 10px;                  /* modest, bookish rather than sharp or pill-shaped */
  --radius-sm: 6px;
  --hero-overlay: linear-gradient(180deg, rgba(19, 27, 23, 0.28), rgba(19, 27, 23, 0.68));
  --shadow: 0 10px 30px rgba(19, 27, 23, 0.10);
}
