.faq-page {
    position: relative;
    width: min(1280px, 92%);
    margin: 0 auto;
    padding: 42px 0 72px;
    isolation: isolate;
}

.faq-page-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 10%, rgba(201, 109, 58, 0.14), transparent 22%),
        radial-gradient(circle at 90% 0%, rgba(43, 157, 97, 0.12), transparent 16%),
        linear-gradient(180deg, #fcfaf7 0%, #ffffff 42%, #fbf6ef 100%);
}

.faq-page::before,
.faq-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
    z-index: -1;
}

.faq-page::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 120px;
    background: radial-gradient(circle, rgba(201, 109, 58, 0.14), transparent 64%);
}

.faq-page::after {
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: 140px;
    background: radial-gradient(circle, rgba(43, 157, 97, 0.12), transparent 66%);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
    gap: 24px;
    align-items: start;
}

.faq-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-section,
.faq-bottom-cta,
.faq-sidebar-card,
.faq-sidebar-empty,
.faq-sidebar-property {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 34, 27, 0.08);
    box-shadow: 0 18px 40px rgba(31, 26, 22, 0.08);
    backdrop-filter: blur(8px);
}

.faq-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    color: #b45a2a;
}

.faq-bottom-cta .btn {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-section {
    border-radius: 28px;
    padding: 26px;
}

.faq-section-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.faq-section-head p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 800;
    color: #b45a2a;
}

.faq-section-head h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.05;
    color: #18212f;
}

.faq-section-head span {
    color: #5d6978;
    max-width: 70ch;
    line-height: 1.7;
}

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

.faq-item {
    border: 1px solid rgba(47, 34, 27, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #fbf7f1);
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(201, 109, 58, 0.16);
    box-shadow: 0 12px 26px rgba(31, 26, 22, 0.08);
}

.faq-item summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
}

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

.faq-item-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cf6a2f, #e28648);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(207, 106, 47, 0.18);
}

.faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: #18212f;
    line-height: 1.45;
}

.faq-plus {
    width: 18px;
    height: 18px;
    position: relative;
    opacity: 0.85;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    background: #8c4a28;
    border-radius: 999px;
}

.faq-plus::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-plus::after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px;
}

.faq-item[open] .faq-plus::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 18px 18px 68px;
    color: #4b5563;
    line-height: 1.75;
}

.faq-answer p {
    margin: 0;
}

.faq-bottom-cta {
    margin-top: 18px;
    border-radius: 28px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-bottom-cta h2 {
    margin: 4px 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.05;
    color: #18212f;
    max-width: 16ch;
}

.faq-bottom-cta p {
    margin: 0;
    color: #5d6978;
    max-width: 58ch;
    line-height: 1.7;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-sidebar-card {
    border-radius: 28px;
    padding: 22px;
}

.faq-sidebar-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 800;
    color: #b45a2a;
}

.faq-sidebar-card h2 {
    margin: 0 0 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.6rem;
    line-height: 1.08;
    color: #18212f;
}

.faq-sidebar-copy {
    margin: 0;
    color: #5d6978;
    line-height: 1.65;
}

.faq-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-sidebar-property {
    border-radius: 22px;
    overflow: hidden;
}

.faq-sidebar-property-media {
    position: relative;
    display: block;
}

.faq-sidebar-property-media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.faq-sidebar-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
}

.faq-sidebar-property-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-sidebar-property-body h3 {
    font-size: 1rem;
    line-height: 1.35;
    color: #18212f;
    margin: 0;
}

.faq-sidebar-property-location {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.faq-sidebar-property-price {
    color: #b91c1c;
    font-weight: 700;
    margin: 0;
}

.faq-sidebar-property-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.faq-sidebar-empty {
    border-radius: 22px;
    padding: 18px;
}

.faq-sidebar-empty p {
    margin: 0 0 12px;
    color: #5d6978;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .faq-page {
        width: min(100%, 100%);
        padding: 20px 14px 60px;
    }

    .faq-section,
    .faq-bottom-cta,
    .faq-sidebar-card,
    .faq-sidebar-empty,
    .faq-sidebar-property {
        border-radius: 22px;
    }

    .faq-section {
        padding: 20px;
    }

    .faq-item summary {
        padding: 14px 15px;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 15px 16px 61px;
    }

    .faq-bottom-cta {
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .faq-bottom-cta h2 {
        max-width: 100%;
    }

    .faq-sidebar-property-actions {
        grid-template-columns: 1fr;
    }

    .faq-sidebar-property-media img {
        height: 160px;
    }
}
