Our Highlights

Award-winning work from a collective that never stops — commercials, docs, features, branded content, and everything in between, produced around the clock.

Pavements - Allday
https://vimeo.com/1200131905/5af982aa81?fl=ml&fe=ec
F1 - Vincent Urban
https://vimeo.com/1200497970/34244187a5?fl=ml&fe=ec
Outward Bound - Cheryl Dunn
https://vimeo.com/1200498072/f1365696cc?fl=ml&fe=ec
ADT Blue - Rollo
https://vimeo.com/1204252056/cf22c2cf50?share=copy&fl=sv&fe=ci
Kev - Mike Bennion
https://vimeo.com/1200498153/58a1a3d045?fl=ml&fe=ec
The Whiles - Cheryl Dunn
The Marshal - Andrew Baird
Between Days
https://vimeo.com/1200497989/7ee5bc12d5?fl=ml&fe=ec
Marni - ADED
https://vimeo.com/1200498153/58a1a3d045?fl=ml&fe=ec
Animals - Duncan Christie
https://vimeo.com/1200498195/ffc29b6ba6?fl=ml&fe=ec
`; document.body.appendChild(modal); modal .querySelector(".video-modal__close") .addEventListener("click", closeVideoModal); modal.addEventListener("click", function (event) { if (event.target === modal) { closeVideoModal(); } }); document.addEventListener("keydown", function (event) { if (event.key === "Escape") { closeVideoModal(); } }); } modal.querySelector(".video-modal__inner").innerHTML = ` `; modal.classList.add("is-open"); }); function getVideoEmbedUrl(videoUrl) { // YouTube const youtubeMatch = videoUrl.match(/youtu\.be\/([^?&]+)/) || videoUrl.match(/[?&]v=([^?&]+)/) || videoUrl.match(/youtube\.com\/embed\/([^?&]+)/); if (youtubeMatch) { return `https://www.youtube.com/embed/${youtubeMatch[1]}?autoplay=1`; } // Vimeo player URL const vimeoPlayerMatch = videoUrl.match( /player\.vimeo\.com\/video\/(\d+)(?:\?h=([^&]+))?/ ); if (vimeoPlayerMatch) { const videoId = vimeoPlayerMatch[1]; const hash = vimeoPlayerMatch[2]; return hash ? `https://player.vimeo.com/video/${videoId}?h=${hash}&autoplay=1` : `https://player.vimeo.com/video/${videoId}?autoplay=1`; } // Vimeo regular URL const vimeoMatch = videoUrl.match(/vimeo\.com\/(\d+)(?:\/([^?&]+))?/); if (vimeoMatch) { const videoId = vimeoMatch[1]; const hash = vimeoMatch[2]; return hash ? `https://player.vimeo.com/video/${videoId}?h=${hash}&autoplay=1` : `https://player.vimeo.com/video/${videoId}?autoplay=1`; } return null; } function closeVideoModal() { const modal = document.querySelector(".video-modal"); if (!modal) return; modal.classList.remove("is-open"); // Remove iframe so video stops playing modal.querySelector(".video-modal__inner").innerHTML = ""; }