/* ============================================================
   SERVICES FAQ
============================================================ */

.lavServicesFaq {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding:
        clamp(105px, 10vw, 160px)
        clamp(28px, 3vw, 52px)
        clamp(110px, 11vw, 175px);

    background:
        linear-gradient(
            180deg,
            #f7f1f9 0%,
            #fbf8fc 52%,
            #ffffff 100%
        );

    color: #342d38;
}


/* ============================================================
   AMBIENT BACKGROUND
============================================================ */

.lavServicesFaqGlow {
    position: absolute;
    z-index: -3;

    border-radius: 50%;

    pointer-events: none;
}


.lavServicesFaqGlowOne {
    top: -300px;
    left: -250px;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(177, 143, 196, 0.2) 0%,
            rgba(177, 143, 196, 0.07) 42%,
            transparent 72%
        );

    filter: blur(12px);
}


.lavServicesFaqGlowTwo {
    right: -270px;
    bottom: -330px;

    width: 760px;
    height: 760px;

    background:
        radial-gradient(
            circle,
            rgba(155, 186, 161, 0.18) 0%,
            rgba(155, 186, 161, 0.06) 42%,
            transparent 72%
        );

    filter: blur(14px);
}


.lavServicesFaqTexture {
    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.34;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(100, 76, 112, 0.024) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(100, 76, 112, 0.024) 1px,
            transparent 1px
        );

    background-size:
        42px
        42px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 14%,
            #000 87%,
            transparent
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 14%,
            #000 87%,
            transparent
        );
}


/* ============================================================
   GRID
============================================================ */

.lavServicesFaqGrid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.78fr)
        minmax(0, 1.22fr);

    gap:
        clamp(60px, 8vw, 130px);

    align-items: start;
}


/* ============================================================
   HEADER
============================================================ */

.lavServicesFaqHeader {
    position: sticky;
    top: 135px;
}


.lavServicesFaqEyebrow {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 27px;
}


.lavServicesFaqEyebrow > span {
    position: relative;

    width: 44px;
    height: 1px;

    background:
        rgba(112, 82, 127, 0.42);
}


.lavServicesFaqEyebrow > 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.25);

    transform:
        translateY(-50%);
}


.lavServicesFaqEyebrow small {
    color: #7b6681;

    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.19em;
    text-transform: uppercase;
}


.lavServicesFaqHeader h2 {
    max-width: 600px;

    margin: 0;

    color: #3b323f;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size:
        clamp(
            3.2rem,
            5.6vw,
            6.4rem
        );

    font-weight: 500;
    line-height: 0.94;

    letter-spacing: -0.05em;

    text-wrap: balance;
}


.lavServicesFaqHeader h2 span {
    display: block;

    margin-top: 8px;

    color: #8c6999;

    font-style: italic;
}


.lavServicesFaqIntro {
    max-width: 490px;

    margin:
        32px
        0
        0;

    color: #746978;

    font-size:
        clamp(
            1rem,
            1.25vw,
            1.12rem
        );

    line-height: 1.78;
}


/* ============================================================
   CONSULTATION CARD
============================================================ */

.lavServicesFaqConsultation {
    position: relative;
    overflow: hidden;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap:
        18px
        17px;

    margin-top:
        clamp(40px, 5vw, 62px);

    padding:
        24px;

    border:
        1px solid
        rgba(102, 77, 114, 0.12);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.8),
            rgba(244, 237, 247, 0.72)
        );

    box-shadow:
        0 24px 62px rgba(75, 56, 84, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    -webkit-backdrop-filter:
        blur(18px);

    backdrop-filter:
        blur(18px);
}


.lavServicesFaqConsultation::before {
    content: "";

    position: absolute;

    top: -70px;
    right: -60px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(171, 139, 187, 0.18),
            transparent 70%
        );

    pointer-events: none;
}


.lavServicesFaqConsultationIcon {
    position: relative;
    z-index: 1;

    display: grid;

    width: 58px;
    height: 58px;

    place-items: center;

    border:
        1px solid
        rgba(106, 80, 118, 0.13);

    border-radius: 19px;

    background:
        rgba(255, 255, 255, 0.72);

    color: #7a5b87;

    box-shadow:
        0 14px 30px rgba(72, 54, 81, 0.08);
}


.lavServicesFaqConsultation > div:nth-child(2) {
    position: relative;
    z-index: 1;

    display: grid;

    align-content: center;

    gap: 5px;
}


.lavServicesFaqConsultation small {
    color: #8d7a91;

    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.lavServicesFaqConsultation strong {
    color: #493d4e;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.15;
}


.lavServicesFaqConsultation > a {
    position: relative;
    z-index: 1;

    display: inline-flex;
    grid-column:
        1
        / -1;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    margin-top: 4px;
    padding:
        0
        20px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #62496f 0%,
            #8b689a 100%
        );

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 16px 34px rgba(80, 56, 91, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.lavServicesFaqConsultation > a svg {
    flex: 0 0 auto;

    transition:
        transform 0.35s ease;
}


.lavServicesFaqConsultation > a:hover,
.lavServicesFaqConsultation > a:focus-visible {
    transform:
        translateY(-3px);

    box-shadow:
        0 22px 44px rgba(80, 56, 91, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.23);
}


.lavServicesFaqConsultation > a:hover svg,
.lavServicesFaqConsultation > a:focus-visible svg {
    transform:
        translateX(4px);
}


.lavServicesFaqConsultation > a:focus-visible {
    outline:
        3px solid
        rgba(139, 103, 155, 0.32);

    outline-offset: 4px;
}


/* ============================================================
   FAQ LIST
============================================================ */

.lavServicesFaqList {
    display: grid;

    gap: 17px;
}


/* ============================================================
   FAQ ITEM
============================================================ */

.lavServicesFaqItem {
    position: relative;
    overflow: hidden;

    border:
        1px solid
        rgba(100, 75, 112, 0.11);

    border-radius: 26px;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 18px 48px rgba(69, 52, 78, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    -webkit-backdrop-filter:
        blur(14px);

    backdrop-filter:
        blur(14px);

    transition:
        border-color 0.35s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease,
        background-color 0.35s ease;
}


.lavServicesFaqItem::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            #9874a5,
            #c1a9c9
        );

    transform:
        scaleY(0);

    transform-origin:
        top;

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}


.lavServicesFaqItem:hover {
    border-color:
        rgba(105, 78, 118, 0.19);

    box-shadow:
        0 26px 64px rgba(69, 52, 78, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    transform:
        translateY(-3px);
}


.lavServicesFaqItem.is-open {
    border-color:
        rgba(104, 76, 117, 0.22);

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 30px 72px rgba(68, 50, 78, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}


.lavServicesFaqItem.is-open::before {
    transform:
        scaleY(1);
}


/* ============================================================
   QUESTION
============================================================ */

.lavServicesFaqItem h3 {
    margin: 0;
}


.lavServicesFaqQuestion {
    appearance: none;

    position: relative;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    gap:
        18px;

    align-items: center;

    width: 100%;

    padding:
        26px
        27px;

    border: 0;

    background: transparent;

    color: inherit;

    font: inherit;

    text-align: left;

    cursor: pointer;
}


.lavServicesFaqQuestionNumber {
    color:
        rgba(116, 87, 129, 0.58);

    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.13em;
}


.lavServicesFaqQuestionText {
    color: #493e4e;

    font-family:
        var(
            --lav-font-display,
            "Cormorant Garamond",
            Georgia,
            serif
        );

    font-size:
        clamp(
            1.35rem,
            1.75vw,
            1.72rem
        );

    font-weight: 600;
    line-height: 1.15;

    letter-spacing: -0.018em;
}


/* ============================================================
   QUESTION ICON
============================================================ */

.lavServicesFaqQuestionIcon {
    position: relative;

    display: grid;

    flex:
        0
        0
        42px;

    width: 42px;
    height: 42px;

    place-items: center;

    border:
        1px solid
        rgba(106, 80, 119, 0.13);

    border-radius: 50%;

    background:
        rgba(247, 242, 249, 0.82);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        border-color 0.35s ease;
}


.lavServicesFaqQuestionIcon::before,
.lavServicesFaqQuestionIcon::after {
    content: "";

    position: absolute;

    width: 14px;
    height: 2px;

    border-radius: 999px;

    background: #7e608b;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}


.lavServicesFaqQuestionIcon::after {
    transform:
        rotate(90deg);
}


.lavServicesFaqQuestion:hover
.lavServicesFaqQuestionIcon {
    border-color:
        rgba(106, 80, 119, 0.24);

    background:
        rgba(240, 232, 244, 0.95);

    transform:
        scale(1.06);
}


.lavServicesFaqQuestion[aria-expanded="true"]
.lavServicesFaqQuestionIcon {
    border-color:
        rgba(255, 255, 255, 0.18);

    background:
        linear-gradient(
            135deg,
            #684f74,
            #8c6a9a
        );

    transform:
        rotate(180deg);
}


.lavServicesFaqQuestion[aria-expanded="true"]
.lavServicesFaqQuestionIcon::before,
.lavServicesFaqQuestion[aria-expanded="true"]
.lavServicesFaqQuestionIcon::after {
    background: #ffffff;
}


.lavServicesFaqQuestion[aria-expanded="true"]
.lavServicesFaqQuestionIcon::after {
    opacity: 0;

    transform:
        rotate(0);
}


.lavServicesFaqQuestion:focus-visible {
    outline:
        3px solid
        rgba(139, 103, 155, 0.28);

    outline-offset: -4px;

    border-radius: 22px;
}


/* ============================================================
   ANSWER
============================================================ */

.lavServicesFaqAnswer {
    overflow: hidden;
}


.lavServicesFaqAnswer[hidden] {
    display: none;
}


.lavServicesFaqAnswerInner {
    padding:
        0
        88px
        29px
        69px;
}


.lavServicesFaqAnswerInner::before {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    margin-bottom: 22px;

    background:
        linear-gradient(
            90deg,
            rgba(104, 78, 116, 0.14),
            transparent
        );
}


.lavServicesFaqAnswerInner p {
    max-width: 690px;

    margin: 0;

    color: #746879;

    font-size:
        clamp(
            0.95rem,
            1.05vw,
            1.03rem
        );

    line-height: 1.78;
}


.lavServicesFaqAnswerInner p + p {
    margin-top: 16px;
}


.lavServicesFaqAnswerInner a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: #72527f;

    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}


.lavServicesFaqAnswerInner a svg {
    flex: 0 0 auto;

    transition:
        transform 0.3s ease;
}


.lavServicesFaqAnswerInner a:hover,
.lavServicesFaqAnswerInner a:focus-visible {
    color: #553c61;
}


.lavServicesFaqAnswerInner a:hover svg,
.lavServicesFaqAnswerInner a:focus-visible svg {
    transform:
        translateX(4px);
}


.lavServicesFaqAnswerInner a:focus-visible {
    outline:
        3px solid
        rgba(139, 103, 155, 0.28);

    outline-offset: 5px;

    border-radius: 4px;
}


/* ============================================================
   ACTIVE AMBIENT ANIMATIONS
============================================================ */

[data-services-faq].is-active
.lavServicesFaqGlowOne {
    animation:
        lavServicesFaqGlowOne
        14s
        ease-in-out
        infinite;
}


[data-services-faq].is-active
.lavServicesFaqGlowTwo {
    animation:
        lavServicesFaqGlowTwo
        16s
        ease-in-out
        infinite;
}


[data-services-faq].is-active
.lavServicesFaqConsultationIcon {
    animation:
        lavServicesFaqIconFloat
        5.5s
        ease-in-out
        infinite;
}


/* ============================================================
   KEYFRAMES
============================================================ */

@keyframes lavServicesFaqGlowOne {

    0%,
    100% {
        transform:
            translate3d(
                0,
                0,
                0
            );
    }

    50% {
        transform:
            translate3d(
                35px,
                25px,
                0
            );
    }

}


@keyframes lavServicesFaqGlowTwo {

    0%,
    100% {
        transform:
            translate3d(
                0,
                0,
                0
            );
    }

    50% {
        transform:
            translate3d(
                -38px,
                -28px,
                0
            );
    }

}


@keyframes lavServicesFaqIconFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-5px)
            rotate(-2deg);
    }

}


/* ============================================================
   1200PX
============================================================ */

@media (max-width: 1200px) {

    .lavServicesFaqGrid {
        grid-template-columns:
            minmax(280px, 0.74fr)
            minmax(0, 1.26fr);

        gap: 68px;
    }


    .lavServicesFaqHeader h2 {
        font-size:
            clamp(
                3rem,
                5.2vw,
                5.2rem
            );
    }


    .lavServicesFaqQuestion {
        padding:
            24px
            23px;
    }


    .lavServicesFaqAnswerInner {
        padding:
            0
            70px
            27px
            63px;
    }

}


/* ============================================================
   992PX
============================================================ */

@media (max-width: 992px) {

    .lavServicesFaqGrid {
        grid-template-columns: 1fr;

        gap: 64px;
    }


    .lavServicesFaqHeader {
        position: relative;
        top: auto;

        max-width: 760px;
    }


    .lavServicesFaqConsultation {
        max-width: 560px;
    }


    .lavServicesFaqList {
        max-width: 820px;
    }

}


/* ============================================================
   768PX
============================================================ */

@media (max-width: 768px) {

    .lavServicesFaq {
        padding:
            90px
            clamp(22px, 4vw, 34px)
            105px;
    }


    .lavServicesFaqGrid {
        gap: 48px;
    }


    .lavServicesFaqHeader h2 {
        font-size:
            clamp(
                3rem,
                12vw,
                5rem
            );
    }


    .lavServicesFaqQuestion {
        grid-template-columns:
            auto
            minmax(0, 1fr)
            auto;

        gap: 14px;

        padding:
            22px
            21px;
    }


    .lavServicesFaqQuestionIcon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .lavServicesFaqAnswerInner {
        padding:
            0
            60px
            25px
            55px;
    }

}


/* ============================================================
   560PX
============================================================ */

@media (max-width: 560px) {

    .lavServicesFaq {
        padding:
            78px
            20px
            90px;
    }


    .lavServicesFaqHeader h2 {
        font-size:
            clamp(
                2.85rem,
                14vw,
                4.2rem
            );
    }


    .lavServicesFaqIntro {
        margin-top: 25px;
    }


    .lavServicesFaqConsultation {
        grid-template-columns:
            auto
            minmax(0, 1fr);

        padding: 21px;

        border-radius: 24px;
    }


    .lavServicesFaqConsultationIcon {
        width: 52px;
        height: 52px;

        border-radius: 17px;
    }


    .lavServicesFaqConsultation strong {
        font-size: 1.18rem;
    }


    .lavServicesFaqItem {
        border-radius: 22px;
    }


    .lavServicesFaqQuestion {
        grid-template-columns:
            auto
            minmax(0, 1fr);

        gap:
            8px
            13px;

        padding:
            21px
            19px;
    }


    .lavServicesFaqQuestionNumber {
        grid-column: 1;
        grid-row: 1;

        align-self: start;

        margin-top: 5px;
    }


    .lavServicesFaqQuestionText {
        grid-column: 2;
        grid-row: 1;

        padding-right: 48px;

        font-size:
            clamp(
                1.27rem,
                6vw,
                1.55rem
            );
    }


    .lavServicesFaqQuestionIcon {
        position: absolute;

        top: 17px;
        right: 17px;

        width: 36px;
        height: 36px;
    }


    .lavServicesFaqAnswerInner {
        padding:
            0
            20px
            23px
            51px;
    }


    .lavServicesFaqAnswerInner::before {
        margin-bottom: 18px;
    }

}


/* ============================================================
   HOVER CAPABILITY
============================================================ */

@media (hover: none) {

    .lavServicesFaqItem:hover {
        transform: none;
    }


    .lavServicesFaqQuestion:hover
    .lavServicesFaqQuestionIcon {
        transform: none;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .lavServicesFaqGlow,
    .lavServicesFaqConsultationIcon,
    .lavServicesFaqItem,
    .lavServicesFaqItem::before,
    .lavServicesFaqQuestionIcon,
    .lavServicesFaqQuestionIcon::before,
    .lavServicesFaqQuestionIcon::after,
    .lavServicesFaqConsultation > a,
    .lavServicesFaqConsultation > a svg,
    .lavServicesFaqAnswerInner a svg {
        animation: none !important;
        transition: none !important;
    }


    .lavServicesFaqItem:hover,
    .lavServicesFaqConsultation > a:hover,
    .lavServicesFaqQuestion:hover
    .lavServicesFaqQuestionIcon {
        transform: none;
    }

}