/* ==========================================================================
   ROSADO SPA — MOBILE-FIRST RESPONSIVE STYLES
   Breakpoints, Touch Targets & Viewport Polish
   ========================================================================== */

/* --- Large Desktops (min-width: 1400px) --- */
@media (min-width: 1400px) {
  .hero-cinematic {
    min-height: 92vh;
  }
}

/* --- Desktops & Laptops (max-width: 1199.98px) --- */
@media (max-width: 1199.98px) {
  .nav-links-desktop {
    gap: 1.5rem;
  }
  
  .nav-link-item {
    font-size: 0.78rem;
  }
  
  .split-feature-section {
    gap: 3rem;
  }
}

/* --- Tablets & Landscape Handhelds (max-width: 991.98px) --- */
@media (max-width: 991.98px) {
  .nav-links-desktop,
  .nav-cta-btn {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .split-feature-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .split-feature-content.order-first {
    order: 2;
  }
  
  .split-feature-media.order-last {
    order: 1;
  }
  
  .hero-cinematic {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  
  .hero-metrics {
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Devices (max-width: 767.98px) --- */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 70px; /* Space for Mobile Quick Action Dock */
  }
  
  .mobile-action-dock {
    display: block;
  }
  
  .floating-whatsapp-btn {
    bottom: 5.5rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
  
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  
  .hero-cta-group .btn-luxury {
    width: 100%;
  }
  
  .hero-metrics {
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }
  
  .card-body-luxury {
    padding: 1.35rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* --- Small Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .nav-brand-title {
    font-size: 1.05rem;
  }
  
  .nav-brand-logo {
    width: 40px;
    height: 40px;
  }
  
  .hero-headline {
    font-size: 1.95rem;
  }
  
  .btn-luxury {
    padding: 0.85rem 1.6rem;
    font-size: 0.76rem;
  }
  
  .pillar-card,
  .journey-step-card,
  .booking-card-console {
/* --- Mobile Animation Overrides --- */
@media (max-width: 767.98px) {
  [data-animate="fade-up"] {
    transform: translateY(18px);
  }
  [data-animate="fade-down"] {
    transform: translateY(-14px);
  }
  [data-animate="fade-left"] {
    transform: translateX(-18px);
  }
  [data-animate="fade-right"] {
    transform: translateX(18px);
  }
  [data-animate="image-reveal"] {
    transform: scale(1.03);
    filter: blur(3px);
  }
  [data-animate] {
    transition-duration: 0.65s !important;
  }
}

