/* ============================================================
   print.css — clean multi-page PDF (course requirement)
   Cmd/Ctrl-P → Save as PDF
   ============================================================ */
@media print{
  @page{ size:A3 portrait; margin:12mm; }

  html,body{ background:#fff !important; color:#16203A !important; }
  .progress,.dotnav,.scrollcue,.skip,.toggle{ display:none !important; }
  .reveal,.stagger > *,.chain__node,.chain__link{ opacity:1 !important; transform:none !important; }
  .draw{ stroke-dashoffset:0 !important; }
  .shimmer::after{ display:none !important; }

  .scene{
    min-height:auto !important; page-break-inside:avoid; break-inside:avoid;
    padding:18mm var(--pad) 16mm !important; display:block !important;
    box-shadow:none !important;
  }
  .scene + .scene{ page-break-before:always; }
  .scene[data-bg="navy"]{ background:#15233F !important; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
  *{ -webkit-print-color-adjust:exact !important; print-color-adjust:exact !important; }
  .flag-stripe{ height:6px !important; }
  .hero{ min-height:auto; }
  img,svg{ max-width:100% !important; }
}
