/* global React, HOUSE, COUTURE_LOOKS, BRIDAL_LOOKS, RTW_PRODUCTS, ARCHIVE, PRESS, Silk, SectionHeader, aed */ // ============== MAIN PAGES: Home, Archive ============== const { useState: useStateMain, useMemo: useMemoMain } = React; function HomePage({ setRoute }) { return (
{/* HERO */}
Couture autumn winter 26 — ostrich-feather evening gown
Plume Ivoire — Look 14 / 28 Couture · Autumn–Winter 2026 Salon Privé, Dubai
Maison Couture · Established Dubai

The hand-made,
the museum-grade,
the unrepeatable.

Discover the autumn-winter couture collection by private salon. New looks added each week.
{/* CHAPTER 01 — POSITIONING */}
Chapter 01
The House

Michael Cinco is a Filipino couturier in Dubai. Six métiers under one private roof — Haute Couture, Bridal, Ready-to-Wear, Bridal RTW, Jewellery and Fragrance — made for the slow architecture of a single body.


{/* MÉTIERS */}
One private appointment.
Every craft of the house.} note="Couture and bridal are appointment-led; ready-to-wear and fragrance carry live verified pricing. Jewellery and bridal RTW are presented in the salon." />
setRoute('haute-couture')} /> setRoute('bridal')} /> setRoute('ready-to-wear')} /> setRoute('jewellery')} /> setRoute('fragrance')} /> setRoute('archive')} />
{/* COUTURE TEASER — BIG IMAGE */}
Featured · Look M-1411

Onyx Constellation

Strapless silk-faille gown embroidered with hand-laid silver and gold paillettes — a quiet metallic squall over deep onyx. Eighty-six hours of hand-work in the bodice alone.

Season
Autumn / Winter 2026
Métier
Couture · Evening
Availability
Made-to-measure on appointment
Salon
Dubai Design District, Building 4
Onyx Constellation
{/* BRIDAL FUNNEL */}
{/* RTW + FRAGRANCE TEASER */}
Live commerce

Ready-to-Wear

The seasonal capsule, shipped from the Dubai atelier. All prices in AED; the salon confirms availability and tailoring within two working days.
{RTW_PRODUCTS.slice(0, 4).map(p => ( setRoute('ready-to-wear')} /> ))}
From AED 5,440
{/* ARCHIVE TEASER — TEXT LED */}
{ARCHIVE.slice(0, 6).map((r, i) => )}
{/* PRESS */}

In print

Attributed press references
{PRESS.map((p, i) => (
{p.yr} · {p.pub}

"{p.line}"

))}
{/* CTA STRIPE */}
The first conversation is always in person.

Request a private appointment.

); } function MetierCard({ num, title, sub, onClick }) { return ( ); } function BridalCard({ look, setRoute, large }) { return (
setRoute('bridal')} style={{ cursor: 'pointer' }}>
{look.image ? {look.name} : }
{look.name}
{look.house} · {look.id}
); } function RtwTile({ p, onClick }) { return (
{p.image ? {p.name} : }
{p.category} {p.name} AED {aed(p.priceAED)}
); } function ArchiveTeaser({ r }) { return (
{r.year} · {r.event.split('—')[0].trim()}

{r.name}

{r.event}
{r.rightsCleared ? 'Rights cleared' : 'Text reference · Image rights pending'}
); } // ============== ARCHIVE PAGE ============== function ArchivePage({ setRoute }) { const [year, setYear] = useStateMain('all'); const years = useMemoMain(() => ['all', ...Array.from(new Set(ARCHIVE.map(a => a.year))).sort((a,b)=>b-a)], []); const list = useMemoMain(() => year === 'all' ? ARCHIVE : ARCHIVE.filter(a => a.year === year), [year]); return (
The public-record
archive.} sub="A library of dressed moments — by name, year and event. Imagery appears only where reuse is licensed; every other entry is a text-and-citation card. The list is curated from the official Founders page, The National (17 Oct 2019), Harper's Bazaar Arabia covers and other named editorial." />

{years.map(y => ( ))}
{list.length} entries · {ARCHIVE.filter(a=>a.rightsCleared).length} with cleared imagery
{list.map((r, i) => (
{r.year} · Public record

{r.name}

{r.event}
{r.source}
{r.rightsCleared ? 'Image rights cleared' : 'Citation only — awaiting written reuse'}
))}

Editorial policy

How the archive is curated.

Public-record red-carpet and editorial appearances exist in named publications. We list them here with attribution, year and event, but we do not publish editorial photography until written reuse has been granted by the photographer, publication and the individual's representatives.

When licensing is in place, the card carries a cleared marker and the original photograph replaces the citation card.

Sources cited in this archive include the official Michael Cinco celebrity gallery, the Founders page, The National (17 Oct 2019), and named magazine covers and runway reports. No follower counts, ratings or testimonials are inferred.

); } Object.assign(window, { HomePage, ArchivePage });