/* ═══════════════════════════════════════════════════
   Section: FAQ
   ═══════════════════════════════════════════════════ */

/* ─── Section wrapper (full-width via shared breakout) ─── */
.sw-faq {
    background-color: #fffefc;
}

/* ─── Inner container: 1240px centred ─── */
.sw-faq__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 155px;
    align-items: flex-start;
    padding: 60px 0;
}

/* ─── Left: Intro ─── */
.sw-faq__intro {
    flex-shrink: 0;
    width: 445px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sw-faq__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2.38px;
    text-transform: uppercase;
    color: #a39f9a;
    line-height: 29px;
    margin: 0;
}

.sw-faq__heading {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    color: #2b2722;
    margin: 0;
}

.sw-faq__heading em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #a59680;
}

.sw-faq__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.32;
    color: #63594c;
    width: 315px;
    margin: 0;
}

/* ─── Right: FAQ List ─── */
.sw-faq__list {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 42px;
}

/* ─── FAQ Item ─── */
.sw-faq__item {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

button.sw-faq__question,
button.sw-faq__question:hover,
button.sw-faq__question:focus,
button.sw-faq__question:active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    text-align: left;
    outline: none !important;
    box-shadow: none !important;
    color: inherit !important;
    -webkit-appearance: none;
    appearance: none;
    transition: none !important;
}

.sw-faq__question-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.1;
    color: #2b2722;
    flex: 1;
    min-width: 0;
}

/* ─── Toggle icons ─── */
.sw-faq__toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.sw-faq__toggle--plus {
    background: #f4f2e9;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    object-fit: none;
    object-position: center;
}

/* Default: show plus, hide minus */
.sw-faq__toggle--minus {
    display: none;
}
.sw-faq__toggle--plus {
    display: block;
}

/* Open state: show minus, hide plus */
.sw-faq__item.is-open .sw-faq__toggle--minus {
    display: block;
}
.sw-faq__item.is-open .sw-faq__toggle--plus {
    display: none;
}

/* ─── Answer (hidden by default) ─── */
.sw-faq__answer {
    display: none;
}

.sw-faq__item.is-open .sw-faq__answer {
    display: block;
}

.sw-faq__answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.29;
    color: #63594c;
    margin: 0;
    max-width: 554px;
}

/* ─── Divider ─── */
.sw-faq__divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e0ded9;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1240px) {
    .sw-faq__inner {
        padding: 60px 32px;
        gap: 60px;
    }

    .sw-faq__intro {
        width: 320px;
    }

    .sw-faq__description {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .sw-faq__inner {
        flex-direction: column;
        gap: 32px;
        padding: 40px 20px;
    }

    .sw-faq__intro {
        width: 100%;
        gap: 20px;
    }

    .sw-faq__heading {
        font-size: 34px;
    }

    .sw-faq__description {
        width: 100%;
    }

    .sw-faq__list {
        padding-top: 0;
        gap: 20px;
    }

    .sw-faq__item {
        gap: 20px;
    }

    .sw-faq__item.is-open {
        gap: 18px;
    }

    .sw-faq__answer p {
        max-width: 100%;
    }
}
