/*
 * Print stylesheet, loaded on /resume. Printing the page produces a clean
 * artifact (acceptance criterion). Paper goes white, chrome drops, red
 * de-emphasizes to black weight. Composition is Artlord's to refine; this
 * is the floor.
 */
@media print{
  body{background:#fff;color:#000;}
  /* Drop chrome and the interactive zones (rail + loupe selector); the
     inline read (zone 3) is the printable resume. The downloadable PDFs are
     the canonical print artifact. */
  .site-head,.site-nav,.site-foot,.skip,.resume-downloads,.timeline,.lenswrap{
    display:none !important;
  }
  a[href]::after{content:" (" attr(href) ")";font-size:0.85em;color:#555;}
  .m{color:#000;font-weight:700;}
}
