/* Symphony — Treatments hub + Laser leaf */ function PageTreatments({ onNavigate }) { return (
Six departments · one clinic

A full aesthetic menu — fully supervised.

From the priced laser flagship to dermatologist-led skin and body protocols. Tap any department to read more or jump straight to a consultation.

{TREATMENTS.map(t => (
onNavigate(t.slug === 'laser-hair-removal' ? 'laser' : 'treatments')}>
{t.name}
{t.category}

{t.name}

{t.blurb}

{t.priceLabel}
))}

Not sure which is for you?

Tell us your goal in one sentence — our team will match you to the right department, honestly.

{e.preventDefault();onNavigate('contact');}}> Talk to a therapist
); } function PageLaser({ onNavigate }) { const [gender, setGender] = React.useState('women'); const rows = gender === 'women' ? LASER_PRICES_WOMEN : LASER_PRICES_MEN; return (
The flagship · fully priced

Laser hair removal on the Candela GentleMax Pro.

Painless, all-skin-types laser — including darker phototypes. AED prices include VAT; Tabby available across the table.

Price menu

{gender === 'women' ? 'Laser · Women' : 'Laser · Men'}

{rows.map((r, i) => ( ))}
TreatmentIncludesPer session
{r.name} {r.zones} AED{r.price}
First-visit offer · 50% off any area
Pay in 4 with Tabby. Ask the front desk about Entertainer bundles.
How it works

Six sessions, four weeks apart — that's the protocol.

Hair grows in cycles. To catch every follicle in its active phase, we space sessions methodically. Most clients see 70–90% reduction by session six.

FAQ

Honest answers to real questions.

); } function Step({ n, title, body }) { return (
{n}

{title}

{body}

); } function Faq({ q, a }) { const [open, setOpen] = React.useState(false); return (
setOpen(!open)}>

{q}

{open ? '−' : '+'}
{open &&

{a}

}
); } Object.assign(window, { PageTreatments, PageLaser });