.faq-hero {
    position: relative;
    min-height: 52vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #241611;
}

.faq-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(25, 17, 12, 0.1), rgba(25, 17, 12, 0.7)),
        linear-gradient(90deg, rgba(56, 24, 12, 0.78), rgba(56, 24, 12, 0.22));
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    color: #fffaf2;
    padding: 118px 0 56px;
    max-width: 760px;
}

.faq-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: #f0d7a1;
    margin-bottom: 12px;
}

.faq-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 0.98;
    margin: 0 0 14px;
}

.faq-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 62ch;
}

.faq-page-section {
    background:
        radial-gradient(circle at top right, rgba(215, 179, 68, 0.12), transparent 28%),
        linear-gradient(180deg, #fffaf4, #f6efe4);
}

.faq-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.faq-page-head h2 {
    margin-bottom: 8px;
}

.faq-page-head p {
    margin: 0;
    max-width: 68ch;
    color: #5d5346;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid #ece5d8;
    background: #fff;
    border-radius: 14px;
    padding: 15px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.faq-list details[open] {
    border-color: #d7b344;
    background: #fff;
    box-shadow: 0 12px 26px rgba(24, 21, 17, 0.1);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: #2f2f2f;
    list-style: none;
    position: relative;
    padding-right: 24px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #8b5a2b;
    font-weight: 700;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list summary:focus-visible {
    outline: 2px solid #1f2937;
    outline-offset: 2px;
}

.faq-list details p {
    margin-top: 10px;
    margin-bottom: 0;
    color: #4a5564;
}

@media (max-width: 780px) {
    .faq-page-head {
        align-items: start;
        flex-direction: column;
    }

    .faq-hero-content {
        padding-top: 108px;
    }
}
