/* One-pagers (/packs/*.html) — the site's palette on a light, printable sheet.
   Same tokens as ../styles.css, inverted: cream page, plum ink. A4 first. */
:root {
  --plum: #2A1A2E; --plum2: #3D2438; --cream: #FFF4E6; --orange: #FF6B35; --gold: #F4B740;
  --ink: #2A1A2E; --ink2: #5A4A5E; --paper: #FFFDF9; --card: #FFF7EC; --line: #E9DCC8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--paper); line-height: 1.45; -webkit-font-smoothing: antialiased;
}
.sheet { max-width: 860px; margin: 0 auto; padding: 28px 24px 40px; }
a { color: #B94A1C; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Masthead */
.mast { display: flex; align-items: center; gap: 14px; border-bottom: 3px solid var(--gold); padding-bottom: 10px; margin-bottom: 16px; }
.balls { display: flex; gap: 5px; }
.ball { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 11px; color: #fff; }
.ball.g { background: var(--gold); color: var(--plum); }
.ball.r { background: #CB4A50; }
.ball.b { background: #2E83BC; }
.brand { font-weight: 800; letter-spacing: 1px; font-size: 15px; }
.brand .go { color: var(--orange); }
.mast .kicker { margin-left: auto; color: var(--ink2); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

h1 { font-size: 30px; line-height: 1.1; margin-bottom: 6px; }
.lede { color: var(--ink2); font-size: 16px; margin-bottom: 18px; max-width: 700px; }
h2 { font-size: 17px; margin: 18px 0 8px; padding-left: 10px; border-left: 4px solid var(--orange); }
h3 { font-size: 14px; margin-bottom: 3px; }
p, li { font-size: 13.5px; }
ul, ol { padding-left: 20px; }
li { margin-bottom: 3px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; break-inside: avoid; }
.card .meta { color: var(--ink2); font-size: 12px; margin-bottom: 4px; }
.card p { font-size: 12.5px; }
.steps { counter-reset: s; list-style: none; padding-left: 0; }
.steps li { position: relative; padding-left: 34px; margin-bottom: 7px; }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; display: grid; place-items: center; }
table { width: 100%; border-collapse: collapse; font-size: 12.5px; margin: 6px 0 10px; }
th, td { text-align: left; padding: 5px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--card); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink2); }
td.t { white-space: nowrap; font-weight: 700; color: #B94A1C; }
.callout { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 10px; padding: 10px 14px; margin: 12px 0; }
.callout p { font-size: 12.5px; }
.tip { font-size: 12px; color: var(--ink2); }
.pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 2px 9px; font-size: 11.5px; color: var(--ink2); margin: 2px 4px 2px 0; }
.honest { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 10px; font-size: 11.5px; color: var(--ink2); }
.links { margin-top: 10px; font-size: 12.5px; }
.links b { color: var(--ink); }
.printbar { text-align: right; margin-bottom: 8px; }
.printbar button { font: inherit; font-size: 13px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; }

@media (max-width: 640px) {
  .two, .three { grid-template-columns: 1fr; }
  h1 { font-size: 26px; }
}

@media print {
  @page { size: A4; margin: 12mm 12mm 12mm; }
  html { font-size: 13px; }
  body { background: #fff; color: #000; }
  .sheet { max-width: none; padding: 0; }
  .printbar { display: none; }
  a { color: #000; }
  .card, .callout, th { background: #fff; }
  .card, .callout { border-color: #bbb; }
  h2 { break-after: avoid; }
  .card, .callout, table, .steps li { break-inside: avoid; }
  .mast { border-bottom-color: #000; }
  .ball, .steps li::before { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
