/*
 * FAQ page — séjour (terracotta). Two additions over the shared scrapbook
 * language: the "Services en option" note reuses the amenities chip pattern
 * as-is, and the questions themselves use native <details>/<summary>, which
 * needs no JS and nothing the CSP would strip.
 */

.vo-faq__note-lead {
    margin-top: 14px;
    margin-bottom: 6px;
}

/* ==========================================================================
   Questions
   ========================================================================== */

.vo-faq {
    padding-block: clamp(30px, 4vw, 60px) clamp(80px, 9vw, 130px);
}

.vo-faq__inner {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.vo-faq__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 20px) clamp(30px, 4vw, 64px);
    margin-top: 54px;
    text-align: left;
}

.vo-faq__group {
    padding-bottom: 10px;
}

.vo-faq__group-title {
    font-family: var(--vo-font-serif);
    font-weight: 500;
    font-size: 20px;
    color: var(--vo3-accent);
    margin: 0 0 8px;
}

.vo-faq__item {
    border-top: 1px solid rgba(33, 28, 23, .12);
}

.vo-faq__item:last-of-type {
    border-bottom: 1px solid rgba(33, 28, 23, .12);
}

/* Native disclosure marker, stripped so the hand-drawn "+" below is the only
   affordance (Chrome/Safari via ::-webkit-details-marker, Firefox via the
   list-style it renders the summary's own marker with). */
.vo-faq__question {
    list-style: none;
}

.vo-faq__question::-webkit-details-marker {
    display: none;
}

.vo-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 40px;
    padding: 13px 2px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
}

.vo-faq__question::after {
    content: '+';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vo-font-serif);
    font-size: 20px;
    line-height: 1;
    color: var(--vo3-accent);
    transition: transform .25s ease;
}

.vo-faq__item[open] .vo-faq__question::after {
    transform: rotate(45deg);
}

.vo-faq__answer {
    /* Clips the body while faq-accordion_controller.js eases its height;
       costs nothing at rest, where the height is auto. */
    overflow: hidden;
    padding: 0 2px 18px;
    color: var(--vo-muted);
    font-size: 15px;
    line-height: 1.7;
}

.vo-faq__answer p {
    margin: 0;
}

.vo-faq__answer p + ul,
.vo-faq__answer ul + p {
    margin-top: 8px;
}

.vo-faq__answer ul {
    margin: 0;
    padding-left: 20px;
}

.vo-faq__answer li {
    margin-bottom: 2px;
}

.vo-faq__answer a {
    color: var(--vo3-accent);
}

/* A cross-reference to another page, kept out of the running sentence so its
   tap target isn't squeezed to the text's line-height (a phone-width control
   needs 40px, see CLAUDE.md). */
.vo-faq__answer-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-top: 4px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 700px) {
    .vo-faq__groups {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    .vo-faq__group {
        padding-bottom: 4px;
    }
}
