/* LOCKED tokens — Stick's Tavern (base system: food, bespoke-tuned)
   Rustic tavern palette: deep forest-green + warm wood/amber + cream. Distinct
   from prior food sites (brick-red, diner-red, charcoal+gold, lake-teal, plum,
   navy+coral, riverside-green, burnt-orange, espresso, barn-red, tavern-red).
   Variable NAMES match _shared/base.css; only values changed.
   Contrast verified for AA: white-on-brand 9.2:1, body ink 12.9:1, lead 6.1:1,
   eyebrow/brand-on-bg 8.3:1, on-band-muted 8.6:1. */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Mulish:wght@400;500;600&display=swap');
:root{
  --bg:#f7f2e8; --surface:#ffffff; --ink:#2c2a24; --ink-strong:#1c2b20; --muted:#5e5b50;
  --line:#e6ddca;
  --brand:#1f5132; --brand-dark:#163a24; --brand-tint:#e7f0e6; --on-brand:#fbfcf8;
  --accent:#c08a2d;
  --hero-bg:radial-gradient(1000px 460px at 85% -12%,#e7f0e6,transparent),#f1ebdb;
  --header-bg:rgba(247,242,232,.90); --footer-bg:#efe7d4;
  --band-bg:#1c2b20; --on-band:#fbfcf8; --on-band-muted:#bcc8bd;

  --font-heading:'Playfair Display',Georgia,serif; --font-body:'Mulish',system-ui,sans-serif;
  --fs-base:17px; --lh-body:1.66; --fw-body:400; --fw-head:700; --lh-head:1.06; --ls-head:-.01em;
  --fs-lead:1.22rem; --fs-h1:clamp(2.6rem,5.6vw,4.3rem); --fs-h2:clamp(1.9rem,3.8vw,2.7rem); --fs-h3:1.34rem;

  --container:1120px; --gutter:24px; --section-y:96px; --hero-y:104px; --nav-h:74px;
  --space-3:11px; --space-4:17px; --space-5:27px; --space-6:32px; --space-7:58px;
  --btn-pad:15px 30px;
  --radius:12px; --radius-lg:18px; --radius-pill:999px;
  --shadow:0 8px 26px rgba(28,43,32,.09); --shadow-lg:0 20px 48px rgba(28,43,32,.17);
  --dur:200ms; --ease:cubic-bezier(.2,.7,.2,1);
}
/* Primary buttons use the deep forest green (white text passes AA: ~9.2:1). */
.btn{background:var(--brand);color:var(--on-brand)}
.btn:hover{background:var(--brand-dark)}
.btn.ghost{background:transparent;color:var(--brand)}
.btn.ghost:hover{background:var(--brand-tint)}
/* Eyebrow + card icons in brand green; warm amber accent reserved for small
   decorative use (it does not meet text contrast on cream). */
.eyebrow{color:var(--brand)}
.card .ic{background:var(--brand-tint);color:var(--brand)}
