// Qurcee wordmark — uses the provided brand logo
function QurceeLogo({ size = 22, className = "" }) {
  // The source image is 336x71 (~4.73:1). Scale from requested cap height.
  const height = Math.round(size * 1.35);
  return (
    <img
      src="assets/qurcee-logo.png"
      alt="Qurcee"
      className={`block select-none ${className}`}
      style={{ height, width: "auto" }}
      draggable="false"
    />
  );
}

Object.assign(window, { QurceeLogo });
