/* ======================================================================
   Front Hero — Design #13 (Crossfade Fade-Stack, lightSlider mode:fade)
   Library variant. Full-bleed slider, slides dissolve in place, centered
   minimal text. Class pattern: front-hero-13-*. Palette adapts via
   --bs-primary / --bs-secondary.
   ====================================================================== */

.front-hero-13-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0c1510;
}
.front-hero-13-band .lSSlideOuter,
.front-hero-13-band .lSSlideWrapper { margin: 0; border-radius: 0; overflow: hidden; }
.front-hero-13-list { list-style: none; margin: 0; padding: 0; }

.front-hero-13-slide {
    position: relative;
    height: 74vh;
    min-height: 480px;
    max-height: 760px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* centered scrim — even darkness so centered text reads on any photo */
.front-hero-13-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(8, 14, 11, 0.30) 0%, rgba(8, 14, 11, 0.58) 70%, rgba(8, 14, 11, 0.72) 100%),
        linear-gradient(180deg, rgba(8, 14, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(8, 14, 11, 0.45) 100%);
}
.front-hero-13-inner { position: relative; z-index: 2; }
.front-hero-13-content { max-width: 680px; margin: 0 auto; color: #fff; padding: 0 1.25rem; }

.front-hero-13-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.85rem;
}
.front-hero-13-eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-secondary);
}
.front-hero-13-title {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 1.2rem;
    text-shadow: 0 4px 34px rgba(0, 0, 0, 0.4);
}
.front-hero-13-sub {
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem;
    max-width: 520px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.front-hero-13-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: #13261c;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.front-hero-13-cta svg { transition: transform 0.2s ease; }
.front-hero-13-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34); }
.front-hero-13-cta:hover svg { transform: translateX(4px); }

/* dot pager — centered, minimal. Scoped through .lSSlideOuter .lSPager.lSpg to
   out-specify lightSlider defaults. */
.front-hero-13-band .lSSlideOuter .lSPager.lSpg {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 20;
    text-align: center;
}
.front-hero-13-band .lSSlideOuter .lSPager.lSpg > li { padding: 0 5px; }
.front-hero-13-band .lSSlideOuter .lSPager.lSpg > li a {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    transition: width 0.25s ease, background 0.2s ease;
}
.front-hero-13-band .lSSlideOuter .lSPager.lSpg > li.active a,
.front-hero-13-band .lSSlideOuter .lSPager.lSpg > li:hover a {
    width: 30px;
    background: #fff;
}

@media (max-width: 991.98px) {
    .front-hero-13-slide { height: 62vh; min-height: 420px; }
}
@media (max-width: 575.98px) {
    .front-hero-13-slide { height: 68vh; min-height: 400px; }
    .front-hero-13-eyebrow { letter-spacing: 0.2em; }
}
