# Meet Amber Dietrich, Owner of Confident Coffee Roasters

*Published:* 2025-05-19
*Author:* susie.kardas

Meet Amber Dietrich of 
-----------------------

Confident Coffee Roasters
=========================

All of Amber Deitrich’s previous career moves paved the way for Confident Coffee Roasters, a business leading Rogers’ thriving craft coffee scene.

 



Share!

[](https://www.facebook.com/sharer/sharer.php?u=https://www.destinationrogers.com/culinary/meet-amber-dietrich-owner-of-confident-coffee-roasters&t=Meet Amber Dietrich, Owner of Confident Coffee Roasters "Share on Facebook")[](https://twitter.com/intent/tweet?url=https://www.destinationrogers.com/culinary/meet-amber-dietrich-owner-of-confident-coffee-roasters&text=Meet Amber Dietrich, Owner of Confident Coffee Roasters "Share on Twitter")[](https://pinterest.com/pin/create/link/?url=https://www.destinationrogers.com/culinary/meet-amber-dietrich-owner-of-confident-coffee-roasters "Share on Pinterest") [email](/contact-us)

Rogers is a craft coffee paradise, thanks to the ingenuity of entrepreneurs like Amber Deitrich. After serving roles in operations and logistics for more than 15 years, Deitrich moved from Texas to Northwest Arkansas with her husband, who works at J.B. Hunt. in Rogers. There, she was inspired by the growing entrepreneurial community to start her own business: [Confident Coffee Roasters](https://www.destinationrogers.com/listings/confident-coffee-roasters/995/).

While Deitrich—who honed her coffee-slinging skills at the Academy of Coffee Excellence and Idaho’s Diedrich Roasters—wanted to hold off on opening a brick-and-mortar for a few more years, the pandemic changed her plans. The offices, co-working spaces and cafes she was selling beans to through her brand no longer needed her services due to COVID-mandated shutdowns. So instead, she opened her own cafe in Rogers in October 2020.

**What Makes Confident Coffee Roasters Special?** 
--------------------------------------------------

In the airy, sunshine-filled space, Deitrich sells vanilla- and ginger-infused lattes, smooth cappuccinos, and other classic and specialty drinks made with coffee beans sourced from direct-trade relationships with farmers and respected importing companies.

> “I come from a family of farmers, so I am familiar with that life and industry, and I value what they bring to society,” she says.

All of the beans are roasted on machines from Diedrich, an American manufacturer that is committed to creating environmentally friendly systems to reduce energy and emissions. “I have personally toured the facility, roasted with their team and maintained close relationships with them since the beginning,” Deitrich says.

> “When it comes to coffee, I take great pride in presenting each coffee, each year in the best possible light to our customers.”

The quality control process includes creating individual roasting profiles for every coffee and refining that profile year after year and season to season to account for variables both at the farm level and within Confident’s roastery. Deitrich is meticulous about dedicating numerous cuppings to every variety and testing how different brewing methods impact their flavor and quality. That could entail drinking a coffee for days to weeks to see how it changes over time.

“I specialize in single-origin coffees, so I am always excited about coffees that are multi-dimensional in their flavor profiles,” says Deitrich. “I love coffees from Rwanda and Sumatra. I like when there are both sweet and savory aspects at play.”

Deitrich drinks a pour over every morning (often with cream, which she says enhances the flavor of medium roasts).

> “My morning coffee is my sacred time,” she says. “I treasure it before the craziness and unpredictability begins each day. There is no doubt I’m in the right industry!”

**Rogers’ Craft Coffee Boom**
-----------------------------

While Deitrich wasn’t sure what the next step in career was when she arrived in Rogers, she was impressed by Northwest Arkansas’ ever-evolving business community and its appeal to locals and visitors. “I couldn’t help but notice how quickly the area was developing and how much opportunity was available in so many different fields,” she says. “I knew for a long time that I wanted to start my own company, and this seemed like the right place at the exact right time.”

Deitrich’s intuitions were confirmed when she received so much support from locals.

> “The City of Rogers is the easiest city in the region to create and build a business in,” she says. “There was never any ‘red tape.’” Every person I have worked with has been helpful and kind, and I believe the city takes a lot of pride in small business success.”

Learn more about how business’ such as Confident Coffee are shaping Rogers’ growing coffee culture by watching YouTube’s “Coffee: The Universal Language,” which will air an episode featuring Confident Coffee and Onyx Coffee Lab on April 21.

   Plan Your Trip

 [Category](#)- attractions
- biking
- downtown
- family friendly
- hiking
- things to do
- trails
 
 [filter](javascript:void(0)) 

 

 





 

 





 

 

 

  

 

  


        document.addEventListener('DOMContentLoaded', function () {

            let swiper3;

            function initSwiper() {
                swiper3 = new Swiper("#block_9fbaa13b2cf5670196122a4ab25abe8b .centered-with-button", {
                    loop: true,
                    centeredSlides: true,
                    effect: 'coverflow',
                    observer: true,
                    observeParents: true,
                    coverflowEffect: {
                        rotate: 10,
                        stretch: 0,
                        depth: 100,
                        modifier: 1,
                        slideShadows: true,
                    },
                    navigation: {
                        nextEl: "#block_9fbaa13b2cf5670196122a4ab25abe8b .snp-button-next",
                        prevEl: "#block_9fbaa13b2cf5670196122a4ab25abe8b .snp-button-prev",
                    },
                    pagination: {
                        el: '#block_9fbaa13b2cf5670196122a4ab25abe8b .snp-pagination',
                        type: 'custom',
                        renderCustom: function (swiper, current, total) {
                            var currentz = (current / total) * 100 + '%';
                            var fragment = document.querySelector('#block_9fbaa13b2cf5670196122a4ab25abe8b .snp-progress .snp-progressbar');
                            fragment.style.width = currentz;
                            var progressBarHtml = '<div class="snp-progress"><div class="snp-progressbar" style="width:' + currentz + '">';

                            function numberAppend(d) {
                                return (d < 10) ? '0' + d.toString() : d.toString();
                            }

                            return '<div class="snp-pagination swiper-pagination-horizontal"><span class="sr-only">Slide <span class="current">' + numberAppend(current) + '<span aria-hidden="true"> / <span class="sr-only">of <span class="next">' + (numberAppend(total)) + '';
                        }
                    },
                    on: {
                        init: function () {

                            let myLazyLoad = new LazyLoad({
                                elements_selector: ".lazyload"
                            });

                            // Set inert on all slides except active
                            this.slides.forEach((slide, index) => {
                                if (index !== this.activeIndex) {
                                    slide.setAttribute('inert', '');
                                }
                            });
                            
                            // Set up MutationObserver to continuously remove aria-live
                            var wrapper = document.querySelector('#block_9fbaa13b2cf5670196122a4ab25abe8b .swiper-wrapper');
                            if (wrapper) {
                                wrapper.removeAttribute('aria-live');
                                
                                // Create observer to watch for aria-live being re-added
                                var observer = new MutationObserver(function(mutations) {
                                    mutations.forEach(function(mutation) {
                                        if (mutation.type === 'attributes' && mutation.attributeName === 'aria-live') {
                                            if (wrapper.hasAttribute('aria-live')) {
                                                wrapper.removeAttribute('aria-live');
                                            }
                                        }
                                    });
                                });
                                
                                // Start observing
                                observer.observe(wrapper, {
                                    attributes: true,
                                    attributeFilter: ['aria-live']
                                });
                            }
                        },
                        slideChange: function () {
                            // Remove inert from all slides first
                            this.slides.forEach((slide) => {
                                slide.removeAttribute('inert');
                            });
                        
                            // Add inert to all slides except the active one
                            this.slides.forEach((slide, index) => {
                                if (index !== this.activeIndex) {
                                    slide.setAttribute('inert', '');
                                }
                            });
                        },

                        slideChangeTransitionEnd: function () {
                            // Ensure inert is properly set after transition completes
                            this.slides.forEach((slide, index) => {
                                if (index !== this.activeIndex) {
                                    slide.setAttribute('inert', '');
                                } else {
                                    slide.removeAttribute('inert');
                                }
                            });
                        }
                    },                       
                    breakpoints: {
                        0: {
                            slidesPerView: 1.2,
                            spaceBetween: 0,
                            coverflowEffect: {

                                modifier: 2,

                            },
                        },
                        767: {
                            slidesPerView: 1.7,
                            spaceBetween: 24,
                            coverflowEffect: {

                                modifier: 1,

                            },
                        },
                        1023: {
                            slidesPerView: 1.8,
                            spaceBetween: 0,
                            paginationClickable: true,
                            simulateTouch: false,
                            slideToClickedSlide: true,
                            coverflowEffect: {
                                rotate: 10,
                                stretch: 0,
                                depth: 100,
                                modifier: 1,
                                slideShadows: true,
                            },
                        },
                    },
                });
            }

            //initSwiper();

            let default_tags;
            let tags = [];

            default_tags = $("#default_tags").val();

            function get_trips() {

                let nonce = $("#nonce").data('nonce');

                $.post(app.ajaxurl, {
                        nonce: nonce,
                        tag: tags,
                        default_tags: default_tags,
                        action: 'trip_list'
                    },
                    function (result) {

                        $("#trip_slider_slides").empty().html(result.data);

                        initSwiper();

                        // Ensure inert is set after new slides are loaded
                        setTimeout(function() {
                            if (swiper3 && swiper3.slides) {
                                swiper3.slides.forEach((slide, index) => {
                                    if (index !== swiper3.activeIndex) {
                                        slide.setAttribute('inert', '');
                                    } else {
                                        slide.removeAttribute('inert');
                                    }
                                });
                            }
                        }, 100);

                        // Add keyboard support for slider navigation buttons
                        $("#block_9fbaa13b2cf5670196122a4ab25abe8b .snp-button-next, #block_9fbaa13b2cf5670196122a4ab25abe8b .snp-button-prev").on("keydown", function(e) {
                            // Enter key (13) or Spacebar (32)
                            if (e.keyCode === 13 || e.keyCode === 32) {
                                e.preventDefault();
                                $(this).trigger('click');
                            }
                        });
                    }, "json");
            }

            /*
            $( "#tags_select" ).on( "change", function() {
                tag = $("#tags_select option:selected").val();
                get_trips();
            } );

             */
            //initial load
            get_trips();
            //swiper3.updateSlides();

            $("#filter_tags").click(function () {
                get_trips();
            });

            $("#push-tooltip-block_9fbaa13b2cf5670196122a4ab25abe8b").each(function (index) {

                const content = $(this).find('[data-push="content"]');
                const button = $(this).find('[data-push="button"]');
                const option = $(this).find('[data-push="option"]');
                const filter = $(this).find('.filter');

                // Function to toggle the dropdown
                function toggleDropdown(e) {
                    e.preventDefault();
                    e.stopPropagation();
                    
                    // Close other dropdowns
                    $('[data-push="button"]').not(button[0]).parent().removeClass('is-active');
                    $('[data-push="button"]').not(button[0]).attr('aria-expanded', 'false');
                    $('.push-tooltip').not(button.parent()[0]).removeClass('is-active');
                    $('.push-tooltip').not(button.parent()[0]).find('[data-push="content"]').fadeOut(300).removeClass('is-active');

                    // Toggle this dropdown
                    const isExpanded = button.attr('aria-expanded') === 'true';
                    button.attr('aria-expanded', !isExpanded);
                    button.parent().toggleClass('is-active');
                    content.fadeToggle(300).toggleClass('is-active');
                }

                // Handle click events
                button.on("click", toggleDropdown);

                // Handle keyboard events (Enter and Spacebar)
                button.on("keydown", function(e) {
                    // Enter key (13) or Spacebar (32)
                    if (e.keyCode === 13 || e.keyCode === 32) {
                        toggleDropdown(e);
                    }
                });
                // Close dropdown when clicking outside
                $(document).on('click', function(e) {
                    if (!$(e.target).closest('#push-tooltip-block_9fbaa13b2cf5670196122a4ab25abe8b').length) {
                        button.attr('aria-expanded', 'false');
                        button.parent().removeClass('is-active');
                        content.fadeOut(300).removeClass('is-active');
                    }
                });
                // Function to handle filter activation
                function activateFilter(a) {
                    a.preventDefault();
                    a.stopPropagation();
                    button.attr('aria-expanded', 'false');
                    $(this).parent().fadeOut(300).removeClass('is-active').parent().removeClass('is-active');
                    // Actually trigger the filtering (same as clicking the filter button)
                    get_trips();
                }

                // Handle filter button click
                filter.on("click", activateFilter);

                // Handle filter button keyboard events (Enter and Spacebar)
                filter.on("keydown", function(e) {
                    // Enter key (13) or Spacebar (32)
                    if (e.keyCode === 13 || e.keyCode === 32) {
                        activateFilter.call(this, e);
                    }
                });

                option.each(function (index) {
                    const optionDiv = $(this).find('div[role="button"]');
                    
                    // Function to toggle option
                    function toggleOption(e) {
                        e.preventDefault();
                        e.stopPropagation();
                        
                        if (!$(this).hasClass('selected')) {
                            $(this).toggleClass('selected');
                            optionDiv.attr('aria-pressed', 'true');

                            if (tags.indexOf($(this).attr('id')) === -1) {
                                tags.push($(this).attr('id'));
                            }
                        } else {
                            $(this).removeClass('selected');
                            optionDiv.attr('aria-pressed', 'false');

                            var idx = tags.indexOf($(this).attr('id'));
                            tags.splice(idx, 1);
                        }
                    }
                    
                    // Handle click events on the li element
                    $(this).on("click", toggleOption.bind(this));
                    
                    // Handle keyboard events on the div element
                    optionDiv.on("keydown", function(e) {
                        // Enter key (13) or Spacebar (32)
                        if (e.keyCode === 13 || e.keyCode === 32) {
                            toggleOption.call($(this).parent()[0], e);
                        }
                    });
                });

            });

        });