// home.jsx — CAJE Collective homepage function HeroRotator({ overlay = 0.38 }) { const [i, setI] = React.useState(0); React.useEffect(() => { const t = setInterval(() => setI(n => (n + 1) % IMG.hero.length), 6000); return () => clearInterval(t); }, []); return (
{IMG.hero.map((src, idx) => (
))}
); } function HomePage({ navigate, heroOverlay, accent }) { const ref = useReveal(); const isMobile = useIsMobile(); return (
{/* HERO */}
{!isMobile && (
LAT · LONG · WITHHELD By appointment · Worldwide
)} {!isMobile && (
ESTABLISHED MMXIX All commissions upon request
)}

Architects of the
flawlessly orchestrated.

A private collective designing destination weddings, boutique galas, and residencies of rare distinction — sourced anywhere in the world, for those who would rather not be found.
{!isMobile && (
Continue
)}
{/* MANIFESTO */}

We do not plan events.
We compose atmospheres — private, patient, and precisely measured to the inner register of those who commission them.

{[ { k: 'Anywhere', label: 'In the world', sub: 'no fixed portfolio' }, { k: 'Anything', label: 'Residences · clubs · venues', sub: 'sourced to request' }, { k: 'By referral', label: 'Admission only', sub: 'correspondence begins a dialogue' }, ].map(m => (
{m.k}
{m.label}
{m.sub}
))}
{/* THREE PILLARS */}

A single signature, thrice expressed.

{[ { num: '01', title: 'Sanctuaries', sub: 'Private residencies, taken in full.', img: IMG.hero[1], route: 'sanctuaries', body: 'Residences, private clubs, and venues sourced anywhere in the world. Taken wholly, staffed privately, occupied only by those we introduce.' }, { num: '02', title: 'Experiences', sub: 'Weddings, galas, retreats.', img: IMG.hero[0], route: 'experiences', body: 'A three-day nuptial or a silent retreat — conceived, produced, and quietly remembered. Anywhere you ask of us.' }, { num: '03', title: 'Continuum', sub: 'A year-round concierge.', img: IMG.hero[3], route: 'experiences', body: 'For those who travel between our houses — a single point of contact and one woven calendar across continents.' }, ].map((p, idx) => (
navigate(p.route)}>
{p.num}
{p.sub}

{p.title}

{p.body}

Enter
))}
{/* UPON REQUEST — full-bleed editorial statement (replaces the fake featured sanctuary + works strip) */}
Plate I Interior study · Anonymous

Anywhere in the world,
and nothing on the page.

We keep no public directory. A house above the Ligurian coast, a club in Mayfair, a desert encampment in the Empty Quarter, a chalet held by family — every commission is sourced to the specific note of the request.

{[ ['Residences', 'Private villas, estates, compounds'], ['Clubs', 'Memberships, annexes, quiet rooms'], ['Venues', 'Palazzi, châteaux, monasteries'], ['Voyage', 'Yachts, trains, charter aviation'], ].map(([k, v]) => (
{k}
{v}
))}
navigate('inquiry')}>Make a Request
{/* DIALOGUE CTA */}

We accept twelve commissions per season.

Begin with a letter — in your own words — and we will respond within three days.

navigate('inquiry')} dark>Begin the Dialogue navigate('about')}>The Collective
); } Object.assign(window, { HomePage });