/* ── FAQ Section ── */
.faq-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 120px var(--container-pad) 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.faq-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 300;
}

/* ── List ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Item ── */
.faq-item {
    background: rgba(255, 255, 255, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 12px rgba(120, 130, 160, 0.08);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(201, 183, 156, 0.4);
    box-shadow: 0 4px 20px rgba(120, 130, 160, 0.12);
}

/* ── Question (button) ── */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--ncp-accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--ncp-accent);
}

/* ── Answer ── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

/* ── Empty state ── */
.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .faq-section {
        padding-top: 100px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.88rem;
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
        font-size: 0.84rem;
    }
}
