/** * BrandMark — The Disclosure Bureau wordmark + mark. * * Small inline SVG (three offset gold bars suggesting a redaction edge / a * classification stamp) paired with the serif wordmark and a tiny * monospace "CLASSIFIED · PUBLIC RECORD" microline beneath. Used in * SiteHeader on every page and inside the mobile drawer header. Keeps the * brand presence consistent without depending on an external asset. * * Two sizes: `default` (header) and `compact` (mobile drawer). */ interface BrandMarkProps { size?: "default" | "compact"; className?: string; } export function BrandMark({ size = "default", className = "" }: BrandMarkProps) { const isCompact = size === "compact"; return (