/* ===================================
   RESPONSIVE — ARRMARE GROUP
   =================================== */

/* ===== TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  :root {
    --section-pad-h: 4vw;
    --section-pad-v: 90px;
  }

  .about-container,
  .commitment-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrapper img {
    height: 340px;
  }

  .about-img-accent {
    display: none;
  }

  .commitment-visual img {
    height: 400px;
  }

  .commitment-quote {
    bottom: -16px;
    right: 0;
  }

  .essence-grid {
    grid-template-columns: 1fr;
  }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .contact-body {
    flex-direction: column;
    gap: 48px;
  }

  .contact-divider {
    width: 100%;
    height: 1px;
    align-self: unset;
  }
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-pad-h: 5vw;
    --section-pad-v: 70px;
  }

  /* Navbar mobile */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 48px;
    gap: 36px;
    transition: right 0.5s var(--ease-out);
    border-left: var(--border-light);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li a {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .nav-cta {
    border: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
  }

  /* Hero mobile */
  .hero {
    padding: 0 24px;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
  }

  .hero-dots {
    right: 20px;
  }

  /* Partners */
  .partners-track {
    gap: 48px;
  }

  .partners-track img {
    height: 28px;
  }

  /* About stats */
  .about-stats {
    gap: 24px;
  }

  /* Essence */
  .essence-card {
    padding: 40px 28px;
  }

  /* Commitment quote */
  .commitment-quote {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    margin-top: 16px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 28px;
  }

  .footer-copy {
    text-align: left;
    width: 100%;
  }
}

/* ===== LARGE SCREENS (≥ 1600px) ===== */
@media (min-width: 1600px) {
  :root {
    --section-pad-h: 8vw;
  }
}