/* TallyPunch print styles — Letter portrait, ink-only (constitution principle 七) */
@media print {
  @page { size: Letter; margin: 0.55in 0.6in; }

  body { background: #fff !important; font-size: 12px; }
  .site-header, footer.site, .screen-only, .no-print { display: none !important; }
  .print-only { display: block !important; }
  .wrap { max-width: none; padding: 0; }
  .layout { display: block; padding: 0; }

  /* filled vs blank sheet selection (toggled by body class) */
  body.print-blank .sheet-filled { display: none !important; }
  body:not(.print-blank) .sheet-blank { display: none !important; }

  .sheet {
    color: #1c2420;
    font-size: 12.5px;
  }
  .sheet .p-head {
    display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 2px solid #1c2420; padding-bottom: 7px; margin-bottom: 12px;
  }
  .sheet .p-head .t { font-weight: 750; font-size: 15px; letter-spacing: -0.01em; }
  .sheet .p-head .s { font-family: var(--mono, monospace); font-size: 11px; color: #555; }
  .sheet .p-meta { display: flex; gap: 22px; font-size: 12px; margin-bottom: 10px; flex-wrap: wrap; }

  .sheet table { width: 100%; border-collapse: collapse; page-break-inside: auto; }
  .sheet th, .sheet td { border-bottom: 1px solid #ddd; padding: 5px 6px; text-align: left; font-size: 12px; }
  .sheet th { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #666; }
  .sheet td.num, .sheet th.num { text-align: right; font-family: var(--mono, monospace); }
  .sheet tr { page-break-inside: avoid; }

  .sheet .totals {
    display: flex; justify-content: flex-end; gap: 24px;
    margin-top: 9px; font-family: var(--mono, monospace); font-size: 12px;
  }
  .sheet .totals b { font-weight: 750; }
  .sheet .pay-line { text-align: right; font-family: var(--mono, monospace); font-size: 12px; margin-top: 4px; color: #333; }

  .sheet .sign { display: flex; gap: 40px; margin-top: 32px; page-break-inside: avoid; }
  .sheet .sign div { flex: 1; }
  .sheet .sign .line { border-bottom: 1px solid #1c2420; height: 26px; }
  .sheet .sign .cap { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #666; margin-top: 4px; }

  .sheet .p-legal { font-size: 9.5px; color: #777; margin-top: 22px; }

  /* biweekly: two weeks on one sheet, week2 avoids breaking mid-table */
  .sheet .week-block { page-break-inside: avoid; margin-bottom: 16px; }
  .sheet .p-week-label {
    font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
    color: #666; margin: 10px 0 4px;
  }
  .sheet .totals.grand {
    border-top: 2px solid #1c2420; padding-top: 7px;
    font-size: 12.5px;
  }

  /* decimal reference table print: tight two-column, must fit one page */
  .ref-print td, .ref-print th { padding: 2.5px 8px; font-size: 10.5px; }
}
