/* ---------- Responsive ---------- */
@media (min-width: 900px) {
  .gallery-item {
    height: 300px;
  }
}

@media (max-width: 900px) {

  /* .page-header {
    background: linear-gradient(160deg, var(--navy), var(--navy-2));
  } */

  .hero-inner,
  .story-grid,
  .vm-grid,
  .info-grid-2,
  .mb-grid,
  .contact-grid,
  .substrate-intro,
  .tobacco-banner {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .app-grid,
  .values-grid,
  .info-grid-3,
  .gallery-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
  }

  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
  }

  .hero-image img {
    height: 100%;
  }

  .story-image-frame img {
    height: 100%;
  }

  /* .page-header-flags {
    visibility: visible;
  } */
}


@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: #fff;
    /* match your site bg */
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    gap: 20px;
    transition: transform 0.35s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link,
  .btn-quote {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.5fr;
  }

  .btn-quote {
    color: #3c4d54;
    background: unset;
    margin-left: 0;
    box-shadow: unset;
    padding: 9px 15px;
  }
}

@media (max-width: 600px) {

  .product-grid,
  .app-grid,
  .values-grid,
  .info-grid-3,
  .gallery-grid-3,
  .trust-strip .container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .nav-links {
    flex-wrap: wrap;
    /* justify-content: center; */
  }
}