/* ===========================================
   FAQ section — accordéons avec blocs respirants
   =========================================== */

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 12px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.32);
}

.faq-item[open] {
    background: rgba(201, 162, 39, 0.05);
    border-color: rgba(201, 162, 39, 0.4);
}

.faq-item__question {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text, #e8e3d3);
    transition: color 0.2s ease;
    line-height: 1.4;
}

.faq-item__question:hover {
    color: var(--color-gold, #c9a227);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-gold, #c9a227);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 1.6rem 1.5rem 1.6rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-soft, #d4cfc1);
}

.faq-item__answer p {
    margin: 0 0 var(--space-3, 0.85rem) 0;
}

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

.faq-item__answer strong {
    color: var(--color-gold, #c9a227);
    font-weight: 600;
}

.faq-item__answer a {
    color: var(--color-gold, #c9a227);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.4);
    transition: border-color 0.2s ease;
}

.faq-item__answer a:hover {
    border-bottom-color: var(--color-gold, #c9a227);
}

/* Section FAQ : centrer le header */
.section--faq .section-header {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Petite note finale sous la FAQ */
.faq-footer-note {
    text-align: center;
    margin-top: var(--space-7, 2.5rem);
    color: var(--color-text-muted, #a39e90);
    font-size: 0.95rem;
}

.faq-footer-note a {
    color: var(--color-gold, #c9a227);
    text-decoration: none;
    font-weight: 600;
}

.faq-footer-note a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .faq-grid {
        gap: 0.6rem;
    }
    .faq-item__question {
        font-size: 0.98rem;
        padding: 1.15rem 1.25rem;
        gap: 1rem;
    }
    .faq-item__answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}
