/* Site-wide FAQ section — clean single-accent design */

.faq-section {
    padding: 72px 0 80px;
    background: #f7f7f7;
}

.faq-section__header {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}

.faq-section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
}

.faq-section__title {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.faq-section__title span {
    display: block;
    margin-top: 2px;
}

.faq-section__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #666;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.faq-item {
    margin: 0;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    width: 100%;
    margin: 0;
    padding: 20px 24px;
    border: 0;
    background: #fff;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #333;
}

.faq-question:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(201, 136, 98, 0.25);
}

.faq-question-text {
    flex: 1 1 auto;
    min-width: 0;
}

.faq-question-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    color: #888;
    font-size: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.faq-question:not(.collapsed) .faq-question-icon {
    transform: rotate(180deg);
    border-color: #c98862;
    color: #c98862;
}

.faq-answer {
    padding: 0 24px 22px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 0.85rem;
    padding-left: 1.25rem;
}

.faq-answer a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: #c98862;
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 48px 0 56px;
    }

    .faq-section__header {
        margin-bottom: 28px;
        text-align: left;
    }

    .faq-section__lead {
        font-size: 14px;
    }

    .faq-accordion {
        box-shadow: none;
    }

    .faq-question {
        padding: 16px 16px;
        font-size: 15px;
        gap: 14px;
    }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    .faq-question-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}
