/* Price list, the sheet. Portrait Letter by default, A4 under html.a4 (the
   runtime swaps the @page rule). The business at the top, the title, then
   one line per item with a detail under it and the price at the right on a
   dotted leader. Colors only through --t-*; static font instances only. */

@font-face { font-family: "Newsreader"; src: url("/assets/fonts/newsreader-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: block; }
@font-face { font-family: "Newsreader"; src: url("/assets/fonts/newsreader-500-italic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: block; }
@font-face { font-family: "Inter Tight"; src: url("/assets/fonts/intertight-400.woff2") format("woff2"); font-weight: 400; font-display: block; }
@font-face { font-family: "Inter Tight"; src: url("/assets/fonts/intertight-500.woff2") format("woff2"); font-weight: 500; font-display: block; }

@page { size: Letter; margin: 0; }

:root { --t-paper: #ffffff; --t-ink: #1a1a1a; --t-accent: #1f4e79; --t-muted: #5b6b7a; }
html, body { margin: 0; padding: 0; background: #fff; }
[hidden] { display: none !important; }

.sheet {
  width: 8.5in; height: 11in; padding: 0.5in 0.6in 0.6in; box-sizing: border-box; position: relative; overflow: hidden;
  background: var(--t-paper); color: var(--t-ink);
  font: 400 10.5pt/1.4 "Inter Tight", system-ui, sans-serif;
  display: flex; flex-direction: column; gap: 0.28in;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
  --line: color-mix(in srgb, var(--t-muted) 45%, transparent);
}
html.a4 .sheet { width: 210mm; height: 297mm; }
.num { font-variant-numeric: tabular-nums; }

.head { flex: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 0.2in; border-bottom: 2pt solid var(--t-accent); padding-bottom: 0.16in; }
.biz { display: flex; align-items: center; gap: 0.14in; min-width: 0; }
.logo { height: 0.5in; width: auto; max-width: 1.6in; flex: none; }
.mark { width: 0.46in; height: 0.46in; flex: none; border: 1pt solid var(--t-accent); border-radius: 50%; display: grid; place-items: center; color: var(--t-accent); font: 500 14pt/1 "Newsreader", Georgia, serif; }
.biz h1 { margin: 0; font: 500 14pt/1.1 "Newsreader", Georgia, serif; color: var(--t-ink); white-space: nowrap; overflow: hidden; max-width: 3.4in; height: 1.1em; }
.ttl { flex: none; text-align: right; max-width: 3.7in; }
.ttl .word { font: 400 20pt/1.1 "Newsreader", Georgia, serif; color: var(--t-accent); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; height: 1.1em; }
.ttl .sub { margin: 5pt 0 0; font-size: 9pt; color: var(--t-muted); white-space: nowrap; overflow: hidden; height: 1.4em; }

/* The rows share the page: eight lines sit loose, eighteen sit close, and none runs off the foot. */
.table { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.rows { flex: 1; min-height: 0; display: flex; flex-direction: column; overflow: hidden; }
.prow { flex: 1 1 0; min-height: 0.34in; max-height: 0.56in; display: flex; align-items: center; gap: 8pt; border-bottom: 0.5pt solid var(--line); }
.name { flex: none; max-width: 5.2in; min-width: 0; display: flex; flex-direction: column; }
.name b { font-weight: 500; font-size: 10.5pt; white-space: nowrap; overflow: hidden; height: 1.4em; }
.name i { font-style: normal; font-size: 8.5pt; color: var(--t-muted); white-space: nowrap; overflow: hidden; height: 1.4em; }
.dots { flex: 1; border-bottom: 1pt dotted var(--t-muted); margin-bottom: 4pt; min-width: 0.4in; }
.price { flex: none; font: 500 11pt/1.4 "Newsreader", Georgia, serif; color: var(--t-ink); white-space: nowrap; }

.note { flex: none; margin: 0; font-size: 8.5pt; color: var(--t-muted); white-space: nowrap; overflow: hidden; height: 1.4em; }

.foot { position: absolute; left: 0.55in; right: 0.55in; bottom: 0.42in; font-size: 7.5pt; color: var(--t-muted); display: flex; justify-content: space-between; align-items: flex-end; }
.ruler { width: 1in; border-top: 0.5pt solid var(--t-muted); font-size: 6.5pt; color: var(--t-muted); text-align: center; line-height: 1.6; }
