Three women walking on a dirt path in a grassy field, smiling and dressed in colorful dresses, with a cloudy sky background.

Authentic Design & Branding

Requires a genuine understanding of the people and business behind it.

AirLens - Webflow Template Image
Scroll to Discover
Two people wearing cowboy hats stand by a fence, one reading a booklet while the other holds a crop.

We Don't Just See A Project

We see what’s taken generations to build, or the courage it took to begin.

hewitt&co
DESIGN, BRAND & CONNECT
From branding and logos to advertising, merchandise and large-scale projects, our work is shaped by regional intelligence, commercial awareness, and a deep respect for the weight people carry inside these businesses.

Sunset

Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet.

Learn
Wooden table with two baseball caps, decorative jars, and a vase of dried flowers, with a framed 'Game Changer' poster and white floor lamp in the background.

Neon Cafe

Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet.

Learn
Two dark green cards with gold foil embossed logos and text reading 'MARBLE HIGH' and a stylized letter M.
Open and closed Marble High brochure with a black cover and gold logo on a light background.
Magazine page showing an Evogene advertisement with image of two brown cows and a list of complete bovine veterinary services offered in Queensland.
Evogene logo with stylized circular icon above the text and tagline 'Powered by Precision' below.
Graphic showing the brand name EVOGENE with a visual equation of a circle plus a DNA strand equals a circle containing a stylized DNA strand.
Logo for Evogene Animal Reproduction Services with stylized text and a DNA helix integrated in the letter O.
While design sits at the centre of our work, our true value lies in how we manage the whole picture. From strategy to managing suppliers, merchandise and the final printed proof, we handle the moving parts.

How We Work

Everything begins with connection. Around weathered timber tables, we forge ideas with the makers, growers, and visionaries. We seek to understand the legacy and the long-term objective. Understanding where and how your design or product needs to show up.

Woman in a pink shirt reviewing fabric color swatches at a wooden desk with a computer and keyboard.
Two women at a desk reviewing fabric swatches and color samples with computer screens and design materials nearby.
Many of our projects carry years of effort behind them.
Front cover and open pages of a brochure for the Dalby Australian Stock Horse Sale Campdraft Challenge December 3-7, 2025, featuring a rider on a horse and event timeline.
We work with those who carry a responsibility to their history, their community, and their future.  

Our responsibility is simple.

To ensure what we do..
Elderly man in a wide-brimmed hat and checked shirt sitting outdoors on a plastic chair, reading a booklet titled 'Janmar'.
Reflects

What it took to build

AirLens - Webflow Template Image

What We Do

From branding and logos to advertising, merchandise and large-scale projects, we exist to protect the weight of the work you do – ensuring it translates honestly, practically and without compromise to the outside world.

Logos I Branding

We believe a logo is the visual shorthand for your reputation.

Strategy I Identity

Clarity in how your business is being seen.  Alignment in how it’s carried. Confidence in what comes next.

Custom Merchandise

We treat your name as an investment rather than a giveaway.

Design I Marketing

Where your brand meets the market directly.

Publications I Catalogues

Our vision is to provide a level of tactile integrity that reflects the seriousness of your ambition.

Other

We are firm believers that the best work rarely fits into a tidy category. If you find yourself looking for a way forward that doesn't land on a specific checklist, we should talk.

Learn More
Two women laughing and walking arm in arm in a grassy field, one in a white dress and the other in an orange one-shoulder dress.

Our Reach is Global

We operate where stories are traded in real time.
Where the landscape dictates the pace and the people still value a handshake.

Promotional poster featuring black and white images of horses and riders with stylized number 7 in blue, advertising WP Smooth Talker horse breeding services.
AirLens - Webflow Template Image

Where to Start?

01. Connect

The first step is a conversation. You can reach out to us via phone or email to connect. For those that know what they're after, you're welcome to skip this step and head straight to our intake form.

02. Intake

This is more than just a checklist; it is an invitation for us to get to know your business, your story, and your vision. The detail you provide here allows us to skip the surface-level chatter and move straight into the heart of the work.

03. Concept & Design

This is where your vision takes a physical or strategic form. This step looks different for each service, but we help you understand exactly what to expect once you have completed our intake form.

Connect

Contact us

If your project is hard to define, or you just want to see if we’re the right fit, let’s connect.
hello@hewittconsultingco.com.au
0459 204 709
OFFICES
Theodore Q I 74 The Boulevard
Emerald Q I Suite 4/104 Egerton St
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
/*! * Multi-Device Responsive Fixes * Ensures all elements work perfectly across mobile, tablet & desktop * Without altering your current design */ // Breakpoint definitions const BREAKPOINTS = { mobile: 480, tablet: 768, desktop: 1024 }; // Media query helper const mediaQuery = (maxWidth) => window.matchMedia(`(max-width: ${maxWidth}px)`).matches; // Responsive viewport setup $(document).ready(function() { console.log("🔧 Responsive fixes loading..."); // Remove any hardcoded viewport restrictions $('meta[name="viewport"]').remove(); $('head').append(''); // Process all sections for responsive behavior $('section, .section, .bf-section-2, .bf-section-3, .bf-section-4').each(function() { const $section = $(this); // Make sticky sections responsive if ($section.css('position') === 'sticky') { $section.css({ 'position': '-webkit-sticky', 'position': 'sticky', 'top': mediaQuery(768) ? '0' : '0px' }); } }); // Fix all images to be responsive $('img, Image, .image-6, .image-7, .bf-bg-image').each(function() { $(this).css({ 'max-width': '100%', 'height': 'auto' }); }); // Make containers responsive without breaking design $('.container, .container-5, .container-7, .container-8, .container-9, .container-10, .container-12, .bf-container, .bf-container-2').each(function() { const $container = $(this); // Preserve original width but make fluid if (!mediaQuery(768)) { // Desktop - keep original design $container.css({ 'max-width': 'var(--container-max-width, 1200px)', 'width': 'var(--container-width, 100%)' }); } else if (mediaQuery(768) && !mediaQuery(480)) { // Tablet - maintain structure but adjust $container.css({ 'max-width': '90%', 'width': '90%', 'padding-left': '5%', 'padding-right': '5%' }); } else { // Mobile - friendly but preserve design $container.css({ 'max-width': '95%', 'width': '95%', 'padding-left': '2.5%', 'padding-right': '2.5%' }); } }); // Fix grid and flex containers $('[style*="display: grid"], .grid-cols, .grid-cols-2, .grid-cols-3, .grid-cols-4, .choose-content, .cc-3col, .cc-perspective').each(function() { const $grid = $(this); if (mediaQuery(768)) { // Convert complex grids to single column on mobile $grid.css({ 'display': 'flex', 'flex-direction': 'column', 'grid-template-columns': '1fr', 'gap': '20px' }); } else if (mediaQuery(1024)) { // Tablet - simplified grid $grid.css({ 'grid-template-columns': 'repeat(2, 1fr)' }); } }); // Handle text blocks for mobile $('.text-block, .text-block-2, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-15, .text-block-16, .text-block-17, .text-block-18').each(function() { const $text = $(this); if (mediaQuery(768)) { // Mobile - smaller font but readable $text.css({ 'font-size': 'calc(var(--font-size, 1rem) - 0.2rem)', 'line-height': '1.6' }); } }); // Fix headings $('.heading, .heading-3, .bf-heading-s').each(function() { if (mediaQuery(768)) { $(this).css({ 'font-size': 'calc(var(--heading-size, 2rem) * 0.7)', 'display': 'block', 'overflow-wrap': 'break-word' }); } }); // Fix link/button blocks $('.button, .button-2, .bf-button, .bf-button-2, .link, Link').each(function() { $(this).css({ 'min-height': '44px', // Touch-friendly minimum 'min-width': '88px', 'font-size': mediaQuery(768) ? '1rem' : '1.1rem' }); }); // Handle sticky/slider elements $('.slider, .slider-wrapper, .bf-card-slider-wrapper, .bf-col-slider-wrap').each(function() { const $slider = $(this); // Allow horizontal scroll on mobile if (mediaQuery(768)) { $slider.css({ 'overflow-x': 'auto', 'touch-action': 'pan-y', '-webkit-overflow-scrolling': 'touch' }); } }); // Handle perspective/z-index responsive stacking $('[data-scroll'], [data-stagger-fade-in], .image-wrapper, .choose-img-box, .bf-bg-image').each(function() { if (mediaQuery(768)) { $(this).css({ 'transform': 'none !important', 'position': 'relative', 'z-index': '1' }); } }); // Touch-friendly interactions if (window.matchMedia('(hover: none)').matches || window.matchMedia('(pointer: coarse)').matches) { // Remove hover states on touch devices $(document.head).append(''); } console.log("✅ Responsive fixes applied!"); // Re-run on window resize (throttled) let resizeTimer; $(window).on('resize', function() { clearTimeout(resizeTimer); resizeTimer = setTimeout(function() { console.log("📱 Re-applying responsive fixes..."); location.reload(); // Clean re-apply on major size changes }, 500); }); });