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

Chalet SéquoÏa

Chalet Séquoïa 138

Séquoia 138
Cosy · Table époxy artisanale · Ambiance chaleureuse
74 m²
5 personnes + 1 bébé Ch.1 : lit 160 cm Ch.2 : 90 cm + 140 cm 1 salle de bain 2 chiens bienvenus Terrasse clôturée privative Table époxy artisanale Piscine couverte (parc) WiFi gratuit Parking gratuit Draps inclus (réception) Chaise haute & lit bébé

A chalet where everything is taken care of — all you need to do is arrive and let go.


Discover every corner of Séquoia 138: a cosy, light-filled chalet of 74 m², designed to make you feel right at home from the very first moment. Two bedrooms, an enclosed terrace, dog-friendly amenities and decoration that changes with the seasons.

A kitchen that feels like home

The kitchen in 138 is fully equipped so nothing is missing. Oven, microwave, dishwasher, coffee maker, senseo, toaster, spices, complete crockery. The blender is ready for morning smoothies. And when the sun is out, the large extendable table on the terrace is waiting for a meal outside, with grass beneath your feet.

Amenities: oven · microwave · dishwasher · coffee maker · toaster · blender · spices · complete crockery · extendable table (terrace)

Dinning room

A table with a story — handcrafted, made for meals that linger.

At the heart of the chalet, the handcrafted epoxy resin table invites you to stay a little longer. Every meal becomes a moment in itself, gathered around a one-of-a-kind piece. The dining room of 138 is also this: objects with a soul, not just furniture.

Amenities : handcrafted epoxy resin table · dining area · complete tableware

A living room to unwind, a terrace to breathe

The living room invites you to relax from the moment you step inside. Comfortable sofa, blankets, Smart TV for film evenings or lazy mornings. The enclosed terrace naturally extends the living space — perfect for a quiet coffee, a good book, or letting children and dogs enjoy some freedom. A games chest is waiting: table tennis, badminton, pétanque, Mölkky, football, basketball.

Amenities: Smart TV · sofa · enclosed terrace · games chest (table tennis, badminton, pétanque, Mölkky, football, basketball)

For truly restful nights

A bedroom that invites real rest. Not just sleep — recharge, breathe, leave feeling lighter.

The first bedroom features a large double bed (160 cm), in a soft and soothing atmosphere. Bed linen is included and waiting for you at the park reception on arrival — nothing to plan, nothing to carry.

Amenities: double bed 160 cm · bed linen included (collect at reception)

Their own space — so everyone feels at ease

Designed so children have a space of their own. Because when they're happy, everyone is.

Two separate beds — 90 cm and 140 cm — for an ideal family configuration. A travel cot can also be provided on request. Every child has their own corner, their own place.

Amenities: bed 90 cm · bed 140 cm · travel cot on request · bed linen included (collect at reception)

Bathroom Everything you need, nothing you don't

Nothing superfluous, everything essential. Because a good shower after a walk in the Ardennes is priceless.


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