/* LOCKED tokens — Coalition (Excelsior) — base system: food, bespoke-tuned.
   Upscale lakeside cocktail restaurant: deep teal-blue brand + brass accent on a
   warm cream canvas. Distinct from all prior food sites (no terracotta/maroon,
   and unlike Winchester & Rye's forest green). Variable NAMES match
   _shared/base.css; only VALUES changed. Body contrast AA-verified (see
   output/runs/.../_contrast_coalition.py). */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Mulish:wght@400;500;600&display=swap');
:root{
  --bg:#f6f2e9; --surface:#ffffff; --ink:#27302f; --ink-strong:#16282a; --muted:#566260;
  --line:#e3dccd;
  --brand:#13494f; --brand-dark:#0d353a; --brand-tint:#dde9e8; --on-brand:#f6f2e9;
  --accent:#b9863c;
  --hero-bg:radial-gradient(1000px 460px at 85% -12%,#dde9e8,transparent),#eef1ea;
  --header-bg:rgba(246,242,233,.88); --footer-bg:#ece6da;
  --band-bg:#13242a; --on-band:#f3efe4; --on-band-muted:#bcc6c2;

  --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(19,36,42,.08); --shadow-lg:0 20px 48px rgba(19,36,42,.16);
  --dur:200ms; --ease:cubic-bezier(.2,.7,.2,1);
}
/* Primary buttons: deep teal with cream text (8.98:1 — passes AA). */
.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 use a darkened brass for AA text; the brighter --accent
   (#b9863c) is reserved for decorative SVG fills only. */
.eyebrow{color:#8a6121}
.card .ic{background:#efe5d3;color:#7c561d}
/* Web menu list styling (scannable real menu — the core pitch). */
.menu-group{margin-bottom:var(--space-7)}
.menu-group > h3{margin-bottom:var(--space-5);padding-bottom:var(--space-3);
  border-bottom:1px solid var(--line);color:var(--ink-strong)}
.menu-item{display:flex;justify-content:space-between;gap:var(--space-5);
  align-items:baseline;padding:var(--space-3) 0;border-bottom:1px dashed var(--line)}
.menu-item:last-child{border-bottom:0}
.menu-item .mi-main{max-width:62ch}
.menu-item .mi-name{font-weight:600;color:var(--ink-strong)}
.menu-item .mi-desc{color:var(--muted);font-size:.95rem;margin:.15em 0 0}
.menu-item .mi-price{font-family:var(--font-heading);font-weight:700;color:var(--brand);
  white-space:nowrap}
