let lastScroll = 0;
  // hide header after scroll down
const hideThreshold = 1000;
  // show header after scroll up
const styleThreshold = 50;
const header = document.querySelector('.header');

window.addEventListener('scroll', () => {
  if (!header) return;

  const currentScroll = window.scrollY || document.documentElement.scrollTop;

  // Show header at the very top
  if (currentScroll <= 0) {
    header.classList.remove('hide', 'scrolled');
    lastScroll = 0;
    return;
  }

  // Apply scrolled style at 50px
  if (currentScroll > styleThreshold) {
    header.classList.add('scrolled');
  } else {
    header.classList.remove('scrolled');
  }

  // Only trigger hide/show logic after 500px scroll
  if (currentScroll > hideThreshold) {
    if (currentScroll > lastScroll) {
      // Scrolling down
      header.classList.add('hide');
    } else if (currentScroll < lastScroll - 10) {
      // Scrolling up
      header.classList.remove('hide');
    }
  }

  lastScroll = currentScroll;
});

private‑label coffee

Your blend
your brand

Brands We've Worked With

  • Brand Name
  • Brand Name
  • Brand Name
  • Brand Name
  • Brand Name

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Why partner with us?

YOUR BLEND, YOUR BRAND encapsulates our turnkey private‑label program: we’ll work with you to craft a signature blend that reflects your brand’s personality, design custom packaging emblazoned with your logo, and manage production from green bean to finished bag—so you can offer your customers a one‑of‑a‑kind coffee experience that’s unmistakably yours.

Why partner with us?

  • Brand Name
Your coffee is your calling card—but right now, it’s just another bag on the shelf. Off‑the‑shelf roasts don’t capture your brand’s story, so customers breeze past without a second glance. You know a signature coffee could deepen loyalty and drive sales, but between running your day‑to‑day and juggling marketing, launching a custom program feels daunting. And let’s be honest: you deserve more than “just another roast” to represent all the thought and care you pour into your business.

Why partner with us?

Your coffee is your calling card—but right now, it’s just another bag on the shelf. Off‑the‑shelf roasts don’t capture your brand’s story, so customers breeze past without a second glance. You know a signature coffee could deepen loyalty and drive sales, but between running your day‑to‑day and juggling marketing, launching a custom program feels daunting. And let’s be honest: you deserve more than “just another roast” to represent all the thought and care you pour into your business.

Why partner with us?

Your coffee is your calling card—but right now, it’s just another bag on the shelf. Off‑the‑shelf roasts don’t capture your brand’s story, so customers breeze past without a second glance. You know a signature coffee could deepen loyalty and drive sales, but between running your day‑to‑day and juggling marketing, launching a custom program feels daunting. And let’s be honest: you deserve more than “just another roast” to represent all the thought and care you pour into your business.