.home2-banner {
  --home2-beige: #faf0e3;
  --home2-yellow: #fbee35;
  --home2-gold: #eab935;
  --home2-banner-h: 585px;
  --home2-main-w: 650px;
  --home2-main-h: 560px;
  --home2-peek-w: 300px;
  --home2-peek-h: 232px;
  --home2-content-x: 130px;
  --home2-wave-junction: 500px;
  --home2-stage-h: 520px;
  position: relative;
  width: 100%;
  height: var(--home2-banner-h);
  min-height: var(--home2-banner-h);
  max-height: var(--home2-banner-h);
  overflow: hidden;
  background-color: var(--home2-beige);
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
}

.home2-banner__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home2-banner__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--home2-beige);
  display: none;
}

.home2-banner__bg-img {
  position: absolute;
  display: block;
  max-width: none;
}

.home2-banner__yellow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(calc(var(--home2-content-x) + 452px), calc(50vw - 138px));
  right: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: transparent;
}

.home2-banner__yellow-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.home2-banner__copy {
  position: relative;
  z-index: 1;
  flex: 0 0 500px;
  width: 500px;
  max-width: 500px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.home2-banner__headline {
  margin: 0;
  font-family: Baskervville, "Libre Baskerville", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #000;
}

.home2-banner__protein {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px;
  border: 1px dashed #000;
  border-radius: 6px;
  background-color: #000;
}

.home2-banner__bg-img--tablet,
.home2-banner__bg-img--mobile {
  display: none;
}

.home2-banner__bg-img--tablet {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.home2-banner__bg-img--mobile {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.home2-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--home2-content-x);
  box-sizing: border-box;
}

.home2-banner__protein-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 21px;
  color: var(--home2-beige);
  font-family: Baskervville, "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home2-banner__protein-value > span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-bottom: 13px;
  font-size: 26px;
  line-height: 1;
}

.home2-banner__protein-value img {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 21px;
  object-fit: contain;
}

.home2-banner__protein-label {
  display: inline-flex;
  align-items: center;
  color: var(--home2-beige);
  font-family: Baskervville, "Libre Baskerville", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home2-banner__copy.is-animating .home2-banner__title,
.home2-banner__copy.is-animating .home2-banner__description,
.home2-banner__copy.is-animating .home2-banner__protein {
  animation: home2-copy-in 1s ease-in-out .25s both;
}

@keyframes home2-copy-in {
  from {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.home2-banner__title {
  margin: 0;
  min-height: 2em;
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.home2-banner__description {
  max-width: 480px;
  min-height: 96px;
  margin: 0 0 17px;
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.home2-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 264px;
  padding: 14px 20px;
  border: 1px dashed #000;
  border-radius: 6px;
  background-color: var(--home2-yellow);
  box-shadow: 0 10px 12px rgba(0, 0, 0, .15);
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
}

.home2-banner__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home2-banner__right {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  width: 700px;
  max-width: 700px;
  min-height: 520px;
}

.home2-banner__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--home2-stage-h);
  min-height: var(--home2-stage-h);
  overflow: visible;
}

.home2-banner__visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.home2-banner__toolbar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.home2-banner__controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.home2-banner__controls > * {
  pointer-events: auto;
}

.home2-banner__main,
.home2-banner__peek,
.home2-banner__flyer {
  position: absolute;
}

.home2-banner__main {
  left: 50%;
  top: 46%;
  width: var(--home2-main-w);
  height: var(--home2-main-h);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.home2-banner__peek {
  right: 0;
  bottom: 0;
  width: var(--home2-peek-w);
  height: var(--home2-peek-h);
  z-index: 3;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home2-banner__flyer {
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.home2-banner__visual.is-transitioning .home2-banner__main {
  opacity: 0;
  visibility: hidden;
}

.home2-banner.is-transitioning .home2-banner__peek {
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.home2-banner__media {
  width: 100%;
  height: 100%;
}

.home2-banner__flyer .home2-banner__media {
  width: 100%;
  height: 100%;
}

.home2-banner__media .hero-img,
.home2-banner__flyer .hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.home2-banner__nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: auto;
}

.home2-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.home2-banner__arrow:hover {
  transform: scale(1.05);
  background-color: #222;
}

.navbar.color-banner + .home2-banner {
  margin-top: 0;
}

.home2-banner__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media screen and (max-width: 991px) {
  .home2-banner {
    --home2-main-w: 100%;
    --home2-main-h: 420px;
    --home2-peek-w: 0px;
    --home2-peek-h: 0px;
    --home2-content-x: 20px;
    height: auto;
    min-height: 760px;
    max-height: none;
    padding: 0 0 48px;
    background-color: var(--home2-beige);
  }

  .home2-banner__backdrop,
  .home2-banner__bg {
    display: block;
    background-color: var(--home2-beige);
  }

  .home2-banner__yellow {
    display: none;
  }

  .home2-banner__bg-img--desktop {
    display: none;
  }

  .home2-banner__bg-img--tablet {
    display: block;
    inset: 0;
    left: 0;
  }

  .home2-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    padding: 0;
  }

  .home2-banner__copy {
    order: 3;
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 24px 20px 0;
    text-align: center;
    gap: 12px;
  }

  .home2-banner__headline {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .home2-banner__protein {
    margin: 0 auto;
  }

  .home2-banner__title {
    min-height: 2.4em;
    font-size: 30px;
  }

  .home2-banner__description {
    max-width: none;
    min-height: 72px;
    margin: 0 auto 20px;
    font-size: 16px;
  }

  .home2-banner__actions {
    justify-content: center;
    gap: 16px;
  }

  .home2-banner__cta {
    margin: 0;
  }

  .home2-banner__toolbar {
    display: none;
  }

  .home2-banner__right {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .home2-banner__stage {
    width: 100%;
    height: 390px;
    min-height: 390px;
  }

  .home2-banner__main {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 480px);
    height: var(--home2-main-h);
    transform: translate(-50%, -50%);
  }

  .home2-banner__toolbar {
    position: relative;
    order: 2;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    padding: 0 0 14px;
    box-sizing: border-box;
    pointer-events: none;
  }

  .home2-banner__controls {
    display: none;
  }

  .home2-banner__nav {
    gap: 16px;
  }

  .home2-banner__peek {
    display: none;
  }

  .home2-banner__arrow {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home2-banner {
    --home2-main-h: 390px;
    min-height: 720px;
    padding-bottom: 40px;
  }

  .home2-banner__bg-img--tablet {
    display: none;
  }

  .home2-banner__bg-img--mobile {
    display: block;
    inset: 0;
    left: 0;
  }

  .home2-banner__stage {
    height: 370px;
    min-height: 370px;
  }

  .home2-banner__main {
    width: min(100%, 470px);
    height: var(--home2-main-h);
  }

  .home2-banner__title {
    font-size: 26px;
  }
}
