@media print {
  /* Reset backgrounds and colors for printing */
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border-color: #ccc !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Hide non-content elements */
  .site-header,
  .hamburger,
  .main-nav,
  .hero,
  .hero--short,
  .menu-nav,
  .cta-banner,
  .back-to-top,
  .skip-link,
  .map-container,
  .btn,
  .footer__links,
  .parking-info {
    display: none !important;
  }

  /* Show footer address info only */
  .site-footer {
    border-top: 1px solid #ccc !important;
    padding: 1rem 0 !important;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Remove fixed positioning */
  .site-header {
    position: static !important;
  }

  main {
    padding-top: 0 !important;
  }

  /* Ensure images print nicely */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Page breaks */
  h2, h3 {
    page-break-after: avoid;
  }

  .menu-section {
    page-break-inside: avoid;
  }

  /* Menu items: restore dots for print */
  .menu-item__dots {
    border-color: #999 !important;
  }

  /* Tags should remain visible */
  .tag {
    border: 1px solid #999 !important;
    padding: 0.1rem 0.3rem !important;
  }

  /* Links: show URL after */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
    word-break: break-all;
  }

  /* But not for nav links or buttons */
  .main-nav a::after,
  .btn::after,
  .footer__links a::after {
    content: none !important;
  }
}
