/* ════════════════════════════════════════════════════════
   FAQ — Le Mas de Louise
════════════════════════════════════════════════════════ */

.faq-categories-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 88px max(5vw, 24px) 96px;
}

.faq-category {
    margin-bottom: 64px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-label {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #9B7E54;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197, 180, 154, 0.35);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 180, 154, 0.28);
}

.faq-item:first-child {
    border-top: 1px solid rgba(197, 180, 154, 0.28);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 4px;
    font-family: "Playfair Display", serif;
    font-size: 1.12rem;
    font-weight: 400;
    color: #1B2744;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

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

.faq-question-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}

.faq-question-icon::before,
.faq-question-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #C5B49A;
    transition: transform 0.3s ease;
}

.faq-question-icon::before {
    width: 14px;
    height: 1px;
    transform: translate(-50%, -50%);
}

.faq-question-icon::after {
    width: 1px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-question-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-question {
    color: #9B7E54;
}

.faq-answer {
    padding: 0 4px 26px;
    max-width: 640px;
}

.faq-answer p {
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6B7A8D;
    margin: 0;
}

@media (max-width: 640px) {
    .faq-categories-wrap { padding: 64px 20px 72px; }
    .faq-question { font-size: 1rem; padding: 20px 2px; }
}
