@media print {
  /* Hide navigation and decorative chrome */
  header,
  nav.navbar,
  footer,
  .skip-link,
  .btn,
  .card-footer {
    display: none !important;
  }

  /* White background, black text for ink efficiency */
  body,
  main,
  section,
  .card,
  .card-body,
  .card-header {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  /* Collapse hero sections — print is text only */
  .home-section,
  .baccto-section,
  .gm-section,
  .general-section,
  .grow-top-section,
  .grow-section,
  .bottom-section {
    min-height: 0 !important;
    height: auto;
  }

  /* Hide full-bleed hero and footer background images */
  .home-img,
  .grow-bg {
    display: none !important;
  }

  /* Expand printed links so the URL is visible */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #555;
  }

  /* Don't expand anchor-only or JS links */
  a[href^='#']::after,
  a[href^='javascript']::after {
    content: '';
  }

  /* Orphan / widow control */
  h1,
  h2,
  h3 {
    page-break-after: avoid;
    break-after: avoid;
  }

  .card,
  figure {
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
