Hewitt and Co. text logo in white on black background.

Authentic Design & Branding

Requires a genuine understanding of the people & businesses behind them - Hewitt&Co

AirLens - Webflow Template Image

We Don't Just See A Project

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

Two people wearing cowboy hats stand by a fence, one reading a booklet while the other holds a crop.
hewitt&co
DESIGN, BRAND & CONNECT
From branding and logos to advertising, merchandise and large-scale projects, our work is built on a foundation of intent.

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.
Two brown and beige caps with embroidered logos resting on a wooden desk in front of a computer screen showing 'Hewitt and Co.'
Our Commitment

Design sits at the heart of everything we do

At Hewitt Consulting Co., our work comes from a place of deep passion and purpose. We don’t just provide a design service; we partner with clients who value our experience and our desire to create authentic designs that challenge the norm. For us to deliver our best work, it requires a strong connection and a high level of trust in our professional knowledge.

At the core of our work is a commitment to intent over automation. We provide a comprehensive suite of creative services designed to translate your life’s work into a visual and strategic identity that carries weight in the real world.

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.
Many of our projects carry years of effort behind them.

Our responsibility is simple.

To ensure what people see reflects what it took to build.

What We Do

At the core of our work is a commitment to intent over automation. We provide a comprehensive suite of creative services designed to translate your life’s work into a visual and strategic identity that carries weight in the real world.

Our clients invest in us for our experience and our drive to create authentic designs that challenge the norm.

Learn more

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.

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.

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.

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
White stylized AGRIMATE logo with an abstract triangular symbol above the name on a black background.
White logo with a helicopter illustration and text reading Central Rotors PTY LTD on a black background.
Agvantage Drone Services logo with stylized letter A and map pin icon above the text.
Palgrove Charolais logo with stylized circular design above the text on a black background.

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.

Get in Touch

Have a project in mind? We'd love to hear from you.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Get in Touch

Have a project in mind? We'd love to hear from you.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Get in Touch

Have a project in mind? We'd love to hear from you.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Get in Touch

Have a project in mind? We'd love to hear from you.

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); }); });