// site/components.jsx — reusable atoms shared across sections.
// ─── Wordmark — uses the official SVG via inline color inheritance ─────────
function Wordmark({ height = 28, color = 'currentColor', className = '' }) {
// We use a CSS mask trick: load the SVG (which uses currentColor) as .
// Easier: just the file — its paths use fill="currentColor", which
// sadly an tag can't recolor. So we inline a stripped version.
return (
);
}
// Mount this once near the root so