Skip to content

Choose a discipline

Cart

Your cart is empty

Wildcard

As part of our commitment to reducing our environmental impact we decided to utilize all materials by making kites/wings in unique colorways - the Wildcards. Wildcards are limited in quantity and availability. Designs will be updated throughout the year. Purchasing the Wildcards will not only give you a very unique kite/wing but has the added bonus of helping the environment by ensuring as much material as possible is put to use.

// Toggle .cart-open class on body when drawer opens/closes function watchDrawer() { const cartDrawer = document.querySelector('cart-drawer'); if (!cartDrawer) return; const observer = new MutationObserver(() => { const isOpen = cartDrawer.hasAttribute('open'); document.body.classList.toggle('cart-open', isOpen); }); observer.observe(cartDrawer, { attributes: true }); } const waitForDrawer = setInterval(() => { const cartDrawer = document.querySelector('cart-drawer'); if (cartDrawer) { clearInterval(waitForDrawer); watchDrawer(); } }, 300); });