/* ═══════════════════════════════════════════════
   AVENTRA INTERIORS — responsive.css
   Mobile & tablet breakpoints
═══════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ──────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-location { display: none; }

  .hero-h1 { font-size: 52px; }
  .hero-left { padding: 60px 40px; }
  .hero-stats { margin: 0 -40px; padding: 0 40px; }

  .about-section { padding: 80px 40px; gap: 48px; }
  .about-imgs { height: 460px; }

  .services-section { padding: 80px 40px; }
  .services-grid { gap: 1px; }
  .service-card { padding: 36px 28px; }

  .process-section { padding: 80px 40px; }
  .process-wrap { gap: 48px; }

  .portfolio-header { padding: 0 40px 40px; }
  .portfolio-tabs { padding: 0 40px; }

  .why-section { padding: 80px 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { padding: 36px 28px; }

  .cta-section { padding: 80px 40px; gap: 40px; }
  .cta-right { padding: 36px 28px; }

  footer { padding: 52px 40px 24px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── MOBILE LANDSCAPE / SMALL TABLET (max 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 24px; height: 64px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    border-bottom: 0.5px solid rgba(123,88,68,0.12);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(30,19,12,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 28px;
    border-bottom: 0.5px solid rgba(123,88,68,0.06);
    font-size: 12px;
  }
  .nav-cta { margin: 12px 28px; border-radius: 2px !important; text-align: center; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px 40px; min-height: 100vh; justify-content: center; }
  .hero-vert-text { display: none; }
  .hero-h1 { font-size: 46px; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin: 0 -24px; padding: 0 24px; }
  .hero-stat { padding: 14px 12px 14px 0; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-right { height: 60vw; }
  .hero-badge { display: none; }

  /* About */
  .about-section { grid-template-columns: 1fr; padding: 70px 24px; gap: 40px; }
  .about-imgs { height: 340px; }
  .about-img-main { width: 82%; height: 75%; }
  .about-img-accent { width: 55%; height: 50%; }
  .about-content { padding-right: 0; }
  .about-feats { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Services */
  .services-section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* Process */
  .process-section { padding: 70px 24px; }
  .process-wrap { grid-template-columns: 1fr; gap: 0; }
  .process-right { padding-top: 40px; }
  .process-img-wrap img { height: 300px; }
  .brands-strip { flex-wrap: wrap; gap: 16px; }

  /* Portfolio */
  .portfolio-section { padding-bottom: 0; }
  .portfolio-header { padding: 0 24px 36px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .portfolio-tabs { padding: 0 24px; }
  .portfolio-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3px;
  }
  .port-cell { height: 260px; }
  .port-cell.tall { grid-row: span 1; height: 320px; }
  .port-label { opacity: 1; }

  /* Why */
  .why-section { padding: 70px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-item { padding: 32px 24px; }
  .why-num { font-size: 42px; }

  /* CTA */
  .cta-section { grid-template-columns: 1fr; padding: 70px 24px; gap: 48px; }
  .cta-section::before, .cta-section::after { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-right { padding: 32px 24px; }

  /* Footer */
  footer { padding: 52px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ── SMALL MOBILE (max 480px) ─────────────────── */
@media (max-width: 480px) {
  .hero-h1 { font-size: 38px; }
  .hero-eyebrow { font-size: 8px; }

  .section-title { font-size: 30px; }

  .about-imgs { height: 280px; }
  .about-feats { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(even) { border-right: none; }
}
