@media print {
  /* Hide non-content elements */
  .site-header,
  .site-footer,
  .reading-progress-bar,
  .dark-mode-toggle,
  .essay-nav,
  .appendix-toc,
  .appendix-toc-mobile,
  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  /* Reset colors for print */
  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  /* Remove max-width constraints for print */
  .content-column,
  .appendix-content {
    max-width: 100%;
    padding: 0;
  }

  .appendix-layout {
    display: block;
  }

  /* Typography for print */
  h1 { font-size: 18pt; }
  h2 { font-size: 14pt; }
  h3 { font-size: 12pt; }

  /* Prevent awkward page breaks */
  blockquote, table, figure {
    break-inside: avoid;
  }

  h1, h2, h3 {
    break-after: avoid;
  }

  /* Table borders for print */
  th, td {
    border: 1px solid #ccc;
  }

  tr:nth-child(even) {
    background-color: #f5f5f5;
  }
}
