/* ═══════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.fq-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── HERO ────────────────────────────────────────────────── */
.fq-hero {
    padding: 80px 0 32px;
    background: var(--paper-warm);
}

.fq-title {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-top: 20px;
    margin-bottom: 0;
}

.fq-title em {
    font-style: italic;
    color: var(--red);
}

.fq-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.65;
    color: var(--ink-muted);
    max-width: 680px;
    margin-top: 24px;
}

/* ── BODY ────────────────────────────────────────────────── */
.fq-body {
    padding: 32px 0 120px;
}

.fq-body-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

/* ── SIDEBAR NAV ─────────────────────────────────────────── */
.fq-nav {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fq-nav-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    padding: 10px 16px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.fq-nav-link:hover {
    color: var(--ink);
    background: var(--paper-warm);
}

.fq-nav-link.is-active {
    color: var(--red);
    border-left-color: var(--red);
    background: var(--paper-warm);
}

/* ── SECTIONS FAQ ────────────────────────────────────────── */
.fq-sections {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.fq-section-title {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.fq-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ── ITEMS ───────────────────────────────────────────────── */
.fq-list {
    display: flex;
    flex-direction: column;
}

.fq-item {
    border-top: 1px solid var(--line);
}

.fq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.fq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    text-align: left;
}

.fq-question-text {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
}

.fq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    transition: transform 0.3s, border-color 0.2s, color 0.2s;
}

.fq-item.is-open .fq-icon {
    transform: rotate(45deg);
    border-color: var(--red);
    color: var(--red);
}

.fq-answer {
    display: none;
    padding: 0 48px 24px 0;
}

.fq-item.is-open .fq-answer {
    display: block;
}

.fq-answer p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.fq-answer p:last-child {
    margin-bottom: 0;
}

.fq-answer strong {
    color: var(--ink);
    font-weight: 600;
}

/* ── CTA ─────────────────────────────────────────────────── */
.fq-cta {
    background: var(--paper-warm);
    padding: 80px 0;
}

.fq-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.fq-cta-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
}

.fq-cta-title em {
    font-style: italic;
    color: var(--red);
}

.fq-cta-desc {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 36px;
}

.fq-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .fq-body-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fq-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .fq-nav-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 4px;
    }

    .fq-nav-link.is-active {
        border-left: none;
        border-bottom-color: var(--red);
    }
}

@media (max-width: 600px) {
    .fq-answer {
        padding-right: 0;
    }

    .fq-hero { padding: 40px 0; }
    .fq-cta  { padding: 48px 0; }
}
