/* Hero Banner Block */
.hero-banner {
  position: relative;
  background-color: var(--color-bg-hero);
  overflow: hidden;
  min-height: clamp(460px, 220 * (100vw - 375px) / 905 + 460px, 680px);
  /* ---- Botanical decorations ---- */
  /* ---- Inner layout ---- */
  /* ---- Left: text ---- */
  /* ---- Right: image ---- */
}
.hero-banner__botanical-left {
  position: absolute;
  left: clamp(-60px, 40 * (100vw - 375px) / 905 + -60px, -20px);
  top: 180px;
  bottom: 0;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}
.hero-banner__botanical-left img {
  width: 430px;
  height: 515px;
}
.hero-banner__botanical-right {
  position: absolute;
  bottom: clamp(-30px, 20 * (100vw - 375px) / 905 + -30px, -10px);
  right: clamp(-20px, 10 * (100vw - 375px) / 905 + -20px, -10px);
  pointer-events: none;
}
.hero-banner__botanical-right img {
  width: 250px;
  height: 300px;
  position: relative;
  z-index: 999;
}
.hero-banner__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 20 * (100vw - 375px) / 905 + 20px, 40px);
  padding-top: clamp(40px, 30 * (100vw - 375px) / 905 + 40px, 70px);
  padding-bottom: clamp(40px, 30 * (100vw - 375px) / 905 + 40px, 70px);
}
@media (max-width: 768px) {
  .hero-banner__container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.hero-banner__left {
  max-width: 560px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-banner__left {
    max-width: 100%;
  }
}
.hero-banner__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(14px, 6 * (100vw - 375px) / 905 + 14px, 20px);
}
.hero-banner__stars-icons {
  color: var(--color-stars);
  font-size: clamp(14px, 4 * (100vw - 375px) / 905 + 14px, 18px);
  letter-spacing: 2px;
}
.hero-banner__stars-text {
  font-size: clamp(13px, 2 * (100vw - 375px) / 905 + 13px, 15px);
  color: var(--color-text-secondary);
  font-weight: 400;
}
.hero-banner__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(20px, 8 * (100vw - 375px) / 905 + 20px, 28px);
  line-height: 1.1;
}
.hero-banner__title-script {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(52px, 34 * (100vw - 375px) / 905 + 52px, 86px);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.hero-banner__title-main {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 14 * (100vw - 375px) / 905 + 24px, 38px);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.hero-banner__desc {
  font-size: clamp(14px, 1 * (100vw - 375px) / 905 + 14px, 15px);
  color: #543024;
  font-weight: 500;
  line-height: 1.65;
  max-width: 440px;
  text-align: center;
  margin: 0 auto clamp(28px, 8 * (100vw - 375px) / 905 + 28px, 36px);
}
@media (max-width: 768px) {
  .hero-banner__desc {
    max-width: 100%;
  }
}
.hero-banner__btn {
  display: inline-flex;
}
@media (max-width: 768px) {
  .hero-banner__btn {
    width: 100%;
    justify-content: center;
  }
}
.hero-banner__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .hero-banner__right {
    padding-top: 32px;
  }
}
.hero-banner__image-wrap {
  position: relative;
  width: clamp(280px, 200 * (100vw - 375px) / 905 + 280px, 480px);
  height: clamp(280px, 200 * (100vw - 375px) / 905 + 280px, 480px);
}
.hero-banner__image-circle-bg {
  position: absolute;
  inset: 5%;
  background-color: var(--color-hero-circle);
  border-radius: 50%;
}
.hero-banner__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.hero-banner__image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Features strip (child of hero section visually) ---- */
/* Handled by features_bar block */
/*# sourceMappingURL=hero_banner.css.map */
