/* ==========================================================================
   2088 RECORDS — RESPONSIVE
   ========================================================================== */

/* Laptop */
@media (max-width: 1200px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  :root { --content-width: 100%; }
}

/* Tablet */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    background: rgba(5, 10, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-smooth);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .contact-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --space-xl: 5rem; --space-xxl: 7rem; }
  .card-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .newsletter-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-form { max-width: none; }
  .filter-tabs { gap: 0.5rem; }
  .filter-tab { padding: 0.6rem 1rem; font-size: 0.65rem; }
  .contact-form { padding: var(--space-md); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .banner { padding-top: calc(var(--nav-height) + 2.5rem); }
}
@media (max-width:768px){

    .info-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

}
@media (max-width: 768px){

    .about-preview-grid{
        grid-template-columns: 1fr;
    }

}


