/* LOCKED tokens — Colony Plaza of Waconia (base system: retail, bespoke-tuned)
   Upscale bottle-shop / one-stop palette: wine burgundy + gold accent on a warm
   charcoal/cream foundation. Distinct from the default plum/magenta retail system.
   Variable NAMES match _shared/base.css; only values changed. Contrast verified AA. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');
:root{
  --bg:#ffffff; --surface:#ffffff; --ink:#312a2c; --ink-strong:#211c1e; --muted:#6b5f62;
  --line:#ece3e0;
  --brand:#7a1f2b; --brand-dark:#5a1620; --brand-tint:#f3e2e4; --on-brand:#ffffff;
  --accent:#9a7320;
  --hero-bg:radial-gradient(900px 460px at 88% -12%,#f3e2e4,transparent),
            radial-gradient(700px 380px at 0% 0%,#f7efe2,transparent),#fbf7f1;
  --header-bg:rgba(255,255,255,.88); --footer-bg:#faf4ee;
  --band-bg:#211c1e; --on-band:#ffffff; --on-band-muted:#cdb8bb;

  --font-heading:'Fraunces',Georgia,serif; --font-body:'Inter',system-ui,sans-serif;
  --fs-base:17px; --lh-body:1.64; --fw-body:400; --fw-head:600; --lh-head:1.08; --ls-head:-.015em;
  --fs-lead:1.2rem; --fs-h1:clamp(2.5rem,5.6vw,4.1rem); --fs-h2:clamp(1.8rem,3.8vw,2.6rem); --fs-h3:1.32rem;

  --container:1140px; --gutter:24px; --section-y:92px; --hero-y:104px; --nav-h:74px;
  --space-3:11px; --space-4:16px; --space-5:26px; --space-6:30px; --space-7:58px;
  --btn-pad:15px 30px;
  --radius:12px; --radius-lg:18px; --radius-pill:999px;
  --shadow:0 8px 26px rgba(33,28,30,.07); --shadow-lg:0 22px 52px rgba(90,22,32,.16);
  --dur:200ms; --ease:cubic-bezier(.16,.84,.34,1);
}
/* Primary buttons use the deep burgundy (white text passes AA: ~10.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 burgundy (gold accent reserved for hairlines /
   decorative SVG — gold-on-white is AA-large only, so never used for body text). */
.eyebrow{color:var(--brand)}
.card .ic{background:var(--brand-tint);color:var(--brand)}
/* Gold hairline accent under the eyebrow for the upscale bottle-shop feel. */
.eyebrow::after{content:"";display:block;width:34px;height:2px;margin-top:.5rem;
  background:linear-gradient(90deg,var(--accent),transparent)}
