/* ── Hero ── */
.fq-hero {
    background: #141824;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.fq-hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(145,118,90,.05);
    pointer-events: none;
}
.fq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(145,118,90,.07) 0%, transparent 55%);
}
.fq-hero-inner { position: relative; z-index: 1; }

.fq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #91765a;
    margin-bottom: 22px;
}
.fq-breadcrumb a { color: #91765a; text-decoration: none; }
.fq-breadcrumb a:hover { color: #b59a6e; }
.fq-breadcrumb i { font-size: 9px; color: #3a3f52; }

.fq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(145,118,90,.12);
    border: 1px solid rgba(145,118,90,.25);
    color: #91765a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.fq-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #91765a;
    flex-shrink: 0;
}
.fq-h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #e8e2da;
    line-height: 1.2;
    margin: 0 0 20px;
}
.fq-sub {
    font-size: 15px;
    color: #888;
    max-width: 580px;
    line-height: 1.8;
    margin: 0;
}

/* ── Body ── */
.fq-body {
    background: #fff;
    padding: 80px 0 60px;
}

/* ── Category block ── */
.fq-category-block { margin-bottom: 56px; }
.fq-category-block:last-child { margin-bottom: 0; }

.fq-cat-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0ece6;
    position: relative;
}
.fq-cat-label::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 50px; height: 2px;
    background: #91765a;
}
.fq-cat-icon {
    width: 36px; height: 36px;
    background: rgba(145,118,90,.1);
    border-radius: 8px;
    color: #91765a;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fq-cat-label h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3rem;
    color: #141824;
    margin: 0;
}

/* ── Accordion ── */
.fq-accordion { max-width: 860px; }

.fq-item {
    border-bottom: 1px solid #ede8e2;
    overflow: hidden;
}
.fq-item:first-child { border-top: 1px solid #ede8e2; }

.fq-q {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.fq-num {
    font-size: 11px;
    font-weight: 700;
    color: #91765a;
    letter-spacing: 1px;
    width: 26px;
    flex-shrink: 0;
}
.fq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #141824;
    line-height: 1.4;
    transition: color .2s;
}
.fq-item.open .fq-q-text,
.fq-q:hover .fq-q-text { color: #91765a; }

.fq-toggle {
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    color: #bbb;
    font-size: 12px;
    transition: transform .3s, color .2s;
    flex-shrink: 0;
}
.fq-item.open .fq-toggle { transform: rotate(45deg); color: #91765a; }

.fq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.fq-a-inner {
    padding: 0 44px 22px;
    font-size: 14.5px;
    color: #666;
    line-height: 1.9;
}
.fq-item.open .fq-a { max-height: 500px; }

/* ── CTA ── */
.fq-cta {
    background: #f7f5f2;
    padding: 60px 0;
    border-top: 3px solid;
    border-image: linear-gradient(to right, #91765a, #b59a6e, #91765a) 1;
}
.fq-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.fq-cta-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #91765a;
    display: block;
    margin-bottom: 10px;
}
.fq-cta-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #141824;
    margin: 0 0 8px;
}
.fq-cta-text p { font-size: 14px; color: #888; margin: 0; }

.fq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.fq-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #141824;
    color: #91765a;
    border: 1px solid #141824;
    padding: 13px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all .2s;
}
.fq-btn-primary:hover { background: #91765a; border-color: #91765a; color: #fff; }

.fq-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #141824;
    border: 1px solid #141824;
    padding: 13px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all .2s;
}
.fq-btn-ghost:hover { background: #141824; color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .fq-cta-inner { flex-direction: column; align-items: flex-start; }
    .fq-a-inner { padding-left: 20px; }
    .fq-hero { padding: 60px 0 50px; }
    .fq-body { padding: 50px 0 40px; }
}
