Chalets Séquoia · Durbuy
📅 Disponibilités 💬 Réserver Séquoia Duo
Logo

Chalet SéquoÏa

Séquoia A-frame chalet in Durbuy Belgian Ardennes

Durbuy · Belgian Ardennes

Forest, Ourthe,
two chalets to breathe

Heated indoor pool · Dogs welcome · Enclosed terrace

Heated pool
Dogs welcome
Enclosed terrace
Nature & hiking
Dog welcome in Séquoia chalet Durbuy

Feel at home,
with the whole family

Dogs welcome · Welcome kit included

5.0
★★★★★Google Reviews
★★★★★

We booked chalets 138 and 140 side by side. Coffee, tea, spices — everything provided. Stunning setting, lovely warm pool. Valérie replies super fast.

Linda T. · Local Guide
★★★★★

Warm and cosy chalet. Thank you for welcoming our four-legged friends and for the little touches — even a water bowl during our family dinner.

Dorothée
★★★★★

Carefully decorated, warm and tasteful. Communication with Valérie was excellent: very pleasant, helpful and incredibly responsive.

Alka P. · Local Guide
See all Google reviews

Practical information

Arrival3 PM – 5 PM (9 PM fri.)
Departurebefore 10 AM
Minimum stay2 nights
Cleaning€95 / stay
Bed linen€12 / person
Pet€10 / stay
All practical info

Chalets in Durbuy with enclosed terrace and heated indoor pool

The Séquoia Chalets, located in the heart of the Belgian Ardennes in Durbuy, welcome you for a relaxing stay. Two A-frame chalets — Séquoia 138 and Séquoia 140 — available separately or combined as Séquoia Duo for up to 10 people.

  • Heated indoor pool, open all year round
  • Fully enclosed terrace, safe for children and dogs
  • Dogs welcome — up to 2 per chalet, 4 for the Duo
  • Walks directly from the chalet, no car needed
  • Direct booking → best price guaranteed

Dog-friendly holiday in Durbuy

Your dogs are warmly welcome in our chalets. The fully enclosed terrace provides a safe outdoor space. A welcome kit (bowls, towels, treats) is ready on arrival. Numerous walks accessible directly from the chalet make a stay with your dog in the Ardennes truly special.


What to do in Durbuy and the surrounding area?

Located minutes from the historic centre of Durbuy, the Séquoia chalets are the perfect base for exploring the Belgian Ardennes. Walks along the Ourthe, Adventure Valley, the Barvaux Maze and the Topiary Garden are perfect for all the family.

Chalets Séquoia · Durbuy

Disponibilités & Tarifs

Available
Booked
Today
Selected

Click on an arrival date, then on a departure date

⏳ Loading availability...

Our rates

SeasonSéquoia 138Séquoia 140Séquoia Duo
Low / mid season from €85/nightfrom €85/nightfrom €170/night
High season from €132/nightfrom €132/nightfrom €264/night
Very high season from €148/nightfrom €148/nightfrom €296/night

Additional fees

  • Minimum stay : 2 nights
  • Cleaning fee : €95 / stay
  • Bed linen : €12 / person / stay
  • Exact price shown at time of booking

Best price guaranteed when booking direct · Synchronised in real time

Restez informé de nos offres à Durbuy

Recevez nos disponibilités, offres spéciales et idées de séjour en Ardennes. Quelques emails par an, sans spam.

Désinscription possible à tout moment.

+32486970815

©2026 Logo All rights reserved - Powered byLodgify
// ═══════════════════════════════════════════════ // CHALETS SÉQUOIA DURBUY — JavaScript personnalisé // ═══════════════════════════════════════════════ // 1. CACHER LA STICKY BAR SUR LES PAGES RÉSERVATION (function() { var path = window.location.pathname; var hideOnPages = ['/reservation', '/booking']; var shouldHide = hideOnPages.some(function(p) { return path.indexOf(p) !== -1; }); if (shouldHide) { var bar = document.getElementById('sequoia-sticky-bar'); if (bar) bar.style.display = 'none'; } })(); // 2. TRACKING GA4 — CLICS WHATSAPP // Envoie un événement dans GA4 à chaque clic sur un lien WhatsApp document.addEventListener('click', function(e) { var el = e.target.closest('a'); if (!el) return; var href = el.href || ''; if (href.indexOf('wa.me') !== -1 || href.indexOf('whatsapp') !== -1) { // Détecter le contexte du clic var label = 'WhatsApp général'; if (href.indexOf('138') !== -1) label = 'WhatsApp Séquoia 138'; else if (href.indexOf('140') !== -1) label = 'WhatsApp Séquoia 140'; else if (href.indexOf('Duo') !== -1 || href.indexOf('duo') !== -1) label = 'WhatsApp Séquoia Duo'; else if (href.indexOf('question') !== -1) label = 'WhatsApp FAQ'; if (typeof gtag === 'function') { gtag('event', 'whatsapp_click', { 'event_category': 'Contact', 'event_label': label, 'page_path': window.location.pathname }); } // Compatible GTM dataLayer aussi if (window.dataLayer) { window.dataLayer.push({ 'event': 'whatsapp_click', 'click_label': label, 'page_path': window.location.pathname }); } } }); // 3. TRACKING GA4 — CLICS DISPONIBILITÉS document.addEventListener('click', function(e) { var el = e.target.closest('a'); if (!el) return; var href = el.href || ''; var text = el.textContent.trim().toLowerCase(); if ( href.indexOf('disponibilit') !== -1 || href.indexOf('tarifs') !== -1 || href.indexOf('prijzen') !== -1 || text.indexOf('disponib') !== -1 || text.indexOf('beschikbaar') !== -1 ) { if (typeof gtag === 'function') { gtag('event', 'disponibilites_click', { 'event_category': 'Navigation', 'event_label': 'Voir disponibilités', 'page_path': window.location.pathname }); } if (window.dataLayer) { window.dataLayer.push({ 'event': 'disponibilites_click', 'page_path': window.location.pathname }); } } }); // 4. POPUP DE SORTIE — WhatsApp // Apparaît une seule fois quand la souris quitte la fenêtre vers le haut (function() { var shown = false; // Ne pas afficher sur mobile (pas de mouvement souris) ni sur pages réservation var isMobile = /Mobi|Android/i.test(navigator.userAgent); var isBookingPage = window.location.pathname.indexOf('reservation') !== -1 || window.location.pathname.indexOf('booking') !== -1; if (isMobile || isBookingPage) return; // Ne pas afficher si déjà montré dans cette session if (sessionStorage.getItem('exitPopupShown')) return; document.addEventListener('mouseleave', function(e) { if (e.clientY > 20 || shown) return; shown = true; sessionStorage.setItem('exitPopupShown', '1'); // Créer le popup var overlay = document.createElement('div'); overlay.id = 'sequoia-exit-popup'; overlay.style.cssText = [ 'position:fixed', 'inset:0', 'z-index:9999', 'background:rgba(42,34,24,0.75)', 'display:flex', 'align-items:center', 'justify-content:center', 'padding:1.5rem', 'animation:fadeIn 0.3s ease' ].join(';'); overlay.innerHTML = [ '', '' ].join(''); document.body.appendChild(overlay); // Fermeture document.getElementById('sequoia-popup-close').addEventListener('click', function() { overlay.remove(); }); overlay.addEventListener('click', function(e) { if (e.target === overlay) overlay.remove(); }); // Tracking GA4 if (typeof gtag === 'function') { gtag('event', 'exit_popup_shown', {'event_category': 'Engagement'}); } }); })();