/* ============================================================
   SERVICE PAGE ADDITIONS
   ============================================================ */

.kf-service-page
.kf-home-service-card__main {
    cursor: default;
}

.kf-service-page
.kf-home-service-card__main:hover {
    transform: none;
}

.kf-service-page
.kf-home-services__grid {
    margin-top: 50px;
}


/* INTRO / NOTES */

.kf-service-intro {
    max-width: 620px;
    margin: 18px 0 0;

    color: var(--kf-text-light);

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

.kf-service-note {
    max-width: 680px;

    margin: 42px auto 0;

    color: var(--kf-text-light);

    font-size: 0.78rem;
    line-height: 1.65;

    text-align: center;
}


/* COST */

.kf-service-cost {
    padding: 105px 0;

    background: var(--kf-background-warm);
}

.kf-service-cost__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}

.kf-service-cost h2 {
    max-width: 520px;

    margin: 0;

    color: var(--kf-dark);

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

    line-height: 1.04;
    letter-spacing: -0.045em;
}

.kf-service-cost__copy {
    max-width: 580px;
}

.kf-service-cost__copy p {
    margin: 0;

    color: var(--kf-text-light);

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

.kf-service-cost__copy strong {
    display: block;

    margin: 18px 0 28px;

    color: var(--kf-dark);

    font-size: 1.05rem;
    line-height: 1.65;
}


/* REGION */

.kf-service-region {
    padding: 105px 0;

    background: var(--kf-background);
}

.kf-service-region__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-top: 48px;
}

.kf-service-region__grid a {
    display: flex;

    min-height: 76px;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 24px;

    border: 1px solid var(--kf-border);
    border-radius: var(--kf-radius-small);

    background: var(--kf-white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.kf-service-region__grid a:hover {
    border-color:
        rgba(23, 135, 63, 0.28);

    box-shadow: var(--kf-shadow);

    transform: translateY(-2px);
}

.kf-service-region__grid strong {
    color: var(--kf-dark);
}

.kf-service-region__grid span {
    color: var(--kf-primary);

    font-size: 0.82rem;
    font-weight: 750;
}


/* FAQ */

.kf-service-faq {
    padding: 105px 0;

    background: var(--kf-white);
}

.kf-service-faq__list {
    max-width: 900px;

    margin-top: 45px;
}

.kf-service-faq details {
    border-top:
        1px solid
        var(--kf-border);
}

.kf-service-faq details:last-child {
    border-bottom:
        1px solid
        var(--kf-border);
}

.kf-service-faq summary {
    position: relative;

    padding: 23px 45px 23px 0;

    color: var(--kf-dark);

    font-size: 1rem;
    font-weight: 750;

    cursor: pointer;
    list-style: none;
}

.kf-service-faq summary::-webkit-details-marker {
    display: none;
}

.kf-service-faq summary::after {
    content: "+";

    position: absolute;

    top: 17px;
    right: 4px;

    color: var(--kf-primary);

    font-size: 1.5rem;
    font-weight: 400;
}

.kf-service-faq details[open]
summary::after {
    content: "−";
}

.kf-service-faq details p {
    max-width: 760px;

    margin: 0;
    padding: 0 0 24px;

    color: var(--kf-text-light);

    line-height: 1.7;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 820px) {

    .kf-service-cost__grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .kf-service-region__grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .kf-service-cost,
    .kf-service-region,
    .kf-service-faq {
        padding: 78px 0;
    }

    .kf-service-cost h2 {
        font-size: 2.6rem;
    }

    .kf-service-region__grid {
        margin-top: 36px;
    }

    .kf-service-region__grid a {
        min-height: 70px;

        padding: 0 18px;
    }
}