*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  border: none;
  padding: 0px;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
  outline: inherit;
}

@media (min-width: 901px) {
  .show-mobile-only {
    display: none;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: #004280;
}

strong {
  font-weight: 600;
}

h1,
h2 {
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1;
}

h1 {
  font-family: "Rubik", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}
@media (max-width: 599px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1.5rem;
  }
}

.white {
  color: #FAF1E7;
}

.line-clamp, .line-clamp-3, .line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.spacer {
  height: 1rem;
}

.container, .container--narrow, .container--small, .container--smaller {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  box-sizing: content-box;
  padding-left: 24px;
  padding-right: 24px;
}
.container--smaller {
  max-width: 1000px;
}
.container--small {
  max-width: 700px;
}
.container--narrow {
  max-width: 500px;
}

.flex, .fdc {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.jcse {
  justify-content: space-evenly;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.aifs {
  align-items: flex-start;
}

.gap-0 {
  gap: 0.25rem;
}

.gap-1 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 1.5rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.row-reverse {
  flex-direction: row-reverse;
}

.display-none {
  display: none !important;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.zoom-out-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-out {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-out--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.illustration--cup {
  animation: cupFloat 1.2s ease-out forwards;
}

@keyframes cupFloat {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  60% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Initial state */
.illustration--flowers,
.illustration--beans {
  opacity: 0;
  will-change: transform, opacity;
}

/* Triggered when in viewport */
.illustration--beans.is-visible {
  animation: beanBounce 1.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes flowerGrow {
  0% {
    transform: translateY(12px) scaleY(0.85) scaleX(0.96);
    transform-origin: bottom center;
    opacity: 0;
  }
  55% {
    transform: translateY(-2px) scaleY(1.03) scaleX(1.01);
    opacity: 1;
  }
  75% {
    transform: translateY(1px) scaleY(0.99);
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: bottom center;
    opacity: 1;
  }
}
.illustration--flowers.is-visible {
  transform-origin: bottom center;
  animation: flowerGrow 2.2s ease-out forwards;
  animation-delay: 1s;
}

/* BEAN ANIMATION */
@keyframes beanBounce {
  0% {
    transform: translateY(6px) rotate(-3deg) scale(0.97);
    opacity: 0;
  }
  55% {
    transform: translateY(-2px) rotate(2deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
/* Initial state */
.logo-circle {
  opacity: 0;
  will-change: transform, opacity;
}

/* Trigger animation */
.logo-circle.is-visible {
  animation: logoSettle 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: center center;
}

/* Circular logo animation */
@keyframes logoSettle {
  0% {
    transform: rotate(-10deg) scale(0.96);
    opacity: 0;
  }
  60% {
    transform: rotate(2deg) scale(1.01);
    opacity: 1;
  }
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
/* Initial state */
.illustration--bird {
  opacity: 0;
  will-change: transform, opacity;
}

/* Trigger animation */
.illustration--bird.is-visible {
  transform-origin: bottom center;
  animation: birdWiggle 2.4s ease-out forwards;
}

/* Bird wiggle animation */
@keyframes birdWiggle {
  0% {
    transform: translateY(6px) rotate(-4deg) scale(0.98);
    opacity: 0;
  }
  25% {
    transform: translateY(0) rotate(3deg) scale(1);
    opacity: 1;
  }
  45% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
.page-break {
  position: relative;
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
}

.page-break.is-visible {
  animation: pageBreakWipeSoft 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageBreakWipeSoft {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(6px);
    opacity: 0;
  }
  60% {
    transform: translateY(-2px);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
    opacity: 1;
  }
}
.sparkle {
  opacity: 0;
  will-change: transform, opacity;
  transform-origin: center;
}

/* Trigger */
.sparkle.is-visible {
  animation: sparklePop 1.6s ease-out forwards, sparkleTwinkle 2.8s ease-in-out 1.6s infinite;
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(6px) rotate(-8deg);
    filter: blur(0.2px);
  }
  35% {
    opacity: 1;
    transform: scale(1.1) translateY(-2px) rotate(6deg);
  }
  60% {
    transform: scale(0.98) translateY(1px) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
    filter: blur(0);
  }
}
@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.05);
  }
}
.bh-button, .bh-button--green {
  font-family: "Rubik", sans-serif;
  position: relative;
  border: 2px solid #FAF1E7;
  border-radius: 62.4375rem;
  box-shadow: 4px 6px 0 0 #FAF1E7;
  transform: translateZ(0);
  background-color: transparent;
  color: #FAF1E7;
  transition: 1s;
  cursor: pointer;
  padding: 5px 15px;
  display: flex;
  width: fit-content;
  min-width: 12.5rem;
  text-transform: uppercase;
  justify-content: center;
}
.bh-button--green {
  color: #004280;
  border: 2px solid #2DB780;
  box-shadow: 4px 6px 0 0 #2DB780;
}

.bh-header {
  background-color: #004280;
  padding-top: 2.5rem;
  padding-bottom: 12.5rem;
}
@media (max-width: 900px) {
  .bh-header {
    padding-bottom: 6.25rem;
  }
}
.bh-header--logo {
  width: 25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6.25rem;
}
.bh-header--icon {
  max-width: 9.375rem;
}
.bh-header--headline {
  max-width: 37.5rem;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 3.375rem;
}
.bh-header--text {
  text-align: center;
  margin-bottom: 3.125rem;
}
.bh-header--buttons {
  max-width: 31.25rem;
  margin: auto;
}
@media (max-width: 599px) {
  .bh-header--buttons {
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }
}

.bh-menu {
  background-color: #FAF1E7;
  padding-top: 6.25rem;
  padding-bottom: 12.5rem;
}
@media (max-width: 900px) {
  .bh-menu {
    padding-bottom: 6.25rem;
  }
}
.bh-menu--container, .bh-block2--container, .bh-block1--container {
  gap: 2.25rem;
}
.bh-menu--content, .bh-block2--content, .bh-block1--content {
  max-width: 25rem;
  position: relative;
  padding-top: 5rem;
}
@media (max-width: 900px) {
  .bh-menu--content, .bh-block2--content, .bh-block1--content {
    padding-top: 0;
  }
}
.bh-menu--coffee, .bh-block1--bird {
  height: 6.25rem;
  position: absolute;
  top: 0;
  left: -17%;
}
@media (max-width: 900px) {
  .bh-menu--coffee, .bh-block1--bird {
    display: none;
  }
}
.bh-menu--headline, .bh-block2--headline, .bh-block1--headline {
  margin-bottom: 1.25rem;
}
.bh-menu--text, .bh-block2--text, .bh-block1--text {
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}
.bh-menu .bh-button--green {
  margin-bottom: 1.25rem;
}
.bh-menu--media, .bh-block2--media {
  position: relative;
}
@media (min-width: 901px) {
  .bh-menu--media, .bh-block2--media {
    padding-top: 22.1875rem;
    margin-top: -300px;
  }
}
.bh-menu--flowers {
  position: absolute;
  top: 0;
}
@media (max-width: 900px) {
  .bh-menu--flowers {
    display: none;
  }
}
.bh-menu--image, .bh-block2--image, .bh-block1--image {
  width: 25rem;
  object-fit: cover;
}
.bh-menu--logo, .bh-block2--icon {
  position: absolute;
  right: -5%;
  bottom: -18px;
  width: 12.5rem;
}
@media (max-width: 440px) {
  .bh-menu--logo, .bh-block2--icon {
    bottom: -50px;
  }
}
.bh-menu--caption {
  font-size: 1.5rem;
  margin-top: 0.625rem;
  letter-spacing: 0.0625rem;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 440px) {
  .bh-menu--caption {
    display: none;
  }
}

.bh-block1 {
  background-color: #FAF1E7;
  padding-bottom: 6.25rem;
}
@media (max-width: 599px) {
  .bh-block1 {
    padding-bottom: 1rem;
  }
}
.bh-block1--container {
  flex-direction: row-reverse;
}
.bh-block1--content {
  padding-top: 0;
}
@media (max-width: 900px) {
  .bh-block1--text {
    margin-bottom: 4.6875rem;
  }
}
.bh-block1--media {
  position: relative;
}
.bh-block1--bird {
  top: -17%;
}
@media (max-width: 900px) {
  .bh-block1--bird {
    display: block;
  }
}
.bh-block1--divider, .bh-video--divider, .bh-block2--divider {
  margin-top: 6.25rem;
  width: 100%;
}
@media (max-width: 599px) {
  .bh-block1--divider, .bh-video--divider, .bh-block2--divider {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}

.bh-block2 {
  background-color: #FAF1E7;
  padding-bottom: 6.25rem;
}
@media (max-width: 599px) {
  .bh-block2 {
    padding-bottom: 1rem;
  }
}
.bh-block2--content {
  padding-top: 0;
}
.bh-block2--media {
  padding-top: 0;
  margin-top: 0;
}
.bh-block2--icon {
  width: 10rem;
}
@media (max-width: 599px) {
  .bh-block2--icon {
    width: 6.25rem;
    bottom: -10px;
  }
}
.bh-video {
  background-color: #FAF1E7;
  padding-bottom: 1rem;
}
.bh-video--headline {
  text-align: center;
  margin-bottom: 2.1875rem;
}
.bh-video .video-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}
.bh-video .video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/CC_BrewHopeSite_Graphic_GreenFrame.svg") center/100% 100% no-repeat;
  pointer-events: none;
}
.bh-video .video-frame__video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bh-video .video-frame__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.bh-locations {
  background-color: #FAF1E7;
  padding-top: 7.8125rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 599px) {
  .bh-locations {
    padding-top: 3rem;
  }
}
.bh-locations--headline {
  color: #C11E30;
}
.bh-locations--headline-container {
  position: relative;
}
.bh-locations--icon {
  position: absolute;
  width: 100px;
  top: -60px;
  left: 240px;
}
@media (max-width: 599px) {
  .bh-locations--icon {
    left: 200px;
  }
}
.bh-locations--flex {
  padding: 1.5rem 2.25rem;
  border-radius: 62.4375rem;
  border: 2px solid #004280;
  min-height: 8.125rem;
}
@media (max-width: 750px) {
  .bh-locations--flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.25rem 3.125rem;
  }
  .bh-locations--flex img {
    margin-top: 1rem;
  }
}
.bh-locations--graphic {
  height: 5rem;
}
.bh-locations--arrow {
  height: 3.125rem;
}

.bh-footer {
  background-color: #FAF1E7;
}
.bh-footer--logo {
  width: 28.75rem;
}
.bh-footer--social {
  height: 3.75rem;
  width: 3.75rem;
}

/*# sourceMappingURL=app.css.map */
