/* KC Help Now print packs — built for a corkboard, a parish office,
   a laundromat. White paper, black ink, big numbers, one page. */
:root { --ink: #16324a; --soft: #44627a; --line: #c9d4dc; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #eef2f5;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.45;
}
.sheet {
  background: #fff;
  max-width: 8.5in;
  min-height: 10.4in;
  margin: 1rem auto;
  padding: 0.55in 0.6in;
  box-shadow: 0 2px 14px rgb(22 50 74 / 0.15);
  position: relative;
}
header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.4in; border-bottom: 3px solid var(--ink); padding-bottom: 0.12in; margin-bottom: 0.18in; }
header h1 { font-size: 21pt; line-height: 1.15; margin: 0; }
header .brand { font-size: 10pt; font-weight: 800; letter-spacing: 0.04em; }
header .qr { width: 1.15in; flex-shrink: 0; text-align: center; }
header .qr img { width: 1.15in; height: 1.15in; }
header .qr span { display: block; font-size: 7.5pt; color: var(--soft); }
.lead { font-size: 11.5pt; margin: 0.08in 0 0.16in; }
.block { border: 1.5pt solid var(--line); border-radius: 6pt; padding: 0.1in 0.14in; margin: 0 0 0.12in; break-inside: avoid; }
.block h2 { font-size: 12pt; margin: 0 0 0.03in; }
.block p { font-size: 10.5pt; margin: 0.03in 0; color: var(--soft); }
.block p strong { color: var(--ink); }
.tel { font-size: 14pt; font-weight: 800; color: var(--ink); white-space: nowrap; }
.warn { background: #f6f6f6; border-style: dashed; }
footer { position: absolute; bottom: 0.4in; left: 0.6in; right: 0.6in; border-top: 1.5pt solid var(--line); padding-top: 0.08in; font-size: 9pt; color: var(--soft); display: flex; justify-content: space-between; gap: 0.3in; }
.print-bar { max-width: 8.5in; margin: 0.8rem auto 0; display: flex; gap: 0.6rem; align-items: center; }
.print-bar button { padding: 0.55rem 1.1rem; font-size: 1rem; font-weight: 700; border: 1px solid var(--ink); border-radius: 8px; background: var(--ink); color: #fff; cursor: pointer; }
.print-bar a { color: var(--soft); font-size: 0.9rem; }
@media print {
  body { background: #fff; }
  .sheet { box-shadow: none; margin: 0; max-width: none; min-height: auto; }
  .print-bar { display: none; }
  @page { margin: 0.35in; }
}
