/* ============================================================
   FAQ — 2025 magazine redesign, scoped to .faqPage2025
   ============================================================ */
.faqPage2025 {
    --fq-cream:      var(--rd-cream, #f5f1e8);
    --fq-cream-2:    var(--rd-cream-2, #ece5d2);
    --fq-cream-3:    var(--rd-cream-3, #faf6ec);
    --fq-green:      var(--rd-green, #1f3d2e);
    --fq-green-2:    var(--rd-green-2, #2c5141);
    --fq-green-3:    var(--rd-green-3, #80956d);
    --fq-orange:     var(--rd-orange, #f08a3a);
    --fq-orange-2:   var(--rd-orange-2, #e6712b);
    --fq-gold:       var(--rd-gold, #d4a849);
    --fq-ink:        #1a2521;
    --fq-muted:      #6b7568;
    --fq-line:       #e3ddc9;
    --fq-line-2:     #d8d0b3;
    --fq-shadow-sm:  0 4px 14px rgba(20,40,30,.06);
    --fq-shadow-md:  0 14px 38px rgba(20,40,30,.10);
    --fq-shadow-lg:  0 28px 70px rgba(20,40,30,.14);
    --fq-radius-sm:  14px;
    --fq-radius:     20px;
    --fq-radius-lg:  28px;
    --fq-serif:      'Times New Roman', Georgia, serif;
}
/* .faqPage2025.mainContent + .fp-wrap moved to redesign-components.css (SHARED PRIMITIVES). */

/* ============================================================
   HERO
   ============================================================ */
.faqPage2025 .fp-hero-section {
    padding: 40px 0 32px;
    background:
        radial-gradient(circle at 88% -10%, rgba(212,168,73,0.16), transparent 50%),
        radial-gradient(circle at -10% 110%, rgba(31,61,46,0.06), transparent 55%),
        linear-gradient(180deg, var(--fq-cream-3) 0%, transparent 70%);
}
.faqPage2025 .fp-hero {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.faqPage2025 .fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--fq-cream-2);
    border: 1px solid var(--fq-line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--fq-green);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.faqPage2025 .fp-eyebrow::before {
    content: '✦';
    color: var(--fq-orange);
}
.faqPage2025 .fp-title {
    font-family: var(--fq-serif);
    font-weight: 600;
    font-size: 64px;
    line-height: 1.04;
    color: var(--fq-green);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.faqPage2025 .fp-title em {
    font-style: italic;
    color: var(--fq-orange);
    font-weight: 500;
}
.faqPage2025 .fp-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--fq-muted);
    max-width: 640px;
    margin: 0 auto 28px;
}

/* ---- Search bar ---- */
.faqPage2025 .fp-search {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid var(--fq-line);
    border-radius: 999px;
    box-shadow: var(--fq-shadow-sm);
    display: flex;
    align-items: center;
}
.faqPage2025 .fp-search:focus-within {
    border-color: var(--fq-green);
    box-shadow: 0 14px 28px rgba(31,61,46,0.14);
}
.faqPage2025 .fp-search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fq-muted);
    font-size: 14px;
    pointer-events: none;
}
.faqPage2025 .fp-search input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 50px 18px 54px;
    font-size: 15px;
    color: var(--fq-ink);
    width: 100%;
    border-radius: 999px;
}
.faqPage2025 .fp-search input::placeholder { color: var(--fq-muted); opacity: 0.8; }
.faqPage2025 .fp-search-clear {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--fq-cream-2);
    color: var(--fq-green);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.faqPage2025 .fp-search-clear.show { display: inline-flex; }
.faqPage2025 .fp-search-clear:hover { background: var(--fq-green); color: #fff; }

/* ---- Popular suggestion chips ---- */
.faqPage2025 .fp-suggest {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.faqPage2025 .fp-suggest-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fq-muted);
    margin-right: 4px;
}
.faqPage2025 .fp-suggest-chip {
    background: #fff;
    border: 1px solid var(--fq-line);
    color: var(--fq-green);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
}
.faqPage2025 .fp-suggest-chip:hover {
    background: var(--fq-green);
    color: #fff;
    border-color: var(--fq-green);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.faqPage2025 .fp-stats-section { padding: 18px 0 30px; }
.faqPage2025 .fp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--fq-green);
    color: #fff;
    border-radius: var(--fq-radius);
    padding: 22px 28px;
    box-shadow: var(--fq-shadow-md);
    position: relative;
    overflow: hidden;
}
.faqPage2025 .fp-stats::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,73,0.30), transparent 60%);
    pointer-events: none;
}
@media (max-width: 767px) { .faqPage2025 .fp-stats { grid-template-columns: repeat(2, 1fr); } }
.faqPage2025 .fp-stat { padding: 4px 18px; position: relative; }
.faqPage2025 .fp-stat + .fp-stat { border-left: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 767px) { .faqPage2025 .fp-stat + .fp-stat { border-left: 0; padding: 12px 18px; } }
.faqPage2025 .fp-stat-value {
    font-family: var(--fq-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: var(--fq-gold);
    margin-bottom: 6px;
}
.faqPage2025 .fp-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.faqPage2025 .fp-archive-section { padding: 26px 0 16px; }
.faqPage2025 .fp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.faqPage2025 .fp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fq-green);
    margin-bottom: 8px;
}
.faqPage2025 .fp-section-eyebrow::before {
    content: '✦';
    color: var(--fq-orange);
}
.faqPage2025 .fp-section-title {
    font-family: var(--fq-serif);
    font-weight: 600;
    font-size: 38px;
    line-height: 1.05;
    color: var(--fq-green);
    margin: 0;
    letter-spacing: -0.015em;
}
.faqPage2025 .fp-section-title em {
    font-style: italic;
    color: var(--fq-orange);
    font-weight: 500;
}
.faqPage2025 .fp-section-deck {
    color: var(--fq-muted);
    font-size: 14px;
}
.faqPage2025 .fp-section-deck a {
    color: var(--fq-green);
    font-weight: 700;
    text-decoration: none !important;
}
.faqPage2025 .fp-section-deck a:hover { color: var(--fq-orange); }

/* ============================================================
   LAYOUT: sticky topic rail + accordion groups
   ============================================================ */
.faqPage2025 .fp-main {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
@media (max-width: 1199px) {
    .faqPage2025 .fp-main { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- Sticky topic rail ---- */
.faqPage2025 .fp-topics-rail {
    background: var(--fq-cream-3);
    border: 1px solid var(--fq-line);
    border-radius: var(--fq-radius);
    padding: 22px 18px;
    position: sticky;
    top: 96px;
    box-shadow: var(--fq-shadow-sm);
}
@media (max-width: 1199px) {
    .faqPage2025 .fp-topics-rail { position: static; }
}
.faqPage2025 .fp-rail-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fq-muted);
    margin-bottom: 10px;
    padding-left: 6px;
}
.faqPage2025 .fp-rail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faqPage2025 .fp-rail-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--fq-green);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
}
.faqPage2025 .fp-rail-link:hover,
.faqPage2025 .fp-rail-link.is-active {
    background: #fff;
    color: var(--fq-green);
    box-shadow: var(--fq-shadow-sm);
}
.faqPage2025 .fp-rail-num {
    font-family: var(--fq-serif);
    font-style: italic;
    color: var(--fq-orange);
    font-size: 13px;
    width: 24px;
    flex-shrink: 0;
}
.faqPage2025 .fp-rail-name { flex: 1; min-width: 0; }
.faqPage2025 .fp-rail-count {
    background: var(--fq-cream-2);
    color: var(--fq-muted);
    border-radius: 999px;
    padding: 2px 9px;
    font-size: 11px;
    font-weight: 700;
}

/* ---- Accordion groups ---- */
.faqPage2025 .fp-groups { display: flex; flex-direction: column; gap: 24px; }

.faqPage2025 .fp-group {
    background: #fff;
    border: 1px solid var(--fq-line);
    border-radius: var(--fq-radius-lg);
    padding: 30px 36px;
    box-shadow: var(--fq-shadow-sm);
}
@media (max-width: 575px) {
    .faqPage2025 .fp-group { padding: 22px 22px; }
}
.faqPage2025.is-filtered .fp-group.is-empty { display: none; }
.faqPage2025 .fp-item.is-hidden { display: none; }

.faqPage2025 .fp-group-head {
    border-bottom: 1px solid var(--fq-line);
    padding-bottom: 16px;
    margin-bottom: 8px;
    /* offset for sticky scroll target */
    scroll-margin-top: 96px;
}
.faqPage2025 .fp-group-title {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-family: var(--fq-serif);
    font-weight: 600;
    color: var(--fq-green);
    margin: 0;
    line-height: 1.1;
    font-size: 28px;
    scroll-margin-top: 96px;
}
.faqPage2025 .fp-group-num {
    font-style: italic;
    color: var(--fq-orange);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
}
.faqPage2025 .fp-group-name { flex: 1; min-width: 0; }
.faqPage2025 .fp-group-count {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fq-muted);
    background: var(--fq-cream-3);
    border-radius: 999px;
    padding: 5px 12px;
}

/* Accordion item */
.faqPage2025 .fp-item {
    border-bottom: 1px solid var(--fq-line);
    padding: 4px 0;
}
.faqPage2025 .fp-item:last-child { border-bottom: 0; }
.faqPage2025 .fp-item .card-header {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.faqPage2025 .fp-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 4px;
    color: var(--fq-green);
    text-decoration: none !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}
.faqPage2025 .fp-q:hover { color: var(--fq-orange); }
.faqPage2025 .fp-q-text { flex: 1; min-width: 0; }
.faqPage2025 .fp-toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--fq-cream-3);
    border: 1px solid var(--fq-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fq-green);
}
.faqPage2025 .fp-toggle svg {
    transition: opacity 0.2s ease;
}
/* Plus → X rotation when the answer is open
   (Bootstrap toggles aria-expanded="true" + removes .collapsed) */
.faqPage2025 .fp-q:not(.collapsed) .fp-toggle {
    background: var(--fq-green);
    color: #fff;
    border-color: var(--fq-green);
}
.faqPage2025 .fp-q:not(.collapsed) .fp-toggle svg {
    /* turn + into × by rotating the vertical stroke 45° via parent */
}
.faqPage2025 .fp-q:not(.collapsed) .fp-toggle {
    transform: rotate(45deg);
}
.faqPage2025 .fp-a {
    padding: 0 0 18px 0 !important;
    color: #3a3a3a;
    font-size: 15px;
    line-height: 1.7;
    background: transparent;
    border: 0;
}
.faqPage2025 .fp-a p { margin: 0; font-family: 'Inter', system-ui, sans-serif; }
.faqPage2025 .fp-a strong { color: var(--fq-green); }
.faqPage2025 .fp-a em { color: var(--fq-orange); font-style: italic; }
.faqPage2025 .fp-a a {
    color: var(--fq-green);
    text-decoration: underline;
    text-decoration-color: var(--fq-orange);
    text-underline-offset: 3px;
}

/* Bootstrap collapse helpers */
.faqPage2025 .collapse { display: none; }
.faqPage2025 .collapse.show { display: block; }
.faqPage2025 .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
}

/* ---- Empty state ---- */
.faqPage2025 .fp-empty {
    display: none;
    text-align: center;
    background: #fff;
    border: 1px dashed var(--fq-line-2);
    border-radius: var(--fq-radius);
    padding: 56px 24px;
    box-shadow: var(--fq-shadow-sm);
}
.faqPage2025 .fp-empty-icon {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 14px;
}
.faqPage2025 .fp-empty-title {
    font-family: var(--fq-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--fq-green);
    font-size: 26px;
    margin: 0 0 8px;
}
.faqPage2025 .fp-empty p {
    color: var(--fq-muted);
    max-width: 420px;
    margin: 0 auto 18px;
    font-size: 14px;
}
.faqPage2025 .fp-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--fq-green);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.faqPage2025 .fp-cta-section { padding: 40px 0 64px; }
.faqPage2025 .fp-cta {
    background:
        radial-gradient(circle at 88% -10%, rgba(212,168,73,0.30), transparent 55%),
        radial-gradient(circle at -10% 110%, rgba(255,255,255,0.06), transparent 50%),
        linear-gradient(135deg, var(--fq-green) 0%, var(--fq-green-2) 100%);
    color: #fff;
    border-radius: var(--fq-radius-lg);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--fq-shadow-lg);
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .faqPage2025 .fp-cta { grid-template-columns: 1fr; padding: 40px 28px; }
}
.faqPage2025 .fp-cta::after {
    content: '✦';
    position: absolute;
    bottom: -28px;
    right: 36px;
    font-size: 200px;
    color: rgba(212,168,73,0.10);
    pointer-events: none;
    line-height: 1;
}
.faqPage2025 .fp-cta-copy { position: relative; z-index: 1; }
.faqPage2025 .fp-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fq-gold);
    margin-bottom: 8px;
}
.faqPage2025 .fp-cta-eyebrow::before {
    content: '✦';
    color: var(--fq-gold);
}
.faqPage2025 .fp-cta-title {
    font-family: var(--fq-serif);
    font-weight: 600;
    font-size: 44px;
    line-height: 1.04;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
}
.faqPage2025 .fp-cta-title em {
    font-style: italic;
    color: var(--fq-gold);
    font-weight: 500;
}
.faqPage2025 .fp-cta-sub {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0;
}
.faqPage2025 .fp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) { .faqPage2025 .fp-cta-actions { flex-direction: row; flex-wrap: wrap; } }

.faqPage2025 .fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none !important;
    border: 1px solid transparent;
}
.faqPage2025 .fp-btn-gold {
    background: var(--fq-gold);
    color: #1c1208;
    box-shadow: 0 8px 18px rgba(212,168,73,0.30);
}
.faqPage2025 .fp-btn-gold:hover { background: #c89738; color: #1c1208; }
.faqPage2025 .fp-btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.30);
}
.faqPage2025 .fp-btn-ghost-light:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
}

/* ============================================================
   Responsive trims
   ============================================================ */
@media (max-width: 991px) {
    .faqPage2025 .fp-title { font-size: 44px; }
    .faqPage2025 .fp-section-title { font-size: 30px; }
    .faqPage2025 .fp-group-title { font-size: 22px; }
    .faqPage2025 .fp-cta-title { font-size: 32px; }
}
@media (max-width: 575px) {
    .faqPage2025 .fp-wrap { padding: 0 16px; }
    .faqPage2025 .fp-title { font-size: 36px; }
}
