/* LOCKED tokens — Moe's Char House (base system: food, bespoke-tuned)
   Upscale steakhouse identity: deep OXBLOOD (#6e1f25) + BRASS (#b88a3e) on a
   near-black (#1a1411) over a warm cream ground. Deliberately distinct from
   prior food sites (esp. Warren's charcoal+gold and Heartbreakers' red-on-black)
   — this is the only oxblood-and-brass char house. Playfair Display headings,
   Mulish body. Variable NAMES match _shared/base.css; only values changed.
   Contrast verified for WCAG AA (see .design.json). */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Mulish:wght@400;500;600&display=swap');
:root{
  --bg:#fbf6f2; --surface:#ffffff; --ink:#2c2320; --ink-strong:#1a1411; --muted:#5e524c;
  --line:#e9ddd3;
  --brand:#6e1f25; --brand-dark:#511318; --brand-tint:#f3e2e1; --on-brand:#fdf4ee;
  --accent:#b88a3e;
  --hero-bg:radial-gradient(1000px 460px at 85% -14%,#f3e2e1,transparent),#f6ebe2;
  --header-bg:rgba(251,246,242,.90); --footer-bg:#f1e4d8;
  --band-bg:#1a1411; --on-band:#f4e9df; --on-band-muted:#bcaa9c;

  --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(26,20,17,.10); --shadow-lg:0 20px 48px rgba(26,20,17,.18);
  --dur:200ms; --ease:cubic-bezier(.2,.7,.2,1);
}
/* Primary buttons use deep oxblood --brand with cream text (~10.3:1 — strong AA). */
.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 use deep oxblood --brand (10.4:1 / 8.9:1 — both pass AA).
   Brass --accent (#b88a3e) fails AA as text on cream (~2.9:1) so it is reserved
   for decorative SVG fills and for the eyebrow ON the dark band (5.85:1 — passes). */
.eyebrow{color:var(--brand)}
.card .ic{background:var(--brand-tint);color:var(--brand)}
/* On the near-black CTA band, the brass eyebrow passes AA (5.85:1) and adds warmth. */
.band .eyebrow{color:var(--accent)}
