.hero {
  position: relative;
  width: 100%;
  height: clamp(416px, 50.4vw, 689px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: clamp(20px, 3.29vw, 45px);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 4.83vw, 4.125rem);
  font-weight: 400;
  line-height: 0.873;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero__wordmark span {
  display: block;
}

.hero__quote {
  font-size: clamp(1rem, 2.05vw, 1.75rem);
  line-height: 1.15;
  text-align: right;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 640px) {
  .hero__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
}

.tea-quote {
  position: relative;
  width: 100%;
  height: clamp(336px, 53.9vw, 736px);
  overflow: hidden;
  background-color: var(--leaf);
}

.tea-quote__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: clamp(40px, 15.7vw, 215px);
}

.tea-quote blockquote {
  text-align: center;
}

.tea-quote__text {
  max-width: 1120px;
  margin-inline: auto;
  font-size: var(--fs-display);
  color: var(--paper);
}

.tea-quote__author {
  margin-top: clamp(24px, 4vw, 54px);
  font-size: var(--fs-body-lg);
  color: var(--paper);
}
.tea-quote__author cite {
  font-style: normal;
}

.teapot--white {
  top: 62.1%;
  width: min(70.4%, 962px);
}

.best-tea {
  background-color: var(--bark);
  padding-top: clamp(40px, 5.5vw, 75px);
  padding-bottom: clamp(40px, 3.44vw, 47px);
}

.best-tea__heading {
  font-size: var(--fs-display);
  text-align: center;
  color: var(--paper);
}

.best-tea__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 5.78vw, 79px);
  max-width: 762px;
  margin-inline: auto;
  margin-top: clamp(28px, 3.51vw, 48px);
}

.best-tea__item {
  width: clamp(144px, 24.96vw, 341px);
}

.arch {
  position: relative;
  margin: 0;
}

.arch__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 341 / 418;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
}

.arch__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.arch:hover .arch__frame img {
  transform: scale(1.05);
}

.arch__sparkle {
  position: absolute;
  z-index: 3;
  width: clamp(56px, 6.6vw, 90px);
  height: auto;
  color: var(--cream);
  filter: drop-shadow(0 0 18px rgba(253, 242, 217, 0.35));
  pointer-events: none;
}
.arch__sparkle--left {
  left: -16%;
  top: 8%;
}
.arch__sparkle--right {
  right: -16%;
  bottom: 8%;
}

.best-tea__caption {
  max-width: 640px;
  margin-inline: auto;
  margin-top: clamp(28px, 4.32vw, 59px);
  font-size: var(--fs-body);
  line-height: 1.6;
  text-align: center;
  color: var(--paper);
}

.closing {
  position: relative;
  width: 100%;
  height: clamp(384px, 56.7vw, 774px);
  overflow: hidden;
}

.closing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.closing__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 45%);
}

.closing__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.closing__quote {
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: clamp(24px, 4.9vw, 67px);
  font-size: var(--fs-display);
  text-align: center;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
  .hero__quote {
    max-width: min(23.5vw, 321px);
  }

  .tea-quote__text {
    max-width: min(82vw, 1120px);
  }

  .best-tea__caption {
    max-width: min(46.9vw, 640px);
  }

  .closing__quote {
    max-width: min(65.9vw, 900px);
  }
}

@media (max-width: 639px) {
  .hero__row {
    align-items: flex-start;
    gap: 14px;
  }

  .hero__quote {
    text-align: left;
  }

  .tea-quote__inner {
    padding-top: 48px;
  }

  .teapot--white {
    top: 64%;
    width: min(92%, 962px);
  }

  .best-tea__list {
    gap: 16px;
  }

  .arch__sparkle {
    width: 46px;
  }
  .arch__sparkle--left {
    left: -10%;
  }
  .arch__sparkle--right {
    right: -10%;
  }
}
