.csl-accueil-2026 {
    --csl-home-ink: #172333;
    --csl-home-muted: #667085;
    --csl-home-red: #d51f35;
    --csl-home-cream: #f7f6f2;
    --csl-home-line: rgba(23, 35, 51, .10);
    --csl-home-shadow: 0 24px 70px rgba(31, 46, 57, .13);
    width: 100%;
    overflow: hidden;
    color: var(--csl-home-ink);
    background: #fff;
    font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}

.csl-accueil-2026,
.csl-accueil-2026 * {
    box-sizing: border-box;
}

.csl-accueil-2026 a {
    color: inherit;
    text-decoration: none;
}

.csl-accueil-2026 img {
    max-width: 100%;
    height: auto;
}

.csl-home-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.csl-home-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(52px, 7vw, 104px) 0 clamp(64px, 8vw, 112px);
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 18%, rgba(130, 152, 138, .16), transparent 24%),
        radial-gradient(circle at 6% 85%, rgba(213, 31, 53, .07), transparent 26%),
        linear-gradient(135deg, #fff 0%, #fbfaf7 52%, #eef3ef 100%);
}

.csl-home-hero::after {
    position: absolute;
    right: -7%;
    bottom: -34%;
    z-index: -1;
    width: min(560px, 56vw);
    height: min(560px, 56vw);
    border: 1px solid rgba(130, 152, 138, .20);
    border-radius: 50%;
    content: "";
}

.csl-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(350px, .97fr);
    align-items: center;
    gap: clamp(40px, 7vw, 102px);
}

.csl-home-hero__content {
    position: relative;
    z-index: 2;
}

.csl-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--csl-home-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1;
    text-transform: uppercase;
}

.csl-home-kicker::before {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.csl-home-kicker--soft {
    color: #526d60;
}

.csl-home-kicker--light {
    color: #bfe0ce;
}

.csl-home-hero h1,
.csl-home-section-heading h2,
.csl-home-registration h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -.055em;
}

.csl-home-hero h1 {
    max-width: 730px;
    margin-top: 24px;
    font-size: clamp(48px, 6.1vw, 82px);
    line-height: .96;
}

.csl-home-hero h1 span,
.csl-home-section-heading h2 span,
.csl-home-registration h2 span {
    color: #526d60;
}

.csl-home-lead {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--csl-home-muted);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.7;
}

.csl-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.csl-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 52px;
    padding: 15px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.csl-home-button span {
    font-size: 18px;
    line-height: .7;
}

.csl-home-button:hover,
.csl-home-button:focus-visible {
    transform: translateY(-3px);
}

.csl-home-button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, #526d60, var(--csl-home-red));
    box-shadow: 0 14px 30px rgba(82, 109, 96, .20);
}

.csl-home-button--primary:hover,
.csl-home-button--primary:focus-visible {
    box-shadow: 0 19px 35px rgba(82, 109, 96, .28);
}

.csl-home-button--ghost {
    border-color: rgba(23, 35, 51, .15);
    background: rgba(255, 255, 255, .72);
}

.csl-home-button--ghost:hover,
.csl-home-button--ghost:focus-visible {
    border-color: rgba(82, 109, 96, .35);
    background: #fff;
}

.csl-home-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin-top: 42px;
}

.csl-home-fact {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid rgba(23, 35, 51, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 9px 25px rgba(31, 46, 57, .04);
}

.csl-home-fact__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: #526d60;
    font-size: 17px;
    font-weight: 800;
}

.csl-home-fact:nth-child(2) .csl-home-fact__icon {
    background: var(--csl-home-red);
}

.csl-home-fact small,
.csl-home-fact strong {
    display: block;
}

.csl-home-fact small {
    color: var(--csl-home-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.csl-home-fact strong {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.25;
}

.csl-home-hero__visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.csl-home-brand-card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 22px clamp(22px, 4vw, 42px) 20px;
    border: 1px solid rgba(23, 35, 51, .10);
    border-radius: 34px;
    background: rgba(255, 255, 255, .91);
    box-shadow: var(--csl-home-shadow);
    transform: rotate(1.2deg);
    transition: transform .4s ease, box-shadow .4s ease;
}

.csl-home-brand-card:hover {
    box-shadow: 0 30px 82px rgba(31, 46, 57, .18);
    transform: rotate(0deg) translateY(-5px);
}

.csl-home-brand-card__topline,
.csl-home-brand-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--csl-home-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.csl-home-brand-card__topline {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--csl-home-line);
}

.csl-home-brand-card__footer {
    padding-top: 16px;
    border-top: 1px solid var(--csl-home-line);
}

.csl-home-logo {
    display: block;
    width: 100%;
    margin: 28px auto;
    border-radius: 16px;
}

.csl-home-brand-card__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--csl-home-red);
    box-shadow: 16px 0 0 #82988a, 32px 0 0 #765b98;
}

.csl-home-floating-note {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(23, 35, 51, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 14px 30px rgba(31, 46, 57, .11);
    animation: cslHomeFloat 5s ease-in-out infinite;
}

.csl-home-floating-note span {
    color: var(--csl-home-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.csl-home-floating-note strong {
    font-size: 13px;
}

.csl-home-floating-note--top {
    top: 4%;
    right: -2%;
}

.csl-home-floating-note--bottom {
    bottom: 5%;
    left: -4%;
    animation-delay: -2.2s;
}

.csl-home-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.csl-home-orb--one {
    top: 7%;
    right: 34%;
    width: 16px;
    height: 16px;
    background: var(--csl-home-red);
    box-shadow: 0 0 0 10px rgba(213, 31, 53, .07);
    animation: cslHomePulse 3.5s ease-in-out infinite;
}

.csl-home-orb--two {
    right: 10%;
    bottom: 14%;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(82, 109, 96, .23);
    animation: cslHomeFloat 6s ease-in-out infinite;
}

.csl-home-line {
    position: absolute;
    border: 1px solid rgba(82, 109, 96, .17);
    border-radius: 50%;
    pointer-events: none;
}

.csl-home-line--one {
    top: 18%;
    left: -95px;
    width: 190px;
    height: 190px;
}

.csl-home-activities {
    padding: clamp(72px, 9vw, 126px) 0 clamp(78px, 10vw, 132px);
    background: #fff;
}

.csl-home-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.csl-home-section-heading h2 {
    margin-top: 22px;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.02;
}

.csl-home-section-heading p {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--csl-home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.csl-activity-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.csl-activity-card {
    --activity: #82988a;
    --activity-dark: #526d60;
    --activity-soft: #edf3ef;
    position: relative;
    display: flex;
    min-height: 418px;
    flex-direction: column;
    padding: 19px;
    overflow: hidden;
    border: 1px solid var(--csl-home-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 46, 57, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.csl-activity-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--activity), var(--activity-dark));
    content: "";
}

.csl-activity-card::after {
    position: absolute;
    top: 74px;
    right: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid color-mix(in srgb, var(--activity) 25%, transparent);
    border-radius: 50%;
    content: "";
    opacity: .8;
    transition: transform .35s ease;
}

.csl-activity-card--vinyasa {
    --activity: #a391ba;
    --activity-dark: #5b4675;
    --activity-soft: #f1edf6;
}

.csl-activity-card--yin {
    --activity: #658faa;
    --activity-dark: #4f687b;
    --activity-soft: #edf3f7;
}

.csl-activity-card--theatre {
    --activity: #cf7761;
    --activity-dark: #86453e;
    --activity-soft: #fff0eb;
}

.csl-activity-card--renforcement {
    --activity: #4f9299;
    --activity-dark: #075b66;
    --activity-soft: #eaf4f4;
}

.csl-activity-card:hover,
.csl-activity-card:focus-visible {
    border-color: color-mix(in srgb, var(--activity) 45%, #fff);
    box-shadow: 0 22px 48px color-mix(in srgb, var(--activity) 17%, transparent);
    transform: translateY(-9px);
}

.csl-activity-card:hover::after,
.csl-activity-card:focus-visible::after {
    transform: scale(1.18);
}

.csl-activity-card__topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--activity-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.csl-activity-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 154px;
    height: 154px;
    margin: 25px auto 21px;
    place-items: center;
    border-radius: 50%;
    background: var(--activity-soft);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .78), 0 10px 25px color-mix(in srgb, var(--activity) 16%, transparent);
    transition: transform .35s ease;
}

.csl-activity-card:hover .csl-activity-card__icon,
.csl-activity-card:focus-visible .csl-activity-card__icon {
    transform: rotate(-4deg) scale(1.04);
}

.csl-activity-card__icon img {
    display: block;
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.csl-activity-card__title {
    position: relative;
    z-index: 1;
    min-height: 48px;
    color: var(--csl-home-ink);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.csl-activity-card__rule {
    display: block;
    width: 50px;
    height: 3px;
    margin: 13px 0 12px;
    border-radius: 999px;
    background: var(--activity);
}

.csl-activity-card__schedule,
.csl-activity-card__description,
.csl-activity-card__link {
    position: relative;
    z-index: 1;
}

.csl-activity-card__schedule {
    color: var(--csl-home-ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.csl-activity-card__description {
    margin-top: 8px;
    color: var(--csl-home-muted);
    font-size: 12px;
    line-height: 1.5;
}

.csl-activity-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--activity-dark);
    font-size: 12px;
    font-weight: 800;
}

.csl-activity-card__link span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--activity-dark);
    font-size: 18px;
    transition: transform .25s ease;
}

.csl-activity-card:hover .csl-activity-card__link span,
.csl-activity-card:focus-visible .csl-activity-card__link span {
    transform: translate(3px, -3px);
}

.csl-home-registration {
    padding: 0 0 clamp(74px, 9vw, 116px);
    background: #fff;
}

.csl-home-registration__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: clamp(34px, 5vw, 62px);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 28%),
        linear-gradient(135deg, #1b2a38, #526d60 66%, #6c8a79);
    box-shadow: 0 24px 65px rgba(27, 42, 56, .17);
}

.csl-home-registration h2 {
    margin-top: 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
}

.csl-home-registration h2 span {
    color: #cfe8d6;
}

.csl-home-registration p {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.7;
}

.csl-home-button--light {
    flex: 0 0 auto;
    color: var(--csl-home-ink) !important;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
}

.csl-home-button--light:hover,
.csl-home-button--light:focus-visible {
    box-shadow: 0 19px 35px rgba(0, 0, 0, .20);
}

.csl-home-footer {
    padding: 26px 0 34px;
    background: var(--csl-home-cream);
}

.csl-home-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.csl-home-footer strong,
.csl-home-footer span {
    display: block;
}

.csl-home-footer strong {
    font-size: 13px;
}

.csl-home-footer span {
    margin-top: 4px;
    color: var(--csl-home-muted);
    font-size: 11px;
}

.csl-home-footer a {
    color: #526d60;
    font-size: 12px;
    font-weight: 800;
}

.csl-home-footer a span {
    display: inline;
    margin-left: 4px;
    color: inherit;
    font-size: 16px;
}

[data-csl-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, .75, .25, 1);
    transition-delay: var(--csl-reveal-delay, 0s);
}

[data-csl-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes cslHomeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes cslHomePulse {
    0%, 100% { transform: scale(1); opacity: .82; }
    50% { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 1120px) {
    .csl-home-hero__grid {
        gap: 42px;
    }

    .csl-activity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .csl-activity-card:last-child {
        grid-column: 2;
    }
}

@media (max-width: 820px) {
    .csl-home-hero__grid {
        grid-template-columns: 1fr;
    }

    .csl-home-hero__content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .csl-home-kicker {
        justify-content: center;
    }

    .csl-home-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .csl-home-actions,
    .csl-home-hero__facts {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .csl-home-hero__visual {
        min-height: 400px;
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .csl-home-floating-note--top {
        right: 0;
    }

    .csl-home-floating-note--bottom {
        left: 0;
    }

    .csl-home-registration__box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .csl-home-shell {
        width: min(100% - 28px, 520px);
    }

    .csl-home-hero {
        padding-top: 42px;
    }

    .csl-home-hero h1 {
        font-size: clamp(43px, 13vw, 66px);
    }

    .csl-home-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .csl-home-button {
        width: 100%;
    }

    .csl-home-hero__facts {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .csl-home-hero__visual {
        min-height: 360px;
    }

    .csl-home-brand-card {
        padding: 17px 17px 15px;
        border-radius: 25px;
    }

    .csl-home-logo {
        margin: 20px auto;
    }

    .csl-home-floating-note {
        padding: 12px 13px;
    }

    .csl-home-floating-note strong {
        font-size: 11px;
    }

    .csl-activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .csl-activity-card:last-child {
        grid-column: auto;
    }

    .csl-activity-card {
        min-height: 365px;
        padding: 14px;
        border-radius: 20px;
    }

    .csl-activity-card__icon {
        width: 116px;
        height: 116px;
        margin-top: 20px;
    }

    .csl-activity-card__icon img {
        width: 106px;
        height: 106px;
    }

    .csl-activity-card__title {
        min-height: 43px;
        font-size: 15px;
    }

    .csl-activity-card__schedule,
    .csl-activity-card__description {
        font-size: 11px;
    }

    .csl-home-registration__box {
        padding: 29px 23px;
        border-radius: 26px;
    }

    .csl-home-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .csl-activity-grid {
        grid-template-columns: 1fr;
    }

    .csl-activity-card {
        min-height: 330px;
    }

    .csl-activity-card__icon {
        width: 128px;
        height: 128px;
    }

    .csl-activity-card__icon img {
        width: 118px;
        height: 118px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .csl-accueil-2026 *,
    .csl-accueil-2026 *::before,
    .csl-accueil-2026 *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-csl-reveal] {
        opacity: 1;
        transform: none;
    }
}
