.faq-page {
    background: #f4eee6;
    color: #26221f;
}

.faq-shell {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
}

.faq-hero {
    padding: 110px 0 96px;
    text-align: center;
    border-bottom: 1px solid rgba(72, 58, 48, 0.16);
}

.faq-hero .faq-shell {
    max-width: 940px;
}

.faq-eyebrow,
.faq-section-heading > span {
    display: block;
    margin-bottom: 18px;
    color: #987457;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.faq-hero h1,
.faq-section-heading h2,
.faq-final-contact h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
}

.faq-hero h1 {
    font-size: clamp(52px, 6vw, 88px);
}

.faq-hero p {
    max-width: 760px;
    margin: 26px auto 34px;
    color: #6d635c;
    font-size: 18px;
    line-height: 1.75;
}

.faq-contact-button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
    background: #27221e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.faq-contact-button:hover,
.faq-contact-button:focus-visible {
    background: #9b7659;
}

.faq-category-nav {
    position: sticky;
    z-index: 5;
    top: 0;
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid rgba(72, 58, 48, 0.14);
    backdrop-filter: blur(10px);
}

.faq-category-links {
    display: flex;
    gap: 30px;
    padding: 22px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.faq-category-links a {
    flex: 0 0 auto;
    color: #3d3732;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.faq-category-links a:hover,
.faq-category-links a:focus-visible {
    color: #9b7659;
}

.faq-sections {
    padding: 28px 0 110px;
}

.faq-section {
    padding: 82px 0;
    scroll-margin-top: 80px;
    border-bottom: 1px solid rgba(72, 58, 48, 0.16);
}

.faq-section-heading {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
    column-gap: 70px;
    margin-bottom: 42px;
}

.faq-section-heading > span {
    grid-column: 1;
    margin-bottom: 12px;
}

.faq-section-heading h2 {
    grid-column: 1;
    font-size: clamp(40px, 4vw, 58px);
}

.faq-section-heading p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0;
    color: #71675f;
    font-size: 17px;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.faq-item {
    background: #fffdf9;
    border: 1px solid rgba(72, 58, 48, 0.18);
}

.faq-item summary {
    display: flex;
    min-height: 78px;
    padding: 22px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    list-style: none;
}

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

.faq-toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-toggle::before,
.faq-toggle::after {
    position: absolute;
    top: 8px;
    left: 1px;
    width: 16px;
    height: 1px;
    background: #8d6c52;
    content: "";
}

.faq-toggle::after {
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle::after {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 24px 26px;
    color: #6d635c;
    font-size: 15px;
    line-height: 1.75;
}

.faq-answer p {
    margin: 0 0 15px;
}

.faq-answer a {
    color: #7e5d44;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-final-contact {
    margin-top: 90px;
    padding: 74px 40px;
    background: #27221e;
    color: #fff;
    text-align: center;
}

.faq-final-contact h2 {
    font-size: clamp(42px, 5vw, 66px);
}

.faq-final-contact p {
    max-width: 680px;
    margin: 22px auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.faq-final-contact .faq-contact-button {
    background: #f1e4d5;
    color: #27221e;
}

@media (max-width: 900px) {
    .faq-section-heading {
        display: block;
    }

    .faq-section-heading p {
        margin-top: 20px;
    }

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

@media (max-width: 640px) {
    .faq-shell {
        width: min(100% - 32px, 1500px);
    }

    .faq-hero {
        padding: 72px 0 64px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-category-links {
        gap: 22px;
        padding: 18px 0;
    }

    .faq-section {
        padding: 62px 0;
    }

    .faq-item summary {
        min-height: 70px;
        padding: 19px;
    }

    .faq-answer {
        padding: 0 19px 22px;
    }

    .faq-final-contact {
        padding: 56px 22px;
    }
}
