/* ─── SHARED UI PRIMITIVES ─── */ const { C: uiC, FONTS: uiFONTS } = window.LT; const { useInView: uiUseInView } = window.LTHooks; function Section({ children, id, dark, ariaLabel, style: sx }) { const [ref, vis] = uiUseInView(0.06); return (
{children}
); } function SectionTag({ text, color }) { const c = color || uiC.sunsetSoft; return ( ); } function SectionTitle({ children, align, id }) { return (

{children}

); } function Lede({ children }) { return (

{children}

); } window.LTUI = { Section, SectionTag, SectionTitle, Lede };