/* REVIFY — print.css
   Optimizes for printing (notably the legal pages)
*/
@media print {
  :root {
    --bg: #ffffff;
    --text: #0A0A0A;
    --text-mute: #2a2a2a;
    --gold: #8a7542;
    --line: #d0d0d0;
  }

  html, body {
    background: white !important;
    color: #0A0A0A !important;
    font-size: 11pt;
    line-height: 1.5;
  }

  .grain,
  .glow,
  .nav,
  .nav__burger,
  .nav__mobile,
  .footer,
  .final-cta,
  .pull-quote,
  .hero__glow-1,
  .hero__glow-2,
  .page-header__glow,
  video, iframe {
    display: none !important;
  }

  body { padding-top: 0; }

  main {
    max-width: 6.5in;
    margin: 0 auto;
  }

  a { color: #0A0A0A; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.9em; color: #555; }
  a[href^="#"]::after,
  a[href^="mailto:"]::after { content: ""; }

  h1, h2, h3, h4 {
    color: #0A0A0A !important;
    font-family: Georgia, "Times New Roman", serif !important;
    page-break-after: avoid;
  }

  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; margin-top: 18pt; }
  h3 { font-size: 12pt; margin-top: 12pt; }

  p, ul, ol { orphans: 3; widows: 3; color: #2a2a2a !important; }

  .legal h2 { border-bottom: 1px solid #999; padding-bottom: 4pt; }
  .page-header { padding: 0.5in 0 0.25in; }
  .page-header__glow { display: none; }
  .legal { padding: 0; }

  section { padding: 0.25in 0; page-break-inside: avoid; }
}
