// Ornaments — signature double-rule with Art Déco brackets
function DoubleRule({ width = 320, accent = '#C4A45A', muted = '#1f1a14', style = {} }) {
return (
);
}
function ThinRule({ width = 80, color = '#C4A45A', style = {} }) {
return ;
}
// Small uppercase eyebrow label with gold dot on both sides
function Eyebrow({ children, align = 'left', color = '#C4A45A', dots = false, style = {} }) {
const inner = (
{dots ? : null}
{children}
{dots ? : null}
);
if (align === 'center') return {inner}
;
return inner;
}
window.DoubleRule = DoubleRule;
window.ThinRule = ThinRule;
window.Eyebrow = Eyebrow;