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

Chalet SéquoÏa

🗝️ Arrivée
Check-in standard
15h – 17h
Check-in vendredi
jusqu'à 21h
Accueil
Réception du parc
Linge de lit
À récupérer à la réception
Arrivée tardive ? Boîte à clés sécurisée à l'entrée du chalet. Code par SMS la veille. Le linge est alors déposé directement dans le chalet.

🚗 Departure

Check-out
before 10:00 AM
Late Sunday departure
until 5 PM · +€50
  • Rubbish to the waste area at the park entrance
  • Leave the chalet tidy — cleaning is included
Late Sunday departure available outside school holidays only, subject to availability. Must be requested at the time of booking.

💶 Rates & extras

Minimum stay
2 nights
Cleaning fee
€95 / stay
Bed linen
€12 / person
Bath towels
Rental at reception
Pets
€10 / stay
Late departure
+€50 (outside school hols)
Best price guaranteed with direct booking.

🅿️ Access & parking

  • Free parking right in front of the chalet
  • No stairs — level access, perfect for luggage, pushchairs and equipment
  • Chalets on the main lane of the park, easy to find
  • Electric vehicle charging point at the park entrance — ask at reception for details

🏡 Inside your chalet

  • Central heating with adjustable thermostat — chalet pre-heated on arrival
  • Smart TV with Chromecast (Netflix, YouTube, Disney+…)
  • High-speed WiFi throughout the chalet
  • Fully equipped kitchen: oven, microwave, dishwasher, coffee maker, Senseo, toaster, basic spices
  • Full crockery for 12 people — extendable table inside and outside
  • Outdoor games: table tennis, badminton, pétanque, Mölkky, football, basketball
  • High chair and travel cot available in each chalet
  • Séquoia 140 only: raclette and stone grill available

🐾 Your dogs are welcome

Per chalet
max 2 dogs
Séquoia Duo
4 dogs in total
  • Bowls, towels, waste bags and blankets provided
  • Welcome treat on arrival
  • Blankets available if your dog goes on the armchairs
  • Fully enclosed terrace — secure space to run freely
  • Walks accessible directly from the chalet, no car needed
  • The Ourthe river nearby for longer walks

🏊 Heated indoor pool — included

Open all year round. Usual opening hours outside school holidays:

Mon – Thu & Sat – Sun
10:00 AM → 5:00 PM
Friday
10:00 AM → 9:00 PM
School holidays
Variable hours — ask reception

☕ Breakfast delivered to your chalet

Breakfast in a Bag — artisan breakfast with local products, delivered to your door. Duo, family and group options. Order the day before — delivery 8–11 AM.


🍽️ Ready-made meals — Élise Émois

Home-made dishes available 24/7 via vending machines.

  • Rue de Lantigné 20, Durbuy
  • Rue de Fleurie 1, Durbuy (Tilman pharmacy car park)

❓ Frequently asked questions

Is bed linen included?
Yes (€12/person) — to collect at reception. Beds are not made up in advance. For late arrivals, linen is left inside the chalet.
Are bath towels provided?
No — available to rent at the park reception or on request.
Is there a supermarket nearby?
Spar Barvaux, 5 min away — Route de Marche, Barvaux-sur-Ourthe.
How many dogs can we bring?
2 per chalet, 4 for the Séquoia Duo. €10 supplement per stay.
Late Sunday check-out?
+€50, before 5 PM, outside school holidays. Must be mentioned at booking.
Electric vehicle charging?
Yes, at the park entrance — ask at reception for access details.

+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'}); } }); })();