/* Phase 1-specific */
.highlight-band{
  background:var(--surface);border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:clamp(48px,6vw,96px) 0;
}
.amenities-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:var(--s5);
}
@media(min-width:640px){.amenities-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:900px){.amenities-grid{grid-template-columns:repeat(4,1fr)}}
.amenity-item{
  display:flex;align-items:flex-start;gap:var(--s4);
  padding:var(--s5);
  background:var(--surface-2);border:1px solid var(--border);
  border-radius:var(--r3);
}
.amenity-icon{
  width:36px;height:36px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--accent-low);border-radius:var(--r2);
}
.amenity-icon svg{width:16px;height:16px;stroke:var(--accent);fill:none;stroke-width:1.5}
.amenity-item p{font-size:var(--fs-sm);font-weight:600;color:var(--text-muted)}
