/* ============================================================
   FAQ — frequently asked questions
   ============================================================ */

.faq {
    background: transparent;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream-50);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--dur-fast) var(--ease);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-400);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    text-align: right;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wine-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all var(--dur-fast) var(--ease);
}

.faq-trigger:hover {
    color: var(--wine-800);
}

.faq-trigger::after {
    content: "▼";
    color: var(--rose-500);
    font-size: 0.75rem;
    transition: transform var(--dur-fast) var(--ease);
    flex: 0 0 auto;
}

.faq-item.open .faq-trigger::after {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur) var(--ease);
}

.faq-item.open .faq-content {
    max-height: 600px;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.75;
}

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

/* Accessibility — keyboard focus */
.faq-trigger:focus-visible {
    outline: 3px solid var(--gold-400);
    outline-offset: -3px;
}
