/* =========================================================
   DANNY'S LAWN SERVICES LLC
   GALLERY HERO
========================================================= */

.dls-gallery-hero {
    --dls-gallery-image-x: 0px;
    --dls-gallery-image-y: 0px;

    position: relative;
    isolation: isolate;

    width: 100%;

    /*
     * Fallback y unidades modernas.
     * Header + hero no superan la pantalla.
     */
    height:
        calc(
            100vh -
            var(--dls-header-height)
        );

    height:
        calc(
            100svh -
            var(--dls-header-height)
        );

    min-height: 0;

    color: var(--dls-white);
    background: var(--dls-black);

    overflow: hidden;
}


/* =========================================================
   IMAGEN ESTÁTICA
========================================================= */

.dls-gallery-hero__background {
    position: absolute;
    inset: 0;
    z-index: -7;

    background: var(--dls-black);

    overflow: hidden;
}

.dls-gallery-hero__background img {
    width: calc(100% + 32px);
    height: calc(100% + 32px);

    margin:
        -16px
        0
        0
        -16px;

    object-fit: cover;
    object-position: center 52%;

    filter:
        saturate(0.95)
        contrast(1.05)
        brightness(0.9);

    transform:
        translate3d(
            var(--dls-gallery-image-x),
            var(--dls-gallery-image-y),
            0
        )
        scale(1.03);

    transition:
        opacity
        700ms
        var(--dls-ease),
        transform
        900ms
        var(--dls-ease);

    opacity: 0.25;

    pointer-events: none;
    user-select: none;
}

.dls-gallery-hero.has-loaded-image
.dls-gallery-hero__background img {
    opacity: 1;
}


/* =========================================================
   OVERLAYS
========================================================= */

.dls-gallery-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -6;

    background:
        linear-gradient(
            90deg,
            rgba(3, 5, 3, 0.97) 0%,
            rgba(4, 7, 4, 0.91) 32%,
            rgba(4, 7, 4, 0.69) 58%,
            rgba(4, 7, 4, 0.36) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22) 0%,
            transparent 45%,
            rgba(0, 0, 0, 0.78) 100%
        );
}

.dls-gallery-hero__texture {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image:
        repeating-linear-gradient(
            118deg,
            transparent 0,
            transparent 54px,
            rgba(255, 255, 255, 0.018) 55px,
            transparent 56px
        );

    pointer-events: none;
}


/* =========================================================
   DECORACIÓN
========================================================= */

.dls-gallery-hero__ring {
    position: absolute;
    z-index: -3;

    border-radius: 50%;

    pointer-events: none;
}

.dls-gallery-hero__ring--green {
    top: -210px;
    left: -170px;

    width: 490px;
    height: 490px;

    border:
        1px solid
        rgba(139, 203, 24, 0.14);

    box-shadow:
        inset 0 0 120px
        rgba(139, 203, 24, 0.045);
}

.dls-gallery-hero__ring--orange {
    right: -170px;
    bottom: -230px;

    width: 440px;
    height: 440px;

    border:
        1px solid
        rgba(247, 121, 0, 0.13);

    box-shadow:
        inset 0 0 110px
        rgba(247, 121, 0, 0.04);
}

.dls-gallery-hero__dots {
    position: absolute;
    top: 20%;
    right: 4%;
    z-index: -2;

    width: 130px;
    height: 150px;

    background-image:
        radial-gradient(
            circle,
            rgba(139, 203, 24, 0.22) 1.5px,
            transparent 1.8px
        );

    background-size: 14px 14px;

    mask-image:
        linear-gradient(
            135deg,
            transparent,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            transparent,
            black,
            transparent
        );

    opacity: 0.55;
}

.dls-gallery-hero__leaf {
    position: absolute;
    right: -42px;
    bottom: -62px;
    z-index: -2;

    width: min(17vw, 235px);

    color:
        rgba(139, 203, 24, 0.1);

    transform: rotate(7deg);

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.dls-gallery-hero__container {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(290px, 0.45fr);

    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);

    width:
        min(
            calc(
                100% -
                (
                    var(--dls-page-padding) * 2
                )
            ),
            var(--dls-container-wide)
        );

    height: 100%;
    margin-inline: auto;

    padding:
        clamp(1rem, 2.5vh, 2.2rem)
        0
        clamp(3.8rem, 7vh, 5rem);
}


/* =========================================================
   CONTENIDO
========================================================= */

.dls-gallery-hero__content {
    max-width: 850px;
}

.dls-gallery-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    margin-bottom:
        clamp(0.7rem, 1.8vh, 1.1rem);

    padding:
        0.58rem
        0.78rem;

    color:
        rgba(255, 255, 255, 0.86);

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: var(--dls-radius-sm);

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    font-size: 0.63rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dls-gallery-hero__eyebrow > span {
    position: relative;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    background: var(--dls-green-bright);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(139, 203, 24, 0.12);
}

.dls-gallery-hero__eyebrow > span::after {
    content: "";

    position: absolute;
    inset: -5px;

    border:
        1px solid
        rgba(139, 203, 24, 0.42);

    border-radius: 50%;

    animation:
        dls-gallery-hero-status
        2200ms
        ease-out
        infinite;
}

@keyframes dls-gallery-hero-status {

    0% {
        opacity: 0.9;
        transform: scale(0.7);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}


/* =========================================================
   TÍTULO
========================================================= */

.dls-gallery-hero__title {
    max-width: 880px;

    margin:
        0
        0
        clamp(0.8rem, 2.2vh, 1.3rem);

    color: var(--dls-white);

    font-size:
        clamp(4.3rem, 8vw, 8rem);

    font-weight: 800;
    line-height: 0.82;

    letter-spacing: -0.045em;
    text-transform: uppercase;

    text-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.34);
}

.dls-gallery-hero__title span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            105deg,
            var(--dls-green-bright),
            var(--dls-green),
            #E2F7B8
        );

    background-clip: text;
    -webkit-background-clip: text;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.dls-gallery-hero__description {
    max-width: 680px;

    margin:
        0
        0
        clamp(1rem, 2.7vh, 1.65rem);

    color:
        rgba(255, 255, 255, 0.7);

    font-size:
        clamp(0.88rem, 1.2vw, 1.04rem);

    line-height: 1.7;
}


/* =========================================================
   BOTONES
========================================================= */

.dls-gallery-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-bottom:
        clamp(1rem, 2.7vh, 1.7rem);
}

.dls-gallery-hero__button {
    position: relative;
    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    min-height: 51px;
    padding:
        0.78rem
        1.2rem;

    border:
        1px solid
        transparent;

    border-radius: var(--dls-radius-sm);

    font-size: 0.69rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        border-color
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-hero__button::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.46),
            transparent
        );

    transform: translateX(-130%);

    transition:
        transform
        650ms
        var(--dls-ease);
}

.dls-gallery-hero__button:hover {
    transform: translateY(-3px);
}

.dls-gallery-hero__button:hover::before {
    transform: translateX(130%);
}

.dls-gallery-hero__button--primary {
    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-bright),
            var(--dls-green)
        );

    border-color:
        rgba(255, 255, 255, 0.28);

    box-shadow:
        0 16px 36px
        rgba(139, 203, 24, 0.23);
}

.dls-gallery-hero__button--secondary {
    color: var(--dls-white);

    background:
        rgba(255, 255, 255, 0.06);

    border-color:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dls-gallery-hero__button--secondary:hover {
    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(247, 121, 0, 0.4);
}


/* =========================================================
   INDICADORES
========================================================= */

.dls-gallery-hero__trust {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.58rem;
}

.dls-gallery-hero__trust-item {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.58rem;

    min-height: 48px;
    padding:
        0.52rem
        0.68rem;

    color:
        rgba(255, 255, 255, 0.78);

    background:
        rgba(5, 8, 5, 0.43);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: var(--dls-radius-sm);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dls-gallery-hero__trust-item > span:first-child {
    display: grid;
    place-items: center;

    width: 31px;
    height: 31px;

    color: var(--dls-green-bright);

    background:
        rgba(139, 203, 24, 0.07);

    border-radius: 7px;
}

.dls-gallery-hero__trust-item > span:last-child {
    display: grid;
    gap: 0.1rem;
}

.dls-gallery-hero__trust-item strong {
    color: var(--dls-white);

    font-size: 0.59rem;
    font-weight: 800;
}

.dls-gallery-hero__trust-item small {
    color:
        rgba(255, 255, 255, 0.43);

    font-size: 0.46rem;
    font-weight: 600;
}


/* =========================================================
   PROJECT EXPLORER
========================================================= */

.dls-gallery-hero__explorer {
    position: relative;
    isolation: isolate;

    align-self: end;
    justify-self: end;

    width: min(100%, 355px);

    margin-bottom:
        clamp(0.6rem, 2.6vh, 1.8rem);

    padding:
        clamp(1.1rem, 2.5vw, 1.5rem);

    color: var(--dls-white);

    background:
        linear-gradient(
            145deg,
            rgba(9, 12, 9, 0.86),
            rgba(26, 31, 26, 0.7)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.33),
        inset 0 1px 0
        rgba(255, 255, 255, 0.07);

    backdrop-filter:
        blur(19px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(19px)
        saturate(125%);

    overflow: hidden;
}

.dls-gallery-hero__explorer::before {
    content: "";

    position: absolute;
    top: 0;
    right: 1.3rem;
    left: 1.3rem;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--dls-orange),
            var(--dls-green-bright),
            transparent
        );
}

.dls-gallery-hero__explorer-top {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.75rem;

    margin-bottom: 1rem;
    padding-bottom: 0.9rem;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.dls-gallery-hero__explorer-icon {
    display: grid;
    place-items: center;

    width: 47px;
    height: 47px;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: var(--dls-radius-sm);
}

.dls-gallery-hero__explorer-top > span:last-child {
    display: grid;
    gap: 0.18rem;

    font-family: var(--dls-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 0.94;

    text-transform: uppercase;
}

.dls-gallery-hero__explorer-top small {
    color: var(--dls-green-bright);

    font-family: var(--dls-font-body);
    font-size: 0.49rem;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dls-gallery-hero__explorer h2 {
    margin:
        0
        0
        0.75rem;

    color: var(--dls-white);

    font-size:
        clamp(2rem, 3.3vw, 3.1rem);

    line-height: 0.9;
    text-transform: uppercase;
}

.dls-gallery-hero__explorer > p {
    margin:
        0
        0
        1rem;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.7rem;
    line-height: 1.6;
}

.dls-gallery-hero__features {
    display: grid;
    gap: 0.55rem;

    margin:
        0
        0
        1.1rem;

    padding: 0;

    list-style: none;
}

.dls-gallery-hero__features li {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.6rem;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 0.61rem;
    font-weight: 700;
}

.dls-gallery-hero__features li > span {
    position: relative;

    width: 17px;
    height: 17px;

    background: var(--dls-green);

    border-radius: 5px;
}

.dls-gallery-hero__features li > span::after {
    content: "";

    position: absolute;
    top: 4px;
    left: 5px;

    width: 6px;
    height: 3px;

    border-bottom:
        2px solid
        var(--dls-black);

    border-left:
        2px solid
        var(--dls-black);

    transform: rotate(-45deg);
}

.dls-gallery-hero__explorer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;

    min-height: 46px;
    padding:
        0.7rem
        0.85rem;

    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-bright),
            var(--dls-green)
        );

    border-radius: var(--dls-radius-sm);

    font-size: 0.61rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-hero__explorer-link:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 34px
        rgba(139, 203, 24, 0.2);
}


/* =========================================================
   INDICADOR INFERIOR
========================================================= */

.dls-gallery-hero__scroll {
    position: absolute;
    bottom: 1.15rem;
    left: var(--dls-page-padding);
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 0.8rem;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.55rem;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dls-gallery-hero__scroll-line {
    position: relative;

    width: 52px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.2);

    overflow: hidden;
}

.dls-gallery-hero__scroll-line::after {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--dls-green-bright);

    transform: translateX(-100%);

    animation:
        dls-gallery-scroll-line
        2300ms
        var(--dls-ease)
        infinite;
}

@keyframes dls-gallery-scroll-line {

    0% {
        transform: translateX(-100%);
    }

    45%,
    60% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}


/* =========================================================
   ANIMACIONES DE ENTRADA
========================================================= */

.dls-gallery-hero.is-enhanced
[data-dls-gallery-hero-reveal] {
    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(22px)
        scale(0.99);
}

.dls-gallery-hero.is-enhanced
[data-dls-gallery-hero-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;

    transition:
        opacity
        750ms
        var(--dls-ease),
        transform
        850ms
        var(--dls-ease),
        filter
        750ms
        var(--dls-ease);
}

html.dls-reduced-motion
.dls-gallery-hero *,
html.dls-reduced-motion
.dls-gallery-hero *::before,
html.dls-reduced-motion
.dls-gallery-hero *::after {
    animation: none !important;
    transition: none !important;
}




































/* =========================================================
   DANNY'S LAWN SERVICES LLC
   GALLERY INTRODUCTION
========================================================= */

.dls-gallery-intro {
    --dls-gallery-intro-pointer-x: 50%;
    --dls-gallery-intro-pointer-y: 50%;

    position: relative;
    isolation: isolate;

    padding:
        var(--dls-section-space)
        var(--dls-page-padding);

    color: var(--dls-text);

    background:
        radial-gradient(
            circle at 6% 14%,
            rgba(139, 203, 24, 0.12),
            transparent 27%
        ),
        radial-gradient(
            circle at 96% 84%,
            rgba(247, 121, 0, 0.09),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            var(--dls-paper),
            var(--dls-cream)
        );

    overflow: hidden;
}

.dls-gallery-intro::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -5;

    background-image:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 53px,
            rgba(41, 66, 13, 0.018) 54px,
            transparent 55px
        );

    pointer-events: none;
}

.dls-gallery-intro::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -4;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 203, 24, 0.42),
            rgba(247, 121, 0, 0.34),
            transparent
        );
}

.dls-gallery-intro__container {
    position: relative;
    z-index: 2;

    width: min(100%, var(--dls-container-wide));
    margin-inline: auto;
}


/* =========================================================
   DECORACIONES
========================================================= */

.dls-gallery-intro__orb {
    position: absolute;
    z-index: -3;

    border-radius: 50%;

    pointer-events: none;
}

.dls-gallery-intro__orb--green {
    top: 9%;
    right: -190px;

    width: 440px;
    height: 440px;

    border:
        1px solid
        rgba(83, 125, 19, 0.12);

    box-shadow:
        inset 0 0 100px
        rgba(139, 203, 24, 0.035);
}

.dls-gallery-intro__orb--orange {
    bottom: 5%;
    left: -145px;

    width: 325px;
    height: 325px;

    border:
        1px solid
        rgba(247, 121, 0, 0.1);

    box-shadow:
        inset 0 0 80px
        rgba(247, 121, 0, 0.03);
}

.dls-gallery-intro__dots {
    position: absolute;
    top: 33%;
    right: 3%;
    z-index: -2;

    width: 135px;
    height: 155px;

    background-image:
        radial-gradient(
            circle,
            rgba(41, 66, 13, 0.15) 1.5px,
            transparent 1.8px
        );

    background-size: 14px 14px;

    mask-image:
        linear-gradient(
            135deg,
            transparent,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            transparent,
            black,
            transparent
        );

    opacity: 0.65;
}

.dls-gallery-intro__leaf {
    position: absolute;
    bottom: -55px;
    left: -38px;
    z-index: -2;

    width: min(18vw, 245px);

    color:
        rgba(83, 125, 19, 0.085);

    transform: rotate(-12deg);

    pointer-events: none;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.dls-gallery-intro__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(290px, 0.48fr);

    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);

    margin-bottom:
        clamp(3rem, 6vw, 5.5rem);
}

.dls-gallery-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    margin-bottom: 1.1rem;

    color: var(--dls-green-dark);

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dls-gallery-intro__eyebrow::before {
    content: "";

    width: 30px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--dls-orange),
            var(--dls-green)
        );

    border-radius: var(--dls-radius-round);
}

.dls-gallery-intro__heading h2 {
    max-width: 950px;
    margin: 0;

    color: var(--dls-text);

    font-size:
        clamp(3rem, 6vw, 6rem);

    line-height: 0.87;
    text-transform: uppercase;
}

.dls-gallery-intro__heading h2 span {
    display: block;

    color: var(--dls-green-dark);
}

.dls-gallery-intro__introduction {
    display: grid;
    gap: 1.3rem;

    padding-bottom: 0.25rem;
}

.dls-gallery-intro__introduction > p {
    margin: 0;

    color: var(--dls-text-soft);

    font-size: 0.94rem;
    line-height: 1.75;
}

.dls-gallery-intro__header-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;

    width: max-content;
    max-width: 100%;
    min-height: 48px;
    padding:
        0.72rem
        0.9rem;

    color: var(--dls-white);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-dark),
            var(--dls-green-deep)
        );

    border-radius: var(--dls-radius-sm);

    box-shadow:
        0 14px 30px
        rgba(41, 66, 13, 0.15);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-intro__header-link:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(41, 66, 13, 0.22);
}


/* =========================================================
   LAYOUT PRINCIPAL
========================================================= */

.dls-gallery-intro__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(320px, 0.92fr);

    align-items: stretch;
    gap: clamp(1.4rem, 3vw, 2.5rem);

    margin-bottom:
        clamp(3.5rem, 7vw, 6rem);
}


/* =========================================================
   COLLAGE VISUAL
========================================================= */

.dls-gallery-intro__visual {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(180px, 0.82fr);

    grid-template-rows:
        repeat(2, minmax(210px, 1fr));

    gap: 0.8rem;

    min-width: 0;
    min-height: 570px;
    padding: 0.8rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.45)
        );

    border:
        1px solid
        var(--dls-border);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 28px 70px
        rgba(20, 35, 17, 0.14);

    overflow: hidden;
}

.dls-gallery-intro__visual::before {
    content: "";

    position: absolute;
    z-index: 4;

    width: 240px;
    height: 240px;

    top:
        calc(
            var(--dls-gallery-intro-pointer-y) -
            120px
        );

    left:
        calc(
            var(--dls-gallery-intro-pointer-x) -
            120px
        );

    background:
        radial-gradient(
            circle,
            rgba(139, 203, 24, 0.12),
            transparent 68%
        );

    border-radius: 50%;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-intro__visual:hover::before {
    opacity: 1;
}

.dls-gallery-intro__photo {
    position: relative;
    isolation: isolate;

    margin: 0;

    background: var(--dls-charcoal);

    border-radius: var(--dls-radius-sm);

    overflow: hidden;
}

.dls-gallery-intro__photo--primary {
    grid-row: 1 / -1;
}

.dls-gallery-intro__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.95)
        contrast(1.03);

    transition:
        transform
        800ms
        var(--dls-ease),
        filter
        700ms
        var(--dls-ease);
}

.dls-gallery-intro__photo:hover img {
    filter:
        saturate(1.05)
        contrast(1.04);

    transform: scale(1.055);
}

.dls-gallery-intro__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 6, 5, 0.82) 100%
        );

    pointer-events: none;
}

.dls-gallery-intro__photo figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    display: grid;
    gap: 0.18rem;

    padding: 1rem;
}

.dls-gallery-intro__photo figcaption span {
    color: var(--dls-green-bright);

    font-size: 0.52rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-intro__photo figcaption strong {
    max-width: 320px;

    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size:
        clamp(1.5rem, 2.5vw, 2.2rem);

    line-height: 0.93;
    text-transform: uppercase;
}

.dls-gallery-intro__photo--top figcaption,
.dls-gallery-intro__photo--bottom figcaption {
    padding: 0.75rem;
}

.dls-gallery-intro__photo--top figcaption span,
.dls-gallery-intro__photo--bottom figcaption span {
    color: var(--dls-white);
}


/* Tarjeta flotante */

.dls-gallery-intro__visual-card {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 5;

    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.7rem;

    max-width: 245px;
    padding: 0.75rem;

    color: var(--dls-white);

    background:
        rgba(5, 6, 5, 0.84);

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: var(--dls-radius-sm);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.dls-gallery-intro__visual-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: 9px;
}

.dls-gallery-intro__visual-card > span:last-child {
    display: grid;
    gap: 0.14rem;
}

.dls-gallery-intro__visual-card small {
    color:
        rgba(255, 255, 255, 0.46);

    font-size: 0.46rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dls-gallery-intro__visual-card strong {
    color: var(--dls-white);

    font-size: 0.7rem;
    font-weight: 800;
}

.dls-gallery-intro__visual-line {
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 5;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            var(--dls-green-bright),
            transparent,
            var(--dls-orange)
        );

    pointer-events: none;
}


/* =========================================================
   EXPERIENCIA
========================================================= */

.dls-gallery-intro__experience {
    position: relative;
    isolation: isolate;

    display: flex;
    flex-direction: column;

    padding:
        clamp(1.4rem, 3vw, 2.1rem);

    color: var(--dls-white);

    background:
        radial-gradient(
            circle at 92% 3%,
            rgba(247, 121, 0, 0.15),
            transparent 29%
        ),
        radial-gradient(
            circle at 5% 96%,
            rgba(139, 203, 24, 0.16),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--dls-charcoal),
            var(--dls-black)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 30px 75px
        rgba(20, 34, 17, 0.22);

    overflow: hidden;
}

.dls-gallery-intro__experience::before {
    content: "";

    position: absolute;
    top: 0;
    right: 1.5rem;
    left: 1.5rem;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--dls-orange),
            var(--dls-green-bright),
            transparent
        );
}

.dls-gallery-intro__experience-header {
    margin-bottom: 1.4rem;
}

.dls-gallery-intro__experience-header > span {
    display: inline-block;

    margin-bottom: 0.7rem;

    color: var(--dls-orange);

    font-size: 0.57rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dls-gallery-intro__experience-header h3 {
    margin:
        0
        0
        0.8rem;

    color: var(--dls-white);

    font-size:
        clamp(2.35rem, 4vw, 4rem);

    line-height: 0.88;
    text-transform: uppercase;
}

.dls-gallery-intro__experience-header p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.57);

    font-size: 0.76rem;
    line-height: 1.68;
}


/* Pasos */

.dls-gallery-intro__steps {
    display: grid;
    gap: 0.65rem;

    margin:
        0
        0
        1.2rem;

    padding: 0;

    list-style: none;
}

.dls-gallery-intro__steps li {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: start;
    gap: 0.8rem;

    padding: 0.85rem;

    background:
        rgba(255, 255, 255, 0.042);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: var(--dls-radius-sm);

    transition:
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        border-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-intro__steps li:hover {
    background:
        rgba(139, 203, 24, 0.07);

    border-color:
        rgba(139, 203, 24, 0.18);

    transform: translateX(4px);
}

.dls-gallery-intro__steps li > span {
    display: grid;
    place-items: center;

    width: 37px;
    height: 37px;

    color: var(--dls-black);
    background: var(--dls-green);

    border-radius: 9px;

    font-family: var(--dls-font-display);
    font-size: 0.78rem;
    font-weight: 800;
}

.dls-gallery-intro__steps li:nth-child(2) > span {
    background: var(--dls-orange);
}

.dls-gallery-intro__steps li > div {
    display: grid;
    gap: 0.25rem;

    padding-top: 0.08rem;
}

.dls-gallery-intro__steps strong {
    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size: 1.22rem;
    line-height: 1;

    text-transform: uppercase;
}

.dls-gallery-intro__steps p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.49);

    font-size: 0.65rem;
    line-height: 1.52;
}


/* Garantía */

.dls-gallery-intro__assurance {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.75rem;

    margin-top: auto;
    padding: 0.9rem;

    background:
        linear-gradient(
            135deg,
            rgba(139, 203, 24, 0.11),
            rgba(255, 255, 255, 0.035)
        );

    border:
        1px solid
        rgba(139, 203, 24, 0.17);

    border-radius: var(--dls-radius-sm);
}

.dls-gallery-intro__assurance > span {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: var(--dls-black);
    background: var(--dls-green-bright);

    border-radius: 9px;
}

.dls-gallery-intro__assurance > div {
    display: grid;
    gap: 0.13rem;
}

.dls-gallery-intro__assurance small {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.46rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dls-gallery-intro__assurance strong {
    color: var(--dls-white);

    font-size: 0.65rem;
    font-weight: 800;
}


/* =========================================================
   CATEGORÍAS
========================================================= */

.dls-gallery-intro__categories {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-columns:
        minmax(230px, 0.42fr)
        minmax(0, 1.3fr)
        auto;

    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.3rem);

    padding:
        clamp(1.3rem, 3vw, 2rem);

    background:
        rgba(255, 255, 255, 0.7);

    border:
        1px solid
        var(--dls-border);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 22px 55px
        rgba(20, 35, 17, 0.1);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    overflow: hidden;
}

.dls-gallery-intro__categories::before {
    content: "";

    position: absolute;
    top: 0;
    right: 2rem;
    left: 2rem;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--dls-orange),
            var(--dls-green),
            transparent
        );
}

.dls-gallery-intro__categories-header {
    display: grid;
    gap: 0.4rem;
}

.dls-gallery-intro__categories-header span {
    color: var(--dls-orange-dark);

    font-size: 0.51rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-intro__categories-header h3 {
    margin: 0;

    color: var(--dls-text);

    font-size:
        clamp(2rem, 3.4vw, 3.3rem);

    line-height: 0.9;
    text-transform: uppercase;
}

.dls-gallery-intro__categories-header p {
    display: none;
    margin: 0;

    color: var(--dls-text-soft);

    font-size: 0.68rem;
    line-height: 1.55;
}

.dls-gallery-intro__service-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.dls-gallery-intro__service-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;

    padding:
        0.5rem
        0.65rem;

    color: var(--dls-text-soft);

    background:
        rgba(41, 66, 13, 0.045);

    border:
        1px solid
        rgba(41, 66, 13, 0.1);

    border-radius: 8px;

    font-size: 0.55rem;
    font-weight: 800;

    transition:
        color
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        border-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-intro__service-chip:hover {
    color: var(--dls-black);
    background: var(--dls-green);

    border-color: var(--dls-green);

    transform: translateY(-2px);
}

.dls-gallery-intro__categories-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    min-height: 49px;
    padding:
        0.75rem
        0.95rem;

    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-orange-bright),
            var(--dls-orange)
        );

    border-radius: var(--dls-radius-sm);

    box-shadow:
        0 14px 32px
        rgba(247, 121, 0, 0.16);

    font-size: 0.61rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-intro__categories-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(247, 121, 0, 0.23);
}


/* =========================================================
   REVEAL Y MOVIMIENTO REDUCIDO
========================================================= */

.dls-gallery-intro.is-enhanced
[data-dls-gallery-intro-reveal] {
    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(28px)
        scale(0.99);
}

.dls-gallery-intro.is-enhanced
[data-dls-gallery-intro-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;

    transition:
        opacity
        750ms
        var(--dls-ease),
        transform
        850ms
        var(--dls-ease),
        filter
        750ms
        var(--dls-ease);
}

html.dls-reduced-motion
.dls-gallery-intro *,
html.dls-reduced-motion
.dls-gallery-intro *::before,
html.dls-reduced-motion
.dls-gallery-intro *::after {
    animation: none !important;
    transition: none !important;
}



































/* =========================================================
   DANNY'S LAWN SERVICES LLC
   STICKY SERVICE FILTERS
========================================================= */

.dls-project-gallery {
    position: relative;
    isolation: isolate;

    scroll-margin-top:
        calc(
            var(--dls-header-height) +
            1rem
        );

    padding:
        clamp(2.5rem, 5vw, 4.5rem)
        var(--dls-page-padding)
        var(--dls-section-space);

    color: var(--dls-text);

    background:
        radial-gradient(
            circle at 7% 8%,
            rgba(139, 203, 24, 0.09),
            transparent 24%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(247, 121, 0, 0.07),
            transparent 22%
        ),
        linear-gradient(
            180deg,
            var(--dls-cream),
            var(--dls-paper)
        );

    /*
     * La sección debe permitir position: sticky.
     */
    overflow: visible;
}

.dls-project-gallery::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        repeating-linear-gradient(
            118deg,
            transparent 0,
            transparent 54px,
            rgba(41, 66, 13, 0.017) 55px,
            transparent 56px
        );

    pointer-events: none;
}

.dls-project-gallery__container {
    position: relative;

    width:
        min(
            100%,
            var(--dls-container-wide, 1280px)
        );

    margin-inline: auto;
}

.dls-project-gallery__sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    border: 0;

    overflow: hidden;
    clip: rect(0 0 0 0);

    white-space: nowrap;
}

.dls-gallery-filters__sentinel {
    position: relative;

    width: 100%;
    height: 1px;

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR STICKY
========================================================= */

.dls-gallery-filters {
    --dls-gallery-filters-progress: 0%;

    position: sticky;
    top:
        calc(
            var(--dls-header-height) +
            0.55rem
        );

    z-index: 700;

    isolation: isolate;

    width: 100%;
    margin-bottom:
        clamp(2rem, 5vw, 4rem);

    padding:
        0.85rem
        0.9rem
        0.65rem;

    color: var(--dls-white);

    background:
        linear-gradient(
            145deg,
            rgba(21, 26, 22, 0.93),
            rgba(5, 6, 5, 0.96)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 18px 48px
        rgba(5, 6, 5, 0.17);

    backdrop-filter:
        blur(18px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(125%);

    overflow: hidden;

    transition:
        border-radius
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-filters::before {
    content: "";

    position: absolute;
    top: 0;
    right: 1.75rem;
    left: 1.75rem;
    z-index: 4;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--dls-orange),
            var(--dls-green-bright),
            transparent
        );
}

.dls-gallery-filters::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        repeating-linear-gradient(
            118deg,
            transparent 0,
            transparent 49px,
            rgba(255, 255, 255, 0.017) 50px,
            transparent 51px
        );

    pointer-events: none;
}

.dls-gallery-filters.is-stuck {
    background:
        linear-gradient(
            145deg,
            rgba(21, 26, 22, 0.97),
            rgba(5, 6, 5, 0.985)
        );

    border-color:
        rgba(139, 203, 24, 0.2);

    box-shadow:
        0 18px 45px
        rgba(5, 6, 5, 0.3);

    transform: translateY(0);
}


/* =========================================================
   DECORACIONES
========================================================= */

.dls-gallery-filters__glow {
    position: absolute;
    z-index: -1;

    border-radius: 50%;

    pointer-events: none;
}

.dls-gallery-filters__glow--green {
    top: -110px;
    left: -80px;

    width: 240px;
    height: 240px;

    background:
        radial-gradient(
            circle,
            rgba(139, 203, 24, 0.14),
            transparent 68%
        );
}

.dls-gallery-filters__glow--orange {
    right: -80px;
    bottom: -120px;

    width: 230px;
    height: 230px;

    background:
        radial-gradient(
            circle,
            rgba(247, 121, 0, 0.12),
            transparent 68%
        );
}


/* =========================================================
   ENCABEZADO
========================================================= */

.dls-gallery-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;

    margin-bottom: 0.75rem;
    padding:
        0.15rem
        0.15rem
        0.75rem;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.dls-gallery-filters__identity {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.7rem;

    min-width: 0;
}

.dls-gallery-filters__identity-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-bright),
            var(--dls-green)
        );

    border-radius: 9px;

    box-shadow:
        0 12px 28px
        rgba(139, 203, 24, 0.18);
}

.dls-gallery-filters__identity > span:last-child {
    display: grid;
    gap: 0.13rem;
}

.dls-gallery-filters__identity small {
    color: var(--dls-orange);

    font-size: 0.48rem;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dls-gallery-filters__identity strong {
    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 0.95;

    text-transform: uppercase;
}


/* =========================================================
   ESTADO ACTIVO
========================================================= */

.dls-gallery-filters__status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;

    min-width: 0;
}

.dls-gallery-filters__status > span:first-child {
    display: grid;
    gap: 0.1rem;

    min-width: 0;

    text-align: right;
}

.dls-gallery-filters__status small {
    color:
        rgba(255, 255, 255, 0.4);

    font-size: 0.44rem;
    font-weight: 800;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dls-gallery-filters__status strong {
    color: var(--dls-white);

    font-size: 0.64rem;
    font-weight: 800;

    overflow-wrap: anywhere;
}

.dls-gallery-filters__result-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding:
        0.45rem
        0.6rem;

    color: var(--dls-black);

    background: var(--dls-orange);

    border-radius: 8px;

    font-size: 0.5rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   CONTROLES
========================================================= */

.dls-gallery-filters__controls {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 0.55rem;
}

.dls-gallery-filters__scroll-button {
    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;
    padding: 0;

    color: var(--dls-white);

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    transition:
        color
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        border-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        opacity
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-filters__scroll-button:hover:not(:disabled) {
    color: var(--dls-black);
    background: var(--dls-green);

    border-color: var(--dls-green);

    transform: translateY(-2px);
}

.dls-gallery-filters__scroll-button:disabled {
    opacity: 0.3;
    cursor: default;
}


/* =========================================================
   VIEWPORT HORIZONTAL
========================================================= */

.dls-gallery-filters__viewport {
    min-width: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;

    -webkit-overflow-scrolling: touch;
}

.dls-gallery-filters__viewport::-webkit-scrollbar {
    display: none;
}

.dls-gallery-filters__track {
    display: flex;
    align-items: center;
    gap: 0.45rem;

    width: max-content;
    min-width: 100%;
}


/* =========================================================
   BOTONES DE FILTRO
========================================================= */

.dls-gallery-filter {
    position: relative;
    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;

    min-height: 43px;
    padding:
        0.6rem
        0.72rem;

    color:
        rgba(255, 255, 255, 0.68);

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    font-size: 0.57rem;
    font-weight: 800;

    white-space: nowrap;

    scroll-margin-top:
        calc(
            var(--dls-header-height) +
            1rem
        );

    transition:
        color
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        border-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-filter:hover {
    color: var(--dls-white);

    background:
        rgba(139, 203, 24, 0.075);

    border-color:
        rgba(139, 203, 24, 0.22);

    transform: translateY(-2px);
}

.dls-gallery-filter:focus-visible {
    outline:
        3px solid
        rgba(247, 121, 0, 0.7);

    outline-offset: 2px;
}

.dls-gallery-filter.is-active {
    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-bright),
            var(--dls-green)
        );

    border-color:
        rgba(255, 255, 255, 0.28);

    box-shadow:
        0 11px 26px
        rgba(139, 203, 24, 0.17);
}

.dls-gallery-filter__marker {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    background:
        rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    transition:
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-filter.is-active
.dls-gallery-filter__marker {
    background: var(--dls-orange);

    box-shadow:
        0 0 0 4px
        rgba(247, 121, 0, 0.14);
}

.dls-gallery-filter__count {
    display: inline-grid;
    place-items: center;

    min-width: 22px;
    height: 22px;
    padding-inline: 0.3rem;

    color:
        rgba(255, 255, 255, 0.72);

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 6px;

    font-size: 0.46rem;
    font-weight: 800;
}

.dls-gallery-filter__count[hidden] {
    display: none;
}

.dls-gallery-filter.is-active
.dls-gallery-filter__count {
    color: var(--dls-white);
    background: var(--dls-green-deep);
}


/* =========================================================
   PROGRESO DEL SCROLL
========================================================= */

.dls-gallery-filters__scroll-progress {
    position: relative;

    width: 100%;
    height: 3px;
    margin-top: 0.65rem;

    background:
        rgba(255, 255, 255, 0.06);

    border-radius: 999px;

    overflow: hidden;
}

.dls-gallery-filters__scroll-progress span {
    display: block;

    width:
        var(--dls-gallery-filters-progress);

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--dls-green-bright),
            var(--dls-orange)
        );

    border-radius: inherit;

    transition:
        width
        180ms
        ease-out;
}


/* =========================================================
   FILTRADO DE LAS FUTURAS IMÁGENES
========================================================= */

[data-gallery-item].is-filtered-out {
    display: none !important;
}


/* =========================================================
   REVEAL
========================================================= */

.dls-project-gallery.is-enhanced
[data-dls-gallery-filters-reveal] {
    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(24px)
        scale(0.99);
}

.dls-project-gallery.is-enhanced
[data-dls-gallery-filters-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;

    transition:
        opacity
        750ms
        var(--dls-ease),
        transform
        850ms
        var(--dls-ease),
        filter
        750ms
        var(--dls-ease);
}

html.dls-reduced-motion
.dls-project-gallery *,
html.dls-reduced-motion
.dls-project-gallery *::before,
html.dls-reduced-motion
.dls-project-gallery *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}







































/* =========================================================
   DANNY'S LAWN SERVICES LLC
   UNIFIED FILTERABLE GALLERY
========================================================= */

.dls-gallery-results {
    position: relative;
    isolation: isolate;

    scroll-margin-top:
        calc(
            var(--dls-header-height) +
            11rem
        );
}


/* =========================================================
   ENCABEZADO DE RESULTADOS
========================================================= */

.dls-gallery-results__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(300px, 0.55fr);

    align-items: end;
    gap: clamp(2rem, 5vw, 5rem);

    margin-bottom:
        clamp(2.5rem, 5vw, 4.5rem);
}

.dls-gallery-results__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    margin-bottom: 0.9rem;

    color: var(--dls-green-dark);

    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dls-gallery-results__eyebrow::before {
    content: "";

    width: 29px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--dls-orange),
            var(--dls-green)
        );

    border-radius: 999px;
}

.dls-gallery-results__heading h3 {
    max-width: 800px;
    margin: 0;

    color: var(--dls-text);

    font-size:
        clamp(3rem, 5.8vw, 5.8rem);

    line-height: 0.87;
    text-transform: uppercase;
}

.dls-gallery-results__heading h3 span {
    display: block;

    color: var(--dls-green-dark);
}

.dls-gallery-results__information {
    display: grid;
    gap: 1.15rem;
}

.dls-gallery-results__information > p {
    margin: 0;

    color: var(--dls-text-soft);

    font-size: 0.87rem;
    line-height: 1.7;
}

.dls-gallery-results__summary {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.75rem;

    padding: 0.75rem;

    background:
        rgba(255, 255, 255, 0.78);

    border:
        1px solid
        var(--dls-border);

    border-radius: var(--dls-radius-sm);

    box-shadow: var(--dls-shadow-xs);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dls-gallery-results__summary-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: 9px;
}

.dls-gallery-results__summary > span:last-child {
    display: grid;
    gap: 0.15rem;
}

.dls-gallery-results__summary small {
    color: var(--dls-green-dark);

    font-size: 0.52rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dls-gallery-results__summary strong {
    color: var(--dls-text);

    font-size: 0.67rem;
    font-weight: 800;
}


/* =========================================================
   GRID
========================================================= */

.dls-gallery-grid-shell {
    position: relative;
    min-height: 300px;
}

.dls-gallery-grid {
    display: grid;
    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    grid-auto-flow: dense;
    grid-auto-rows: 42px;

    gap: clamp(0.65rem, 1.3vw, 1rem);
}

.dls-gallery-card {
    position: relative;
    isolation: isolate;

    grid-column: span 4;
    grid-row: span 8;

    min-width: 0;
    margin: 0;

    background: var(--dls-charcoal);

    border:
        1px solid
        rgba(41, 66, 13, 0.1);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 16px 38px
        rgba(20, 35, 17, 0.11);

    overflow: hidden;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease),
        opacity
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-card[data-gallery-layout="wide"] {
    grid-column: span 8;
}

.dls-gallery-card[data-gallery-layout="tall"] {
    grid-row: span 12;
}

.dls-gallery-card[data-gallery-layout="feature"] {
    grid-column: span 8;
    grid-row: span 12;
}

.dls-gallery-card.is-filtered-out,
.dls-gallery-card.is-batch-hidden {
    display: none !important;
}

.dls-gallery-card__button {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;
    padding: 0;

    color: var(--dls-white);
    background: transparent;

    border: 0;

    text-align: left;

    overflow: hidden;
}

.dls-gallery-card__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    background:
        linear-gradient(
            145deg,
            var(--dls-charcoal),
            var(--dls-black)
        );

    filter:
        saturate(0.96)
        contrast(1.03);

    transform: scale(1.001);

    transition:
        transform
        750ms
        var(--dls-ease),
        filter
        650ms
        var(--dls-ease),
        opacity
        350ms
        var(--dls-ease);
}

.dls-gallery-card__button:hover
.dls-gallery-card__image,
.dls-gallery-card__button:focus-visible
.dls-gallery-card__image {
    filter:
        saturate(1.06)
        contrast(1.04);

    transform: scale(1.055);
}

.dls-gallery-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 6, 5, 0.02) 26%,
            rgba(5, 6, 5, 0.25) 58%,
            rgba(5, 6, 5, 0.92) 100%
        );

    pointer-events: none;

    transition:
        background-color
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-card__top {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    left: 0.8rem;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.dls-gallery-card__category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    min-height: 30px;
    padding:
        0.38rem
        0.55rem;

    color: var(--dls-black);

    background:
        rgba(162, 229, 43, 0.94);

    border-radius: 7px;

    box-shadow:
        0 8px 22px
        rgba(5, 6, 5, 0.18);

    font-size: 0.48rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dls-gallery-card__number {
    display: grid;
    place-items: center;

    min-width: 31px;
    height: 31px;
    padding-inline: 0.35rem;

    color: var(--dls-white);

    background:
        rgba(5, 6, 5, 0.72);

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 7px;

    font-family: var(--dls-font-display);
    font-size: 0.66rem;
    font-weight: 800;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dls-gallery-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: end;
    gap: 0.85rem;

    padding: clamp(0.85rem, 2vw, 1.2rem);
}

.dls-gallery-card__copy {
    display: grid;
    gap: 0.2rem;
}

.dls-gallery-card__copy small {
    color: var(--dls-orange);

    font-size: 0.48rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-card__copy strong {
    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size:
        clamp(1.35rem, 2.2vw, 2rem);

    line-height: 0.94;
    text-transform: uppercase;
}

.dls-gallery-card__open {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: 9px;

    transform: translateY(4px);

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-card__button:hover
.dls-gallery-card__open,
.dls-gallery-card__button:focus-visible
.dls-gallery-card__open {
    background: var(--dls-green-bright);
    transform: translateY(0);
}

.dls-gallery-card__button:focus-visible {
    outline:
        4px solid
        rgba(247, 121, 0, 0.82);

    outline-offset: -4px;
}


/* Error de imagen */

.dls-gallery-card.has-image-error {
    background:
        radial-gradient(
            circle at center,
            rgba(139, 203, 24, 0.12),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            var(--dls-charcoal),
            var(--dls-black)
        );
}

.dls-gallery-card.has-image-error
.dls-gallery-card__image {
    opacity: 0;
}


/* =========================================================
   ESTADO VACÍO Y CARGA
========================================================= */

.dls-gallery-empty {
    align-items: center;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    gap: 1.1rem;

    padding:
        clamp(1.4rem, 3vw, 2rem);

    background:
        rgba(255, 255, 255, 0.75);

    border:
        1px solid
        var(--dls-border);

    border-radius: var(--dls-radius-md);

    box-shadow: var(--dls-shadow-sm);
}

.dls-gallery-empty:not([hidden]) {
    display: grid;
}

.dls-gallery-empty__icon {
    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    color: var(--dls-white);
    background: var(--dls-orange);

    border-radius: var(--dls-radius-sm);
}

.dls-gallery-empty > div {
    display: grid;
    gap: 0.25rem;
}

.dls-gallery-empty > div > span {
    color: var(--dls-green-dark);

    font-size: 0.52rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-empty h4 {
    margin: 0;

    color: var(--dls-text);

    font-size:
        clamp(1.9rem, 3vw, 2.8rem);

    line-height: 0.92;
    text-transform: uppercase;
}

.dls-gallery-empty p {
    margin: 0;

    color: var(--dls-text-soft);

    font-size: 0.72rem;
    line-height: 1.55;
}

.dls-gallery-empty__button {
    min-height: 47px;
    padding:
        0.7rem
        0.9rem;

    color: var(--dls-black);
    background: var(--dls-green);

    border: 0;
    border-radius: var(--dls-radius-sm);

    font-size: 0.61rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dls-gallery-loading {
    position: absolute;
    inset: 0;
    z-index: 15;

    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    color: var(--dls-text);

    background:
        rgba(252, 251, 247, 0.86);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.dls-gallery-loading:not([hidden]) {
    display: flex;
}

.dls-gallery-loading > span {
    width: 32px;
    height: 32px;

    border:
        3px solid
        rgba(83, 125, 19, 0.16);

    border-top-color: var(--dls-green-dark);

    border-radius: 50%;

    animation:
        dls-gallery-loading-spin
        700ms
        linear
        infinite;
}

.dls-gallery-loading strong {
    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes dls-gallery-loading-spin {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   LOAD MORE
========================================================= */

.dls-gallery-load-more {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 1.5rem;

    margin-top:
        clamp(2.3rem, 5vw, 4rem);

    padding:
        clamp(1.1rem, 2.5vw, 1.5rem);

    color: var(--dls-white);

    background:
        linear-gradient(
            145deg,
            var(--dls-charcoal),
            var(--dls-black)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: var(--dls-radius-md);

    box-shadow:
        0 20px 50px
        rgba(5, 6, 5, 0.16);
}

.dls-gallery-load-more[hidden] {
    display: none;
}

.dls-gallery-load-more__progress {
    display: grid;
    gap: 0.65rem;
}

.dls-gallery-load-more__progress-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dls-gallery-load-more__progress-copy span {
    color: var(--dls-orange);

    font-size: 0.5rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-load-more__progress-copy strong {
    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.56rem;
    font-weight: 800;
}

.dls-gallery-load-more__progress-track {
    height: 5px;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 999px;

    overflow: hidden;
}

.dls-gallery-load-more__progress-track span {
    display: block;

    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--dls-green-bright),
            var(--dls-orange)
        );

    border-radius: inherit;

    transition:
        width
        400ms
        var(--dls-ease);
}

.dls-gallery-load-more__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    min-height: 49px;
    padding:
        0.75rem
        1rem;

    color: var(--dls-black);

    background:
        linear-gradient(
            135deg,
            var(--dls-green-bright),
            var(--dls-green)
        );

    border: 0;
    border-radius: var(--dls-radius-sm);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        transform
        var(--dls-duration-normal)
        var(--dls-ease),
        box-shadow
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-load-more__button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(139, 203, 24, 0.2);
}


/* =========================================================
   MENSAJE DE CATEGORÍA COMPLETA
========================================================= */

.dls-gallery-complete {
    align-items: center;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap: 0.7rem;

    width: max-content;
    max-width: 100%;
    margin:
        clamp(2rem, 4vw, 3rem)
        auto
        0;

    padding:
        0.75rem
        0.9rem;

    color: var(--dls-text);

    background:
        rgba(255, 255, 255, 0.75);

    border:
        1px solid
        rgba(83, 125, 19, 0.15);

    border-radius: var(--dls-radius-sm);

    box-shadow: var(--dls-shadow-xs);
}

.dls-gallery-complete:not([hidden]) {
    display: grid;
}

.dls-gallery-complete > span:first-child {
    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;

    color: var(--dls-black);
    background: var(--dls-green);

    border-radius: 8px;
}

.dls-gallery-complete > span:last-child {
    display: grid;
    gap: 0.12rem;
}

.dls-gallery-complete small {
    color: var(--dls-green-dark);

    font-size: 0.46rem;
    font-weight: 800;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dls-gallery-complete strong {
    color: var(--dls-text);

    font-size: 0.61rem;
    font-weight: 800;
}


/* =========================================================
   LIGHTBOX
========================================================= */

html.dls-gallery-lightbox-open,
html.dls-gallery-lightbox-open body {
    overscroll-behavior: none;
}

.dls-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;

    color: var(--dls-white);
}

.dls-gallery-lightbox[hidden] {
    display: none;
}

.dls-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(41, 66, 13, 0.14),
            transparent 42%
        ),
        rgba(2, 3, 2, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dls-gallery-lightbox__dialog {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-rows:
        auto
        minmax(0, 1fr)
        auto;

    width: 100%;
    height: 100%;

    padding:
        clamp(0.7rem, 2vw, 1.2rem);

    pointer-events: none;
}

.dls-gallery-lightbox__dialog > * {
    pointer-events: auto;
}

.dls-gallery-lightbox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    width: min(100%, 1500px);
    margin-inline: auto;
    padding:
        0.65rem
        0.75rem;

    background:
        rgba(21, 26, 22, 0.78);

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: var(--dls-radius-sm);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dls-gallery-lightbox__identity {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;
    gap: 0.65rem;

    min-width: 0;
}

.dls-gallery-lightbox__identity-icon {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: 8px;
}

.dls-gallery-lightbox__identity > span:last-child {
    display: grid;
    gap: 0.12rem;

    min-width: 0;
}

.dls-gallery-lightbox__identity small {
    color: var(--dls-green-bright);

    font-size: 0.46rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dls-gallery-lightbox__identity strong {
    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size: 1.25rem;
    line-height: 1;

    text-transform: uppercase;

    overflow-wrap: anywhere;
}

.dls-gallery-lightbox__header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.dls-gallery-lightbox__counter {
    display: inline-grid;
    place-items: center;

    min-height: 39px;
    padding:
        0.5rem
        0.7rem;

    color: var(--dls-white);

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    font-size: 0.56rem;
    font-weight: 800;
}

.dls-gallery-lightbox__close {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;
    padding: 0;

    color: var(--dls-white);

    background:
        rgba(247, 121, 0, 0.13);

    border:
        1px solid
        rgba(247, 121, 0, 0.25);

    border-radius: 8px;

    transition:
        color
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-lightbox__close:hover {
    color: var(--dls-black);
    background: var(--dls-orange);

    transform: rotate(5deg);
}


/* Escenario */

.dls-gallery-lightbox__stage {
    position: relative;

    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.2rem);

    width: min(100%, 1600px);
    min-height: 0;
    margin-inline: auto;

    padding-block:
        clamp(0.7rem, 2vh, 1.2rem);
}

.dls-gallery-lightbox__figure {
    position: relative;

    display: grid;
    place-items: center;

    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;

    overflow: hidden;
}

.dls-gallery-lightbox__figure img {
    display: block;

    max-width: 100%;
    max-height:
        calc(
            100vh -
            190px
        );

    max-height:
        calc(
            100svh -
            190px
        );

    width: auto;
    height: auto;

    object-fit: contain;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: var(--dls-radius-sm);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.42);

    opacity: 0;

    transform: scale(0.985);

    transition:
        opacity
        300ms
        var(--dls-ease),
        transform
        350ms
        var(--dls-ease);
}

.dls-gallery-lightbox__figure.is-loaded img {
    opacity: 1;
    transform: none;
}

.dls-gallery-lightbox__caption {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;

    width: max-content;
    max-width:
        calc(
            100% -
            1.4rem
        );

    margin-inline: auto;
    padding:
        0.5rem
        0.7rem;

    color:
        rgba(255, 255, 255, 0.72);

    background:
        rgba(5, 6, 5, 0.74);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 7px;

    font-size: 0.53rem;
    font-weight: 700;

    text-align: center;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dls-gallery-lightbox__loader {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: grid;
    place-items: center;

    pointer-events: none;
}

.dls-gallery-lightbox__loader span {
    width: 40px;
    height: 40px;

    border:
        3px solid
        rgba(255, 255, 255, 0.16);

    border-top-color: var(--dls-green-bright);

    border-radius: 50%;

    animation:
        dls-gallery-loading-spin
        700ms
        linear
        infinite;
}

.dls-gallery-lightbox__figure.is-loaded
.dls-gallery-lightbox__loader {
    display: none;
}

.dls-gallery-lightbox__navigation {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;
    padding: 0;

    color: var(--dls-white);

    background:
        rgba(21, 26, 22, 0.78);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: var(--dls-radius-sm);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        color
        var(--dls-duration-normal)
        var(--dls-ease),
        background-color
        var(--dls-duration-normal)
        var(--dls-ease),
        transform
        var(--dls-duration-normal)
        var(--dls-ease);
}

.dls-gallery-lightbox__navigation:hover {
    color: var(--dls-black);
    background: var(--dls-green-bright);
}

.dls-gallery-lightbox__navigation--previous:hover {
    transform: translateX(-3px);
}

.dls-gallery-lightbox__navigation--next:hover {
    transform: translateX(3px);
}


/* Pie */

.dls-gallery-lightbox__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    width: min(100%, 1500px);
    margin-inline: auto;
    padding:
        0.65rem
        0.75rem;

    background:
        rgba(21, 26, 22, 0.78);

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: var(--dls-radius-sm);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dls-gallery-lightbox__footer > div {
    display: grid;
    gap: 0.15rem;
}

.dls-gallery-lightbox__footer span {
    color: var(--dls-white);

    font-family: var(--dls-font-display);
    font-size: 1.12rem;
    line-height: 1;

    text-transform: uppercase;
}

.dls-gallery-lightbox__footer p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.51rem;
}

.dls-gallery-lightbox__estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    min-height: 43px;
    padding:
        0.6rem
        0.8rem;

    color: var(--dls-black);
    background: var(--dls-orange);

    border-radius: 8px;

    font-size: 0.57rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   REVEAL Y MOVIMIENTO REDUCIDO
========================================================= */

.dls-project-gallery.is-grid-enhanced
[data-dls-gallery-grid-reveal] {
    opacity: 0;

    filter: blur(6px);

    transform:
        translateY(25px)
        scale(0.99);
}

.dls-project-gallery.is-grid-enhanced
[data-dls-gallery-grid-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;

    transition:
        opacity
        750ms
        var(--dls-ease),
        transform
        850ms
        var(--dls-ease),
        filter
        750ms
        var(--dls-ease);
}

html.dls-reduced-motion
.dls-project-gallery *,
html.dls-reduced-motion
.dls-project-gallery *::before,
html.dls-reduced-motion
.dls-project-gallery *::after,
html.dls-reduced-motion
.dls-gallery-lightbox *,
html.dls-reduced-motion
.dls-gallery-lightbox *::before,
html.dls-reduced-motion
.dls-gallery-lightbox *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}








































/* =========================================================
   1. COMPUTADORA
========================================================= */

@media (min-width: 1200px) {
       .dls-gallery-grid {
        grid-auto-rows: 44px;
    }

    .dls-gallery-card {
        grid-column: span 4;
        grid-row: span 8;
    }

    .dls-gallery-card[data-gallery-layout="wide"] {
        grid-column: span 8;
    }

    .dls-gallery-card[data-gallery-layout="tall"] {
        grid-row: span 12;
    }

    .dls-gallery-card[data-gallery-layout="feature"] {
        grid-column: span 8;
        grid-row: span 12;
    }
      .dls-gallery-filters {
        padding:
            0.9rem
            1rem
            0.7rem;
    }

    .dls-gallery-filters__scroll-button {
        display: grid;
    }

    .dls-gallery-filter {
        min-height: 44px;

        padding:
            0.62rem
            0.78rem;
    }
     .dls-gallery-intro__layout {
        grid-template-columns:
            minmax(0, 1.12fr)
            minmax(350px, 0.88fr);
    }

    .dls-gallery-intro__visual {
        min-height: 610px;
    }

    .dls-gallery-intro__experience {
        min-height: 610px;
    }

    .dls-gallery-hero__container {
        grid-template-columns:
            minmax(0, 1.22fr)
            minmax(315px, 0.43fr);
    }

    .dls-gallery-hero__title {
        font-size:
            clamp(5rem, 7.4vw, 8rem);
    }

    .dls-gallery-hero__explorer {
        display: block;
    }
}


/* =========================================================
   2. TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {
       .dls-gallery-results__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.55fr);
    }

    .dls-gallery-grid {
        grid-template-columns:
            repeat(8, minmax(0, 1fr));

        grid-auto-rows: 42px;
    }

    .dls-gallery-card,
    .dls-gallery-card[data-gallery-layout="wide"],
    .dls-gallery-card[data-gallery-layout="feature"] {
        grid-column: span 4;
    }

    .dls-gallery-card {
        grid-row: span 8;
    }

    .dls-gallery-card[data-gallery-layout="tall"],
    .dls-gallery-card[data-gallery-layout="feature"] {
        grid-row: span 11;
    }

    .dls-gallery-lightbox__figure img {
        max-height:
            calc(
                100svh -
                205px
            );
    }
       .dls-project-gallery {
        padding:
            2.8rem
            2rem
            var(--dls-section-space);
    }

    .dls-gallery-filters {
        top:
            calc(
                var(--dls-header-height) +
                0.4rem
            );
    }

    .dls-gallery-filters__identity strong {
        font-size: 1.2rem;
    }

    .dls-gallery-filters__status strong {
        max-width: 180px;
    }
     .dls-gallery-intro {
        padding:
            var(--dls-section-space)
            2rem;
    }

    .dls-gallery-intro__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 0.5fr);

        gap: 3rem;
    }

    .dls-gallery-intro__heading h2 {
        font-size:
            clamp(3.4rem, 7.3vw, 5.2rem);
    }

    .dls-gallery-intro__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(290px, 0.82fr);
    }

    .dls-gallery-intro__visual {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(145px, 0.7fr);

        min-height: 570px;
    }

    .dls-gallery-intro__experience {
        padding: 1.3rem;
    }

    .dls-gallery-intro__categories {
        grid-template-columns:
            minmax(190px, 0.4fr)
            minmax(0, 1fr);
    }

    .dls-gallery-intro__categories-button {
        grid-column: 1 / -1;

        width: 100%;
    }

    .dls-gallery-hero__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(235px, 0.4fr);

        gap: 2rem;

        width:
            calc(100% - 4rem);

        padding:
            1rem
            0
            4.2rem;
    }

    .dls-gallery-hero__title {
        font-size:
            clamp(4rem, 8vw, 6rem);
    }

    .dls-gallery-hero__description {
        font-size: 0.88rem;
    }

    .dls-gallery-hero__explorer {
        width: min(100%, 290px);
        padding: 1rem;
    }

    .dls-gallery-hero__explorer h2 {
        font-size:
            clamp(1.9rem, 3.4vw, 2.6rem);
    }

    .dls-gallery-hero__trust-item:nth-child(3) {
        display: none;
    }

    .dls-gallery-hero__scroll {
        left: 2rem;
    }
}


/* =========================================================
   3. CELULAR
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {
      .dls-gallery-results__header {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .dls-gallery-results__heading h3 {
        font-size:
            clamp(3rem, 10vw, 4.5rem);
    }

    .dls-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-rows: auto;
    }

    .dls-gallery-card,
    .dls-gallery-card[data-gallery-layout="wide"],
    .dls-gallery-card[data-gallery-layout="tall"],
    .dls-gallery-card[data-gallery-layout="feature"] {
        grid-column: auto;
        grid-row: auto;

        aspect-ratio: 4 / 5;
    }

    .dls-gallery-card:nth-child(5n + 1) {
        grid-column: 1 / -1;

        aspect-ratio: 16 / 9;
    }

    .dls-gallery-load-more {
        grid-template-columns: 1fr;
    }

    .dls-gallery-load-more__button {
        width: 100%;
    }

    .dls-gallery-lightbox__stage {
        grid-template-columns:
            43px
            minmax(0, 1fr)
            43px;
    }

    .dls-gallery-lightbox__navigation {
        width: 43px;
        height: 43px;
    }

    .dls-gallery-lightbox__footer > div {
        display: none;
    }

    .dls-gallery-lightbox__estimate {
        width: 100%;
    }
      .dls-project-gallery {
        padding:
            2.5rem
            1.35rem
            var(--dls-section-space);
    }

    .dls-gallery-filters {
        top:
            calc(
                var(--dls-header-height) +
                0.3rem
            );

        padding:
            0.75rem
            0.7rem
            0.58rem;
    }

    .dls-gallery-filters__header {
        align-items: flex-start;
    }

    .dls-gallery-filters__identity-icon {
        width: 39px;
        height: 39px;

        flex-basis: 39px;
    }

    .dls-gallery-filters__status {
        gap: 0.5rem;
    }

    .dls-gallery-filters__status > span:first-child {
        display: none;
    }

    .dls-gallery-filters__scroll-button {
        width: 36px;
        height: 36px;
    }

    .dls-gallery-filter {
        min-height: 40px;

        padding:
            0.55rem
            0.65rem;

        font-size: 0.53rem;
    }
     .dls-gallery-intro {
        padding:
            var(--dls-section-space)
            1.35rem;
    }

    .dls-gallery-intro__header {
        grid-template-columns: 1fr;
        gap: 1.4rem;

        margin-bottom: 3.5rem;
    }

    .dls-gallery-intro__heading h2 {
        font-size:
            clamp(3rem, 11vw, 4.6rem);
    }

    .dls-gallery-intro__layout {
        grid-template-columns: 1fr;
    }

    .dls-gallery-intro__visual {
        min-height: 540px;
    }

    .dls-gallery-intro__experience {
        min-height: auto;
    }

    .dls-gallery-intro__categories {
        grid-template-columns: 1fr;
    }

    .dls-gallery-intro__categories-header p {
        display: block;
    }

    .dls-gallery-intro__categories-button {
        width: 100%;
    }

    .dls-gallery-hero__background img {
        object-position: 61% center;
    }

    .dls-gallery-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 5, 3, 0.93),
                rgba(3, 5, 3, 0.67)
            ),
            linear-gradient(
                180deg,
                rgba(3, 5, 3, 0.16),
                rgba(3, 5, 3, 0.82)
            );
    }

    .dls-gallery-hero__container {
        display: flex;
        align-items: center;

        width:
            calc(100% - 2.7rem);

        padding:
            0.8rem
            0
            4.2rem;
    }

    .dls-gallery-hero__content {
        width: 100%;
        max-width: 620px;
    }

    .dls-gallery-hero__title {
        font-size:
            clamp(3.5rem, 12vw, 5rem);

        line-height: 0.84;
    }

    .dls-gallery-hero__description {
        max-width: 550px;

        font-size: 0.82rem;
        line-height: 1.58;
    }

    .dls-gallery-hero__button {
        min-height: 47px;
    }

    .dls-gallery-hero__trust-item {
        flex: 1 1 160px;
    }

    .dls-gallery-hero__trust-item:nth-child(3) {
        display: none;
    }

    .dls-gallery-hero__explorer {
        display: none;
    }

    .dls-gallery-hero__scroll {
        left: 1.35rem;
        bottom: 0.9rem;
    }
}


/* =========================================================
   4. CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {
     .dls-gallery-results {
        scroll-margin-top:
            calc(
                var(--dls-header-height) +
                9rem
            );
    }

    .dls-gallery-results__header {
        grid-template-columns: 1fr;
        gap: 1.2rem;

        margin-bottom: 2.5rem;
    }

    .dls-gallery-results__heading h3 {
        font-size:
            clamp(2.7rem, 13vw, 3.8rem);
    }

    .dls-gallery-results__information > p {
        font-size: 0.8rem;
    }

    .dls-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;

        gap: 0.75rem;
    }

    .dls-gallery-card,
    .dls-gallery-card[data-gallery-layout="wide"],
    .dls-gallery-card[data-gallery-layout="tall"],
    .dls-gallery-card[data-gallery-layout="feature"] {
        grid-column: auto;
        grid-row: auto;

        aspect-ratio: 4 / 5;
    }

    .dls-gallery-card:nth-child(4n + 1) {
        aspect-ratio: 16 / 10;
    }

    .dls-gallery-card__top {
        top: 0.6rem;
        right: 0.6rem;
        left: 0.6rem;
    }

    .dls-gallery-card__content {
        padding: 0.75rem;
    }

    .dls-gallery-card__copy strong {
        font-size:
            clamp(1.4rem, 8vw, 1.9rem);
    }

    .dls-gallery-load-more {
        grid-template-columns: 1fr;

        padding: 1rem;
    }

    .dls-gallery-load-more__progress-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .dls-gallery-load-more__button {
        width: 100%;
    }

    .dls-gallery-empty:not([hidden]) {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .dls-gallery-empty__icon {
        margin-inline: auto;
    }

    .dls-gallery-empty__button {
        width: 100%;
    }

    .dls-gallery-lightbox__dialog {
        padding: 0.5rem;
    }

    .dls-gallery-lightbox__identity strong {
        max-width: 170px;

        font-size: 1rem;
    }

    .dls-gallery-lightbox__counter {
        display: none;
    }

    .dls-gallery-lightbox__stage {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            minmax(0, 1fr)
            auto;

        gap: 0.55rem;
    }

    .dls-gallery-lightbox__figure {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .dls-gallery-lightbox__navigation {
        grid-row: 2;

        width: 100%;
        height: 42px;
    }

    .dls-gallery-lightbox__navigation--previous {
        grid-column: 1;
    }

    .dls-gallery-lightbox__navigation--next {
        grid-column: 2;
    }

    .dls-gallery-lightbox__figure img {
        max-height:
            calc(
                100svh -
                205px
            );
    }

    .dls-gallery-lightbox__caption {
        display: none;
    }

    .dls-gallery-lightbox__footer > div {
        display: none;
    }

    .dls-gallery-lightbox__estimate {
        width: 100%;
    }
       .dls-project-gallery {
        padding:
            2.2rem
            1rem
            var(--dls-section-space);
    }

    .dls-gallery-filters {
        top:
            calc(
                var(--dls-header-height) +
                0.2rem
            );

        margin-inline: -0.35rem;
        width: calc(100% + 0.7rem);

        padding:
            0.68rem
            0.55rem
            0.52rem;

        border-radius: var(--dls-radius-sm);
    }

    .dls-gallery-filters.is-stuck {
        border-radius:
            0
            0
            var(--dls-radius-sm)
            var(--dls-radius-sm);
    }

    .dls-gallery-filters__header {
        gap: 0.6rem;

        margin-bottom: 0.58rem;
        padding-bottom: 0.58rem;
    }

    .dls-gallery-filters__identity {
        gap: 0.55rem;
    }

    .dls-gallery-filters__identity-icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;
    }

    .dls-gallery-filters__identity small {
        font-size: 0.4rem;
    }

    .dls-gallery-filters__identity strong {
        font-size: 1rem;
    }

    .dls-gallery-filters__status > span:first-child {
        display: none;
    }

    .dls-gallery-filters__result-count {
        min-height: 30px;

        padding:
            0.38rem
            0.48rem;

        font-size: 0.43rem;
    }

    .dls-gallery-filters__controls {
        gap: 0.35rem;
    }

    .dls-gallery-filters__scroll-button {
        width: 33px;
        height: 33px;
    }

    .dls-gallery-filters__track {
        gap: 0.35rem;
    }

    .dls-gallery-filter {
        min-height: 38px;

        padding:
            0.5rem
            0.58rem;

        font-size: 0.5rem;
    }

    .dls-gallery-filter__count {
        min-width: 20px;
        height: 20px;
    }

    .dls-gallery-filters__scroll-progress {
        margin-top: 0.5rem;
    }
      .dls-gallery-intro {
        padding:
            var(--dls-section-space)
            1rem;
    }

    .dls-gallery-intro__header {
        grid-template-columns: 1fr;
        gap: 1.25rem;

        margin-bottom: 3rem;
    }

    .dls-gallery-intro__heading h2 {
        font-size:
            clamp(2.65rem, 13vw, 3.75rem);
    }

    .dls-gallery-intro__introduction > p {
        font-size: 0.85rem;
    }

    .dls-gallery-intro__header-link {
        width: 100%;
    }

    .dls-gallery-intro__layout {
        grid-template-columns: 1fr;
    }

    .dls-gallery-intro__visual {
        grid-template-columns: 1fr 0.82fr;
        grid-template-rows:
            repeat(2, minmax(155px, 1fr));

        min-height: 410px;
        padding: 0.55rem;
        gap: 0.5rem;
    }

    .dls-gallery-intro__photo figcaption {
        padding: 0.65rem;
    }

    .dls-gallery-intro__photo figcaption strong {
        font-size:
            clamp(1.2rem, 6vw, 1.65rem);
    }

    .dls-gallery-intro__visual-card {
        right: 0.85rem;
        bottom: 0.85rem;

        max-width: 205px;
        padding: 0.55rem;
    }

    .dls-gallery-intro__visual-icon {
        width: 35px;
        height: 35px;
    }

    .dls-gallery-intro__visual-line {
        top: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .dls-gallery-intro__experience {
        padding: 1.15rem;
    }

    .dls-gallery-intro__experience-header h3 {
        font-size:
            clamp(2.2rem, 10vw, 3rem);
    }

    .dls-gallery-intro__steps li {
        padding: 0.72rem;
    }

    .dls-gallery-intro__categories {
        grid-template-columns: 1fr;

        padding: 1.1rem;
    }

    .dls-gallery-intro__categories-header p {
        display: block;
    }

    .dls-gallery-intro__service-list {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .dls-gallery-intro__service-chip {
        justify-content: center;

        min-height: 41px;

        text-align: center;
    }

    .dls-gallery-intro__categories-button {
        width: 100%;
    }

    .dls-gallery-intro__leaf {
        width: 170px;
    }

    .dls-gallery-hero__background img {
        object-position: 65% center;
    }

    .dls-gallery-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 5, 3, 0.39),
                rgba(3, 5, 3, 0.288)
            ),
            linear-gradient(
                180deg,
                rgba(3, 5, 3, 0.14),
                rgba(3, 5, 3, 0.85)
            );
    }

    .dls-gallery-hero__container {
        display: flex;
        align-items: center;

        width:
            calc(100% - 2rem);

        padding:
            0.55rem
            0
            3.8rem;
    }

    .dls-gallery-hero__content {
        width: 100%;
    }

    .dls-gallery-hero__eyebrow {
        margin-bottom: 0.6rem;

        padding:
            0.46rem
            0.56rem;

        font-size: 0.49rem;

        letter-spacing: 0.1em;
    }

    .dls-gallery-hero__title {
        margin-bottom: 0.65rem;

        font-size:
            clamp(2.9rem, 14vw, 4rem);

        line-height: 0.85;
    }

    .dls-gallery-hero__description {
        display: -webkit-box;

        margin-bottom: 0.8rem;

        font-size: 0.73rem;
        line-height: 1.48;

        overflow: hidden;

        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .dls-gallery-hero__actions {
        gap: 0.45rem;
        margin-bottom: 0.75rem;
    }

    .dls-gallery-hero__button {
        flex: 1 1 145px;

        min-height: 43px;
        padding:
            0.58rem
            0.68rem;

        font-size: 0.57rem;
    }

    .dls-gallery-hero__trust {
        gap: 0.4rem;
    }

    .dls-gallery-hero__trust-item {
        flex: 1 1 calc(50% - 0.25rem);

        min-height: 42px;
        padding: 0.4rem;
    }

    .dls-gallery-hero__trust-item:nth-child(3) {
        display: none;
    }

    .dls-gallery-hero__trust-item strong {
        font-size: 0.51rem;
    }

    .dls-gallery-hero__trust-item small {
        font-size: 0.4rem;
    }

    .dls-gallery-hero__trust-item > span:first-child {
        width: 27px;
        height: 27px;
    }

    .dls-gallery-hero__explorer {
        display: none;
    }

    .dls-gallery-hero__scroll {
        left: 1rem;
        bottom: 0.75rem;

        font-size: 0.45rem;
    }

    .dls-gallery-hero__scroll-line {
        width: 30px;
    }

    .dls-gallery-hero__leaf {
        right: -78px;
        width: 175px;
    }
}