/* visibility helpers (ONLY here) */
.desktop-only{display:block}
.mobile-only{display:none}

/* suites grid */
@media (max-width: 980px){
  .grid-suites{grid-template-columns:repeat(2,1fr);}
  .field input,.field select{min-width:150px;}
}
@media (max-width: 680px){
  .grid-suites{grid-template-columns:1fr;}
  .desktop-only{display:none !important;}
  .mobile-only{display:block !important;}

  .booking-inner{
    width:calc(100% - 22px);
    border-radius:18px;
    justify-content:space-between;
  }
}