// Main page sections const { useState: useStateS, useEffect: useEffectS, useRef: useRefS } = React; // ───────────────────────────────────────────────────────────── HERO function Hero({ onBook, onExplore }){ const ref = useRefS(null); const [p, setP] = useStateS(0); useEffectS(()=>{ const f=()=>{ const y = window.scrollY; setP(Math.min(1, y/700)); }; window.addEventListener('scroll', f, {passive:true}); return ()=>window.removeEventListener('scroll', f); },[]); return (
{/* Background hero image — silhouette w/ jewellery (rights-cleared d3 brand asset) */}
{/* Vertical label left */}
Est. 2016 · Dubai
{/* Content */}
Bold · Inspired · Opulent

Bespoke high jewellery,
born of nature.

By Pavit Gujral — GIA-gemmologist, Saul Bell Design Award winner.
Five collections. One conversation at a time.

{/* bottom credibility ticker */}
Scroll · Begin the descent
); } function TrustChip({ k, v }){ return (
{k}
{v}
); } // ───────────────────────────────────────────────────────────── INTRO STRIP function IntroStrip(){ return (
An introduction

We strive to create bespoke, trendsetting jewellery pieces of the highest quality — each one designed for the wearer, set with stones we have known by name, and made to outlive the trend that inspired it.

); } // ───────────────────────────────────────────────────────────── COLLECTIONS function Collections({ onOpen }){ const C = window.PG_DATA.COLLECTIONS; return (
The Collections · Five worlds, one signature

Each piece is a love letter to nature.

The sea. The forest. Flowers. Travel. Memory. Five collections, each opening on its own epigraph — and a hero piece set with stones of the highest grade.

); } function CollectionCard({ collection, onOpen, large=false }){ const [hover, setHover] = useStateS(false); return (
onOpen(collection.id)} onMouseEnter={()=>setHover(true)} onMouseLeave={()=>setHover(false)} style={{ position:'relative', aspectRatio: large ? '16/10' : '4/5', background:'#15110E', overflow:'hidden', cursor:'pointer', border:'1px solid var(--line)' }}> {collection.name}
{collection.theme}

The

{collection.name}

{collection.natureCue}

Explore the collection
); } // ───────────────────────────────────────────────────────────── DESIGNER function Designer({ onLearnMore }){ return (
{/* Placeholder portrait box — designer portrait is a client-gap */}
Designer Portrait
[ client to supply · d3 studio shoot ]
Saul Bell Design Award
1st Place, 2020 — Dancing Fish Collection.
The Designer · Pavit Gujral

From Chandigarh to Dubai, by way of the GIA in New York.

Pavit Gujral is a Graduate Gemmologist (GIA, New York, 2015) and the founder of an eponymous high-jewellery house established in Dubai in 2016. She is a perfectionist; she is also a certified scuba diver — the seed of the Marine collection, and the reason the colours of her pieces look different from the colours other jewellers chase.

"I don't follow the trend. Each of my designs is inspired and trendsetting."

Her work has won the Saul Bell Design Award in the U.S., the IJ Jewellers' Choice Awards in India, and a place in The Contemporary Jewel as never seen before at Artistar Jewels, Milan. She is featured on Netflix's Dubai Bling, S3.

); } // ───────────────────────────────────────────────────────────── BESPOKE function Bespoke({ onBook }){ const steps = window.PG_DATA.BESPOKE; const [active, setActive] = useStateS(0); return (
Bespoke · The Conversation

Every piece begins with a conversation.

Connect with us to create customised designs. The studio is by appointment; the brief is yours; the result is one of one.

{steps.map((s, i)=>(
setActive(i)} style={{ padding:'48px 36px 56px', borderRight: i<3?'1px solid var(--line)':'none', borderBottom:'1px solid var(--line)', background: active===i ? 'rgba(217,166,166,.04)' : 'transparent', transition:'background .35s ease', cursor:'default', minHeight:300, position:'relative' }}>
{s.n} Step

{s.title}

{s.body}

))}
); } // ───────────────────────────────────────────────────────────── LOOKBOOK function Lookbook({ onOpenImg }){ const items = window.PG_DATA.LOOKBOOK; return (
Lookbook · #WearPavitGujral

A book of moments.

Pages from the brand's recent campaigns and editorial spreads — botanical, cinematic, and very rarely repeated.

onOpenImg(0)} tall/>
{items.slice(1,5).map((it,i)=>( onOpenImg(i+1)}/> ))}
{items.slice(5).map((it,i)=>( onOpenImg(i+5)} contain/> ))}
); } function LookCard({ item, onClick, tall=false, compact=false, contain=false }){ const [hover, setHover] = useStateS(false); return (
setHover(true)} onMouseLeave={()=>setHover(false)} onClick={onClick} style={{ position:'relative', aspectRatio: tall ? '3/4' : compact ? '4/5' : contain ? '16/9' : '16/10', background:'#15110E', overflow:'hidden', cursor:'zoom-in', border:'1px solid var(--line)' }}> {item.label}
{item.label}
); } // ───────────────────────────────────────────────────────────── PRESS function Press(){ const P = window.PG_DATA.PRESS; return (
Press · Recognition

Awarded. Watched. Worn.

Saul Bell's first place in Albuquerque; IJ Jewellers' Choice in India; a feature spread on Dubai Bling. Below is a chronicle of the record, with attribution.

{/* Awards */}
Awards
{P.awards.map((a,i)=>(
{a.year}
{a.org}
{a.detail}
{a.country}
))}
{/* Media */}
In the media
{P.media.map((m,i)=>(
{m.name} {m.source && · {m.source}}
))}
{/* Celebrity */}
Worn by

A selection of the public-record red-carpet and editorial moments. Imagery shared on request, with rights cleared.

{P.celebrity.map((c,i)=>(
{c.name} {c.detail && {c.detail}}
))}
); } // ───────────────────────────────────────────────────────────── CONTACT function Contact({ onBook }){ const C = window.PG_DATA.CONTACT; return (
Contact · By Appointment

Come to the studio.

The studio at d3 is by appointment — bring the brief, the inherited stone, or simply the occasion. We will design around it.

Studio

B202 · Building 4
Dubai Design District
Dubai, U.A.E.

Hours

{C.hours}
{C.hoursSat}

{/* Map */}
Coordinates
{C.geo.lat}, {C.geo.lng}
); } Object.assign(window, { Hero, IntroStrip, Collections, Designer, Bespoke, Lookbook, Press, Contact });