/* ─────────────────────────────────────────────────────────────────────────
   Riverside Coating and Arms — design tokens.

   NORMALLY COMPILER-GENERATED. public/README.md says theme.css is
   "generated by the compiler from the dealer's resolved design tokens" and
   is deliberately not checked into ffl-core. The compiler/StoreSpec path is
   not wired in production, so without this file every page 404s its theme
   and renders as unstyled HTML. Hand-authored here from the Option D
   palette the client approved (proposal: fflcommand.com/riverside).

   Replace wholesale when the compiler path goes live — do not merge by hand.
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* Brand — Option D: forest green + bronze on warm cream */
  --green-primary: #3e4a35;
  --green-dark:    #2e3827;
  --green-glow:    rgba(62, 74, 53, 0.28);
  --green-faint:   rgba(62, 74, 53, 0.08);
  --border-green:  #55634a;

  /* Surfaces */
  --bg-primary:    #f7f2e4;
  --bg-secondary:  #efe9d6;
  --bg-card:       #fffdf6;
  --border-color:  #ded4bb;

  /* Type */
  --text-primary:   #26221a;
  --text-secondary: #5f5744;
  --text-muted:     #8d8468;

  --font-heading: "Lora", Georgia, "Times New Roman", serif;
  --font-main:    "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Status */
  --success: #3e6b35;
  --warning: #c9962e;
  --danger:  #b4351f;

  /* Layout + motion */
  --max-width: 1180px;
  --motion-duration-fast: 140ms;
  --motion-duration-slow: 320ms;

  /* Aliases used in a couple of newer components */
  --color-text-secondary: var(--text-secondary);
  --color-surface-raised: var(--bg-card);
}

/* The bronze accent is the second half of the Option D palette; style.css
   has no token for it, so it is applied here to the surfaces that carry it. */
:root { --bronze: #8a6d1f; --bronze-light: #c89b4a; }
a { color: var(--green-primary); }
a:hover { color: var(--bronze); }
