// Page sections — Pillars, Expedition cards, Itinerary, Experts, Awards, FAQ, Final CTA, Header, Footer. function Header({ onCTA }) { return (
Explora
Call us +1 (866) 566-2092
); } function Pillars() { return (
What defines an Explora Expedition

Four principles. 33 years exploring destinations.

{window.PILLARS.map((p) =>
{p.n}

{p.title}

{p.lede ?

{p.lede}

: null}

{p.desc}

)}
); } function ExpeditionCard({ exp, idx, onSelect }) { const reverse = idx % 2 === 1; const [showDates, setShowDates] = React.useState(false); return (
{exp.badge || exp.region}
{exp.region}

{exp.namePrefix ? {exp.namePrefix} {exp.name} : exp.name}

{exp.desc}

{exp.duration}All-Inclusive
from {exp.fromPrice}Per person, double occupancy
{exp.departures}Up to 8 travelers
Departure
{exp.departureCity}
Accommodation
{exp.accommodation}
Physical level
{exp.physicalLevel}
{exp.allDepartures &&
{!showDates && Private expeditions available} {showDates &&
    {exp.allDepartures.map((d) =>
  • {d.range} {d.status} {d.price}
  • )}
}
}
{ e.preventDefault(); window.dispatchEvent(new CustomEvent("itinerary:select", { detail: exp.id })); document.getElementById("itinerary").scrollIntoView({ behavior: "smooth", block: "start" }); }}>See sample itinerary →
); } function Expeditions({ onSelect }) { return (

FOUR EXPEDITIONS.  THREE DESTINATIONS.

Each Expedition is available on a limited number of dates. We recommend planning ahead to secure your place.

{window.EXPEDITIONS.map((exp, i) => )}
); } function renderItinName(name) { if (typeof name === "string" && name.slice(0, 4).toLowerCase() === "new ") { return New {name.slice(4)}; } return name; } function Itinerary() { const [active, setActive] = React.useState("iceland"); React.useEffect(() => { const h = (e) => setActive(e.detail); window.addEventListener("itinerary:select", h); return () => window.removeEventListener("itinerary:select", h); }, []); const it = window.ITINERARIES[active]; return (
Featured Expedition

{renderItinName(it.name)}

A closer look at one of our Expeditions: a multi-day journey designed to adapt to terrain, weather, and the pace of the group. Every Expedition flexes to conditions on the ground. This is one route as it has run.

{["iceland", "iceland-winter", "peru", "fuego"].filter((id) => window.ITINERARIES[id]).map((id) => )}
{it.days.map((d) =>
day{String(d.n).padStart(2, "0")}

{d.title}

{d.desc}

{d.tags.map((t) => {t})}
)}
); } function Experts() { return (
the team in the field

You walk with people who know this ground.

From route design and field logistics to guiding, safety, and daily rhythm, each expedition is supported by people who understand both the terrain and the traveler experience.

{window.EXPERTS.map((e) =>

{e.name}

{e.role}

{e.bio}

)}
); } function Awards() { return (
In the Press

Recognized as the world's leading expedition company — seven years running.

{window.AWARDS.map((a, i) =>
{a.years}
{a.note}
{a.org}

{a.title}

№ {String(i + 1).padStart(2, "0")}
)}
); } function FAQ() { const [open, setOpen] = React.useState(0); return (
before you ask

Common questions.

If you have something not answered here, write it in your inquiry. A specialist will respond personally.

{window.FAQS.map((f, i) =>
{f.a}
)}
); } function FinalCTA({ onCTA }) { return (
New 2027 departures

The territory is waiting. Find the expedition that fits you.

Our team will help you compare destinations, physical level, and availability — so you can choose the Expedition that is right for you.

or call +1 (866) 566-2092
); } function Footer() { return ( ); } Object.assign(window, { Header, Pillars, Expeditions, Itinerary, Experts, Awards, FAQ, FinalCTA, Footer });