/* Mobile clarity and performance pass: keep the first visit focused on one
   clear path, while the full editorial and capability content remains on
   desktop and in its dedicated pages. */
@media (max-width: 768px) {
  .site-shell {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .site-shell::before {
    display: none;
  }

  .page-topbar {
    backdrop-filter: none;
    background: rgba(12, 9, 8, 0.98);
  }

  .home-page .home-intro-panel,
  .home-page .home-services-panel,
  .home-page .home-about-panel {
    display: none;
  }

  .home-page .home-trust-strip {
    display: none;
  }

  .home-page-body .mobile-contact-dock {
    display: none;
  }

  .home-page .home-hero-intro--supplier .home-hero-intro-visual {
    min-height: 0;
    aspect-ratio: 1.42 / 1;
  }

  .home-page .home-hero-intro--supplier .home-hero-intro-visual img {
    object-position: 58% center;
  }

  .home-page .home-category-card {
    min-height: 188px;
  }

  .home-page .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .home-product-card:nth-child(n + 5) {
    display: none;
  }

  .home-page .home-products-more {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .home-page .home-products-more__link {
    width: min(100%, 280px);
    min-height: 48px;
    justify-content: center;
    border-color: rgba(215, 183, 122, 0.42);
    font-weight: 700;
  }

  .home-page .home-product-card .card-body {
    padding: 12px;
  }

  .home-page .home-product-card .card-title {
    font-size: 1rem;
    line-height: 1.12;
  }

  .home-page .home-product-card .card-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .home-page .home-product-card .feature-list {
    display: none;
  }

  .mobile-contact-dock {
    inset-inline: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    padding: 8px;
    gap: 8px;
    border-radius: 16px;
  }

  .mobile-contact-dock__button {
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .mobile-contact-dock {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.is-scroll-down .mobile-contact-dock {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 16px));
  }
}

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