/* global React */ const { useState, useEffect, useRef } = React; /* ============ Inline icon set ============ */ const Icon = { Arrow: ({ size = 14 }) => , ArrowDown: ({ size = 14 }) => , Play: ({ size = 18 }) => , Plus: ({ size = 14 }) => , Minus: ({ size = 14 }) => , Pin: ({ size = 14 }) => , Star: ({ size = 14 }) => , Check: ({ size = 14 }) => , Globe: ({ size = 14 }) => }; /* ============ Top nav ============ */ function TopNav({ darkBg = true }) { const [menuOpen, setMenuOpen] = useState(false); return (
Contact us Press +1-833-991-9206
{if (typeof window.gtag === "function") window.gtag("event", "cta_click", { cta_name: "logo", cta_location: "top_nav" });}}> Explora
Check availability
); } /* ============ Sticky inquiry bar ============ */ function StickyBar({ visible, onCta }) { return (
Explore Patagonia with our network of lodges.
{if (typeof window.gtag === "function") window.gtag("event", "cta_click", { cta_name: "view_lodges", cta_location: "sticky_bar" });}}>View Lodges {if (typeof window.gtag === "function") window.gtag("event", "cta_click", { cta_name: "book_now", cta_location: "sticky_bar" });}}>BOOK NOW
); } /* ============ Press / awards strip ============ */ function PressStrip() { const ribbon = (label1, label2) => {label1} {label2} ; const awards = [ { logo: ribbon("WORLD", "TRAVEL"), name: "WORLD TRAVEL AWARDS", title: "World's Leading Expedition Company", year: "7 consecutive years · 2019–2025" }, { logo: ribbon("CONDÉ", "NAST"), name: "CONDÉ NAST TRAVELER", title: "Readers Choice Awards", year: "2023 · 2024 · 2025" }, { logo: ribbon("TRAVEL", "LEISURE"), name: "TRAVEL + LEISURE", title: "World's Best Awards", year: "2023 · 2024 · 2025" }]; return (
Recognition

Celebrated by Travelers, Year After Year.

For over three decades, Explora has been recognized by the publications and institutions that define luxury travel — a quiet record of craft, conservation, and the art of slow exploration.

{awards.map((a, i) =>
{a.logo}
{a.name}
{a.title}
{a.year}
)}
);} /* ============ Lodges overview ============ */ function LodgesSection() { const lodges = [ { name: "Explora Torres del Paine", region: "Torres del Paine National Park", rooms: "50 rooms · all-inclusive", img: "images/lodge-tdp.jpg", url: "https://www.explora.com/lodge/torres-del-paine-lodge/" }, { name: "Explora Torres del Paine Conservation Reserve", region: "Conservation reserve · Patagonia, Chile", rooms: "10 rooms · all-inclusive", img: "images/lodge-reserve.jpg", url: "https://www.explora.com/lodge/torres-del-paine-conservation-reserve/" }, { name: "Explora Patagonia National Park", region: "Patagonia National Park · Aysén, Chile", rooms: "13 rooms · all-inclusive", img: "images/lodge-pnp-stone.png", url: "https://www.explora.com/lodge/patagonia-national-park/" }, { name: "Explora El Chaltén", region: "Los Glaciares National Park", rooms: "20 rooms · all-inclusive", img: "images/lodge-chalten.jpg", url: "https://www.explora.com/el-chalten-lodge/" }, { name: "Explora El Calafate", region: "Lake Argentino & Perito Moreno", rooms: "20 rooms · all-inclusive", img: "images/lodge-calafate.jpg", url: "https://www.explora.com/lodge/el-calafate/" }]; return (

Discover Our Destinations.

Five remote sanctuaries on both sides of the Andes — connected by  one philosophy of travel, and unrivaled access to the wildest corners  of the South.

{lodges.map((l, i) => )}
); } /* ============ Whats included ============ */ function IncludedSection() { const items = [ { title: "All-inclusive dining", desc: "All-inclusive dining inspired by the flavors and traditions of Patagonia, served in atmospheric dining rooms at the heart of the wilderness." }, { title: "40+ explorations", desc: "Guided treks, horseback rides, navigations and ascents. Choose new routes daily. Select private experiences available upon request." }, { title: "Expert local guides", desc: "Trained at our own School of Guides, our expert guides bring deep knowledge and passion to every exploration." }, { title: "Transfers", desc: "Transfers included on pre-established schedules." }, { title: "Local wines & beverages", desc: "Selected local wines, beers, soft drinks and non-alcoholic beverages included. Premium spirits and reserve wines available à la carte." }]; return (
All-inclusive, end to end

Everything is Part of the Journey.

One transparent rate covers your stay, dining, daily explorations and guides.

{items.map((it, i) =>
{it.title}
{it.desc}
)}
); } Object.assign(window, { Icon, TopNav, StickyBar, PressStrip, LodgesSection, IncludedSection });