/* Shared design tokens + page frame for the Basket Split pages. Both the
   splitter (index.html) and the past-orders index (orders.html) link this, so
   the two can't drift apart on colour or type. */
:root{
  --ground:#FBFAF6;--surface:#FFFFFF;--surface-2:#F4F2EB;--ink:#22271F;--muted:#6C7268;--line:#E7E4DA;
  --accent:#2F7D4F;--accent-ink:#1E5636;--warn:#B8791E;--warn-soft:#FBF0DC;--promo:#C23B4B;
  --shadow:0 1px 2px rgba(34,39,31,.05),0 8px 24px rgba(34,39,31,.06);--radius:14px;
  --p0:#2F7D4F;--p0soft:#E6F1E8;--p1:#C0842A;--p1soft:#F7EDDA;--p2:#3B72A8;--p2soft:#E4EEF6;--p3:#8A557E;--p3soft:#F1E6EE;
  color-scheme:light;
}
@media (prefers-color-scheme:dark){:root{
  --ground:#14170F;--surface:#1D2118;--surface-2:#242A1F;--ink:#ECEDE4;--muted:#9AA091;--line:#333A2C;
  --accent:#6FBF88;--accent-ink:#A7D9B7;--warn:#E0AE5C;--warn-soft:#2C2513;--promo:#E8798A;
  --shadow:0 1px 2px rgba(0,0,0,.3),0 10px 30px rgba(0,0,0,.35);
  --p0:#6FBF88;--p0soft:#21301F;--p1:#DDA657;--p1soft:#312713;--p2:#6FA6D8;--p2soft:#1B2836;--p3:#C088B4;--p3soft:#2E1F2B;
  color-scheme:dark;
}}
*{box-sizing:border-box}
/* Several elements here are display:flex and toggled with the `hidden`
   attribute; a class rule beats the UA's [hidden]{display:none}, so state it
   loudly once rather than remembering a :not() on every such rule. */
[hidden]{display:none!important}
body{margin:0;background:var(--ground);color:var(--ink);font-family:"Hanken Grotesk",system-ui,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased}
.wrap{max-width:780px;margin:0 auto;padding:28px 20px 170px}
.masthead{padding:8px 4px 20px}
.eyebrow{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--accent-ink);font-weight:600;margin:0 0 10px}
h1{font-family:"Fraunces",Georgia,serif;font-weight:600;font-size:clamp(2rem,6vw,2.9rem);line-height:1.02;margin:0;letter-spacing:-.01em;text-wrap:balance}
.lede{color:var(--muted);margin:12px 0 0;max-width:56ch;font-size:1.02rem}.lede b{color:var(--ink);font-weight:600}
.topnav{display:flex;align-items:center;gap:16px;flex-wrap:wrap;padding:14px 4px 0}
.topnav a{display:inline-flex;align-items:center;gap:6px;color:var(--accent-ink);font-weight:600;font-size:.86rem;text-decoration:none;border-bottom:1.5px solid transparent;padding-bottom:2px}
.topnav a:hover{border-bottom-color:var(--accent)}
.topnav .spacer{margin-left:auto}
:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
@media (prefers-reduced-motion:reduce){*{transition:none!important}}
