/* ============================================================
   Better Restaurant Tech — home
   Design system: "Paper on steel". Tokens below are the whole
   palette; nothing else introduces colour.
   ============================================================ */
:root{
  --steel-900:#1F2523;
  --steel-800:#262E2B;
  --steel-700:#33403C;
  --ticket:#F4F1EB;
  --ink:#161A19;
  --amber:#E9A13B;
  --amber-deep:#C77D1E;
  /* Amber as a MARK on paper. --amber is 1.94:1 there and --amber-deep only 2.92,
     both under the 3:1 non-text minimum. This one measures 4.12:1. */
  --amber-ink:#9E6A15;
  --muted:#9AA5A0;      /* secondary type ON steel */
  --ink-soft:#5C6360;   /* secondary type ON paper */

  /* Identity colours: dots + rules. Non-text, so 3:1 is the bar and all three clear it. */
  --dot-qsr:#2D6FA8;
  --dot-indie:#3E8E5A;
  --dot-custom:#B03A30;
  /* Text-safe variants of the same three, for link text on paper (measured >= 4.5:1).
     --dot-indie at 3.57:1 fails AA as text, which is why these exist. */
  --qsr-ink:#245C8C;
  --indie-ink:#2F6E45;
  --custom-ink:#B03A30;
  /* On the dark steel ground the identity colours drop below the 3:1 non-text
     minimum (blue 2.93, red 2.59). These lifted variants are the ones to use
     for dots and rules ON STEEL; the originals stay for paper, where they pass. */
  --dot-qsr-lit:#4A90D9;    /* 4.66:1 on steel */
  --dot-indie-lit:#4FA76C;  /* 5.25:1 */
  --dot-custom-lit:#D0604F;  /* 4.06:1 */

  --display:'Bricolage Grotesque',system-ui,sans-serif;
  --body:'IBM Plex Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
  --mono:'IBM Plex Mono',ui-monospace,'Cascadia Mono',Consolas,monospace;

  --measure:64ch;
  --pad-page:clamp(18px,4vw,30px);
}
*{box-sizing:border-box;}
/* Any class setting `display` beats the UA rule for [hidden], which silently left the
   submitted form on screen under the receipt. Keep this above the component styles. */
[hidden]{display:none !important;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;}
}
body{
  margin:0;background:var(--steel-900);color:var(--ticket);
  font-family:var(--body);font-size:17px;line-height:1.62;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:var(--display);font-weight:800;letter-spacing:-.022em;line-height:1.06;text-wrap:balance;margin:0;}
h1{font-size:clamp(33px,5.6vw,58px);}
h2{font-size:clamp(25px,3.6vw,38px);}
h3{font-size:clamp(18px,2vw,21px);letter-spacing:-.012em;line-height:1.2;}
p{margin:0;}
img{max-width:100%;display:block;}

a{color:var(--amber);text-underline-offset:3px;}
a:hover{color:var(--amber-deep);}
:focus-visible{outline:3px solid var(--amber);outline-offset:3px;border-radius:2px;}

.shell{max-width:1120px;margin:0 auto;padding-inline:var(--pad-page);}
.skip{position:absolute;left:-9999px;}
.skip:focus{left:12px;top:12px;z-index:99;background:var(--amber);color:var(--ink);padding:11px 16px;font-weight:700;}

.eyebrow{font-family:var(--mono);font-size:11.5px;text-transform:uppercase;letter-spacing:.14em;color:var(--amber);margin:0;}
.dot{width:10px;height:10px;border-radius:50%;background:var(--dc);flex:none;display:inline-block;}
.dots{display:flex;gap:7px;align-items:center;}

/* ---------- nav ---------- */
.nav{position:sticky;top:0;z-index:40;background:rgba(31,37,35,.93);backdrop-filter:blur(9px);border-bottom:1px solid var(--steel-700);}
.nav-in{display:flex;align-items:center;gap:14px;flex-wrap:wrap;padding-block:12px;}
.brand{display:flex;align-items:center;gap:10px;min-height:44px;font-family:var(--display);font-weight:800;font-size:16px;color:var(--ticket);text-decoration:none;letter-spacing:-.01em;}
.brand .mk{width:31px;height:31px;background:var(--amber);color:var(--ink);display:grid;place-items:center;font-family:var(--mono);font-size:12px;font-weight:700;border-radius:2px;}
.nav-links{margin-left:auto;display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
.nav-links a{text-decoration:none;font-size:15px;padding:11px 12px;min-height:44px;display:inline-flex;align-items:center;}
.nav-links a:not(.btn){color:var(--muted);}
.nav-links a:not(.btn):hover{color:var(--ticket);}

.btn{
  white-space:nowrap;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:48px;padding:13px 22px;border:0;border-radius:2px;cursor:pointer;
  font-family:var(--body);font-size:16px;font-weight:600;text-decoration:none;
  background:var(--amber);color:var(--ink);transition:background .16s ease;
}
.btn:hover{background:var(--amber-deep);color:var(--ink);}
.btn-quiet{background:transparent;color:var(--ticket);border:1px solid var(--steel-700);}
.btn-quiet:hover{background:var(--steel-800);color:var(--ticket);border-color:var(--muted);}
.nav-links .btn{min-height:44px;padding:10px 18px;font-size:15px;}
/* Sticky nav wrapped to ~180px on a 375px phone, eating a fifth of the viewport.
   Below 560px drop the section anchors; the sections are two scrolls away anyway. */
@media (max-width:560px){
  .nav-in{flex-wrap:nowrap;}
  .nav-links a:not(.btn){display:none;}
  .brand{font-size:15px;white-space:nowrap;}
}
/* Below 430px the wordmark and the CTA cannot both sit on one line. Keep the mark. */
@media (max-width:430px){ .nav .brand .wm{display:none;} }

/* ---------- hero ---------- */
.hero{position:relative;border-bottom:1px solid var(--steel-700);overflow:hidden;}
.hero-photo{position:absolute;inset:0;z-index:0;}
.hero-photo img{width:100%;height:100%;object-fit:cover;object-position:64% 50%;filter:saturate(.72) brightness(.62);}
.hero-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,var(--steel-900) 0%,rgba(31,37,35,.95) 38%,rgba(31,37,35,.68) 66%,rgba(31,37,35,.5) 100%);
}
.hero-in{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:clamp(28px,4vw,54px);align-items:center;padding-block:clamp(46px,7vw,86px);}
.hero-copy{display:flex;flex-direction:column;gap:19px;}
.hero-copy p.sub{font-size:clamp(17px,1.9vw,19.5px);color:var(--muted);max-width:46ch;}
.hero-actions{display:flex;gap:11px;flex-wrap:wrap;margin-top:3px;}
@media (max-width:900px){
  .hero-in{grid-template-columns:1fr;}
  .hero-photo img{object-position:60% 42%;}
  .hero-photo::after{background:linear-gradient(180deg,rgba(31,37,35,.80) 0%,rgba(31,37,35,.92) 55%,var(--steel-900) 100%);}
}

/* trust strip: sits with the CTA, where doubt peaks */
.trust{display:flex;flex-wrap:wrap;gap:9px 22px;padding-top:16px;border-top:1px solid var(--steel-700);margin-top:6px;}
.trust li{list-style:none;font-family:var(--mono);font-size:12px;letter-spacing:.05em;color:var(--muted);text-transform:uppercase;}
.trust li b{color:var(--ticket);font-weight:700;}
.trust ul{display:contents;}

/* ---------- the live board (hero demo) ---------- */
.board{
  background:var(--ticket);color:var(--ink);border-radius:2px;
  box-shadow:0 22px 50px rgba(0,0,0,.46);overflow:hidden;
}
.board-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px;padding:17px 20px 13px;border-bottom:1.5px dashed #C9C2B4;}
.board-top .t{font-family:var(--display);font-size:18px;font-weight:800;letter-spacing:-.01em;}
.board-top .s{font-family:var(--mono);font-size:10.5px;text-transform:uppercase;letter-spacing:.11em;color:var(--ink-soft);}
.board-list{list-style:none;margin:0;padding:6px 0;}
.board-list li{border-bottom:1px solid #E4DFD4;}
.board-list li:last-child{border-bottom:0;}
.chk{display:flex;align-items:center;gap:13px;padding:12px 20px;min-height:52px;cursor:pointer;}
.chk:hover{background:#EDE9E0;}
.chk input{
  appearance:none;width:21px;height:21px;flex:none;margin:0;
  border:2px solid #A9A296;border-radius:2px;background:#fff;cursor:pointer;position:relative;
}
.chk input:checked{background:var(--amber);border-color:var(--amber-deep);}
.chk input:checked::after{
  content:"";position:absolute;left:6px;top:1px;width:6px;height:12px;
  border:solid var(--ink);border-width:0 2.5px 2.5px 0;transform:rotate(42deg);
}
.chk .who{font-family:var(--mono);font-size:11px;color:var(--ink-soft);margin-left:auto;text-align:right;flex:none;}
.chk .lb{font-size:15.5px;line-height:1.35;}
.chk input:checked ~ .lb{color:var(--ink-soft);text-decoration:line-through;}
.board-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 20px;background:#EAE5DA;border-top:1.5px solid var(--ink);}
.board-foot .count{font-family:var(--mono);font-size:13px;font-weight:700;font-variant-numeric:tabular-nums;}
.board-foot .note{font-family:var(--mono);font-size:10.5px;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-soft);}

/* ---------- sections ---------- */
.band{padding-block:clamp(52px,7vw,88px);border-bottom:1px solid var(--steel-700);}
.band-head{display:flex;flex-direction:column;gap:11px;max-width:var(--measure);margin-bottom:clamp(26px,3.5vw,40px);}
.band-head p{color:var(--muted);}

/* paper: every block of sustained reading lives here, not on steel */
.paper{background:var(--ticket);color:var(--ink);border-radius:2px;padding:clamp(22px,3vw,32px);}
.paper p{max-width:var(--measure);}
.paper .sm{color:var(--ink-soft);font-size:15.5px;}

.doors{display:grid;grid-template-columns:repeat(auto-fit,minmax(268px,1fr));gap:16px;}
.door{background:var(--ticket);color:var(--ink);border-top:4px solid var(--dc);border-radius:2px;padding:24px 22px 22px;display:flex;flex-direction:column;gap:11px;}
.door .k{font-family:var(--mono);font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:var(--ink-soft);display:flex;align-items:center;gap:8px;}
.door p{font-size:16px;color:var(--ink);}
.door .go{margin-top:auto;padding-top:14px;font-weight:600;font-size:15.5px;color:var(--dci);text-decoration:none;display:inline-flex;min-height:44px;align-items:center;}
.door .go:hover{text-decoration:underline;}

/* work: ticket + case study */
.work{display:grid;grid-template-columns:minmax(0,320px) minmax(0,1fr);gap:clamp(22px,3.5vw,40px);align-items:start;}
@media (max-width:820px){.work{grid-template-columns:1fr;}}
.tkt{position:relative;background:var(--ticket);color:var(--ink);padding:20px 22px 22px;font-family:var(--mono);font-size:13px;box-shadow:0 16px 38px rgba(0,0,0,.42);}
.tkt::before,.tkt::after{content:"";position:absolute;top:74px;width:16px;height:16px;border-radius:50%;background:var(--steel-900);}
.tkt::before{left:-8px;}
.tkt::after{right:-8px;}
.tkt .th{font-family:var(--display);font-size:19px;font-weight:800;letter-spacing:-.01em;line-height:1.1;}
.tkt .ts{font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);display:block;margin-top:3px;}
.tkt hr{border:0;border-top:1.5px dashed #C9C2B4;margin:16px -22px 13px;}
.tkt .r{display:flex;justify-content:space-between;gap:14px;padding:4px 0;font-variant-numeric:tabular-nums;}
.tkt .r span:last-child{color:var(--ink-soft);}
.tkt .tot{display:flex;justify-content:space-between;margin-top:12px;padding-top:10px;border-top:1.5px solid var(--ink);font-weight:700;}
.work-photo{margin-top:18px;border-radius:2px;overflow:hidden;}
.work-photo img{width:100%;height:auto;filter:saturate(.85) brightness(.96);}

/* who you talk to */
.me{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.72fr);gap:clamp(22px,3.5vw,38px);align-items:center;}
@media (max-width:820px){.me{grid-template-columns:1fr;}}
.me-photo{border-radius:2px;overflow:hidden;aspect-ratio:4/5;}
.me-photo img{width:100%;height:100%;object-fit:cover;object-position:52% 32%;filter:saturate(.85) brightness(.94);}

/* form */
/* Heading lives above the grid, not inside the left column, so both paper cards
   start on the same line. `stretch` keeps their bottoms level too. */
.book{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,420px);gap:clamp(24px,4vw,46px);align-items:stretch;}
@media (max-width:860px){.book{grid-template-columns:1fr;}}
.form{display:flex;flex-direction:column;gap:16px;}
.field{display:flex;flex-direction:column;gap:6px;}
.field label{font-family:var(--mono);font-size:11.5px;text-transform:uppercase;letter-spacing:.11em;color:var(--ink-soft);}
.field input,.field textarea{
  font-family:var(--body);font-size:16px;color:var(--ink);background:#fff;
  border:1.5px solid #C0B9AB;border-radius:2px;padding:13px 14px;min-height:50px;width:100%;
}
.field textarea{min-height:112px;resize:vertical;line-height:1.5;}
.field input:focus-visible,.field textarea:focus-visible{outline:3px solid var(--amber);outline-offset:1px;border-color:var(--ink);}
.form .hint{font-size:14px;color:var(--ink-soft);}
/* Honeypot: present in the DOM for bots, off-screen and untabbable for people.
   Not `hidden`/`display:none`, which many bots skip. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}
.btn[disabled]{opacity:.62;cursor:progress;}
/* ---------- pricing terms ---------- */
.terms{background:var(--ticket);color:var(--ink);border-radius:2px;overflow:hidden;list-style:none;margin:0;padding:0;}
/* Exactly two element children per row, so grid columns are safe here. */
.terms li{display:grid;grid-template-columns:minmax(0,230px) minmax(0,1fr);gap:5px 28px;align-items:baseline;padding:20px clamp(20px,3vw,28px);border-top:1px solid #E4DFD4;}
.terms li:first-child{border-top:0;}
.terms .t{font-family:var(--display);font-size:18px;font-weight:800;letter-spacing:-.01em;line-height:1.2;}
.terms .d{font-size:15.5px;color:var(--ink-soft);line-height:1.5;}
@media (max-width:640px){.terms li{grid-template-columns:1fr;gap:6px;}}

/* ---------- the menu ---------- */
.menu-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,352px);gap:clamp(20px,3vw,34px);align-items:start;}
@media (max-width:900px){.menu-grid{grid-template-columns:1fr;}}
.card-paper{background:var(--ticket);color:var(--ink);border-radius:2px;padding:clamp(20px,3vw,28px);}
.msec + .msec{margin-top:26px;padding-top:22px;border-top:1.5px dashed #C9C2B4;}
.msec > h3{margin-bottom:4px;}
.msec > .cap{color:var(--ink-soft);margin-bottom:12px;}
.cap{font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;}
.mlist{list-style:none;margin:0;padding:0;}
.mitem{display:flex;flex-wrap:wrap;align-items:center;gap:12px;padding:12px 6px 13px;min-height:48px;cursor:pointer;border-radius:2px;}
/* Description sits on its own line under the row, aligned past the checkbox. */
.mitem .desc{flex-basis:100%;margin:-2px 0 0;padding-left:32px;font-size:13.5px;line-height:1.45;color:var(--ink-soft);}
.mitem:hover{background:#EDE9E0;}
.mitem input{
  appearance:none;width:20px;height:20px;flex:none;margin:0;position:relative;
  border:2px solid #A9A296;border-radius:2px;background:#fff;cursor:pointer;
}
.mitem input:checked{background:var(--amber);border-color:var(--amber-deep);}
.mitem input:checked::after{content:"";position:absolute;left:5.5px;top:1px;width:5px;height:11px;border:solid var(--ink);border-width:0 2.5px 2.5px 0;transform:rotate(42deg);}
.mitem .nm{font-size:15.5px;line-height:1.3;}
.mitem .lead{flex:1;border-bottom:1px dotted #BDB6A8;min-width:14px;transform:translateY(-3px);}
.mitem .tag{font-family:var(--mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-soft);white-space:nowrap;}
.mitem .pr{font-family:var(--mono);font-size:13px;font-weight:700;white-space:nowrap;font-variant-numeric:tabular-nums;}

.check{position:sticky;top:92px;background:var(--ticket);color:var(--ink);padding:20px 22px 22px;box-shadow:0 18px 42px rgba(0,0,0,.44);}
@media (max-width:900px){.check{position:static;}}
.check h3{font-size:19px;}
.check .rule{border:0;border-top:1.5px dashed #C9C2B4;margin:14px -22px;}
.check-lines{font-family:var(--mono);font-size:12.5px;display:flex;flex-direction:column;gap:7px;min-height:28px;}
.check-lines .ln{display:flex;justify-content:space-between;gap:12px;font-variant-numeric:tabular-nums;}
.check-lines .ln span:last-child{white-space:nowrap;}
.check-lines .none{color:var(--ink-soft);font-style:normal;}
.check-total{display:flex;justify-content:space-between;gap:12px;border-top:1.5px solid var(--ink);margin-top:14px;padding-top:11px;font-family:var(--mono);font-weight:700;font-size:15px;font-variant-numeric:tabular-nums;}
.check .fine{font-size:12.5px;color:var(--ink-soft);line-height:1.45;margin-top:12px;}
.check .btn{width:100%;margin-top:16px;}

/* menu controls */
.controls{display:flex;flex-wrap:wrap;gap:16px 22px;align-items:flex-end;padding:0 0 20px;border-bottom:1.5px dashed #C9C2B4;margin-bottom:6px;}
.ctl{display:flex;flex-direction:column;gap:5px;}
.ctl label{font-family:var(--mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);}
.ctl input,.ctl select{
  font-family:var(--body);font-size:15.5px;color:var(--ink);background:#fff;
  border:1.5px solid #C0B9AB;border-radius:2px;padding:10px 12px;min-height:46px;
}
.ctl input{width:88px;}
.ctl select{min-width:172px;}
.ctl input:focus-visible,.ctl select:focus-visible{outline:3px solid var(--amber);outline-offset:1px;border-color:var(--ink);}
.plan-badge{display:inline-block;background:var(--amber);color:var(--ink);font-family:var(--mono);font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;padding:5px 9px;border-radius:2px;margin-top:8px;}
.compare{margin-top:12px;padding-top:11px;border-top:1px dashed #C9C2B4;font-size:12.5px;color:var(--ink-soft);line-height:1.45;}
.compare b{color:var(--ink);}

/* Numbered because this genuinely is a sequence: the order carries information. */
.steps{list-style:none;margin:0;padding:0;counter-reset:s;display:flex;flex-direction:column;gap:15px;}
/* Positioned marker, not a grid column: `<b>` plus the following text node are separate
   children, and grid placed each one in its own cell, wrapping the copy one word per line. */
.steps li{counter-increment:s;position:relative;padding-left:37px;font-size:15.5px;color:var(--ink);line-height:1.5;}
.steps li::before{
  content:counter(s);position:absolute;left:0;top:2px;
  font-family:var(--mono);font-size:11.5px;font-weight:700;
  color:var(--ink);background:var(--amber);width:24px;height:24px;border-radius:2px;
  display:grid;place-items:center;
}
.err{color:#9B2C22;font-size:14.5px;font-weight:600;}
.receipt{
  background:var(--ticket);color:var(--ink);padding:22px;font-family:var(--mono);font-size:13px;
  box-shadow:0 16px 38px rgba(0,0,0,.42);
}
@media (prefers-reduced-motion:no-preference){
  .receipt.print{animation:print .62s cubic-bezier(.16,.84,.34,1) both;}
}
@keyframes print{from{clip-path:inset(0 0 100% 0);transform:translateY(-14px);}to{clip-path:inset(0 0 0 0);transform:none;}}
.receipt h3{font-family:var(--display);font-size:19px;margin-bottom:4px;}

footer.foot{padding-block:34px;color:var(--muted);font-size:14.5px;}
.foot-in{display:flex;flex-wrap:wrap;gap:14px 26px;align-items:center;}
.foot-links{display:flex;flex-wrap:wrap;gap:8px 20px;margin-left:auto;}
.foot-links a{color:var(--muted);text-decoration:none;min-height:44px;display:inline-flex;align-items:center;}
.foot-links a:hover{color:var(--ticket);text-decoration:underline;}
.legal{margin-top:14px;font-size:13px;color:var(--muted);}

/* ---------- vertical pages (/multi-unit, /independent, /custom) ---------- */
/* Each page sets --dc (identity dot, non-text so 3:1 is the bar) and --dci
   (text-safe variant, >=4.5:1 on paper) on <body>. Eyebrows stay amber, which
   is already measured at 7.15:1 on steel — the dot colours are not used as
   body text anywhere. */
.vhero{position:relative;border-top:4px solid var(--dc-lit);border-bottom:1px solid var(--steel-700);}
.vhero-in{display:grid;grid-template-columns:minmax(0,1.06fr) minmax(0,.94fr);gap:clamp(26px,4vw,48px);align-items:center;padding-block:clamp(38px,5.5vw,70px);}
@media (max-width:900px){.vhero-in{grid-template-columns:1fr;}}
.vhero .dots .dot{background:var(--dc-lit);}
.vhero-copy{display:flex;flex-direction:column;gap:16px;}
.vhero-copy p.sub{font-size:clamp(16.5px,1.8vw,19px);color:var(--muted);max-width:48ch;}
.vphoto{border-radius:2px;overflow:hidden;aspect-ratio:4/3;}
.vphoto img{width:100%;height:100%;object-fit:cover;filter:saturate(.8) brightness(.9);}
.crumb{font-family:var(--mono);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);padding-top:18px;}
.crumb a{color:var(--muted);text-decoration:none;min-height:44px;display:inline-flex;align-items:center;}
.crumb a:hover{color:var(--ticket);text-decoration:underline;}
.two{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:16px;align-items:start;}
.plist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:13px;}
.plist li{position:relative;padding-left:010px;padding-left:22px;font-size:15.5px;color:var(--ink);line-height:1.5;}
.plist li::before{content:"";position:absolute;left:0;top:9px;width:9px;height:9px;border-radius:50%;background:var(--dc);}
.cta-band{background:var(--steel-800);border:1px solid var(--steel-700);border-top:4px solid var(--dc-lit);border-radius:2px;padding:clamp(24px,4vw,38px);display:flex;flex-wrap:wrap;gap:20px;align-items:center;justify-content:space-between;}
.cta-band h2{max-width:22ch;}
.cta-band .actions{display:flex;gap:11px;flex-wrap:wrap;}

.pkg{padding:15px 6px 17px;display:flex;flex-direction:column;gap:6px;}
.pkg-top{display:flex;align-items:baseline;gap:12px;}
.pkg-top b{font-family:var(--display);font-size:16.5px;font-weight:800;letter-spacing:-.01em;}
.pkg .was{font-family:var(--mono);font-size:12px;color:var(--ink-soft);text-decoration:line-through;}
.pkg .pr{font-family:var(--mono);font-size:13.5px;font-weight:700;}
.pkg .desc{padding-left:0;margin:0;}
.pkg .btn{align-self:flex-start;margin-top:6px;min-height:44px;padding:10px 16px;font-size:14.5px;}
.pkg .btn-quiet{color:var(--ink);border-color:#C0B9AB;}
.pkg .btn-quiet:hover{background:#EDE9E0;color:var(--ink);border-color:var(--ink);}
