Small Portfolio, Big Attention: We keep our portfolio small so that nothing goes unnoticed. Every detail is managed meticulously; nothing is on autopilot.
Personalized Approach: You might think a small portfolio is a drawback, but it’s quite the opposite. It allows us to provide a personalized approach and dedicated attention to each property.
Industry Innovators: We started during the transformative phase of the short-term rental market, positioning us at the forefront of the industry. We don’t just follow trends—we create them.
Driving Change: Our ambition is revolutionizing the short-term rental market, leaving legacy companies behind. We are leaders of this change, constantly innovating and adapting to stay ahead.
Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener("DOMContentLoaded", function () {
function validateCart() {
fetch('/cart.js')
.then(response => response.json())
.then(cart => {
let totalQuantity = cart.item_count;
let allowedQuantities = [3, 6, 12];
let checkoutButton = document.querySelector('[name="checkout"]');
if (!allowedQuantities.includes(totalQuantity)) {
alert("You can only order 3, 6, or 12 items in total.");
if (checkoutButton) checkoutButton.disabled = true;
} else {
if (checkoutButton) checkoutButton.disabled = false;
}
});
}
// Run validation when cart updates
document.addEventListener("change", function (event) {
if (event.target.closest(".cart__quantity-input")) {
setTimeout(validateCart, 500);
}
});
// Initial validation check
validateCart();
});