/* Captivair logo — black "CAPTIV" + red circle with white "AIR" knockout. Circle pushed right of the V so the full CAPTIV reads cleanly. */ const CaptivairLogo = ({ height = 40, mono = false, onDark = true }) => { // Wider viewBox so the AIR disc sits clear of the V const vbW = 440; const vbH = 141; const w = height * (vbW / vbH); const black = onDark ? '#fff' : '#0E0F12'; const red = mono ? (onDark ? '#fff' : '#0E0F12') : '#C8102E'; const tag = onDark ? '#9aa0a8' : '#4a4d54'; return ( {/* CAPTIV wordmark */} CAPTIV {/* Red AIR disc, sitting clear of the V */} AIR {/* Tagline */} PNEUMATICS & ENGINEERING SUPPLIES ); }; window.CaptivairLogo = CaptivairLogo;