/*
 * Homepage — what belongs to the homepage and to nothing else.
 *
 * Everything the homepage shares with the showcase pages (the paper, the tears,
 * the full-frame gallery, the cards, the CTA band, the three entrance gestures)
 * lives in scrapbook.css, which this file is loaded after. Only the host
 * section and the placement of the two frond watermarks are genuinely home-only.
 */

/* The watermark's placement is per-section, so it stays with the page that
   authors the section. */
.vo3-frond--intro {
    top: 40px;
    right: -70px;
    transform: rotate(18deg);
}

.vo3-frond--offers {
    top: 60px;
    left: -90px;
    transform: rotate(-24deg) scaleX(-1);
}

/* ==========================================================================
   Hero — feature badges under the subtitle
   ========================================================================== */

/* Slightly wider than the shared shell default: the client's longer subtitle
   (four clauses) needs the room, and widening it here — rather than in the
   shared shell.css — keeps the showcase pages' shorter subtitles unaffected. */
#accueil .vo-hero__subtitle {
    max-width: 620px;
}

.vo3-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.vo3-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(250, 246, 238, .14);
    border: 1px solid rgba(250, 246, 238, .32);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 600;
    color: var(--vo-cream);
    white-space: normal;
}

/* ==========================================================================
   L'hôte
   ========================================================================== */

.vo3-host {
    padding-block: clamp(30px, 4vw, 50px) clamp(80px, 9vw, 130px);
}

.vo3-host__stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.vo3-host__stat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--vo-muted);
}

.vo3-host__stat span {
    display: block;
    font-family: var(--vo-font-serif);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--vo-ink);
}

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

@media (max-width: 900px) {
    /* The stacking and centring come from .vo3-spread (scrapbook.css). */
    .vo3-host__stats {
        justify-content: center;
    }
}
