/* ── PROJECT-SPECIFIC OVERRIDES ──
   Only styles unique to this project.
   Base styles → ../css/lp-base.css
   Variables   → ../css/lp-variables.css
*/

/* Floor plan grid — centered compact cards (Godrej model) */
.floorplan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.fp-card {
  width: 320px;
  max-width: 340px;
  flex: 0 0 320px;
}

@media (max-width: 768px) {
  .fp-card {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.fp-size {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

.fp-tag {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* Amenity grid — 22 cards */
.amenity-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}