/* NÜMO FAQ — native <details>/<summary> accordion. No JS needed. */
.faq {
    background: var(--bg-0, #07060a);
    padding: 64px 22px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}
.faq__inner {
    max-width: 720px;
    margin: 0 auto;
}
.faq__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5704d;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: center;
}
.faq__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 0 0 36px;
    color: #f4ece4;
    text-align: center;
    line-height: 1.1;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: #0f0d12;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq__item[open] {
    border-color: rgba(197, 112, 77, .35);
}
.faq__item summary {
    /* Native disclosure widget styling. Remove default marker, use our own. */
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #f4ece4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #c5704d;
    color: #c5704d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 0;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq__item[open] summary::after {
    content: "−";
    background: #c5704d;
    color: #07060a;
}
.faq__answer {
    padding: 0 22px 20px;
    color: #c8bdb1;
    font-size: 14px;
    line-height: 1.65;
}
.faq__answer p { margin: 0 0 10px; }
.faq__answer p:last-child { margin: 0; }
.faq__answer a { color: #c5704d; text-decoration: underline; text-underline-offset: 2px; }

@media (min-width: 720px) {
    .faq { padding: 96px 32px; }
    .faq__title { margin-bottom: 48px; }
    .faq__item summary { padding: 22px 28px; font-size: 16px; }
    .faq__answer { padding: 0 28px 24px; font-size: 15px; }
}
