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

Chalet SéquoÏa

Chalet

Chalet Séquoia 138

  • 5 Guests
  • 2 Bedrooms
  • 4 Beds
  • 1 Bathroom

Highlights

Parking

Pets welcome

Wireless Broadband Internet

Pictures

Amenities

Pool & spa facilities

Shared heated indoor swimming pool, Swimming pool

Parking & facilities

Parking, Parking lot, Parking on street, Parking option included, Shared playground, Shared tennis court

Services

Housekeeper included

Policies

Children welcome, Pets allowed, Smoking not allowed

Entertainment

Beach chairs, Ping pong table, DVD player, TV antenna

Bathroom & laundry

Bed linen, Blow dryer, Essentials, Shower, Washbasin

Heating & cooling

Central heating, General heating

Internet & office

Wireless Broadband Internet wireless

Kitchen & dining

Blender, Baby high chair, Coffee machine, Cooking utensils, Dishwasher, Kitchen stove, Microwave, Oven, Refrigerator, Spices, Toaster, Vacuum cleaner, Water purifier

Home Safety

Carbon monoxide detector, Fire extinguisher, First aid kit, Smoke detector

House Rules

  • Pets welcome

  • Smoking not allowed

  • Children welcome

  • Housekeeper Included

  • Check-in03:00 PM
  • Check-out10:00 AM

Location

Rue d'Andenne, 20, Durbuy, Belgium

Rates

Tarif par défautcost per extra guest
Sun€110
Mo€110
Tu€110
Wed€110
Thu€110
Fr€120
Sat€120
Tarif basse saison 18 Nov 2026 – 17 Dec 2026
Sun€110
Mo€110
Tu€110
Wed€110
Thu€110
Fr€120
Sat€120
Tarif moyenne saison 231 Aug 2026 – 11 Oct 2026
Sun€95
Mo€95
Tu€95
Wed€95
Thu€95
Fr€110
Sat€110
Moyenne saison12 Oct 2026 – 24 Oct 20261 Nov 2026 – 7 Nov 2026
Sun€116
Mo€116
Tu€116
Wed€116
Thu€116
Fr€116
Sat€116
haute saison3 Jul 2026 – 15 Jul 20269 Aug 2026 – 23 Aug 2026
Sun€148
Mo€148
Tu€148
Wed€148
Thu€148
Fr€148
Sat€148
Tres haute saison21 Dec 2026 – 4 Jan 2027
Sun€140
Mo€140
Tu€140
Wed€140
Thu€140
Fr€160
Sat€160
tres tres haute saison16 Jul 2026 – 8 Aug 2026
Sun€170
Mo€170
Tu€170
Wed€170
Thu€170
Fr€170
Sat€170

Policy and notes

Payment Schedule

10% of the total amount is due at time of reservation.

The remaining amount is to be paid 10 days before arrival.

Cancellation Policy

100% of paid prepayments refundable when canceled 14 days before arrival or earlier.

50% of paid prepayments refundable when canceled 7 days before arrival or earlier.

0% refundable if canceled after.

Security deposit

No security deposit is due.

Availability

Select check-in date

Book Now
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2

Reviews

About host

VC
Valetbruno Charles

Contact us

  • Email:[email protected]
  • Phone:+32486970815
  • Website:https://chaletsequoiadurbuy.com

+32486970815

©2026 Logo All rights reserved - Powered byLodgify
Chalet Séquoia 138
Durbuy, Belgium
5
from €85 per night
// ═══════════════════════════════════════════════ // 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'}); } }); })();