// ─── AYR — components/Logo.jsx ───────────────────────────────────────────────
// Logo SVG estático. Depende de: data/constants.js (C)
// ─────────────────────────────────────────────────────────────────────────────

const Logo=()=>(
  <svg width="34" height="34" viewBox="0 0 34 34" fill="none">
    <path d="M17 1.5L2 7.5V18C2 25.5 8.5 31.5 17 34C25.5 31.5 32 25.5 32 18V7.5L17 1.5Z" fill="url(#lg)" stroke={C.gold} strokeWidth="1.2"/>
    <circle cx="17" cy="17" r="7" stroke={C.gold} strokeWidth=".8" fill="none" opacity=".9"/>
    <line x1="17" y1="10" x2="17" y2="24" stroke={C.gold} strokeWidth=".8" opacity=".9"/>
    <line x1="10" y1="17" x2="24" y2="17" stroke={C.gold} strokeWidth=".8" opacity=".9"/>
    <circle cx="17" cy="17" r="2" fill={C.gold}/>
    <defs><linearGradient id="lg" x1="2" y1="1" x2="32" y2="34" gradientUnits="userSpaceOnUse"><stop stopColor="#0d2545"/><stop offset="1" stopColor="#030810"/></linearGradient></defs>
  </svg>
);
