Hello, James!
The accommodation type single pages appear to be a custom post type, so they inherit the layout from the theme standard single.php template. In order to hide the comment form you may either add the following CSS under Appearance ->Customize ->Additional CSS:
.comment-reply-title, .comment-form {
display: none;
}
or use an additional plugin, e.g. the Disable Comments one. You may also want to check out this nice thread on how to disable comments on your website.
Regards,
Andre