/* LOCKED tokens — The Lobby Coffee & Leisure (base system: food, bespoke-tuned)
   Modern third-wave coffee palette: warm terracotta / clay brand, off-black ink,
   sage-green accent on a soft cream base. Deliberately distinct from prior coffee
   sites (Ruby's Roost = crimson/rose, Jo Coffee = espresso-brown + olive).
   Variable NAMES match _shared/base.css; only values changed. AA contrast verified:
   body ink/bg 12.9:1, muted/bg 6.0:1, btn text/brand 4.55:1, accent/bg 4.74:1. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Mulish:wght@400;500;600&display=swap');
:root{
  --bg:#fbf4ec; --surface:#ffffff; --ink:#332a24; --ink-strong:#211a16; --muted:#6a5b50;
  --line:#ecdfd2;
  --brand:#b6552f; --brand-dark:#8f3f20; --brand-tint:#f6e7df; --on-brand:#fff6ef;
  --accent:#5e7355;
  --hero-bg:radial-gradient(1000px 460px at 85% -12%,#f6e7df,transparent),#f7ece0;
  --header-bg:rgba(251,244,236,.88); --footer-bg:#f3e8da;
  --band-bg:#211a16; --on-band:#f4ece2; --on-band-muted:#bfae9f;

  --font-heading:'Fraunces',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.07; --ls-head:-.012em;
  --fs-lead:1.22rem; --fs-h1:clamp(2.5rem,5.4vw,4.1rem); --fs-h2:clamp(1.85rem,3.7vw,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:12px; --radius-lg:18px; --radius-pill:999px;
  --shadow:0 8px 26px rgba(33,26,22,.08); --shadow-lg:0 20px 48px rgba(33,26,22,.16);
  --dur:200ms; --ease:cubic-bezier(.2,.7,.2,1);
}
/* Eyebrow + card icons use the sage accent for contrast against the terracotta brand. */
.eyebrow{color:var(--accent)}
.card .ic{background:#e6ece1;color:var(--accent)}
/* Buttons keep the terracotta brand; off-white text passes AA (~4.55:1). */
.btn{background:var(--brand);color:var(--on-brand)}
.btn:hover{background:var(--brand-dark)}
.btn.ghost{background:transparent;color:var(--brand-dark)}
.btn.ghost:hover{background:var(--brand-tint)}
