/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--stone-lighter);
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .04);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-gray);
    background: none;
    border: none;
    text-align: left;
    transition: color .3s;
}

.faq-question:hover {
    color: var(--maroon);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--stone-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--maroon);
    transition: all .3s;
}

.faq-item.active .faq-toggle {
    background: var(--maroon);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 1.05rem;
    color: var(--mid-gray);
    line-height: 1.8;
}