.lm-promotional-video {
  --lm-promo-bg: #f5efe7;
  --lm-promo-wave: #c7a382;
  --lm-promo-accent: #e7c7a5;
  --lm-promo-title: #3e2d24;
  --lm-promo-text: #6b5a51;
  background: #f5f1ed;
  padding: 30px 0 12px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.lm-promo__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.lm-promo__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding: 0 clamp(16px, 4vw, 48px);
}

.lm-promo__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lm-promo-text);
  opacity: 0.8;
  margin-bottom: 12px;
}

.lm-promo__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--lm-promo-title);
  margin: 0 0 12px;
}

.lm-promo__subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--lm-promo-text);
  max-width: 640px;
  margin: 0 auto;
}

.lm-promo__stage {
  position: relative;
}

.lm-promo__frame {
  position: relative;
  padding: 0;
  overflow: visible;
}

.lm-promo__wave-shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lm-promo__wave {
  width: 100%;
  height: 100%;
}

.lm-promo__wave-path {
  fill: none;
  stroke: var(--lm-promo-wave);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.6;
}

.lm-promo__wave-path--moving {
  stroke-width: 3.5;
  opacity: 0.9;
}

.lm-promo__pages {
  display: flex;
  transition: transform 0.7s ease;
  min-height: clamp(360px, 44vw, 520px);
  position: relative;
  z-index: 1;
}

.lm-promo__page {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(360px, 44vw, 520px);
}

.lm-promo__item {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
}

.lm-promo__item::before {
  content: "";
  position: absolute;
  inset: -30% -22% -40%;
  background: radial-gradient(circle, rgba(231, 199, 165, 0.7) 0%, rgba(231, 199, 165, 0.35) 40%, rgba(231, 199, 165, 0) 75%);
  filter: blur(16px);
  opacity: 0.95;
  z-index: 0;
  animation: lm-promo-halo 3.2s ease-in-out infinite;
}

.lm-promo__item--pos-1 {
  left: 8%;
  top: 58%;
}

.lm-promo__item--pos-1 .lm-promo__video-card {
  animation-delay: 0s;
}

.lm-promo__item--pos-2 {
  left: 33%;
  top: 24%;
}

.lm-promo__item--pos-2 .lm-promo__video-card {
  animation-delay: 0.6s;
}

.lm-promo__item--pos-3 {
  left: 60%;
  top: 64%;
}

.lm-promo__item--pos-3 .lm-promo__video-card {
  animation-delay: 1.2s;
}

.lm-promo__item--pos-4 {
  left: 86%;
  top: 30%;
}

.lm-promo__item--pos-4 .lm-promo__video-card {
  animation-delay: 1.8s;
}

.lm-promo__video-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 18vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 30px rgba(61, 40, 26, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  z-index: 1;
  animation: lm-promo-float 4.8s ease-in-out infinite;
  border: none;
  padding: 0;
  appearance: none;
}

.lm-promo__video-card[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.lm-promo__video-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(231, 199, 165, 0.55) 0%, rgba(231, 199, 165, 0.15) 45%, rgba(231, 199, 165, 0) 70%);
  opacity: 0.85;
  filter: blur(6px);
  animation: lm-promo-glow 3.6s ease-in-out infinite;
  z-index: 0;
}

.lm-promo__video-card::after {
  content: none;
}

.lm-promo__video-card:hover {
  transform: scale(1.07);
  box-shadow: 0 20px 40px rgba(61, 40, 26, 0.2);
}

.lm-promo__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.lm-promo__thumb--video {
  display: block;
}

.lm-promo__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f3e7dc, #e6d3c4);
}

.lm-promo__play {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.lm-promo__play::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--lm-promo-title);
}

.lm-promo__caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lm-promo-title);
}

.lm-promo__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.lm-promo__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(62, 45, 36, 0.2);
  background: rgba(255, 255, 255, 0.75);
  color: var(--lm-promo-title);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lm-promo__nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}

.lm-promo__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.lm-promo__dots {
  display: flex;
  gap: 10px;
}

.lm-promo__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(62, 45, 36, 0.2);
}

.lm-promo__dot[aria-current="true"] {
  width: 28px;
  background: var(--lm-promo-wave);
}

.lm-promo__empty {
  text-align: center;
  color: var(--lm-promo-text);
  padding: 40px 0;
}


@keyframes lm-promo-glow {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes lm-promo-halo {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  20% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  30% {
    transform: scale(1.16);
    opacity: 1;
  }
  44% {
    transform: scale(1.02);
    opacity: 0.75;
  }
  60% {
    transform: scale(1.12);
    opacity: 0.95;
  }
}

@keyframes lm-promo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .lm-promo__item--pos-1 {
    left: 10%;
  }

  .lm-promo__item--pos-2 {
    left: 36%;
  }

  .lm-promo__item--pos-3 {
    left: 62%;
  }

  .lm-promo__item--pos-4 {
    left: 88%;
  }

  .lm-promo__video-card {
    width: clamp(120px, 22vw, 180px);
  }
}

@media (max-width: 720px) {
  .lm-promo__frame {
    padding: 0;
  }

  .lm-promo__wave-shell {
    inset: 0;
  }

  .lm-promo__item--pos-1 {
    left: 15%;
    top: 55%;
  }

  .lm-promo__item--pos-2 {
    left: 45%;
    top: 25%;
  }

  .lm-promo__item--pos-3 {
    left: 70%;
    top: 74%;
  }

  .lm-promo__item--pos-4 {
    left: 84%;
    top: 30%;
  }

  .lm-promo__pages,
  .lm-promo__page {
    min-height: 340px;
  }

  .lm-promo__video-card {
    width: clamp(92px, 26vw, 128px);
  }

  .lm-promo__caption {
    font-size: 13px;
    position: relative;
    z-index: 2;
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lm-promo__wave-path--moving,
  .lm-promo__video-card::before {
    animation: none;
  }

  .lm-promo__video-card {
    transition: none;
    animation: none;
  }
}

.lm-promo__modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 15, 10, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.lm-promo__modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lm-promo__modal-content {
  position: relative;
  width: min(900px, 92vw);
  background: #0f0c0a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.lm-promo__modal-media {
  position: relative;
  padding-top: 56.25%;
}

.lm-promo__modal-media iframe,
.lm-promo__modal-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #0f0c0a;
}

.lm-promo__modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #3e2d24;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
