/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Desktop: 1280px+
   Tablet landscape: 1024px
   Tablet portrait: 768px
   Mobile: 480px
   Small mobile: 360px
   ═══════════════════════════════════════ */

@media (max-width: 1280px) {
  .hero__content {
    max-width: 640px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

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

  .product-section {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 6vw, 3rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .brand-card {
    min-height: 360px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-2xl) 0;
  }

  .article__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .leader-card__photo {
    width: 140px;
    height: 140px;
  }

  /* Stack asymmetric grids on tablet */
  [style*="grid-template-columns: 7fr 5fr"],
  [style*="grid-template-columns: 5fr 7fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section {
    padding-block: var(--space-xl);
  }

  .card {
    padding: var(--space-md);
  }

  .brand-card {
    min-height: 280px;
    padding: var(--space-lg);
  }

  .map-embed {
    height: 280px;
  }

  .product-formats {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.6875rem;
  }
}
