// experiences.jsx — Experiences page (process, capabilities, editorial) function ExperiencesPage({ navigate, accent }) { const ref = useReveal(); const isMobile = useIsMobile(); return (
{/* Header */}

What we make
need not be announced.

Destination weddings, boutique galas, private assemblies, retreats, and pilgrimages — each composed from the first question: what do you wish to feel remembered for?

{/* Capability triptych */}
{[ { title: 'Destination Weddings', img: IMG.portfolio.all[0].img, body: 'Three to five days, from rehearsal to recession. Celebrants, stationery, floral architecture, couture atelier coordination, and the quiet choreography of every moment between.', num: '01', }, { title: 'Boutique Galas', img: IMG.portfolio.all[1].img, body: 'Salons, benefits, and assemblies of consequence. A single evening in which every element — from placement to the hour of the last glass — has been quietly considered.', num: '02', }, { title: 'Private Assemblies', img: IMG.portfolio.all[3].img, body: 'Summits for private offices and family councils. An atmosphere for consequential conversation — held in rooms that do not appear in directories.', num: '03', }, { title: 'Retreats & Pilgrimages', img: IMG.portfolio.all[6].img, body: 'Silent weeks, wellness journeys, and spiritual itineraries composed in partnership with guides of rare caliber. Deserts, monasteries, private islands.', num: '04', }, ].map((c, idx) => (
{c.num}

{c.title}

{c.body}

))}
{/* Process */}

Three movements, one composition.

{IMG.experiences.process.map((p, idx) => (
{p.num}

{p.title}

{p.copy}

))}
{/* Continuum */}

A year, woven.

For clients who move between our houses continuously — a single concierge, a single calendar, a single signature across continents and seasons.

    {[ 'A single point of contact across seasons and continents', 'Private aviation & chauffeured transfers, arranged in advance', 'Residences sourced and held — anywhere in the world', 'Wardrobe handling & couture liaisons, quietly managed', 'Private curators for rooms closed to the public', ].map((it, i) => (
  • {String(i + 1).padStart(2, '0')} {it}
  • ))}
navigate('inquiry')}>On Invitation Only
{/* Quote */}

To be served by CAJE is to forget that service exists. Everything simply is, precisely as you had quietly hoped it might be.

— A Principal · MMXXIV
); } Object.assign(window, { ExperiencesPage });