@media (max-width: 640px) {
  :root { --text-scale: 0.7; }

  /* Nav: show hamburger on mobile */
  .nav-toggle { display: flex; }

  /* Hero gold shimmer — mobile enhanced (+20% opacity) */
  .hero::after {
    background: linear-gradient(105deg,
      transparent 25%, rgba(201,131,68,0.14) 42%, rgba(201,131,68,0.22) 50%, rgba(201,131,68,0.14) 58%, transparent 75%);
    background-size: 180% 100%;
    animation: goldShimmer 5s ease-in-out infinite;
  }

  /* Ambient light orb — mobile enhanced (+20% intensity) */
  body::before {
    width: 320px; height: 320px;
    top: 65%; left: 50%;
    background: radial-gradient(circle, rgba(255,255,250,0.13) 0%, rgba(255,250,240,0.09) 15%, rgba(255,245,230,0.05) 35%, rgba(255,240,220,0.02) 60%, rgba(255,238,210,0.006) 85%, transparent 100%);
    animation: orbBreathe 7s ease-in-out infinite;
  }

  .my-needs-modal {
    max-width: 100%; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom, 20px));
    position: fixed; bottom: 0; left: 0; right: 0;
    transform: translateY(100%);
    max-height: 90vh; overflow-y: auto;
  }
  .booking-modal-overlay { align-items: flex-end; }
  .booking-modal-overlay.active .my-needs-modal { transform: translateY(0); }
  .my-needs-form-group input { font-size: 16px; padding: 12px 52px 12px 14px; min-height: 48px; }
  .my-needs-btn { min-height: 48px; font-size: 14px; }
  .my-needs-title { font-size: 20px; }
  /* Match card: single-column vertical by default, no grid needed */
  .my-needs-match-card {
    border-radius: 10px;
  }
  .match-body {
    padding: 16px 16px 0;
  }
  .match-name-row .match-name {
    font-size: 18px;
  }
  .match-stats-row {
    gap: 16px;
  }
  .match-stat-val {
    font-size: 20px;
  }
  .match-contact-pill {
    margin: 0 16px 16px;
    padding: 13px 0;
    font-size: 14px;
  }
}


/* ----- Tablet & Mobile shared: ≤1024px ----- */

@media (max-width: 640px) {
  :root { --text-scale: 0.7; }
  /* Full single-column */
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .quality-grid { grid-template-columns: 1fr 1fr; max-width: 480px; margin: 0 auto; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gateway-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .building-specs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-item { padding: 12px 8px; }

  /* Nav */
  .nav { height: 60px; padding: 0 max(16px, env(safe-area-inset-left, 0px)) 0 max(16px, env(safe-area-inset-right, 0px)); }
  .nav-logo { font-size: 16px; }
  .nav-cta { position: fixed; top: 12px; right: max(16px, env(safe-area-inset-right, 0px)); z-index: 5000; font-size: 12px; padding: 10px 18px; border-radius: 20px; background: var(--accent); color: #000; border: none; font-weight: 700; }
  :root { --nav-height: 60px; }

  /* Hero */
  .hero { min-height: 100vh; height: auto; padding: 120px 0 80px; }
  .hero-video-desk { display: none; }
  .hero-video-mobi { display: block; }
  .hero-title { font-size: clamp(28px, 9vw, 42px); margin-bottom: 12px; }
  .hero-sub { font-size: 9px; letter-spacing: 2px; margin-bottom: 28px; }
  .hero-badge { font-size: 9px; padding: 5px 14px; margin-bottom: 24px; letter-spacing: 1.5px; }
  .hero-cta-group { flex-direction: column; align-items: center; width: 100%; gap: 10px; }
  .hero-cta-group .btn { width: auto; min-width: 120px; justify-content: center; padding: 8px 16px; font-size: 12px; }
  .hero-scroll { bottom: 24px; }
  .hero-content { padding: 0 20px; }

  /* Sections */
  .section { padding: 40px 16px; }
  .section-header { margin-bottom: 32px; }
  .section-label { font-size: 8px; letter-spacing: 2px; margin-bottom: 8px; }
  .section-title { font-size: clamp(17px, 5vw, 22px); margin-bottom: 10px; }
  .section-desc { font-size: 9px; line-height: 1.7; }

  /* Gateway */
  .gateway-visual img { min-height: 200px; max-height: 320px; }

  /* Cards */
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 13px; }
  .feature-card p { font-size: 9px; }
  .feature-icon { width: 20px; height: 20px; font-size: 9px; margin-bottom: 16px; margin-right: 6px; vertical-align: middle; display: inline-flex; }

  /* Transport */
  .transport-main { padding: 20px 18px; gap: 20px; }
  .transport-num { font-size: 20px; min-width: 60px; }
  .transport-num small { font-size: 8px; }
  .transport-item h4 { font-size: 9px; }
  .highlight-row { padding: 14px 18px; gap: 12px; }
  .highlight-row span { font-size: 9px; }

  /* Building */
  .building-image img { min-height: 200px; max-height: 360px; }
  .spec-num { font-size: 14px; }

  /* CTA Banner */
  .cta-banner { padding: 40px 20px; margin: 40px auto; border-radius: var(--radius); background-size: cover !important; background-position: center !important; }
	.cta-banner-overlay { border-radius: var(--radius); }
  .cta-banner h2 { font-size: clamp(15px, 4vw, 20px); }
  .cta-banner p { font-size: 9px; }

  /* Quality */
  .quality-card { padding: 16px 12px; }
  .quality-icon { font-size: 20px; margin-bottom: 12px; }
  .quality-card h4 { font-size: 9px; }

  /* Leasing */
  .leasing-card { padding: 24px 20px; }
  .leasing-card-row { grid-template-columns: 1fr; gap: 10px; }
  .leasing-card-images { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }


	  /* Brands */
	  .brands-stage { aspect-ratio: 4 / 3; max-height: 300px; }
	  .brand-bubble { font-size: 11px; }
  /* Footer */
  .footer { padding: 40px 20px calc(24px + env(safe-area-inset-bottom, 0px)); }
  .footer h4 { margin-bottom: 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 11px; }
  .footer-info { flex-direction: column; gap: 4px; }
  .footer-info-sep { display: none; }
  .footer-legal { flex-direction: column; gap: 4px; }
  .footer ul { gap: 8px; }

  /* Booking modal — bottom sheet */
  .booking-modal {
    max-width: 100%; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 28px 20px calc(28px + env(safe-area-inset-bottom, 20px));
    position: fixed; bottom: 0; left: 0; right: 0;
    transform: translateY(100%);
    max-height: 85vh; overflow-y: auto;
  }
  .booking-modal-overlay { align-items: flex-end; }
  .booking-modal-overlay.active .booking-modal { transform: translateY(0); }
  .booking-modal .contact-name { font-size: 20px; }
  .booking-modal .contact-avatar { width: 64px; height: 64px; }
  .booking-modal .contact-info-item { font-size: 14px; padding: 10px 14px; }

	  /* 30% text reduction for base content styles */
	  .stat-value { font-size: 20px; }
	  .stat-label { font-size: 9px; }
	  .leasing-card-body-text h3 { font-size: 14px; }
	  .leasing-card-body-text .area { font-size: 20px; }
	  .leasing-card-body-text .area small { font-size: 10px; }
	  .leasing-card-body-text p { font-size: 10px; }
	  .leasing-card-body-text ul li { font-size: 9px; }
	  .transport-item p { font-size: 9px; }
	  .highlight-row small { font-size: 9px; }
	  .spec-label { font-size: 9px; }
	  .quality-card p { font-size: 9px; }
	  .footer h4 { font-size: 9px; }
	  .footer ul li a { font-size: 9px; }
	  .footer-brand p { font-size: 9px; }
	  .footer-contact p { font-size: 9px; }
	  .tag { font-size: 8px; }
	  .gateway-visual + .fade-up p { font-size: 12px !important; }
	  .building-showcase .fade-up p { font-size: 12px !important; }
	  .building-showcase .fade-up li { font-size: 9px !important; }
}

/* ----- Small Phone: ≤400px ----- */

@media (max-width: 400px) {
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(24px, 10vw, 34px); }
  .hero-badge { font-size: 9px; padding: 4px 12px; }
  .hero-scroll { display: none; }

  .section { padding: 36px 14px; }
  .section-header { margin-bottom: 24px; }

  .gateway-stats { grid-template-columns: 1fr; gap: 8px; }
  .building-specs { grid-template-columns: 1fr; gap: 6px; }
  .spec-item { padding: 10px 6px; }
  .spec-num { font-size: 13px; }
  .spec-label { font-size: 8px; }

  .cta-banner { padding: 32px 16px; margin: 32px auto; }
  .cta-banner h2 { font-size: 14px; }

  .quality-grid { grid-template-columns: 1fr 1fr; max-width: 480px; margin: 0 auto; }
  .feature-card { padding: 20px 16px; }
  .feature-card h3 { font-size: 12px; }

  .leasing-card { padding: 20px 16px; }
  .leasing-card-row { grid-template-columns: 1fr; gap: 8px; }
  .leasing-card-images { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

  .mobile-nav { width: 100%; }

  .booking-modal { padding: 24px 16px calc(24px + env(safe-area-inset-bottom, 16px)); }
  .btn { padding: 12px 20px; font-size: 14px; }
}
