/* ==========================================================================
   §5.5 Print stylesheet.
   Applied when @media print — gives CMD-P a clean butcher-paper rendering.
   ========================================================================== */

@media print {
  :root {
    --bg-base: #f5f0e8;
    --bg-paper: #f5f0e8;
    --ink: #000;
    --ink-on-dark: #000;
    --mustard: #a87b00;
    --brood-red: #8b1a0a;
    --casing-red: #8b1a0a;
  }

  body {
    background: var(--bg-paper) !important;
    color: var(--ink) !important;
    font-family: var(--font-prose);
    font-size: 11pt;
    line-height: 1.55;
  }

  /* hide chrome */
  .nav,
  .footer .social,
  .shift-toggle,
  .sfx-toggle,
  .deli-case,
  .slicer,
  .ticket,
  audio,
  video,
  button,
  .btn { display: none !important; }

  /* wordmark at top of each printed page */
  @page {
    margin: 18mm 14mm;
    @top-center {
      content: 'THE BALONEY MANIFESTO';
      font-family: 'Ultra', serif;
      font-size: 14pt;
      letter-spacing: 2pt;
      color: #8b1a0a;
    }
    @bottom-center {
      content: 'Printed from thebaloney.ai · CC-BY 4.0 · Not suitable for wrapping deli meat — but thank you for trying · Page ' counter(page) ' of ' counter(pages);
      font-family: 'Rubik', sans-serif;
      font-size: 8pt;
      color: #5a4a3a;
    }
  }

  /* show URL next to links */
  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
    color: #5a4a3a;
    word-break: break-all;
  }

  /* transcript styling */
  .transcript {
    background: transparent;
    color: var(--ink);
    padding: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .transcript blockquote {
    color: #8b1a0a;
    border-left: 2pt solid #8b1a0a;
    transform: none;
  }

  /* avoid orphan headers */
  h1, h2, h3 { break-after: avoid; }
  p, li      { orphans: 3; widows: 3; }
}
