.bm-landing {
  --bm-pink: #f6c7d8;
  --bm-pink-strong: #ed9fbd;
  --bm-ink: #241d20;
  --bm-glass: rgba(255, 255, 255, 0.64);
  --bm-radius: 42px;
  --bm-font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--bm-ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(238, 104, 163, 0.13), transparent 16%),
    radial-gradient(circle at 96% 30%, rgba(243, 166, 199, 0.18), transparent 18%),
    radial-gradient(circle at 8% 71%, rgba(232, 92, 148, 0.12), transparent 18%),
    #fffafb;
  padding: clamp(24px, 4vw, 64px) 0 clamp(70px, 8vw, 120px);
  font-family: var(--bm-font-sans);
}

.bm-landing::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--bm-dot), var(--bm-dot), var(--bm-dot), var(--bm-dot);
  background-repeat: no-repeat;
  background-size: clamp(230px, 26vw, 430px);
  background-position: -7vw 5%, 82vw 26%, -11vw 58%, 79vw 83%;
  opacity: 0.42;
  filter: saturate(0.75);
  pointer-events: none;
}

.bm-section {
  width: min(94%, 1340px);
  margin: 0 auto;
}

.bm-glass {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--bm-radius);
  background: var(--bm-glass);
  box-shadow: 0 28px 70px rgba(135, 71, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(0.94);
  backdrop-filter: blur(20px) saturate(0.94);
}

.bm-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.bm-static-section-image {
  display: block;
  width: 100%;
  height: auto;
}

.bm-static-linked-section {
  position: relative;
}

.bm-static-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4%;
  width: 13%;
  min-width: 92px;
  height: 4.4%;
  min-height: 34px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.bm-static-cta:focus-visible {
  outline: 3px solid rgba(31, 26, 28, 0.55);
  outline-offset: 3px;
}

.bm-hero-card {
  position: relative;
  min-height: clamp(700px, 72vw, 940px);
  overflow: hidden;
}

.bm-kicker {
  position: relative;
  z-index: 5;
  margin: clamp(28px, 2.8vw, 42px) 0 0;
  text-align: center;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bm-hero-logo {
  position: absolute;
  z-index: 2;
  top: 5.5%;
  left: 50%;
  width: clamp(310px, 41vw, 570px);
  height: auto;
  transform: translateX(-50%);
}

.bm-hero-models {
  position: absolute;
  inset: 0;
}

.bm-hero-model {
  position: absolute;
  z-index: 3;
  bottom: -2%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(69, 32, 44, 0.08));
}

.bm-hero-model-left {
  left: 3%;
  width: clamp(290px, 32vw, 445px);
}

.bm-hero-model-center {
  z-index: 4;
  left: 50%;
  bottom: -1%;
  width: clamp(260px, 28vw, 390px);
  transform: translateX(-50%);
}

.bm-hero-model-right {
  right: 3%;
  width: clamp(285px, 31vw, 435px);
}

.bm-ribbons {
  position: relative;
  z-index: 7;
  width: 108%;
  height: 82px;
  margin: -25px -4% 34px;
  pointer-events: none;
}

.bm-ribbon {
  position: absolute;
  left: -2%;
  width: 104%;
  overflow: hidden;
  color: #5f4450;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.45vw, 21px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.bm-ribbon-one {
  z-index: 2;
  top: 12px;
  background: #f8c4d8;
  transform: rotate(2.4deg);
}

.bm-ribbon-two {
  z-index: 1;
  top: 28px;
  background: rgba(249, 194, 216, 0.56);
  transform: rotate(-1.8deg);
}

.bm-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: bm-marquee 22s linear infinite;
}

.bm-ribbon-two .bm-marquee-track {
  animation-direction: reverse;
  animation-duration: 25s;
}

.bm-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  min-width: max-content;
  padding: 10px clamp(21px, 2.5vw, 44px);
}

@keyframes bm-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.bm-products-card {
  position: relative;
  padding: clamp(28px, 5vw, 72px) clamp(28px, 5vw, 78px) clamp(34px, 5vw, 66px);
  overflow: hidden;
}

.bm-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.bm-carousel-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

.bm-product {
  flex: 0 0 calc(100% / var(--bm-per-view, 3));
  min-width: 0;
  padding: 0 clamp(10px, 1.5vw, 24px);
  text-align: center;
}

.bm-product-image-link {
  display: block;
  height: clamp(290px, 32vw, 455px);
}

.bm-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.bm-product-image-link:hover .bm-product-image {
  transform: translateY(-5px) scale(1.015);
}

.bm-product h2 {
  margin: 9px 0 14px;
  color: #34272d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.bm-swatches {
  display: flex;
  justify-content: center;
  gap: 5px;
  min-height: 12px;
  margin: 15px 0 0;
}

.bm-swatches span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(43, 31, 36, 0.22);
  border-radius: 50%;
  background: var(--swatch);
}

.bm-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid #1f1a1c;
  border-radius: 999px;
  padding: 9px 22px;
  background: #1f1a1c;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.bm-button:hover,
.bm-button:focus-visible {
  background: transparent;
  color: #1f1a1c !important;
  transform: translateY(-2px);
}

.bm-button-small {
  min-height: 32px;
  padding: 7px 16px;
  font-size: 9px;
}

.bm-carousel-button {
  position: absolute;
  z-index: 4;
  top: 47%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 24px rgba(74, 34, 50, 0.08);
  color: #3d2a32;
  font: 300 29px/1 Georgia, serif;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.bm-carousel-prev { left: 18px; }
.bm-carousel-next { right: 18px; }

.bm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.bm-carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #dcb3c2;
}

.bm-carousel-dot.is-active { background: #35272d; }

.bm-ribbons-gift {
  margin-top: 24px;
  margin-bottom: 22px;
}

.bm-manifesto-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(20px, 3vw, 38px);
}

.bm-manifesto-photo-wrap {
  overflow: hidden;
  border-radius: calc(var(--bm-radius) - 10px);
}

.bm-manifesto-photo {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}

.bm-manifesto-copy {
  padding: 20px clamp(8px, 2.5vw, 42px) 20px 0;
  text-align: center;
}

.bm-client-logo {
  display: block;
  width: clamp(68px, 7.5vw, 104px);
  height: auto;
  margin: 0 auto 4px;
  object-fit: contain;
}

.bm-manifesto-logo {
  display: block;
  width: clamp(190px, 25vw, 340px);
  height: auto;
  margin: -12px auto -2px;
}

.bm-manifesto-copy h2 {
  margin: 0 0 24px;
  color: #251e21;
  font-family: var(--bm-font-sans);
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 700;
  line-height: 1.22;
}

.bm-manifesto-copy > p {
  max-width: 510px;
  margin: 0 auto;
  font-family: var(--bm-font-sans);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.62;
}

.bm-signature-image {
  display: block;
  width: min(88%, 430px);
  height: auto;
  margin: 34px auto 0;
  object-fit: contain;
}

.bm-mood {
  margin-top: clamp(42px, 6vw, 82px);
}

.bm-mood-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 60px) clamp(22px, 4vw, 58px) 34px;
  text-align: center;
}

.bm-mood-card h2 {
  position: relative;
  z-index: 5;
  margin: 0;
  font-family: var(--bm-font-sans);
  font-size: clamp(20px, 2.15vw, 30px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bm-mood-canvas {
  position: relative;
  width: 100%;
  height: clamp(610px, 60vw, 820px);
  margin: -10px auto -35px;
}

.bm-blush-splash {
  position: absolute;
  z-index: 1;
  top: 2%;
  left: 50%;
  width: min(76%, 900px);
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
}

.bm-mood-model {
  position: absolute;
  z-index: 2;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(68, 31, 45, 0.07));
}

.bm-mood-left {
  top: 8%;
  left: -0.5%;
  width: min(34%, 395px);
}

.bm-mood-center {
  z-index: 3;
  bottom: -2%;
  left: 20%;
  width: min(57%, 660px);
}

.bm-mood-right {
  top: 7%;
  right: -0.5%;
  width: min(34%, 400px);
}

.bm-mood-card > .bm-button {
  position: relative;
  z-index: 5;
}

.bm-ribbons-shipping {
  margin-top: -4px;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .bm-section:not(.bm-hero),
  .bm-ribbons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 850ms cubic-bezier(0.22, 0.8, 0.25, 1);
  }

  .bm-section:not(.bm-hero).is-visible,
  .bm-ribbons.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-carousel-track,
  .bm-product-image,
  .bm-button { transition: none; }

  .bm-marquee-track { animation-play-state: paused; }
}

@media (max-width: 767px) {
  .bm-landing {
    --bm-radius: 26px;
    padding-top: 18px;
  }

  .bm-landing::before {
    background-size: 250px;
    background-position: -110px 6%, 82vw 30%, -100px 65%, 72vw 87%;
  }

  .bm-section { width: calc(100% - 24px); }

  .bm-hero-card { min-height: 590px; }
  .bm-kicker { margin-top: 24px; font-size: 10px; }
  .bm-hero-logo { top: 6.5%; width: 270px; }
  .bm-hero-model-left { left: -10%; bottom: -1%; width: 61%; }
  .bm-hero-model-center { bottom: 0; width: 49%; }
  .bm-hero-model-right { right: -10%; bottom: -1%; width: 60%; }

  .bm-ribbons {
    height: 62px;
    margin-top: -14px;
    margin-bottom: 20px;
  }

  .bm-ribbon { font-size: 10px; }
  .bm-marquee-group { gap: 26px; padding: 8px 13px; }
  .bm-ribbon-one { top: 8px; }
  .bm-ribbon-two { top: 22px; }

  .bm-products-card { padding: 28px 42px 32px; }
  .bm-product { flex-basis: 100%; padding: 0 7px; }
  .bm-product-image-link { height: 340px; }
  .bm-product h2 { font-size: 15px; }
  .bm-carousel-button { top: 43%; width: 36px; height: 36px; font-size: 24px; }
  .bm-carousel-prev { left: 6px; }
  .bm-carousel-next { right: 6px; }

  .bm-manifesto-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 14px 14px 36px;
  }

  .bm-manifesto-photo { max-height: none; aspect-ratio: 4 / 5; }
  .bm-manifesto-copy { padding: 0 16px; }
  .bm-client-logo { width: 74px; }
  .bm-manifesto-logo { width: 225px; margin-top: -8px; }
  .bm-manifesto-copy h2 { font-size: 21px; }
  .bm-manifesto-copy > p { font-size: 14px; }
  .bm-signature-image { width: min(92%, 360px); margin-top: 26px; }

  .bm-mood { margin-top: 34px; }
  .bm-mood-card { padding: 30px 10px 28px; }
  .bm-mood-card h2 { padding: 0 12px; font-size: 21px; }
  .bm-mood-canvas { height: 560px; margin: 0 0 -18px; }
  .bm-blush-splash { top: 4%; width: 105%; }
  .bm-mood-left { top: 13%; left: -10%; width: 49%; }
  .bm-mood-center { bottom: 1%; left: 7%; width: 86%; }
  .bm-mood-right { top: 12%; right: -10%; width: 49%; }
}

@media (max-width: 390px) {
  .bm-hero-card { min-height: 540px; }
  .bm-hero-logo { width: 245px; }
  .bm-product-image-link { height: 300px; }
  .bm-mood-canvas { height: 515px; }
}
