/* FAQ accordion styles — shared across all content pages.
 * Depends on :root variables defined in each page's inline <style>. */

.faq-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* City/hub pages use wider layout */
.section .faq-section {
    max-width: none;
    padding: 0;
    margin: 3rem 0 0;
}

.faq-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.4;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--ring-gold);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.faq-chevron svg {
    width: 20px;
    height: 20px;
    stroke: var(--ring-gold);
    stroke-width: 2.5;
    fill: none;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.faq-answer-inner a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--ring-gold);
    text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
    color: var(--ring-gold);
}

@media (max-width: 640px) {
    .faq-section {
        padding: 0 1.25rem;
        margin: 2rem auto;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .faq-answer-inner {
        font-size: 0.95rem;
    }
}
