/* LOCKED tokens — The Waconia Saloon (base system: food, bespoke-tuned)
   Western-saloon palette: saddle-brown / rust + warm cream + a turquoise accent
   (distinct from the food system's terracotta/maroon). Variable NAMES match
   _shared/base.css; only values changed. Contrast verified for AA:
   body ink #3a2a1e on cream 12.5:1; muted 5.9:1; on-brand on brand 7.2:1;
   brand links on cream 6.9:1; turquoise accent #157567 on cream 5.05:1 (AA). */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Bitter:wght@500;600;700;800&family=Mulish:wght@400;500;600;700&display=swap');
:root{
  --bg:#fbf3e6; --surface:#ffffff; --ink:#3a2a1e; --ink-strong:#241710; --muted:#6e5a48;
  --line:#e7d8c2;
  --brand:#8a3d20; --brand-dark:#5e2713; --brand-tint:#f4e0d6; --on-brand:#fff8ef;
  --accent:#157567;
  --hero-bg:radial-gradient(1050px 480px at 86% -14%,#f4e0d6,transparent),linear-gradient(180deg,#fcf5ea,#f6ead6);
  --header-bg:rgba(251,243,230,.90); --footer-bg:#f1e3cf;
  --band-bg:#241710; --on-band:#f7ead7; --on-band-muted:#c9a98c;

  --font-heading:'Bitter',Georgia,serif; --font-body:'Mulish',system-ui,sans-serif;
  --font-display:'Rye','Bitter',Georgia,serif;
  --fs-base:17px; --lh-body:1.66; --fw-body:400; --fw-head:800; --lh-head:1.07; --ls-head:-.01em;
  --fs-lead:1.22rem; --fs-h1:clamp(2.5rem,5.4vw,4rem); --fs-h2:clamp(1.85rem,3.8vw,2.6rem); --fs-h3:1.32rem;

  --container:1120px; --gutter:24px; --section-y:94px; --hero-y:102px; --nav-h:74px;
  --space-3:11px; --space-4:17px; --space-5:27px; --space-6:32px; --space-7:58px;
  --btn-pad:15px 30px;
  --radius:10px; --radius-lg:16px; --radius-pill:999px;
  --shadow:0 8px 26px rgba(36,23,16,.09); --shadow-lg:0 20px 48px rgba(36,23,16,.18);
  --dur:200ms; --ease:cubic-bezier(.2,.7,.2,1);
}
/* Saloon-style display headings: hero h1 + brand wordmark use the Rye western face. */
.brand{font-family:var(--font-display);letter-spacing:0}
.hero h1{font-family:var(--font-display);letter-spacing:0;line-height:1.12}
/* Primary buttons keep the deep rust brand (white text passes AA ~7.2:1). */
.btn{background:var(--brand);color:var(--on-brand)}
.btn:hover{background:var(--brand-dark);color:var(--on-brand)}
.btn.ghost{background:transparent;color:var(--brand)}
.btn.ghost:hover{background:var(--brand-tint)}
/* Eyebrow + card icons in the turquoise accent (AA on cream and on its tint). */
.eyebrow{color:var(--accent)}
.card .ic{background:#dcefe9;color:var(--accent)}
