/* Silya — 02 Philosophy. A page from a book, revealed slowly: one centred measure, the values read as a continuous litany, a single illustration, and the founder's line as the closing signature in the dark. */ function PhilosophyScreen({ onNav }) { const values = [[t('ph.v1'), t('ph.v1_d')], [t('ph.v2'), t('ph.v2_d')], [t('ph.v3'), t('ph.v3_d')], [t('ph.v4'), t('ph.v4_d')]]; return (
{/* Masthead */}
{t('ph.t1')}{t('ph.t_em')}{t('ph.t2')}} />
{/* The page — one centred reading measure */}

{t('ph.lede')}

{t('ph.body')}

{/* Illustration, as in a book */}
{t('ph.portrait')}
{/* The litany — what we hold, read as text */}
{values.map(([vt, vd]) => (

{vt}. {vd}

))}
onNav('craftsmanship')}>{t('ph.link')}
{/* The signature */}

{t('ph.quote')}

{t('ph.quote_by')}
); } Object.assign(window, { PhilosophyScreen });