@media print {
  /* Hide non-essential elements */
  .site-header,
  .site-footer,
  .mobile-menu-toggle,
  .hamburger,
  .back-to-top,
  .phone-float,
  .cookie-banner,
  .cta-section,
  .cta-banner,
  nav,
  .breadcrumb,
  .theme-toggle,
  button:not([type="submit"]) {
    display: none !important;
  }

  /* Reset backgrounds and colors for printing */
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Show URLs after links */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

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

  /* Prevent page breaks inside important elements */
  h1, h2, h3, h4 {
    page-break-after: avoid;
    break-after: avoid;
  }

  article, section, .card, .team-member {
    page-break-inside: avoid;
    break-inside: avoid;
  }

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

  /* Show full width */
  .container, .container-narrow, main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
