.faq {
    padding: 72px 0;
    background: var(--cream);
}
.faq-header {
    max-width: 640px;
    margin-bottom: 36px;
}
.faq-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 10px;
}
.faq-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 10px;
}
.faq-sub {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--slate);
}
.faq-list {
    border-top: 1px solid rgba(26,26,46,0.08);
    max-width: 760px;
}
.faq-item {
    border-bottom: 1px solid rgba(26,26,46,0.08);
}
.faq-item[open] > .faq-q {
    color: var(--ink);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:focus { outline: 2px solid var(--rust); outline-offset: 4px; border-radius: 4px; }
.faq-q:hover { color: var(--rust); }
.faq-icon {
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--rust);
    line-height: 1;
    transition: transform 0.2s ease;
}
.faq-item[open] > .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
    padding: 0 4px 22px;
}
.faq-a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    max-width: 620px;
}
@media (max-width: 768px) {
    .faq { padding: 56px 0; }
    .faq-q { font-size: 0.98rem; padding: 16px 0; }
    .faq-a p { font-size: 0.92rem; }
}
