@media print {
  /* Hide non-printable elements */
  nav,
  aside,
  footer,
  .sticky,
  [data-no-print],
  .action-bar-container,
  button,
  .feedback-widget {
    display: none !important;
  }

  /* Reset page */
  body {
    margin: 0;
    padding: 0;
    background: white !important;
    color: #1a1a1a !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.6;
  }

  /* Page settings */
  @page {
    margin: 0.75in;
    size: letter;
  }

  /* Print container */
  .print-guide {
    display: block !important;
  }

  /* Cover page */
  .print-cover {
    page-break-after: always;
    text-align: center;
    padding-top: 3in;
  }

  .print-cover img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 3px solid #1B4D3E;
  }

  .print-cover h1 {
    font-family: Georgia, serif;
    font-size: 28pt;
    color: #1B4D3E;
    margin: 0 0 8px;
  }

  .print-cover .tagline {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14pt;
    color: #E85D3A;
  }

  .print-cover .prefix {
    font-size: 10pt;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 8px;
  }

  /* Headings: never split from following content */
  h1, h2, h3, h4, h5, h6 {
    break-after: avoid;
    page-break-after: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Paragraphs: avoid orphans and widows */
  p, li {
    orphans: 3;
    widows: 3;
  }

  /* Chapters */
  .print-chapter {
    page-break-before: always;
  }

  .print-chapter-number {
    font-size: 9pt;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1B4D3E;
    font-weight: 600;
    margin-bottom: 4px;
    break-after: avoid;
    page-break-after: avoid;
  }

  .print-chapter-title {
    font-family: Georgia, serif;
    font-size: 20pt;
    font-weight: 700;
    color: #1B4D3E;
    margin: 0 0 16px;
    break-after: avoid;
    page-break-after: avoid;
  }

  .print-chapter-body {
    font-family: Georgia, serif;
    font-size: 12pt;
    line-height: 1.7;
    color: #3D3D3A;
  }

  .print-chapter-body h3,
  .print-chapter-body h4 {
    font-family: Georgia, serif;
    color: #1B4D3E;
    margin-top: 16px;
    margin-bottom: 8px;
    break-after: avoid;
    page-break-after: avoid;
  }

  .print-chapter-body ul,
  .print-chapter-body ol {
    padding-left: 24px;
    margin-bottom: 12px;
  }

  .print-chapter-body p {
    margin-bottom: 12px;
    orphans: 3;
    widows: 3;
  }

  /* Quote page */
  .print-quote {
    page-break-before: always;
    text-align: center;
    padding-top: 3in;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18pt;
    color: #1B4D3E;
    line-height: 1.5;
  }

  /* Images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
