.product-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 48.02vw, 656px);
  overflow: hidden;
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(3.9%, -0.9%) scale(1.04);
  transform-origin: center;
}

.product-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 42%);
}

.product-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: clamp(20px, 4.03vw, 55px);
}

.product-hero__quote {
  font-size: clamp(1rem, 1.68vw, 1.4375rem);
  line-height: 1.391;
  font-style: italic;
  color: var(--paper);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.menu-band {
  background-color: var(--leaf);
  padding-top: clamp(32px, 5.71vw, 78px);
  padding-bottom: clamp(32px, 5.86vw, 80px);
  text-align: center;
}

.menu-band__icon {
  width: clamp(40px, 4.17vw, 57px);
  height: auto;
  margin-inline: auto;
}

.menu-band__title {
  margin-top: clamp(4px, 0.59vw, 8px);
  font-size: var(--fs-display);
  color: var(--paper);
}

.menu-grid {
  background-color: var(--bark);
  padding-top: clamp(40px, 6.15vw, 84px);
  padding-bottom: clamp(40px, 6.51vw, 89px);
}

.menu-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 996px;
  margin-inline: auto;
  column-gap: 0;
  row-gap: var(--row-gap, clamp(32px, 3.95vw, 54px));
}

.menu-grid--tea {
  --stage-h: clamp(120px, 16.54vw, 226px);
  --row-gap: clamp(32px, 3.95vw, 54px);
}

.menu-grid--mocktail {
  --stage-h: clamp(110px, 14.93vw, 204px);
  --row-gap: clamp(36px, 4.76vw, 65px);
}

.drink {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drink__name {
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.18;
  text-align: center;
  color: var(--paper);
}

.drink__stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: var(--stage-h);
  margin-top: clamp(8px, 0.88vw, 12px);
}

.drink__stage img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.drink:hover .drink__stage img {
  transform: translateY(-6px);
}

.drink__meta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 1.68vw, 23px);
  margin-top: clamp(10px, 1.1vw, 15px);
}

.drink__price {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 2.64vw, 36px);
  height: clamp(28px, 2.64vw, 36px);
  border-radius: 50%;
  background-color: var(--cream);
  color: var(--bark);
  font-size: clamp(0.5rem, 0.81vw, 0.6875rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.drink__desc {
  width: clamp(100px, 10.98vw, 150px);
  font-size: var(--fs-caption);
  line-height: 1.333;
  color: var(--paper);
}

@media (min-width: 1024px) {
  .menu-grid__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: min(72.9vw, 996px);
  }

  .product-hero__quote {
    max-width: min(44vw, 601px);
  }

  .menu-band__title {
    max-width: min(45vw, 615px);
    margin-inline: auto;
  }
}

@media (max-width: 1023px) {
  .product-hero__bg {
    transform: none;
    object-position: 28% 75%;
  }
}

@media (max-width: 639px) {
  .menu-grid__list {
    column-gap: 12px;
  }

  .drink__meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .drink__desc {
    width: 100%;
    text-align: center;
  }
}
