/* global React */ const { useState: useStateH, useEffect: useEffectH } = React; /* ============================================================ HERO A — Full-bleed cinematic (default Explora signature) ============================================================ */ function HeroA({ ctaCopy = "Reserve Your Place", ctaColor = "#D49B73" }) { return (
Cuernos del Paine at dawn
Explora · Patagonia 2026 season

Patagonia,
on its own terms.

Five lodges. The largest network of explorations in the region. One uncompromising way of being here.

{ctaCopy}
5
Lodges in Patagonia
115+
Guided explorations
31 yrs
In the wild South
Scroll
); } /* ============================================================ HERO B — Editorial split (image left, copy + form right) ============================================================ */ function HeroB({ ctaCopy = "Get the 2026 Offer", ctaColor = "#D49B73" }) { const [submitted, setSubmitted] = React.useState(false); const [submitting, setSubmitting] = React.useState(false); const [errorMsg, setErrorMsg] = React.useState(""); return (
Explora Torres del Paine

Patagonia Starts Here.

Explore Patagonia seamlessly across Chile and Argentina, with bespoke explorations from our lodges led by our own guides.

{submitted ? (

Thank you. You're on the list.

We'll be in touch with news, journeys and seasonal offers from Patagonia. In the meantime, explore our 5 lodges below.

View lodges
) : (
{e.preventDefault(); const data = Object.fromEntries(new FormData(e.currentTarget).entries()); setSubmitting(true); setErrorMsg(""); try { const res = await fetch("https://formspree.io/f/mrejzayv", { method: "POST", headers: { "Accept": "application/json", "Content-Type": "application/json" }, body: JSON.stringify({ ...data, _subject: "Patagonia newsletter signup — " + (data.email || "unknown"), _source: "Patagonia Landing — Hero email" }) }); if (!res.ok) { const body = await res.json().catch(() => ({})); throw new Error(body.error || "Submission failed (" + res.status + ")"); } } catch (err) { console.error("Formspree submission failed:", err); setSubmitting(false); setErrorMsg("Something went wrong. Please try again."); return; } try { if (window.om && typeof window.om.trigger === "function") { window.om.trigger("ExploraHeroEmailSubmit", data); } document.dispatchEvent(new CustomEvent("om.Conversion", { detail: data })); if (window.dataLayer) window.dataLayer.push({ event: "hero_email_submit", ...data }); if (typeof window.gtag === "function") { window.gtag("event", "form_submit", { form_name: "newsletter_signup", form_location: "hero", email: data.email }); } } catch (err) {console.warn("OM tracking failed:", err);} setSubmitting(false); setSubmitted(true); }}>
By submitting, you agree to receive communications from Explora. We will never share your details.
{errorMsg && (

{errorMsg}

)}
)}
4.7 / 5 · 1,600+ guests · Tripadvisor · Explora Torres del Paine
); } /* ============================================================ HERO C — Centered headline + offer card overlay ============================================================ */ function HeroC({ ctaCopy = "Claim Your Offer", ctaColor = "#D49B73" }) { return (
Torres del Paine at first light
Patagonia EST · 1993
A campaign for the 2026 season

Patagonia is not
a destination.
It's a return.

Join us at the world's largest network of lodges in Patagonia — built for those who measure travel in horizons, not in hours.

Limited · 2026 release
Reserve before June 30
Complimentary 4th night
Private airport transfers
Personalized proposal in 24h
{ctaCopy}
); } Object.assign(window, { HeroA, HeroB, HeroC });