/* FAQ Section */
.faq-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--color-cream);
}

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

.faq-item {
    background: white;
    border: 1px solid rgba(184, 149, 107, 0.15);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(184, 149, 107, 0.3);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(44, 40, 37, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-charcoal-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-terracotta);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-charcoal-soft);
}

.faq-answer strong {
    color: var(--color-charcoal);
}
