:root {
    --csleq-ink: #2b2528;
    --csleq-muted: #766d70;
    --csleq-red: #cf7761;
    --csleq-red-dark: #86453e;
    --csleq-green: #4fc4a0;
    --csleq-blue: #51a9d6;
    --csleq-yellow: #e8ce50;
    --csleq-lavender: #a5a2d3;
    --csleq-cream: #fff7f4;
    --csleq-soft: #f8f9fb;
    --csleq-line: rgba(75, 45, 42, .11);
    --csleq-shadow: 0 22px 60px rgba(95, 54, 48, .16);
}

body.csl-equipe-page .sidebar,
body.csl-equipe-page #secondary,
body.csl-equipe-page .widget-area,
body.csl-equipe-page .entry-title,
body.csl-equipe-page .entry-meta,
body.csl-equipe-page .post-edit-link {
    display: none !important;
}

body.csl-equipe-page .content-left-wrap,
body.csl-equipe-page .content-area,
body.csl-equipe-page #primary,
body.csl-equipe-page #content,
body.csl-equipe-page .site-content,
body.csl-equipe-page .container,
body.csl-equipe-page article,
body.csl-equipe-page .entry-content {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.csl-equipe-page .site-content {
    padding-top: 0 !important;
}

.csleq,
.csleq * {
    box-sizing: border-box;
}

.csleq {
    position: relative;
    overflow: hidden;
    color: var(--csleq-ink);
    background: #fff;
    font-family: inherit;
}

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

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

.csleq-hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 58px 0 88px;
    background:
        radial-gradient(circle at 8% 18%, rgba(207, 119, 97, .15), transparent 25%),
        radial-gradient(circle at 92% 14%, rgba(81, 169, 214, .12), transparent 25%),
        linear-gradient(135deg, #fff 0%, #fffaf7 56%, #fff0eb 100%);
}

.csleq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(134, 69, 62, .09) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .48), transparent 80%);
    pointer-events: none;
}

.csleq-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -230px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(79, 196, 160, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(79, 196, 160, .035), 0 0 0 64px rgba(79, 196, 160, .025);
    pointer-events: none;
}

.csleq-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: center;
}

.csleq-hero__content {
    max-width: 650px;
}

.csleq-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.csleq-hero__orb--one {
    top: 84px;
    left: -104px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(207, 119, 97, .16);
    box-shadow: 0 0 0 25px rgba(207, 119, 97, .035), 0 0 0 53px rgba(207, 119, 97, .025);
}

.csleq-hero__orb--two {
    right: 22%;
    top: 62px;
    width: 14px;
    height: 14px;
    background: var(--csleq-yellow);
    box-shadow: 34px 70px 0 rgba(79, 196, 160, .78), -43px 142px 0 rgba(81, 169, 214, .78);
}

.csleq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--csleq-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.csleq-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.csleq-hero h1,
.csleq-group__heading h2,
.csleq-closing h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.csleq-hero h1 {
    font-size: clamp(46px, 6vw, 79px);
}

.csleq-hero h1 span {
    color: var(--csleq-red-dark);
}

.csleq-eyebrow--hero {
    color: var(--csleq-red);
}

.csleq-hero__lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--csleq-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.csleq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.csleq-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: .25s ease;
}

.csleq-button:hover {
    transform: translateY(-3px);
}

.csleq-button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--csleq-red), #e39a83);
    box-shadow: 0 14px 30px rgba(207, 119, 97, .28);
}

.csleq-button--ghost {
    color: var(--csleq-ink) !important;
    border-color: rgba(75, 45, 42, .16);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
}

.csleq-practical {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
}

.csleq-practical > div {
    display: flex;
    min-width: 220px;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(75, 45, 42, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
}

.csleq-practical__icon {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--csleq-red-dark);
    font-size: 18px;
}

.csleq-practical p {
    display: grid;
    gap: 2px;
    margin: 0;
}

.csleq-practical small {
    color: var(--csleq-muted);
    font-size: 11px;
}

.csleq-practical strong {
    font-size: 13px;
}

.csleq-hero__visual {
    min-width: 0;
}

.csleq-visual-card {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 46px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(255, 240, 235, .78));
    box-shadow: var(--csleq-shadow);
    isolation: isolate;
}

.csleq-visual-card__rings {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(134, 69, 62, .18);
    border-radius: 50%;
}

.csleq-visual-card__rings::before,
.csleq-visual-card__rings::after {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(134, 69, 62, .14);
    border-radius: 50%;
}

.csleq-visual-card__rings::after {
    inset: 75px;
    background: rgba(226, 161, 142, .14);
}

.csleq-visual-card__label {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 4;
    padding: 9px 14px;
    border: 1px solid rgba(134, 69, 62, .16);
    border-radius: 999px;
    color: var(--csleq-red-dark);
    background: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 800;
}

.csleq-visual-card__logo {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 4;
    width: 124px;
    height: auto;
    padding: 5px 8px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 18px rgba(33, 31, 38, .07);
}

.csleq-hero__portraits {
    position: relative;
    z-index: 2;
    width: 336px;
    height: 336px;
}

.csleq-hero__portrait {
    position: absolute;
    width: 142px;
    height: 142px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .96);
    border-radius: 50%;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 16px 32px rgba(95, 54, 48, .16);
}

.csleq-hero__portrait img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.csleq-hero__portrait--one {
    top: 24px;
    left: 22px;
    transform: rotate(-8deg);
}

.csleq-hero__portrait--two {
    top: 16px;
    right: 20px;
    transform: rotate(8deg);
}

.csleq-hero__portrait--three {
    bottom: 20px;
    left: 60px;
    transform: rotate(6deg);
}

.csleq-hero__portrait--four {
    right: 54px;
    bottom: 28px;
    transform: rotate(-6deg);
}

.csleq-floating-note {
    position: absolute;
    z-index: 5;
    display: grid;
    gap: 3px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 17px;
    background: rgba(255, 255, 255, .87);
    box-shadow: 0 14px 28px rgba(23, 35, 51, .10);
    backdrop-filter: blur(9px);
}

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

.csleq-floating-note span {
    color: var(--csleq-muted);
    font-size: 11px;
}

.csleq-floating-note--top {
    top: 105px;
    left: -28px;
}

.csleq-floating-note--bottom {
    right: -28px;
    bottom: 80px;
}

.csleq-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 30px;
    height: 48px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
    border: 1px solid rgba(75, 45, 42, .20);
    border-radius: 999px;
    transform: translateX(-50%);
}

.csleq-scroll span {
    width: 4px;
    height: 8px;
    border-radius: 99px;
    background: var(--csleq-red);
    animation: csleqScroll 1.7s infinite;
}

@keyframes csleqScroll {
    0%, 100% { transform: translateY(0); opacity: .45; }
    50% { transform: translateY(13px); opacity: 1; }
}

.csleq-group {
    position: relative;
    padding: 86px 0 96px;
    background: #fff;
}

.csleq-group + .csleq-group {
    background: var(--csleq-soft);
}

.csleq-group + .csleq-group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    background: var(--csleq-line);
    transform: translateX(-50%);
}

.csleq-group__heading {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(280px, .75fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 50px;
    padding: 26px 30px;
    border: 1px solid rgba(75, 45, 42, .09);
    border-radius: 26px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 36px rgba(23, 35, 51, .055);
}

.csleq-group__heading .csleq-eyebrow {
    margin-bottom: 14px;
}

.csleq-group__heading h2 {
    font-size: clamp(34px, 4.6vw, 58px);
}

.csleq-group__heading > p {
    margin: 0;
    color: var(--csleq-muted);
    font-size: 16px;
    line-height: 1.7;
}

.csleq-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.csleq-card {
    position: relative;
    flex: 1 1 240px;
    width: 100%;
    max-width: 270px;
    min-height: 380px;
    padding: 28px 19px 25px;
    overflow: hidden;
    border: 1px solid rgba(75, 45, 42, .10);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 36px rgba(23, 35, 51, .055);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.csleq-group + .csleq-group .csleq-card {
    background: #fff;
}

.csleq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 99px 99px;
    background: var(--csleq-card-color);
    opacity: .92;
}

.csleq-card:hover {
    border-color: rgba(75, 45, 42, .16);
    box-shadow: var(--csleq-shadow);
    transform: translateY(-9px);
}

.csleq-card__photo-shell {
    position: relative;
    width: 184px;
    height: 184px;
    margin: 0 auto 26px;
}

.csleq-card__photo-ring,
.csleq-card__photo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.csleq-card__photo-ring {
    background: var(--csleq-card-color);
    opacity: .20;
    transform: scale(1.08);
    transition: transform .35s ease, opacity .35s ease;
}

.csleq-card__photo {
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 7px;
    background: #fff;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 12px 24px rgba(33, 31, 38, .14);
    transition: transform .35s ease;
}

.csleq-card__photo--placeholder {
    padding: 4px;
}

.csleq-card__photo-note {
    position: absolute;
    right: 50%;
    bottom: -11px;
    z-index: 3;
    display: block;
    padding: 5px 10px;
    border: 1px solid rgba(165, 162, 211, .25);
    border-radius: 999px;
    color: var(--csleq-red-dark);
    background: #fff;
    box-shadow: 0 7px 16px rgba(33, 31, 38, .09);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    transform: translateX(50%);
}

.csleq-card:hover .csleq-card__photo-ring {
    opacity: .34;
    transform: scale(1.14);
}

.csleq-card:hover .csleq-card__photo {
    transform: scale(1.035);
}

.csleq-card__content {
    position: relative;
    z-index: 2;
}

.csleq-card__label {
    display: block;
    min-height: 15px;
    color: var(--csleq-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.csleq-card h3 {
    margin: 9px 0 0;
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.csleq-card__rule {
    display: block;
    width: 92px;
    height: 3px;
    margin: 12px auto 11px;
    border-radius: 99px;
    background: var(--csleq-card-color);
}

.csleq-card p {
    min-height: 40px;
    margin: 0;
    color: var(--csleq-muted);
    font-size: 13px;
    line-height: 1.45;
}

.csleq-card--coral { --csleq-card-color: var(--csleq-red); }
.csleq-card--green { --csleq-card-color: var(--csleq-green); }
.csleq-card--blue { --csleq-card-color: var(--csleq-blue); }
.csleq-card--yellow { --csleq-card-color: var(--csleq-yellow); }
.csleq-card--lavender { --csleq-card-color: var(--csleq-lavender); }

.csleq-closing {
    padding: 46px 0 52px;
    color: #fff;
    background: linear-gradient(135deg, var(--csleq-red-dark), #bd6656 58%, #8e769e);
}

.csleq-closing__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.csleq-closing__inner p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.csleq-closing__mark {
    color: var(--csleq-yellow);
    font-size: 22px;
}

.csleq-js .csleq-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.csleq-js .csleq-reveal--delay {
    transition-delay: .12s;
}

.csleq-js .csleq-reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

@media (max-width: 980px) {
    .csleq-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .csleq-hero__content {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .csleq-hero__content .csleq-eyebrow {
        justify-content: center;
    }

    .csleq-hero__lead {
        margin-inline: auto;
    }

    .csleq-actions,
    .csleq-practical {
        justify-content: center;
    }

    .csleq-hero__visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .csleq-visual-card {
        min-height: 470px;
    }
}

@media (max-width: 780px) {
    .csleq-shell {
        width: min(100% - 32px, 560px);
    }

    .csleq-hero {
        min-height: 0;
        padding: 67px 0 78px;
    }

    .csleq-hero h1 {
        font-size: clamp(43px, 11vw, 66px);
    }

    .csleq-hero__lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .csleq-practical > div {
        min-width: min(100%, 260px);
    }

    .csleq-group {
        padding: 67px 0 72px;
    }

    .csleq-group__heading {
        display: block;
        margin-bottom: 36px;
        padding: 24px 22px;
    }

    .csleq-group__heading > p {
        margin-top: 18px;
        font-size: 15px;
    }

    .csleq-cards {
        gap: 16px;
    }

    .csleq-card {
        flex-basis: 220px;
        max-width: 270px;
    }
}

@media (max-width: 540px) {
    .csleq-eyebrow {
        font-size: 10px;
        letter-spacing: .10em;
    }

    .csleq-hero h1 {
        font-size: clamp(39px, 11.7vw, 55px);
    }

    .csleq-actions {
        display: grid;
        width: min(100%, 320px);
        margin-inline: auto;
    }

    .csleq-button {
        width: 100%;
    }

    .csleq-visual-card {
        min-height: 410px;
        border-radius: 32px;
    }

    .csleq-visual-card__logo {
        top: 18px;
        left: 18px;
        width: 100px;
    }

    .csleq-visual-card__rings {
        width: 290px;
        height: 290px;
    }

    .csleq-hero__portraits {
        width: 270px;
        height: 270px;
    }

    .csleq-hero__portrait {
        width: 112px;
        height: 112px;
    }

    .csleq-hero__portrait--one { left: 13px; }
    .csleq-hero__portrait--two { right: 13px; }
    .csleq-hero__portrait--three { bottom: 13px; left: 42px; }
    .csleq-hero__portrait--four { right: 39px; bottom: 18px; }

    .csleq-floating-note {
        padding: 11px 12px;
    }

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

    .csleq-floating-note span {
        font-size: 9px;
    }

    .csleq-floating-note--top {
        top: 90px;
        left: -11px;
    }

    .csleq-floating-note--bottom {
        right: -11px;
        bottom: 64px;
    }

    .csleq-cards {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .csleq-card {
        width: 100%;
        max-width: 300px;
    }
}
