/** Shopify CDN: Minification failed

Line 153:0 Expected "}" to go with "{"

**/
.coffee-hero {
  position: relative;

height: 70vh;
min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-size: cover;
  background-position: center;
}

.coffee-hero__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.20) 100%
    );
}

.coffee-hero__content {
  position: relative;
  z-index: 2;

  max-width: 760px;

  padding: 40px;

  text-align: center;

  color: white;
}

.coffee-hero__eyebrow {
  display: inline-block;

  margin-bottom: 24px;

  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;

  opacity: 0.8;
}

.coffee-hero h1 {
  margin: 0 0 28px;

  font-size: 78px;
  line-height: 0.95;
  font-weight: 700;

  letter-spacing: -2px;

  color: white;
}

.coffee-hero p {
  max-width: 640px;

  margin: 0 auto 42px;

  font-size: 21px;
  line-height: 1.7;

  color: rgba(255,255,255,0.88);
}

.coffee-hero__buttons {
  display: flex;
  gap: 18px;

  justify-content: center;
  flex-wrap: wrap;
}

.coffee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;
  font-size: 15px;

  transition: all 0.25s ease;
}

.coffee-btn--primary {
  background: white;
  color: black;
}

.coffee-btn--primary:hover {
  transform: translateY(-2px);
  background: #f4f4f4;
}

.coffee-btn--secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;

  backdrop-filter: blur(6px);
}

.coffee-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media screen and (max-width: 768px) {

  .coffee-hero {
    height: 78vh;
    min-height: 620px;
  }

  .coffee-hero__content {
    padding: 24px;
  }

  .coffee-hero h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  .coffee-hero p {
    font-size: 17px;
    line-height: 1.6;
  }

  .coffee-btn {
    width: 100%;
  }
