Our process

Chaos seeks order.

Chaos seeks order. With five simple D's we structure the creative process to develop unique, enterprise-defining ideas, and mind-blowingly awesome execution. Enough precision to assuage the OCD, enough blue sky to discover opportunity.

From Agencia with love

What we
do Best.

Our expertise

Brand Foundation & Identity

Brand Strategy

Messaging Strategy

Brand Architecture

Market Research

Visual Identity & Guidelines

Logo Design

Typography

Packaging Design

Environmental Design

Creative & Content

Advertising Campaigns

Content Strategy

Social Media Strategy

Video Content

Motion Design & Animation

Digital Media Design

Print & Collateral Design

Direct Mail Design

Email Marketing

Digital Products

Information Architecture

UX & UI Design

Website Design

Native App Design

Software Development

Ecommerce

Augmented & Virtual Reality

Search Engine Optimization

Search Engine Marketing

Our process

Discover

01

Often our relationships start with exercises designed to allow us to get to know you, your business, and start understanding the problems we will solve together.

02

The tighter the definition of the business problem you're facing, the smaller the box we can fit it into, the bigger the solutions we will design together.

Define

Design

03

Using all of the tools we have available to us, from words to algorithms and everything in between, we start to create ideas that work with the culture, the media landscape, and most importantly with your consumers and stakeholders.

04

It's time to make the work that works real. Moving pictures, slinging code, hiring actors, whatever it takes to make you stand-out, we stand up and make it happen.

Develop

Deploy

05

Deploy. Measure. Optimize. Repeat. This is what we call relentless optimization. We continually seek new ways to improve the solutions we have created for you.

Awards
01

Branding - Campaign Monarch Casino Resort Spa
Documentary Series - Colorado Mesa University

02

Platinum Winner - Social

03

The Fifty

04

Branding Campaign - Cinch Jeans, Shirts and Rodeo

// GET is the verb we're using to GET data from Xano request.open('GET', url, true) // When the 'request' or API request loads, do the following... request.onload = function() { // Store what we get back from the Xano API as a variable called 'data' and converts it to a javascript object let data = JSON.parse(this.response) // Status 200 = Success. Status 400 = Problem. This says if it's successful and no problems, then execute if (request.status >= 200 && request.status < 400) { // Map a variable called cardContainer to the Webflow element called "Cards-Container" const cardContainer = document.getElementById("Cards-Container") // This is called a For Loop. This goes through each object being passed back from the Xano API and does something. // Specifically, it says "For every element in Data (response from API), call each individual item restaurant" data.forEach(restaurant => { // For each restaurant, create a div called card and style with the "Sample Card" class const style = document.getElementById('samplestyle') // Copy the card and it's style const card = style.cloneNode(true) card.setAttribute('id', ''); card.style.display = 'block'; // When a restuarant card is clicked, navigate to the item page by passing the restaurant id card.addEventListener('click', function() { document.location.href = "/item?id=" + restaurant.id; }); // For each restaurant, Create an image and use the restaurant image coming from the API const img = card.getElementsByTagName('IMG')[0] img.src = restaurant.banner.url + "?tpl=big:box"; // using Xano's template engine to re-size the pictures down and make them a box // For each restaurant, create an h3 and set the text content to the restaurant's title const h3 = card.getElementsByTagName('H3')[0] h3.textContent = restaurant.name; // For each restaurant, create an paragraph and set the text content to the restaurant's description const p = card.getElementsByTagName('P')[0] p.textContent = `${restaurant.description.substring(0, 240)}` // Limit to 240 chars // Place the card into the div "Cards-Container" cardContainer.appendChild(card); }) } } // Send Restaurant request to API request.send(); } // This fires all of the defined functions when the document is "ready" or loaded (function() { getRestaurants(); })();