/*
 * Le séjour — terracotta.
 *
 * The house's own chapter, so it keeps the house's gesture: the washing line of
 * the gallery is authored in scrapbook.css and used here as-is. Only the garden
 * spread and the practical-facts list are page-specific.
 */

.vo-sejour__frond {
    top: 30px;
    left: -80px;
    transform: rotate(-14deg) scaleX(-1);
}

/* ==========================================================================
   Le jardin — two taped photographs, the copy beside them
   ========================================================================== */

.vo-sejour__garden {
    background: var(--vo3-paper-deep);
    padding-block: clamp(70px, 8vw, 110px);
}

/* The two-column composition itself is .vo3-spread (scrapbook.css), shared with
   the host section on the homepage. Only the overlapping prints are page-specific. */
.vo-sejour__garden-photos {
    flex: 0 0 auto;
    display: flex;
    gap: 26px;
}

/* The pair overlaps like two prints dropped on the table — the second sits a
   little lower and leans the other way, so they never read as a grid. */
.vo-sejour__garden-photo {
    max-width: 260px;
}

.vo-sejour__garden-photo:nth-of-type(2) {
    --rot: 3deg;
    margin-top: 46px;
}

.vo-sejour__garden-chips {
    justify-content: flex-start;
    margin-top: 30px;
}

/* ==========================================================================
   En pratique
   ========================================================================== */

.vo-sejour__practical {
    padding-block: clamp(20px, 3vw, 40px) clamp(80px, 9vw, 130px);
}

.vo-sejour__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 44px);
    margin: 48px 0 0;
}

.vo-sejour__fact {
    padding-top: 20px;
    border-top: 1px solid rgba(33, 28, 23, .16);
}

.vo-sejour__fact dt {
    font-family: var(--vo-font-serif);
    font-size: 22px;
    margin-bottom: 10px;
}

.vo-sejour__fact dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--vo-muted);
}

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

@media (max-width: 900px) {
    /* .vo3-spread already stacks and centres; the prints just need to stay big. */
    .vo-sejour__garden-photos {
        align-self: center;
    }

    .vo-sejour__garden-photo {
        max-width: 46vw;
    }

    .vo-sejour__garden-chips {
        justify-content: center;
    }

    .vo-sejour__facts {
        grid-template-columns: 1fr;
    }
}
