section.ln-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 52vw, 560px) !important;
  overflow: hidden;
  border-radius: 0 !important;
}

section.ln-hero .ln-hero__slides,
section.ln-hero .ln-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

section.ln-hero video.ln-hero__media,
section.ln-hero img.ln-hero__poster {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

section.ln-hero .ln-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 6vh 6vw;
}

section.ln-hero .ln-hero__controls { display:none !important; }

.ln-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 5;
}

.ln-hero__arrow--prev { left: 20px; }
.ln-hero__arrow--next { right: 20px; }

.ln-hero__arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ln-hero__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
/* === LN Hero — Kadence cinematic overrides === */

/* Cinematic height */
section.ln-hero {
  height: clamp(520px, 70vh, 720px) !important;
}

/* Re-enable scrim for text readability */
section.ln-hero .ln-hero__scrim {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Center-left text like Kadence hero */
section.ln-hero .ln-hero__content {
  align-items: center;
  padding: 0 6vw;
}

section.ln-hero .ln-hero__text {
  max-width: 640px;
}

/* Typography scale */
.ln-hero__headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ln-hero__subhead {
  font-size: clamp(16px, 1.6vw, 20px);
  margin-top: 16px;
  opacity: 0.9;
}

/* Kadence-style outline button */
.ln-hero__btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.25s ease;
}

.ln-hero__btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Hide arrows completely */
.ln-hero__arrow {
  display: none !important;
}
/* Ensure video is not dimmed */
.ln-hero__media {
  filter: none !important;
}

/* Ultra-light bottom gradient only */
section.ln-hero .ln-hero__scrim {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.16) 25%,
    rgba(0,0,0,0.06) 45%,
    rgba(0,0,0,0.00) 70%
  );
}

/* Kill any hidden overlay pseudo-elements */
.ln-hero__slide::before,
.ln-hero__slide::after {
  display: none !important;
  content: none !important;
}
/* === Slide visibility (prevents all slides stacking) === */
section.ln-hero .ln-hero__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ln-fade-ms, 900ms) ease;
  z-index: 1;
}

section.ln-hero .ln-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
section.ln-hero .ln-hero__content { align-items:flex-end; padding:0 6vw 14vh 6vw; }


/* Reverse track direction so slides drag left naturally */
section.ln-hero .ln-hero__slides {
}

/* Ensure track starts at first slide */
section.ln-hero .ln-hero__slides {
}
