/* Print Stylesheet */
@media print {
  /* Reset page */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  /* Hide non-essential elements */
  .site-header,
  .site-footer,
  .nav-toggle,
  .main-nav,
  .scroll-top,
  .skip-link,
  .cta-banner,
  .hero__actions,
  .btn,
  .lang-switch,
  .header-actions,
  .mobile-actions {
    display: none !important;
  }

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

  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

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

  p, li {
    orphans: 3;
    widows: 3;
  }

  table {
    border-collapse: collapse;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 8px;
  }

  /* Hero section — show content, remove dark bg */
  .hero {
    padding: 1rem 0 !important;
  }

  .hero h1 {
    font-size: 24pt;
  }

  /* Container */
  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1rem 0;
  }
}
