function Reveal({children,style}){ const ref=React.useRef(null); const [visible,setVisible]=React.useState(false); React.useEffect(()=>{ const el=ref.current; if(!el)return; const obs=new IntersectionObserver(([e])=>{if(e.isIntersecting){setVisible(true);obs.disconnect();}},{threshold:0.15}); obs.observe(el); return ()=>obs.disconnect(); },[]); return
{children}
; } function CraftHero(){ return (
Craftsmanship
Bold Bee

Craftsmanship

Every remarkable creation begins long before it is seen. It begins with intention.

); } function CraftSplit({img,heading,body,reverse,children}){ return (

{heading}

{body.map((p,i)=>(

{p}

))} {children}
); } function CraftTimeline(){ const steps=['Idea','Research','Sketch','Material Selection','Prototype','Refinement','Final Creation']; return (
{steps.map((s,i)=>( {s} {i→} ))}
); } function CraftCentered({heading,body,eyebrow}){ return (
{eyebrow&&{eyebrow}}

{heading}

{body.map((p,i)=>(

{p}

))}
); } function CraftPrecision(){ const stages=[ ['Material Inspection','Every material is examined before it is deemed worthy of a BOLD BEE creation.'], ['Crafting','Skilled hands shape each piece with deliberate, unhurried attention.'], ['Finishing','Fine details are refined until the piece meets our quiet standard.'], ['Quality Review','Each creation is reviewed against a standard, not a schedule.'], ['Packaging','Presented with the same care given to the creation itself.'], ['Final Approval','Nothing leaves the studio until it is ready.'] ]; return (

Precision Without Compromise

{stages.map(([h,b],i)=>(
{String(i+1).padStart(2,'0')}
{h}

{b}

))}
); } function CraftSignature(){ return (

The Journey Continues

A BOLD BEE creation does not reach its destination when it leaves our studio. Its true journey begins when it becomes part of yours.

BOLD BEE
Luxury with Purpose
); } function CraftGallery({imgs,heading}){ const [active,setActive]=React.useState(0); const [lightbox,setLightbox]=React.useState(false); return (
{heading&&

{heading}

}
setLightbox(true)} style={{aspectRatio:'21/9',borderRadius:'var(--radius-lg)',overflow:'hidden',marginBottom:14,cursor:'zoom-in'}}>
{imgs.map((im,i)=>( ))}
{lightbox&&(
setLightbox(false)} style={{position:'fixed',inset:0,background:'rgba(31,31,31,0.92)',zIndex:500,display:'flex',alignItems:'center',justifyContent:'center',padding:32}}>
)}
); } function ArtisanCard({img,role,quote}){ return (
{role}

“{quote}”

); } function CraftMakers(){ const ARTISAN_IMGS=[ 'uploads/Handloom_Kanjivaram_Silks.png', 'uploads/Jewellery artisan.png', 'uploads/perfume artisan.png', 'uploads/Candle artisan.png' ]; const makers=[ [ARTISAN_IMGS[0],'Master Weaver','For me, every weave is a conversation between patience and precision.'], [ARTISAN_IMGS[1],'Jewellery Artisan','True luxury is created in the smallest details.'], [ARTISAN_IMGS[2],'Fragrance & Beauty','A fragrance should be remembered long after it is first experienced.'], [ARTISAN_IMGS[3],'Candle Artisan','The finest creations are poured slowly.'] ]; return (
Meet the Makers

The Hands Behind Every Creation

{makers.map(([img,role,quote])=>())}
); } function CraftDocumentary({img,imgSrc,label,video}){ const [playing,setPlaying]=React.useState(false); const posterSrc=imgSrc||photo(img,1800); return (
{playing&&video?(

{label}

); } function Craftsmanship(){ React.useEffect(()=>{document.title='Craftsmanship — Bold Bee';},[]); return (
{typeof PublicationBanner!=='undefined'&&}
); } window.Craftsmanship=Craftsmanship;