/* === Tablet (max-width: 1024px) === */
@media (max-width: 1024px) {
  :root {
    --space-5xl: 96px;
    --space-4xl: 72px;
    --space-3xl: 48px;
    --space-xl: 24px;
  }

  .header__nav {
    display: none;
  }

  .header__actions .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about__image {
    max-width: 480px;
    margin: 0 auto;
  }

  .masonry {
    columns: 2;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Mobile Landscape / Large Phones (max-width: 768px) === */
@media (max-width: 768px) {
  :root {
    --space-section: 64px 0;
    --header-height: 72px;
    --space-5xl: 64px;
    --space-4xl: 48px;
    --space-3xl: 40px;
    --space-xl: 20px;
    --space-lg: 16px;
  }

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

  .container {
    padding: 0 var(--space-lg);
  }

  .topbar__contact-item:nth-child(3) {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .masonry {
    columns: 2;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline__item {
    padding-left: 64px;
  }

  .timeline__marker {
    width: 48px;
    height: 48px;
    font-size: 0.75rem;
  }

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

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .style-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

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

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    bottom: 20px;
    right: 16px;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
}

/* === Small Phones (max-width: 480px) === */
@media (max-width: 480px) {
  :root {
    --space-4xl: 48px;
    --space-3xl: 32px;
    --space-xl: 16px;
    --space-lg: 12px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .topbar__contact {
    gap: var(--space-md);
  }

  .topbar__contact-item:nth-child(2),
  .topbar__contact-item:nth-child(3) {
    display: none;
  }

  .masonry {
    columns: 1;
  }

  .filter-bar {
    gap: var(--space-xs);
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .style-category-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    bottom: 16px;
    right: 12px;
  }

  .back-to-top {
    bottom: 72px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }
}

/* === Large Desktops (min-width: 1440px) === */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 5.5rem;
  }

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