/* ============================================
   RESPONSIVE — Motion, Print
   ============================================ */

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ── Print Styles ── */
@media print {
  .site-header,
  .site-nav,
  .hamburger,
  .mobile-menu,
  .mobile-menu__overlay,
  .back-to-top,
  .scroll-indicator,
  .gallery-filter,
  .lightbox,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  .site-footer {
    background: #fff;
    color: #333;
    border-top: 2px solid #000;
    padding-top: 1rem;
  }

  .page-hero {
    min-height: auto;
    padding: 1rem 0;
    background: none !important;
  }

  .page-hero__overlay {
    display: none;
  }

  .page-hero__title {
    color: #000;
    font-size: 24pt;
  }

  .page-hero__subtitle {
    color: #333;
  }

  .section, .section--alt, .section--dark {
    padding: 1rem 0;
    background: none;
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .nav__link[href]::after,
  .mobile-menu__link[href]::after,
  .footer__link[href]::after {
    content: none;
  }

  img {
    max-width: 100% !important;
    break-inside: avoid;
  }

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