/* ============================================================
   SERVICES HERO
============================================================ */

.lavServicesHero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding:
        clamp(120px, 12vw, 190px)
        clamp(28px, 3vw, 48px)
        clamp(100px, 10vw, 160px);

    background:
        linear-gradient(
            145deg,
            #fbf8fc 0%,
            #f3edf6 48%,
            #ebe2f0 100%
        );

    color: #2f2835;
}


/* ============================================================
   AMBIENT BACKGROUND
============================================================ */

.lavServicesHeroGlow {
    position: absolute;
    z-index: -3;

    border-radius: 50%;

    pointer-events: none;
}


.lavServicesHeroGlowOne {
    top: -260px;
    left: -220px;

    width: 650px;
    height: 650px;

    background:
        radial-gradient(
            circle,
            rgba(181, 145, 202, 0.2),
            rgba(181, 145, 202, 0.07) 42%,
            transparent 72%
        );

    filter: blur(8px);
}


.lavServicesHeroGlowTwo {
    right: -230px;
    bottom: -280px;

    width: 720px;
    height: 720px;

    background:
        radial-gradient(
            circle,
            rgba(168, 194, 174, 0.22),
            rgba(168, 194, 174, 0.08) 40%,
            transparent 72%
        );

    filter: blur(10px);
}


.lavServicesHeroTexture {
    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.35;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(96, 73, 110, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(96, 73, 110, 0.025) 1px,
            transparent 1px
        );

    background-size:
        38px
        38px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 82%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 82%,
            transparent
        );
}


/* ============================================================
   LAYOUT
============================================================ */

.lavServicesHeroGrid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(390px, 0.88fr);

    gap:
        clamp(
            60px,
            8vw,
            130px
        );

    align-items: center;
}


.lavServicesHeroContent {
    position: relative;
    z-index: 2;

    max-width: 760px;
}


/* ============================================================
   EYEBROW
============================================================ */

.lavServicesHeroEyebrow {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 28px;
}


.lavServicesHeroEyebrow > span {
    position: relative;

    width: 44px;
    height: 1px;

    background:
        rgba(112, 82, 127, 0.45);
}


.lavServicesHeroEyebrow > span::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #8f6aa2;

    box-shadow:
        0 0 0 5px rgba(143, 106, 162, 0.1),
        0 0 18px rgba(143, 106, 162, 0.28);

    transform:
        translateY(-50%);
}


.lavServicesHeroEyebrow small {
    color: #7a637f;

    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ============================================================
   TYPOGRAPHY
============================================================ */

.lavServicesHero h1 {
    max-width: 760px;

    margin: 0;

    color: #342b38;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size:
        clamp(
            3.8rem,
            6.5vw,
            7.2rem
        );

    font-weight: 500;
    line-height: 0.93;

    letter-spacing: -0.05em;

    text-wrap: balance;
}


.lavServicesHero h1 span {
    display: block;

    margin-top: 10px;

    color: #8d6a99;

    font-style: italic;
}


.lavServicesHeroLead {
    max-width: 690px;

    margin:
        34px
        0
        0;

    color: #6e6272;

    font-size:
        clamp(
            1.08rem,
            1.4vw,
            1.27rem
        );

    line-height: 1.82;
}


/* ============================================================
   ACTIONS
============================================================ */

.lavServicesHeroActions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 16px;

    margin-top: 38px;
}


.lavServicesHeroPrimary,
.lavServicesHeroSecondary {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    border-radius: 999px;

    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.lavServicesHeroPrimary {
    gap: 13px;

    overflow: hidden;

    padding:
        0
        28px;

    background:
        linear-gradient(
            135deg,
            #5f476b 0%,
            #896799 100%
        );

    color: #ffffff;

    box-shadow:
        0 18px 42px rgba(83, 57, 96, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}


.lavServicesHeroPrimary::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.28) 48%,
            transparent 72%
        );

    transform:
        translateX(-120%);

    transition:
        transform 0.75s ease;
}


.lavServicesHeroPrimary span,
.lavServicesHeroPrimary svg {
    position: relative;
    z-index: 1;
}


.lavServicesHeroPrimary svg {
    flex: 0 0 auto;

    transition:
        transform 0.35s ease;
}


.lavServicesHeroSecondary {
    padding:
        0
        25px;

    border:
        1px solid
        rgba(91, 68, 103, 0.18);

    background:
        rgba(255, 255, 255, 0.58);

    color: #624f69;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75);

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);
}


.lavServicesHeroPrimary:hover,
.lavServicesHeroPrimary:focus-visible {
    transform:
        translateY(-3px);

    box-shadow:
        0 24px 52px rgba(83, 57, 96, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


.lavServicesHeroPrimary:hover::before,
.lavServicesHeroPrimary:focus-visible::before {
    transform:
        translateX(120%);
}


.lavServicesHeroPrimary:hover svg,
.lavServicesHeroPrimary:focus-visible svg {
    transform:
        translateX(4px);
}


.lavServicesHeroSecondary:hover,
.lavServicesHeroSecondary:focus-visible {
    transform:
        translateY(-3px);

    border-color:
        rgba(91, 68, 103, 0.32);

    background:
        rgba(255, 255, 255, 0.82);

    color: #4f3d56;
}


.lavServicesHeroPrimary:focus-visible,
.lavServicesHeroSecondary:focus-visible {
    outline:
        3px solid
        rgba(139, 103, 155, 0.32);

    outline-offset: 4px;
}


/* ============================================================
   HIGHLIGHTS
============================================================ */

.lavServicesHeroHighlights {
    display: flex;
    flex-wrap: wrap;

    gap:
        15px
        26px;

    margin-top: 34px;
    padding-top: 29px;

    border-top:
        1px solid
        rgba(100, 75, 113, 0.12);
}


.lavServicesHeroHighlights > div {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #756879;

    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
}


.lavServicesHeroHighlights > div span {
    display: grid;

    flex:
        0
        0
        22px;

    width: 22px;
    height: 22px;

    place-items: center;

    border:
        1px solid
        rgba(121, 91, 135, 0.18);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    color: #7e5e8c;

    font-size: 0.68rem;

    box-shadow:
        0 5px 15px rgba(77, 58, 85, 0.06);
}


/* ============================================================
   VISUAL
============================================================ */

.lavServicesHeroVisual {
    position: relative;

    min-height:
        clamp(
            520px,
            49vw,
            690px
        );

    perspective: 1400px;
}


.lavServicesScene {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: inherit;

    transform-style:
        preserve-3d;
}


/* ============================================================
   BACK CARD
============================================================ */

.lavServicesSceneCardBack {
    position: absolute;

    top: 8%;
    right: 7%;
    bottom: 5%;
    left: 12%;

    border:
        1px solid
        rgba(108, 82, 120, 0.1);

    border-radius: 44px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.5),
            rgba(224, 211, 230, 0.28)
        );

    box-shadow:
        0 45px 100px rgba(72, 54, 82, 0.11);

    transform:
        rotate(5deg)
        translate3d(
            15px,
            10px,
            -70px
        );

    -webkit-backdrop-filter:
        blur(18px);

    backdrop-filter:
        blur(18px);
}


/* ============================================================
   MAIN VISUAL CARD
============================================================ */

.lavServicesSceneCard {
    position: absolute;

    top: 3%;
    right: 4%;
    bottom: 8%;
    left: 5%;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.65);

    border-radius: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.78),
            rgba(239, 231, 243, 0.62)
        );

    box-shadow:
        0 45px 110px rgba(69, 50, 80, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    transform:
        rotate(-2deg)
        translateZ(30px);

    transform-style:
        preserve-3d;

    -webkit-backdrop-filter:
        blur(24px);

    backdrop-filter:
        blur(24px);
}


.lavServicesSceneCard::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(255, 255, 255, 0.82),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            transparent 45%
        );

    pointer-events: none;
}


.lavServicesSceneCard::after {
    content: "";

    position: absolute;

    right: -12%;
    bottom: -16%;

    width: 70%;
    height: 58%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(174, 145, 190, 0.2),
            transparent 69%
        );

    filter:
        blur(12px);

    pointer-events: none;
}


/* ============================================================
   APPOINTMENT CARD
============================================================ */

.lavServicesAppointment {
    position: absolute;

    top: 11%;
    left: 10%;

    z-index: 4;

    display: grid;

    min-width: 210px;

    padding:
        23px
        25px;

    border:
        1px solid
        rgba(105, 79, 117, 0.12);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 20px 45px rgba(77, 58, 86, 0.1);

    transform:
        translateZ(70px);

    -webkit-backdrop-filter:
        blur(16px);

    backdrop-filter:
        blur(16px);
}


.lavServicesAppointment small {
    margin-bottom: 14px;

    color: #8b778f;

    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.lavServicesAppointment strong {
    color: #493d4e;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}


.lavServicesAppointment span {
    margin-top: 9px;

    color: #886d91;

    font-size: 0.88rem;
    font-weight: 700;
}


/* ============================================================
   BOTANICAL PLANT
============================================================ */

.lavServicesPlant {
    position: absolute;

    right: 9%;
    bottom: 7%;

    z-index: 3;

    width: 190px;
    height: 330px;

    transform:
        translateZ(50px)
        rotate(3deg);

    transform-origin:
        bottom center;
}


.lavServicesPlant::before {
    content: "";

    position: absolute;

    right: 45%;
    bottom: 40px;

    width: 3px;
    height: 230px;

    border-radius: 999px;

    background:
        linear-gradient(
            to top,
            #718a74,
            #9bb09d
        );

    transform:
        rotate(7deg);
}


.lavServicesPlant::after {
    content: "";

    position: absolute;

    right: 12px;
    bottom: 0;

    width: 130px;
    height: 80px;

    border-radius:
        18px
        18px
        58px
        58px;

    background:
        linear-gradient(
            145deg,
            #c6b3cc,
            #897092
        );

    box-shadow:
        inset 0 2px 5px rgba(255, 255, 255, 0.35),
        0 20px 30px rgba(77, 60, 85, 0.17);
}


.lavServicesPlant span {
    position: absolute;

    display: block;

    width: 76px;
    height: 28px;

    border-radius:
        100%
        0
        100%
        0;

    background:
        linear-gradient(
            135deg,
            #8eaa91,
            #667e69
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


.lavServicesPlant span:nth-child(1) {
    top: 77px;
    right: 50px;

    transform:
        rotate(-35deg);
}


.lavServicesPlant span:nth-child(2) {
    top: 128px;
    right: 89px;

    transform:
        scaleX(-1)
        rotate(-31deg);
}


.lavServicesPlant span:nth-child(3) {
    top: 180px;
    right: 43px;

    transform:
        rotate(-25deg)
        scale(0.86);
}


.lavServicesPlant span:nth-child(4) {
    top: 220px;
    right: 83px;

    transform:
        scaleX(-1)
        rotate(-24deg)
        scale(0.8);
}


/* ============================================================
   TEA CUP
============================================================ */

.lavServicesTea {
    position: absolute;

    left: 12%;
    bottom: 13%;

    z-index: 3;

    width: 112px;
    height: 72px;

    border-radius:
        10px
        10px
        42px
        42px;

    background:
        linear-gradient(
            145deg,
            #fdfbfd,
            #d9cddd
        );

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.85),
        0 20px 30px rgba(74, 57, 83, 0.12);

    transform:
        translateZ(45px)
        rotate(-4deg);
}


.lavServicesTea::before {
    content: "";

    position: absolute;

    top: 14px;
    right: -27px;

    width: 38px;
    height: 39px;

    border:
        9px solid
        #ded1e1;

    border-left: 0;

    border-radius:
        0
        28px
        28px
        0;
}


.lavServicesTea::after {
    content: "";

    position: absolute;

    top: -50px;
    left: 47%;

    width: 2px;
    height: 42px;

    border-radius: 999px;

    background:
        linear-gradient(
            to top,
            rgba(134, 119, 141, 0.3),
            transparent
        );

    box-shadow:
        15px 5px 0 rgba(134, 119, 141, 0.16);

    filter:
        blur(1px);
}


/* ============================================================
   LIGHT
============================================================ */

.lavServicesLight {
    position: absolute;

    top: -18%;
    right: -25%;

    z-index: 1;

    width: 78%;
    height: 100%;

    background:
        linear-gradient(
            118deg,
            transparent 15%,
            rgba(255, 255, 255, 0.65) 49%,
            rgba(255, 255, 255, 0.11) 68%,
            transparent 82%
        );

    transform:
        rotate(-8deg);

    filter:
        blur(3px);

    pointer-events: none;
}


/* ============================================================
   FLOATING CARD
============================================================ */

.lavServicesFloatingCard {
    position: absolute;

    right: -4%;
    bottom: 16%;

    z-index: 8;

    display: grid;

    min-width: 230px;

    padding:
        20px
        22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.7);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.73);

    box-shadow:
        0 22px 55px rgba(74, 53, 84, 0.16);

    transform:
        translateZ(100px)
        rotate(2deg);

    -webkit-backdrop-filter:
        blur(20px);

    backdrop-filter:
        blur(20px);
}


.lavServicesFloatingCard strong {
    color: #493d4f;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}


.lavServicesFloatingCard span {
    margin-top: 9px;

    color: #7f6f84;

    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.5;

    letter-spacing: 0.05em;
}


/* ============================================================
   FLOATING CALENDAR
============================================================ */

.lavServicesCalendar {
    position: absolute;

    top: 18%;
    right: -1%;

    z-index: 9;

    display: grid;

    padding:
        17px
        20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.72);

    border-radius: 19px;

    background:
        rgba(247, 242, 249, 0.82);

    box-shadow:
        0 18px 42px rgba(78, 58, 89, 0.13);

    transform:
        translateZ(105px)
        rotate(3deg);

    -webkit-backdrop-filter:
        blur(18px);

    backdrop-filter:
        blur(18px);
}


.lavServicesCalendar small {
    color: #927e98;

    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.lavServicesCalendar strong {
    margin-top: 7px;

    color: #504256;

    font-size: 0.88rem;
    font-weight: 700;
}


/* ============================================================
   ACTIVE ANIMATIONS
============================================================ */

[data-services-hero].is-active
.lavServicesSceneCard {
    animation:
        lavServicesSceneFloat
        8s
        ease-in-out
        infinite;
}


[data-services-hero].is-active
.lavServicesSceneCardBack {
    animation:
        lavServicesBackFloat
        10s
        ease-in-out
        infinite;
}


[data-services-hero].is-active
.lavServicesFloatingCard {
    animation:
        lavServicesFloatingCard
        7s
        ease-in-out
        infinite;
}


[data-services-hero].is-active
.lavServicesCalendar {
    animation:
        lavServicesCalendarFloat
        6.5s
        ease-in-out
        infinite;
}


[data-services-hero].is-active
.lavServicesPlant {
    animation:
        lavServicesPlantMove
        6s
        ease-in-out
        infinite;
}


[data-services-hero].is-active
.lavServicesLight {
    animation:
        lavServicesLightMove
        8s
        ease-in-out
        infinite;
}


/* ============================================================
   KEYFRAMES
============================================================ */

@keyframes lavServicesSceneFloat {

    0%,
    100% {
        transform:
            rotate(-2deg)
            translate3d(
                0,
                0,
                30px
            );
    }

    50% {
        transform:
            rotate(-1deg)
            translate3d(
                0,
                -10px,
                30px
            );
    }

}


@keyframes lavServicesBackFloat {

    0%,
    100% {
        transform:
            rotate(5deg)
            translate3d(
                15px,
                10px,
                -70px
            );
    }

    50% {
        transform:
            rotate(6deg)
            translate3d(
                21px,
                -2px,
                -70px
            );
    }

}


@keyframes lavServicesFloatingCard {

    0%,
    100% {
        transform:
            translate3d(
                0,
                0,
                100px
            )
            rotate(2deg);
    }

    50% {
        transform:
            translate3d(
                0,
                -11px,
                100px
            )
            rotate(1deg);
    }

}


@keyframes lavServicesCalendarFloat {

    0%,
    100% {
        transform:
            translate3d(
                0,
                0,
                105px
            )
            rotate(3deg);
    }

    50% {
        transform:
            translate3d(
                -5px,
                -9px,
                105px
            )
            rotate(1deg);
    }

}


@keyframes lavServicesPlantMove {

    0%,
    100% {
        transform:
            translateZ(50px)
            rotate(3deg);
    }

    50% {
        transform:
            translateZ(50px)
            rotate(-1deg);
    }

}


@keyframes lavServicesLightMove {

    0%,
    100% {
        opacity: 0.72;

        transform:
            rotate(-8deg)
            translateX(0);
    }

    50% {
        opacity: 0.96;

        transform:
            rotate(-8deg)
            translateX(-18px);
    }

}


/* ============================================================
   1200PX
============================================================ */

@media (max-width: 1200px) {

    .lavServicesHeroGrid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.8fr);

        gap: 55px;
    }


    .lavServicesHero h1 {
        font-size:
            clamp(
                3.4rem,
                6vw,
                5.7rem
            );
    }


    .lavServicesHeroVisual {
        min-height: 590px;
    }


    .lavServicesFloatingCard {
        right: 0;
    }

}


/* ============================================================
   992PX
============================================================ */

@media (max-width: 992px) {

    .lavServicesHero {
        padding:
            120px
            0
            110px;
    }


    .lavServicesHeroGrid {
        grid-template-columns: 1fr;

        gap: 75px;
    }


    .lavServicesHeroContent {
        max-width: 800px;
    }


    .lavServicesHeroVisual {
        width:
            min(
                100%,
                710px
            );

        min-height: 650px;

        margin:
            0
            auto;
    }

}


/* ============================================================
   768PX
============================================================ */

@media (max-width: 768px) {

    .lavServicesHero {
        padding:
            100px
            0
            90px;
    }


    .lavServicesHero h1 {
        font-size:
            clamp(
                3rem,
                13vw,
                4.9rem
            );

        line-height: 0.95;
    }


    .lavServicesHeroLead {
        margin-top: 28px;

        font-size: 1.04rem;
    }


    .lavServicesHeroActions {
        align-items: stretch;
    }


    .lavServicesHeroPrimary,
    .lavServicesHeroSecondary {
        width: 100%;
    }


    .lavServicesHeroHighlights {
        display: grid;

        gap: 14px;
    }


    .lavServicesHeroVisual {
        min-height: 560px;
    }


    .lavServicesSceneCard {
        right: 2%;
        left: 2%;

        border-radius: 32px;
    }


    .lavServicesSceneCardBack {
        right: 6%;
        left: 8%;

        border-radius: 34px;
    }


    .lavServicesAppointment {
        top: 9%;
        left: 7%;

        min-width: 180px;

        padding:
            20px
            21px;
    }


    .lavServicesAppointment strong {
        font-size: 1.7rem;
    }


    .lavServicesPlant {
        right: 4%;
        bottom: 5%;

        transform:
            scale(0.86)
            translateZ(50px);
    }


    .lavServicesTea {
        left: 8%;
        bottom: 12%;

        transform:
            scale(0.88)
            translateZ(45px)
            rotate(-4deg);
    }


    .lavServicesFloatingCard {
        right: 0;
        bottom: 13%;

        min-width: 205px;
    }


    .lavServicesCalendar {
        top: 20%;
        right: 1%;
    }

}


/* ============================================================
   560PX
============================================================ */

@media (max-width: 560px) {

    .lavServicesHero {
        padding:
            88px
            0
            78px;
    }


    .lavServicesHeroEyebrow {
        margin-bottom: 22px;
    }


    .lavServicesHero h1 {
        font-size:
            clamp(
                2.85rem,
                14vw,
                4rem
            );
    }


    .lavServicesHeroVisual {
        min-height: 485px;
    }


    .lavServicesSceneCard {
        top: 5%;
        bottom: 7%;

        border-radius: 27px;
    }


    .lavServicesSceneCardBack {
        top: 9%;
        bottom: 4%;

        border-radius: 29px;
    }


    .lavServicesAppointment {
        top: 8%;
        left: 6%;

        min-width: 155px;

        padding:
            17px
            18px;

        border-radius: 19px;
    }


    .lavServicesAppointment small {
        margin-bottom: 10px;

        font-size: 0.6rem;
    }


    .lavServicesAppointment strong {
        font-size: 1.45rem;
    }


    .lavServicesAppointment span {
        font-size: 0.76rem;
    }


    .lavServicesPlant {
        right: -13%;
        bottom: -1%;

        transform:
            scale(0.68)
            translateZ(50px);
    }


    .lavServicesTea {
        left: 4%;
        bottom: 10%;

        transform:
            scale(0.72)
            translateZ(45px)
            rotate(-4deg);
    }


    .lavServicesFloatingCard {
        right: 2%;
        bottom: 11%;

        min-width: 178px;

        padding:
            16px
            17px;

        border-radius: 18px;
    }


    .lavServicesFloatingCard strong {
        font-size: 1.23rem;
    }


    .lavServicesFloatingCard span {
        font-size: 0.62rem;
    }


    .lavServicesCalendar {
        top: 24%;
        right: 1%;

        padding:
            14px
            15px;

        border-radius: 16px;
    }


    .lavServicesCalendar small {
        font-size: 0.57rem;
    }


    .lavServicesCalendar strong {
        font-size: 0.74rem;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .lavServicesSceneCard,
    .lavServicesSceneCardBack,
    .lavServicesFloatingCard,
    .lavServicesCalendar,
    .lavServicesPlant,
    .lavServicesLight,
    .lavServicesHeroPrimary::before,
    .lavServicesHeroPrimary svg {
        animation: none !important;
        transition: none !important;
    }

}