Faithful Coffee Beans - Freshly Roasted Excellence Experience the robust and refined taste of Faithful Coffee Beans. This award-winning blend, recognized at the Golden Bean Coffee Roasting Competition, is sourced from the highlands of Guatemala, renowned for top-quality beans. Key Features: Flavor Profile: Spice and cocoa with toasty dark chocolate Coffee Beans and peppery notes. Versatile Use: Perfect through all coffee machines and ideal for milk-based drinks. Freshly Roasted: Small-batch roasted for peak freshness. Brewing Tips: Use 1-2 tablespoons per 6 ounces of water. Adjust grind size for best results. Elevate your coffee moments with Faithful Coffee Beans from Wake Me Up Coffee, promising a delightful and rich coffee experience every time. Discover why these are considered the best coffee beans Sydney has to offer and enjoy the excellence of freshly roasted coffee beans. Faithful Coffee Beans FAQs Golden Bean Competition Winner | Dark Chocolate & Spice | $29.00 | Available: 500G, 1KG, 2KG, 4KG Q1. What award has Faithful Coffee Beans won? + Faithful Coffee Beans has been recognised at the Golden Bean Coffee Roasting Competition — one of the most prestigious roasting competitions in Australia. This makes Faithful one of the best coffee beans Sydney roasters have produced for quality and consistency. Q2. Where are Faithful Coffee Beans sourced from? + Faithful Coffee Beans are sourced from the highlands of Guatemala, a region renowned globally for producing top-quality, complex coffee beans with the distinctive spice, cocoa, and dark chocolate character that Faithful is known for. Q3. What does Faithful Coffee taste like? + Faithful Coffee Beans have a flavour profile of spice and cocoa with toasty dark chocolate coffee beans and peppery notes. It is a bold, refined blend that delivers depth and complexity — particularly well suited to milk-based drinks where its richness shines through. Q4. Is Faithful suitable for all types of coffee machines? + Yes. Faithful Coffee Beans are versatile across all coffee machines and ideal for milk-based drinks. Available ground for espresso machine, drip filter, paper filter, or plunger — and as whole beans — in 500G, 1KG, 2KG, and 4KG bags. Q5. How should I brew Faithful Coffee Beans for the best flavour? + Use 1–2 tablespoons of Faithful freshly roasted coffee beans per 6 ounces of water and adjust grind size to match your brewing method. For espresso, a fine grind brings out the rich dark chocolate and peppery notes. For filter or plunger, a coarser grind highlights the spice and cocoa complexity. Q6. Are Faithful Coffee Beans freshly roasted? + Yes. Like all Wake Me Up Coffee products, Faithful Coffee Beans are small-batch roasted to ensure peak freshness. Small-batch roasting preserves the complex flavours from the Guatemalan highlands and ensures your freshly roasted coffee beans arrive at their absolute best. /* FAQ WRAPPER */ .faq-wrapper { max-width: 1000px; margin: 0 auto; padding: 20px 0; } /* HEADING */ .faq-heading { font-size: 35px; font-weight: 700; text-align:left; color: #111; margin-bottom: 12px; line-height: 1.4; } /* SUBHEADING */ .faq-subheading { max-width: 760px; margin: 0 auto 45px; text-align: left; font-size: 17px; line-height: 1.8; color: #555; } /* FAQ CARD */ .faq-item { border-radius: 12px; margin-bottom: 18px; background: #fff; overflow: hidden; border: 1px solid #e5e5e5; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; } .faq-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); } .faq-item.active { border-color: #dc9c22; background: #fffaf2; } /* QUESTION */ .faq-question { width: 100%; padding: 20px 24px; background: #fffaf2; border: none; text-align: left; font-size: 17px; font-weight: 600; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s ease; } .faq-question:hover { color: #dc9c22; } /* ICON */ .icon { width: 28px; height: 28px; border-radius: 50%; color: #000; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 400; transition: all 0.3s ease; flex-shrink: 0; padding: 0px 10px -54px 10px; line-height: 28px; } .faq-item.active .icon { transform: rotate(45deg); } /* ANSWER */ .faq-answer { height: 0; overflow: hidden; transition: height 0.35s ease; } .faq-content { padding: 0 24px 22px; color: #555; line-height: 1.8; font-size: 15px; } /* MOBILE */ @media (max-width: 768px) { .faq-heading { font-size: 30px; } .faq-subheading { font-size: 15px; margin-bottom: 35px; } .faq-question { font-size: 15px; padding: 16px 18px; line-height: 1.5; } .faq-content { padding: 0 18px 18px; font-size: 14px; } .icon { width: 28px; height: 28px; font-size: 18px; } } .btn--share .icon { vertical-align: middle; width: 32px; height: 32px; margin-right: 4px; } document.addEventListener("DOMContentLoaded", function () { const items = document.querySelectorAll(".faq-item"); items.forEach((item, index) => { const btn = item.querySelector(".faq-question"); const answer = item.querySelector(".faq-answer"); /* OPEN FIRST FAQ */ if(index === 0){ item.classList.add("active"); answer.style.height = answer.scrollHeight + "px"; } btn.addEventListener("click", function () { const isOpen = item.classList.contains("active"); /* CLOSE ALL FAQ */ items.forEach(i => { i.classList.remove("active"); i.querySelector(".faq-answer").style.height = "0px"; }); /* OPEN CURRENT FAQ */ if(!isOpen){ item.classList.add("active"); answer.style.height = answer.scrollHeight + "px"; } }); }); });