:root {
    --ink: #0a0a0a;
    --ink-soft: #2a2a2a;
    --muted: #5a5a5a;
    --surface: #ffffff;
    --section-projet-bg: #e9eaef;
    --page-canvas: #e8e8e8;
    --accent: #e60012;
    --accent-hover: #c40010;
    --instagram: #ff0069;
    --instagram-hover: #e6005f;
    --header-h: 4.5rem;
    --header-float-top: clamp(0.65rem, 1.4vw, 1.1rem);
    --header-float-inline: clamp(0.65rem, 2vw, 1.35rem);
    --header-float-radius: 999px;
    --scroll-margin-top: calc(var(--header-float-top) + var(--header-h) + 1rem);
    --font: "Outfit", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--page-canvas);
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--page-canvas);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
    border: 2px solid var(--page-canvas);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

html::-webkit-scrollbar-corner {
    background: var(--page-canvas);
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: var(--font);
    background: var(--page-canvas);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ——— Header (barre flottante, non collée aux bords — réf. style éditorial) ——— */
.site-header {
    position: fixed;
    z-index: 100;
    top: var(--header-float-top);
    left: 50%;
    transform: translateX(-50%);
    width: min(1320px, calc(100% - 2 * var(--header-float-inline)));
    background: var(--surface);
    border-radius: var(--header-float-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 18px 48px rgba(0, 0, 0, 0.1);
}

.nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    padding-inline: clamp(0.85rem, 2.5vw, 1.75rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    flex-shrink: 0;
}

.brand-logo {
    width: clamp(2rem, 4vw, 2.5rem);
    height: clamp(2rem, 4vw, 2.5rem);
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    font-weight: 800;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    letter-spacing: -0.03em;
    line-height: 1;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 0.45rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 999px;
    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.28rem;
    width: 0;
    height: 2px;
    border-radius: 1px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.22s ease;
    pointer-events: none;
}

.nav-links a:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.nav-links a:hover::after {
    width: calc(100% - 1.7rem);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.nav-links a:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .nav-links a,
    .nav-links a::after {
        transition-duration: 0.01ms;
    }

    .nav-links a:hover,
    .nav-links a:active {
        transform: none;
    }

    .hero-cta-combo__lab,
    .hero-cta-combo--events .hero-cta-combo__lab--projet,
    .hero-cta-combo--events .hero-cta-combo__lab--events,
    .hero-cta-combo--carte .hero-cta-combo__lab--projet,
    .hero-cta-combo--carte .hero-cta-combo__lab--events,
    .hero-cta-combo--carte .hero-cta-combo__lab--carte,
    .hero-cta-combo--faq .hero-cta-combo__lab--faq {
        transition-duration: 0.01ms;
        transition-delay: 0s;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
}

main {
    margin: 0;
    display: block;
}

/* ——— Hero (plein écran, passe sous le header flottant) ——— */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        url("../img/pexels-scottwebb-136412.jpg") center / cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 12, 20, 0.12) 0%,
        rgba(8, 12, 20, 0.35) 45%,
        rgba(8, 12, 20, 0.72) 100%
    );
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.25rem, 4vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    /* Espace sous le header flottant pour ne pas chevaucher le contenu utile */
    padding-top: calc(var(--header-float-top) + var(--header-h) + clamp(1.25rem, 4vw, 2.5rem));
    /* Réserve pour le CTA fixe (hors flux) : le titre ne passe pas dessous */
    padding-bottom: clamp(5.25rem, 14vw, 7rem);
}

/* CTA fixe : doit être frère de .hero dans le HTML (pas enfant), sinon il reste sous #projet (contexte d’empilement). z-index < header (100). */
.hero__cta-wrap {
    position: fixed;
    bottom: clamp(1rem, 3vw, 1.75rem);
    right: clamp(1.5rem, 4vw, 3rem);
    z-index: 90;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.hero__cta-wrap--faq-in-view {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero__cta-wrap--faq-in-view .hero-cta-combo {
    pointer-events: none;
}

.hero__cta-wrap .hero-cta-combo {
    pointer-events: auto;
}

.hero__copy {
    max-width: min(100%, 38rem);
}

.hero__title {
    margin: 0;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
    margin: 1rem 0 0;
    max-width: 36ch;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

/* CTA type pastille rouge + pastille flèche (inspiré référence) */
.hero-cta-combo {
    display: inline-flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta-combo:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.hero-cta-combo__pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--accent);
    min-width: 12.5rem;
}

.hero-cta-combo__pill-labels {
    display: grid;
    place-items: center;
    min-height: 1.35em;
}

.hero-cta-combo__lab {
    grid-area: 1 / 1;
    white-space: nowrap;
    transition: opacity 0.1s ease;
}

.hero-cta-combo__lab--events,
.hero-cta-combo__lab--carte,
.hero-cta-combo__lab--faq {
    opacity: 0;
    pointer-events: none;
}

.hero-cta-combo--events .hero-cta-combo__lab--projet {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.09s ease;
}

.hero-cta-combo--events .hero-cta-combo__lab--events {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.12s ease 0.09s;
}

.hero-cta-combo--events {
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.hero-cta-combo--carte .hero-cta-combo__lab--projet,
.hero-cta-combo--carte .hero-cta-combo__lab--events {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.09s ease;
}

.hero-cta-combo--carte:not(.hero-cta-combo--faq) .hero-cta-combo__lab--carte {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.12s ease 0.09s;
}

.hero-cta-combo--carte.hero-cta-combo--faq .hero-cta-combo__lab--carte {
    opacity: 0;
    pointer-events: none;
}

.hero-cta-combo--faq .hero-cta-combo__lab--faq {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.12s ease 0.09s;
}

/* CTA inversé sur fond rouge (#evenements) */
.hero-cta-combo--carte .hero-cta-combo__pill,
.hero-cta-combo--carte .hero-cta-combo__icon {
    background: #fff;
    color: var(--accent);
}

.hero-cta-combo--carte .hero-cta-combo__icon {
    border-left: 1px solid rgba(230, 0, 18, 0.18);
}

.hero-cta-combo--carte:hover .hero-cta-combo__pill,
.hero-cta-combo--carte:hover .hero-cta-combo__icon {
    background: #f6f6f6;
    color: var(--accent-hover);
}

.hero-cta-combo--carte {
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.hero-cta-combo__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    background: var(--accent);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.hero-cta-combo:not(.hero-cta-combo--carte):hover .hero-cta-combo__pill,
.hero-cta-combo:not(.hero-cta-combo--carte):hover .hero-cta-combo__icon {
    background: var(--accent-hover);
}

/* ——— Section Le projet ——— */
.section {
    scroll-margin-top: var(--scroll-margin-top);
}

/* Ancre #projet : pas de scroll-margin (sinon le « vide » laisse voir le bas du hero). Le dégagement du header = padding-top. */
.section.section--projet {
    scroll-margin-top: 0;
}

.section--projet {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    box-sizing: border-box;
    background: var(--section-projet-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    /* Espace réservé sous le header flottant une fois la section collée en haut du viewport */
    padding-top: calc(var(--header-float-top) + var(--header-h) + 1.25rem);
}

.section__inner {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4.5rem);
    flex-shrink: 0;
}

.section__title-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.section__heart {
    display: block;
    width: clamp(1.45rem, 3.2vw, 1.85rem);
    height: clamp(1.45rem, 3.2vw, 1.85rem);
    flex-shrink: 0;
    background-color: var(--accent);
    -webkit-mask-image: url("../img/heart-svgrepo-com.svg");
    mask-image: url("../img/heart-svgrepo-com.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    /* Alignement optique : base du cœur ≈ base du L (cap height) */
    transform: translateY(0.04em);
}

.section__carte-icon {
    display: block;
    width: clamp(1.45rem, 3.2vw, 1.85rem);
    height: clamp(1.45rem, 3.2vw, 1.85rem);
    flex-shrink: 0;
    background-color: var(--accent);
    -webkit-mask-image: url("../img/card-2-svgrepo-com.svg");
    mask-image: url("../img/card-2-svgrepo-com.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateY(0.04em);
}

.section__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
}

.section__title::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-top: 0.85rem;
    border-radius: 2px;
    background: var(--accent);
}

.section__lead {
    margin: 1.75rem 0 0;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink-soft);
}

.section__list {
    margin: 1.75rem 0 0;
    padding: 0 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted);
}

.section__list li {
    margin: 0.65rem 0 0;
}

.section__list li:first-child {
    margin-top: 0;
}

.section__list li::marker {
    color: var(--accent);
}

.projet-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    padding: 0.72rem 1.2rem 0.72rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--instagram);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(255, 0, 105, 0.35);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.projet-insta:hover {
    background: var(--instagram-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 0, 105, 0.42);
}

.projet-insta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.projet-insta__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.projet-insta__label {
    line-height: 1.2;
}

/* ——— Section Nos événements (fond rouge, grille 2/3 + carte type « événement ») ——— */
.section.section--evenements {
    scroll-margin-top: 0;
}

.section--evenements {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    box-sizing: border-box;
    background: var(--accent);
    color: #fff;
    padding-top: calc(var(--header-float-top) + var(--header-h) + 1.25rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section--evenements__inner {
    flex-shrink: 0;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
}

.section__title--on-accent {
    color: #fff;
}

.section__title--on-accent::after {
    background: rgba(255, 255, 255, 0.95);
}

.section__evenements-icon {
    display: block;
    width: clamp(1.5rem, 3.4vw, 2rem);
    height: clamp(1.5rem, 3.4vw, 2rem);
    flex-shrink: 0;
    background-color: #fff;
    -webkit-mask-image: url("../img/community-group-leader-svgrepo-com.svg");
    mask-image: url("../img/community-group-leader-svgrepo-com.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateY(0.04em);
}

.section--evenements__aside {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.event-card__kicker {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.section--evenements__lead {
    margin: 1.5rem 0 0;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    max-width: 52ch;
}

.section--evenements__text {
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 52ch;
}

.event-card {
    background: var(--surface);
    border-radius: 14px;
    border: 0 solid transparent;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.06),
        0 22px 48px rgba(0, 0, 0, 0.22);
    color: var(--ink);
}

/* Colonne : la cover prend exactement la largeur de la carte (évite un léger décalage vs le fond blanc). */
.event-card--mystery {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.event-card__cover {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    aspect-ratio: 16 / 9;
    max-height: 200px;
    background: #ddd;
}

.event-card__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card__body {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.15rem 1.2rem;
}

.event-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
}

.event-card__place {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.event-card--mystery > .event-card__cover.event-card__cover--mystery {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #141414;
    /* Pas de contain:paint ici — peut rogner un sous-pixel et laisser voir le blanc du parent */
    /* Pas de border-radius ici : le parent .event-card clippe déjà */
}

/*
 * Le flou sur <img> laisse souvent un halo clair sur les bords (composite navigateur).
 * On applique filter sur un calque plus grand que la fenêtre visible ; le fond #141414
 * du .event-card__cover reste visible sous les bords flous, pas le blanc de la carte.
 */
.event-card--mystery .event-card__cover-blur {
    position: absolute;
    top: -18%;
    left: -12%;
    right: -14%;
    bottom: -18%;
    filter: blur(14px) saturate(0.85);
    opacity: 0.58;
    transform: translateZ(0);
}

.event-card--mystery .event-card__cover-img--mystery {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
    object-fit: cover;
    object-position: center;
}

.event-card__title--mystery {
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--muted);
}

.event-card__place--mystery {
    font-style: italic;
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
    .event-card--mystery .event-card__cover-blur {
        filter: blur(5px) saturate(0.9);
    }
}

/* ——— Section La carte ——— */
.section.section--carte {
    scroll-margin-top: 0;
}

.section--carte {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    box-sizing: border-box;
    padding-top: calc(var(--header-float-top) + var(--header-h) + 1.25rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--section-projet-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.carte-price-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem 0.75rem 0.95rem;
    max-width: 38rem;
    /* Contraste sur fond gris (même teinte que la section projet) */
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55) inset,
        0 4px 16px rgba(0, 0, 0, 0.07);
}

.carte-price-highlight__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.carte-price-highlight__amount {
    font-size: clamp(1.35rem, 3.2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--accent);
}

.carte-price-highlight__per {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1;
}

.carte-price-highlight__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin: 0 0.05rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    opacity: 0.9;
}

.carte-price-highlight__savings {
    margin: 0;
    flex: 1 1 14rem;
    min-width: min(100%, 12rem);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
}

/* ——— Section FAQ ——— */
.section.section--faq {
    scroll-margin-top: 0;
}

.section--faq {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    box-sizing: border-box;
    padding-top: calc(var(--header-float-top) + var(--header-h) + 1.25rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--accent);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section--faq .section__lead {
    color: rgba(255, 255, 255, 0.94);
}

.faq-list {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.faq-item__q {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--ink);
}

.section--faq .faq-item__q {
    color: #fff;
}

.faq-item__a {
    margin: 0.45rem 0 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

.section--faq .faq-item__a {
    color: rgba(255, 255, 255, 0.88);
}

.section--faq .faq-item__a-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.section--faq .faq-item__a-link:hover {
    text-decoration-thickness: 2px;
}

/* ——— Pied de page ——— */
.site-footer {
    padding: 1.25rem clamp(1.25rem, 4vw, 2rem) 1.75rem;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--muted);
    background: var(--page-canvas);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer__inner {
    max-width: 40rem;
    margin: 0 auto;
}

.site-footer__copy,
.site-footer__credit {
    margin: 0;
}

.site-footer__credit {
    margin-top: 0.35rem;
}

.site-footer__link {
    color: var(--ink-soft);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.site-footer__link:hover {
    color: var(--accent);
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
    :root {
        --header-float-radius: clamp(18px, 4vw, 26px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-center {
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 0;
        right: 0;
        flex: none;
        justify-content: stretch;
        padding: 0.75rem clamp(0.85rem, 2.5vw, 1.75rem) 1rem;
        background: var(--surface);
        border-radius: clamp(14px, 3vw, 18px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 0.28s ease,
            opacity 0.2s ease;
    }

    .nav-center.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a {
        padding: 0.65rem 0.5rem;
    }

    .hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__cta-wrap {
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        padding-inline: clamp(1rem, 4vw, 1.5rem);
    }

    .hero-cta-combo {
        width: 100%;
        max-width: 22rem;
    }

    .hero-cta-combo__pill {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .hero-cta-combo__pill-labels {
        min-width: 0;
        width: 100%;
    }

    .section--evenements__inner {
        grid-template-columns: 1fr;
    }

    .section--evenements__aside {
        width: 100%;
        max-width: 22rem;
        margin-inline: auto;
    }

    .event-card {
        max-width: none;
    }
}
