/* ============================================
   SAINT-JOSEPH LA SALLE TROYES - Refonte 2026
   Design institutionnel : navy + 4 accents LaSalle
   Fond clair par defaut, animations soignees
   ============================================ */

/* === Tokens locaux === */
.lst-home,
.page-fullwidth.lst-page {
    --lst-radius: 18px;
    --lst-radius-sm: 10px;
    --lst-shadow: 0 6px 30px -12px rgba(14,42,74,.18);
    --lst-shadow-strong: 0 25px 60px -25px rgba(14,42,74,.35);
    --lst-shadow-color-1: 0 18px 50px -20px rgba(229,38,126,.4);
    --lst-shadow-color-2: 0 18px 50px -20px rgba(244,164,28,.4);
    --lst-shadow-color-3: 0 18px 50px -20px rgba(143,201,58,.4);
    --lst-shadow-color-4: 0 18px 50px -20px rgba(26,111,184,.4);
    background: var(--color-bg);
    color: var(--color-text);
}

/* === Helpers commons === */
.lst-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-secondary);
    padding: 6px 14px;
    border: 1px solid rgba(30,77,140,.18);
    border-radius: 999px;
    background: rgba(30,77,140,.04);
}
.lst-eyebrow::before {
    content: '';
    width: 16px; height: 2px; background: var(--gradient-lasalle); border-radius: 2px;
}
.lst-eyebrow--light {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}

.lst-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--color-primary);
    margin: 18px 0 14px;
    letter-spacing: -.01em;
}
.lst-h2--light { color: #fff; }

.lst-lead {
    color: var(--color-text-light);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    max-width: 720px;
}
.lst-lead--light { color: rgba(255,255,255,.88); margin-left: auto; margin-right: auto; }

.section-head-center {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 760px;
}
.section-head-center .lst-eyebrow { margin-bottom: 12px; }
.section-head-center .lst-lead { margin-left: auto; margin-right: auto; }

.lst-bg-alt { background: var(--color-bg-alt); }
.lst-bg-navy {
    background: var(--gradient-brand);
    color: #fff;
}
.lst-bg-navy .lst-h2 { color: #fff; }

.lst-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.lst-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--color-text-light);
    line-height: 1.55;
}
.lst-list li i {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

/* === lst-chips : liste affichée en chips horizontaux Framer-style navy === */
.lst-list.lst-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 16px 0 24px;
    padding: 0;
}
.lst-list.lst-chips li {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.35;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.lst-list.lst-chips li:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 24px -10px rgba(10,37,64,.18);
}
/* Icône Framer-style : carré arrondi navy avec check blanc */
.lst-list.lst-chips li i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    margin: 0;
    flex-shrink: 0;
}
/* Variante 2 colonnes max si beaucoup d'items et écran moyen */
@media (min-width: 640px) and (max-width: 900px) {
    .lst-list.lst-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .lst-list.lst-chips { grid-template-columns: 1fr; }
}

/* === HERO === */
.lst-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.lst-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Video background */
.lst-hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.lst-hero__video-iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.lst-hero__bg--fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}
.lst-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 80%, rgba(26,111,184,.35) 0%, transparent 60%),
        linear-gradient(135deg, rgba(14,42,74,.86) 0%, rgba(14,42,74,.78) 55%, rgba(30,77,140,.82) 100%);
    z-index: 1;
}
.lst-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.lst-hero__inner {
    max-width: 880px;
}

/* === Bouton Voir la vidéo (overlay sur l'iframe) === */
.lst-hero__play {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px 14px 14px;
    border-radius: 100px;
    background: rgba(14,42,74,.55);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 18px 40px -20px rgba(0,0,0,.55);
    transition: transform .35s var(--ease, cubic-bezier(.65,0,.35,1)), background .25s ease, border-color .25s ease, box-shadow .35s ease;
    z-index: 3;
}
.lst-hero__play:hover,
.lst-hero__play:focus-visible {
    background: rgba(14,42,74,.7);
    border-color: rgba(255,255,255,.42);
    transform: translateY(calc(-50% - 3px));
    box-shadow: 0 24px 50px -22px rgba(0,0,0,.7);
    color: #fff;
    outline: none;
}
.lst-hero__play-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6c787 0%, #c8a15a 60%, #b1894a 100%);
    color: #0e2a4a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 22px -6px rgba(200,161,90,.7);
}
.lst-hero__play-icon i { transform: translateX(2px); }
.lst-hero__play-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(200,161,90,.7);
    opacity: 0;
    animation: lstPlayPulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes lstPlayPulse {
    0% { transform: scale(.92); opacity: .55; }
    100% { transform: scale(1.4); opacity: 0; }
}
.lst-hero__play-label {
    font-family: var(--font-body, inherit);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: .02em;
    text-align: left;
    white-space: nowrap;
}
.lst-hero__play-label small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    margin-top: 2px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .lst-hero__play {
        position: static;
        transform: none;
        margin-top: 28px;
    }
    .lst-hero__play:hover,
    .lst-hero__play:focus-visible { transform: translateY(-3px); }
}
@media (max-width: 480px) {
    .lst-hero__play { padding: 12px 18px 12px 12px; }
    .lst-hero__play-icon { width: 46px; height: 46px; font-size: 15px; }
    .lst-hero__play-label { font-size: 13px; }
    .lst-hero__play-label small { font-size: 10px; }
}

/* === Modale vidéo === */
.lst-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(7,18,38,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s ease;
}
.lst-video-modal[hidden] { display: none; }
.lst-video-modal.is-open { opacity: 1; }
.lst-video-modal__inner {
    position: relative;
    width: min(1100px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.lst-video-modal__inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.lst-video-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    z-index: 1;
}
.lst-video-modal__close:hover {
    background: rgba(255,255,255,.2);
    transform: scale(1.05);
}
.lst-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 80px;
    margin-bottom: 28px;
}
@media (max-width: 1024px) {
    .lst-hero__kicker { margin-top: 60px; }
}
@media (max-width: 640px) {
    .lst-hero__kicker { margin-top: 40px; }
}
.lst-hero__kicker::before {
    content: ''; width: 8px; height: 8px; background: var(--color-lasalle-yellow); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(244,164,28,.25);
    animation: lst-pulse 2.4s ease-in-out infinite;
}
@keyframes lst-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

.lst-hero__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.lst-hero__title-em {
    font-style: italic;
    font-weight: 500;
    color: #fff;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.lst-hero__title-em::after {
    content: '';
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 8%;
    height: 0.32em;
    background: rgba(200, 161, 90, .55);
    border-radius: 100px;
    transform: skewX(-6deg) scaleX(0);
    transform-origin: left center;
    opacity: 0;
    animation: lstHeroEmphDraw 1.1s cubic-bezier(.65,0,.35,1) .5s forwards;
    z-index: -1;
    pointer-events: none;
}
@keyframes lstHeroEmphDraw {
    0% { transform: skewX(-6deg) scaleX(0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: skewX(-6deg) scaleX(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .lst-hero__title-em::after {
        animation: none;
        transform: skewX(-6deg) scaleX(1);
        opacity: 1;
    }
}
.lst-hero__sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255,255,255,.92);
    margin: 0 0 36px;
    max-width: 720px;
}
.lst-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}
.lst-hero__rainbow {
    display: flex;
    gap: 8px;
}
.lst-hero__rainbow span {
    width: 56px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(255,255,255,.25);
    transition: width .4s var(--ease);
}
.lst-hero__rainbow span:hover { width: 80px; }

/* === BANDE ALERTE === */
.lst-alert-band {
    background: var(--gradient-brand);
    color: #fff;
    padding: 18px 0;
}
.lst-alert-band__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.lst-alert-band__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lasalle-yellow);
    font-size: 20px;
    flex-shrink: 0;
}
.lst-alert-band__text { flex: 1; min-width: 240px; line-height: 1.5; }
.lst-alert-band__text strong { display: block; font-size: 1.05rem; }
.lst-alert-band__text span { color: rgba(255,255,255,.78); font-size: .95rem; }
.lst-alert-band .btn-primary {
    background: var(--color-lasalle-yellow);
    border-color: var(--color-lasalle-yellow);
    color: var(--color-primary);
    font-weight: 700;
}
.lst-alert-band .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

/* === STATS === */
.lst-stats { padding: 100px 0; }
.lst-stats__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.lst-stats__head .lst-eyebrow { margin-bottom: 12px; }
.lst-stats__head .lst-lead { margin-left: auto; margin-right: auto; }
.lst-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}
.lst-stat {
    text-align: center;
    padding: 36px 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.lst-stat::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--gradient-lasalle);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.lst-stat:hover { transform: translateY(-6px); box-shadow: var(--lst-shadow-strong); border-color: transparent; }
.lst-stat:hover::before { transform: scaleX(1); }
.lst-stat:nth-child(1) { --accent: var(--color-lasalle-red); }
.lst-stat:nth-child(2) { --accent: var(--color-lasalle-yellow); }
.lst-stat:nth-child(3) { --accent: var(--color-lasalle-green); }
.lst-stat:nth-child(4) { --accent: var(--color-lasalle-blue); }
.lst-stat__num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
}
.lst-stat__num sup {
    font-size: .55em;
    color: var(--accent);
    margin-left: 4px;
    top: -.4em;
}
.lst-stat__label {
    margin-top: 12px;
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
/* Marquee de chips de niveau (defilement infini horizontal) */
.lst-stats__levels {
    margin: 28px auto 0;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.lst-stats__levels-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: lst-marquee 28s linear infinite;
}
.lst-stats__levels:hover .lst-stats__levels-track { animation-play-state: paused; }
.lst-stats__levels span {
    flex-shrink: 0;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(var(--chip-rgb, 14,42,74), .08);
    border: 1px solid rgba(var(--chip-rgb, 14,42,74), .18);
    color: var(--chip-color, var(--color-primary));
    font-weight: 600;
    font-size: 14px;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    white-space: nowrap;
}
.lst-stats__levels span:hover {
    background: var(--chip-color, var(--color-primary));
    color: #fff;
    transform: translateY(-2px);
}
.lst-stats__levels span.is-cap        { --chip-color: var(--color-lasalle-yellow-dark); --chip-rgb: 244,164,28; }
.lst-stats__levels span.is-bac-pro    { --chip-color: var(--color-lasalle-red); --chip-rgb: 229,38,126; }
.lst-stats__levels span.is-bac-gen    { --chip-color: var(--color-lasalle-blue); --chip-rgb: 26,111,184; }
.lst-stats__levels span.is-bac-techno { --chip-color: var(--color-lasalle-green-dark); --chip-rgb: 109,161,39; }
.lst-stats__levels span.is-bts        { --chip-color: var(--color-secondary); --chip-rgb: 30,77,140; }
.lst-stats__levels span.is-bachelor   { --chip-color: var(--color-accent-dark); --chip-rgb: 168,133,74; }
.lst-stats__levels span.is-master     { --chip-color: var(--color-primary); --chip-rgb: 14,42,74; }
@keyframes lst-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lst-stats__levels-track { animation: none; }
    .lst-stats__levels { -webkit-mask-image: none; mask-image: none; }
    .lst-stats__levels-track { flex-wrap: wrap; justify-content: center; width: auto; }
}

/* === CURSUS === */
.lst-cursus { padding: 100px 0; background: var(--color-bg-alt); }
.lst-cursus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lst-cursus-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #fff;
    border-radius: var(--lst-radius);
    border: 1px solid var(--color-border);
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--lst-shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.lst-cursus-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.lst-cursus-card__media::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--card-color);
    z-index: 2;
}
.lst-cursus-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.lst-cursus-card:hover .lst-cursus-card__img {
    transform: scale(1.05);
}
.lst-cursus-card__body {
    padding: 26px 30px 28px;
    position: relative;
}
.lst-cursus-card::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--card-color), transparent 70%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
    z-index: 0;
}
.lst-cursus-card--c1 { --card-color: var(--color-lasalle-red); }
.lst-cursus-card--c2 { --card-color: var(--color-lasalle-yellow); }
.lst-cursus-card--c3 { --card-color: var(--color-lasalle-green); }
.lst-cursus-card--c4 { --card-color: var(--color-lasalle-blue); }
.lst-cursus-card--c5 { --card-color: var(--color-secondary); }
.lst-cursus-card--c6 { --card-color: var(--color-accent); }
.lst-cursus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lst-shadow-strong);
    color: inherit;
}
.lst-cursus-card:hover::after { opacity: .12; }
.lst-cursus-card__num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--card-color);
    margin-bottom: 16px;
}
.lst-cursus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 6px;
    line-height: 1.2;
}
.lst-cursus-card__sub {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 22px;
}
.lst-cursus-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--card-color);
    font-weight: 600;
    font-size: 14px;
    transition: gap .25s var(--ease);
}
.lst-cursus-card:hover .lst-cursus-card__cta { gap: 14px; }

/* === AVIS GOOGLE === */
/* === STAIRCASE PHOTOS (entre hero et cursus) === */
.lst-staircase {
    padding: 80px 0 70px;
    overflow: hidden;
}
.lst-staircase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}
.lst-staircase__item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow);
    aspect-ratio: 4 / 3;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.lst-staircase__item:hover {
    box-shadow: var(--lst-shadow-strong);
    transform: translateY(-6px);
}
.lst-staircase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}
.lst-staircase__item:hover .lst-staircase__img {
    transform: scale(1.06);
}
@media (max-width: 900px) {
    .lst-staircase__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lst-staircase { padding: 60px 0 50px; }
}
@media (max-width: 480px) {
    .lst-staircase__grid { grid-template-columns: 1fr; }
}

/* === PARALLAX BAND (entre cursus et internat) === */
.lst-parallax-band {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.lst-parallax-band__bg {
    position: absolute;
    inset: 0;
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}
.lst-parallax-band__overlay { display: none; }
.lst-parallax-band__container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}
.lst-parallax-band__inner {
    color: #fff;
    text-align: center;
}
.lst-parallax-band__quote-icon {
    font-size: 2.4rem;
    color: var(--color-lasalle-yellow, #f5c500);
    margin-bottom: 18px;
    display: inline-block;
}
.lst-parallax-band__quote {
    margin: 0 0 24px;
    border: 0;
    padding: 0;
}
.lst-parallax-band__quote p {
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.35;
    font-style: italic;
    margin: 0 0 14px;
    color: #fff;
}
.lst-parallax-band__quote cite {
    font-size: 0.95rem;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
    color: #fff;
}
.lst-parallax-band__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px;
    max-width: 620px;
}
.lst-parallax-band__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.btn-outline--light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline--light:hover {
    background: #fff;
    color: var(--color-primary, #0f1738);
    border-color: #fff;
}
@media (max-width: 1024px) {
    .lst-parallax-band { min-height: 420px; padding: 80px 0; }
}
@media (hover: none), (max-width: 900px) {
    .lst-parallax-band { padding: 70px 0; min-height: 380px; }
    .lst-parallax-band__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 56, 0.78) 0%,
            rgba(15, 23, 56, 0.65) 100%
        );
    }
}

/* === PAGE CONTACT - bloc coordonnees === */
.lst-page-hero--compact { min-height: 360px; }
.lst-page-hero--compact .lst-page-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); }

.lst-coords-block { padding: 80px 0 30px; }
.lst-coords-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4d8c 100%);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(14,42,74,.18);
    position: relative;
    overflow: hidden;
}
.lst-coords-hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
    pointer-events: none;
}
.lst-coords-hero__text h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin: 0 0 14px;
}
.lst-coords-hero__text p {
    color: rgba(255,255,255,.88);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 460px;
}
.lst-coords-hero__quick {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.lst-coords-quick {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    padding: 18px 22px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.lst-coords-quick:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35);
    transform: translateX(4px);
    color: #fff;
}
.lst-coords-quick i {
    font-size: 1.35rem;
    color: var(--color-accent, #f4b400);
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.10);
    border-radius: 12px;
}
.lst-coords-quick span { display: flex; flex-direction: column; min-width: 0; }
.lst-coords-quick strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-all;
}
.lst-coords-quick em {
    font-style: normal;
    font-size: .82rem;
    opacity: .82;
    margin-top: 2px;
}

.lst-coords-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lst-coords-card {
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
    display: flex;
    flex-direction: column;
}
.lst-coords-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(14,42,74,.10);
    border-color: var(--color-secondary);
}
.lst-coords-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.lst-coords-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lst-coords-card p {
    margin: 0 0 8px;
    font-size: .95rem;
    line-height: 1.55;
    color: var(--color-text);
}
.lst-coords-card p a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.lst-coords-card p a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.lst-coords-card__note {
    display: block;
    font-size: .82rem;
    color: var(--color-text-muted);
    margin-top: auto;
    padding-top: 8px;
}
.lst-coords-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 16px;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border-radius: 10px;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: background .25s ease, color .25s ease;
    width: fit-content;
}
.lst-coords-card__cta:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Form card framer style */
.lst-form-block { padding: 80px 0; }
.lst-contact-split {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}
.lst-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}
.lst-contact-aside .lst-coords-card { padding: 22px 22px; }
.lst-contact-aside .lst-coords-card__icon {
    width: 44px; height: 44px;
    font-size: 1.05rem;
    margin-bottom: 14px;
    border-radius: 12px;
}
.lst-contact-aside .lst-coords-card h3 { font-size: .92rem; margin-bottom: 8px; }
.lst-contact-aside .lst-coords-card p { font-size: .9rem; margin-bottom: 4px; }
.lst-contact-aside .lst-coords-card__note { font-size: .78rem; padding-top: 4px; }
.lst-form-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(14,42,74,.10);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(14,42,74,.05);
}
.lst-form-card--in-split { max-width: none; margin: 0; }
.lst-form-card__head {
    padding: 44px 52px 30px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff 100%);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    text-align: center;
}
.lst-form-card__head .lst-eyebrow { margin-bottom: 12px; }
.lst-form-card__head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-primary);
    margin: 0 0 14px;
}
.lst-form-card__head p {
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 580px;
    font-size: .98rem;
    line-height: 1.55;
}
.lst-form-card__body {
    padding: 40px 52px 48px;
}

@media (max-width: 1024px) {
    .lst-coords-hero { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
    .lst-coords-cards { grid-template-columns: repeat(2, 1fr); }
    .lst-contact-split { grid-template-columns: 1fr; gap: 24px; }
    .lst-contact-aside { position: static; flex-direction: row; flex-wrap: wrap; }
    .lst-contact-aside .lst-coords-card { flex: 1 1 240px; }
}
@media (max-width: 768px) {
    .lst-coords-block { padding: 50px 0 20px; }
    .lst-coords-hero { padding: 28px; border-radius: 18px; }
    .lst-coords-hero__text h2 { font-size: 1.5rem; }
    .lst-coords-cards { grid-template-columns: 1fr; gap: 16px; }
    .lst-coords-card { padding: 22px 20px; }
    .lst-form-block { padding: 50px 0; }
    .lst-form-card { border-radius: 20px; }
    .lst-form-card__head { padding: 32px 24px 20px; }
    .lst-form-card__body { padding: 28px 24px 36px; }
    .lst-contact-aside { flex-direction: column; }
}

/* === MOBILITES INTERNATIONALES (carte Leaflet) === */
.lst-mob {
    --lst-mob-bg: #fff;
    --lst-mob-border: #e5e7eb;
    --lst-mob-shadow: 0 12px 40px rgba(14,42,74,.12);
    margin-top: 36px;
}
.lst-mob__layout {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 24px;
    align-items: stretch;
    background: var(--lst-mob-bg);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--lst-mob-shadow);
}
.lst-mob__sidebar { display: flex; flex-direction: column; gap: 18px; }
.lst-mob__panel {
    background: var(--color-bg-alt, #f7f8fa);
    border: 1px solid var(--lst-mob-border);
    border-radius: 14px;
    padding: 16px 18px;
}
.lst-mob__panel h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .02em;
    text-transform: uppercase;
}
.lst-mob__legend-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px;
    font-size: .92rem;
    color: var(--color-text);
}
.lst-mob__legend-item:last-child { margin-bottom: 0; }
.lst-mob__legend-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(14,42,74,.25);
    flex-shrink: 0;
}
.lst-mob__filter-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: .92rem;
    color: var(--color-text);
    user-select: none;
}
.lst-mob__filter-item:last-child { margin-bottom: 0; }
.lst-mob__filter-item input { accent-color: var(--color-primary); width: 16px; height: 16px; cursor: pointer; }

.lst-mob__map-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lst-mob-border);
    min-height: 520px;
}
#lst-mobilites-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #e8f0f5;
}

.lst-mob__list-wrap {
    background: var(--color-bg-alt, #f7f8fa);
    border: 1px solid var(--lst-mob-border);
    border-radius: 14px;
    padding: 18px;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.lst-mob__list-wrap::-webkit-scrollbar { width: 6px; }
.lst-mob__list-wrap::-webkit-scrollbar-thumb { background: rgba(14,42,74,.25); border-radius: 3px; }
.lst-mob__list-title {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.lst-mob-country {
    background: #fff;
    border: 1px solid var(--lst-mob-border);
    border-radius: 10px;
    padding: 0;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.lst-mob-country:last-child { margin-bottom: 0; }
.lst-mob-country[open] {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(14,42,74,.08);
}
.lst-mob-country summary {
    padding: 11px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
    list-style: none;
    font-size: .94rem;
}
.lst-mob-country summary::-webkit-details-marker { display: none; }
.lst-mob-country summary::after {
    content: "+";
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
}
.lst-mob-country[open] summary::after { content: "−"; }
.lst-mob-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(14,42,74,.2);
    flex-shrink: 0;
}
.lst-mob-count {
    background: var(--color-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 4px;
}
.lst-mob-country ul {
    list-style: none;
    padding: 0 14px 12px 36px;
    margin: 0;
}
.lst-mob-country ul li {
    position: relative;
    padding: 8px 0 8px 16px;
    font-size: .88rem;
    line-height: 1.5;
    color: var(--color-text-muted, #555);
    border-top: 1px dashed var(--lst-mob-border);
}
.lst-mob-country ul li:first-child { border-top: 0; }
.lst-mob-country ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 6px; height: 6px;
    background: var(--color-accent, var(--color-secondary));
    border-radius: 50%;
}

/* Popup Leaflet custom */
.leaflet-popup.lst-mob-popup .leaflet-popup-content-wrapper {
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(14,42,74,.22);
    padding: 0;
}
.leaflet-popup.lst-mob-popup .leaflet-popup-content {
    margin: 14px 18px;
    font-size: .9rem;
    line-height: 1.5;
}
.leaflet-popup.lst-mob-popup .leaflet-popup-tip {
    background: #fff;
    border: 1px solid var(--color-primary);
}
.leaflet-popup.lst-mob-popup .leaflet-popup-close-button {
    color: var(--color-primary);
    padding: 8px 10px 0 0;
    font-size: 20px;
    width: 28px;
    height: 28px;
}
.lst-mob-popup__country {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    padding-right: 18px;
    letter-spacing: .01em;
}
.lst-mob-popup__text {
    color: var(--color-text);
    font-size: .88rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .lst-mob__layout { grid-template-columns: 1fr 1fr; }
    .lst-mob__sidebar { grid-column: 1 / 3; flex-direction: row; flex-wrap: wrap; }
    .lst-mob__panel { flex: 1 1 240px; }
    .lst-mob__map-wrap { min-height: 460px; }
    .lst-mob__list-wrap { max-height: 460px; }
}
@media (max-width: 768px) {
    .lst-mob__layout { grid-template-columns: 1fr; gap: 16px; padding: 14px; }
    .lst-mob__sidebar { grid-column: 1; }
    .lst-mob__map-wrap, #lst-mobilites-map { min-height: 380px; }
    .lst-mob__list-wrap { max-height: none; }
}

/* Variante Jeunes lasalliens : 60vh pour le bandeau engagement */
.lst-parallax-band--jeunes-lasalliens { height: 60vh; max-height: 620px; min-height: 320px; }
.lst-parallax-band--jeunes-lasalliens .lst-parallax-band__bg { background-position: center 35%; }
.lst-parallax-band--jeunes-lasalliens .lst-parallax-band__overlay {
    display: block;
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,42,74,.20) 0%, rgba(14,42,74,.35) 100%);
    pointer-events: none;
}
@media (max-width: 900px) {
    .lst-parallax-band--jeunes-lasalliens { height: 45vh; min-height: 240px; }
}

/* Variante La Salle : ratio cinematic 21/9 pour le tableau du saint */
.lst-parallax-band--la-salle { height: 70vh; max-height: 720px; min-height: 380px; }
.lst-parallax-band--la-salle .lst-parallax-band__bg { background-position: center 30%; }
.lst-parallax-band--la-salle .lst-parallax-band__overlay {
    display: block;
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,42,74,.08) 0%, rgba(14,42,74,.18) 100%);
    pointer-events: none;
}
@media (max-width: 900px) {
    .lst-parallax-band--la-salle { height: 50vh; min-height: 280px; }
}

/* Rich row variant : photo "Origine du foyer" plus petite, texte complet visible */
@media (min-width: 769px) {
    .lst-rich-row--cap-80vh {
        grid-template-columns: minmax(280px, 380px) 1fr;
        align-items: start;
        gap: 56px;
    }
    .lst-rich-row--cap-80vh .lst-rich-row__media {
        aspect-ratio: 3 / 4;
        max-width: 380px;
        position: sticky;
        top: 110px;
    }
}

/* === AVIS GOOGLE (marquee) === */
.lst-google-reviews {
    padding: 100px 0 90px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%);
    overflow: hidden;
}
.lst-google-reviews__rating {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.lst-google-reviews__stars {
    color: #fbbc04;
    font-size: 22px;
    letter-spacing: 4px;
}
.lst-google-reviews__caption {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0;
}
.lst-google-reviews__caption strong {
    color: var(--color-primary);
    font-weight: 600;
}
.lst-marquee {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.lst-marquee__row {
    overflow: hidden;
    width: 100%;
}
.lst-marquee__track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
    padding: 8px 0;
}
.lst-marquee__row--ltr-rtl .lst-marquee__track {
    animation: lst-marquee-rtl 60s linear infinite;
}
.lst-marquee__row--rtl-ltr .lst-marquee__track {
    animation: lst-marquee-ltr 64s linear infinite;
}
.lst-marquee:hover .lst-marquee__track,
.lst-marquee:focus-within .lst-marquee__track {
    animation-play-state: paused;
}
@keyframes lst-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 11px)); }
}
@keyframes lst-marquee-ltr {
    from { transform: translateX(calc(-50% - 11px)); }
    to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .lst-marquee__track { animation: none !important; }
}
.lst-gr-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius);
    padding: 26px 24px;
    box-shadow: var(--lst-shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    position: relative;
    flex: 0 0 360px;
    width: 360px;
}
.lst-gr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lst-shadow-strong);
    border-color: rgba(var(--color-secondary-rgb), .35);
}
.lst-gr-card__stars {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 3px;
}
.lst-gr-card__text {
    color: var(--color-text);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.lst-gr-card__foot {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
}
.lst-gr-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    line-height: 1.2;
}
.lst-gr-card__source {
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: .02em;
}
.lst-google-reviews__cta {
    margin-top: 48px;
    text-align: center;
}
.lst-google-reviews__cta .btn i {
    font-size: 12px;
    margin-left: 4px;
}
@media (max-width: 640px) {
    .lst-google-reviews { padding: 70px 0 60px; }
    .lst-gr-card { flex: 0 0 300px; width: 300px; padding: 22px 20px; }
    .lst-marquee__row--ltr-rtl .lst-marquee__track { animation-duration: 48s; }
    .lst-marquee__row--rtl-ltr .lst-marquee__track { animation-duration: 52s; }
}

/* === SPLIT (text + image) === */
.lst-internat, .lst-entreprises { padding: 110px 0; }
.lst-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lst-split--reverse > .lst-split__media { order: 2; }
.lst-split--reverse > .lst-split__content { order: 1; }
.lst-split__media {
    position: relative;
    border-radius: var(--lst-radius);
    overflow: hidden;
    box-shadow: var(--lst-shadow-strong);
    aspect-ratio: 4 / 3;
}
.lst-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}
.lst-split__media:hover .lst-split__img { transform: scale(1.04); }
.lst-split__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(14,42,74,.92);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lst-split__chip {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-lasalle-yellow);
    color: var(--color-primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--lst-shadow);
}
.lst-split__content .lst-eyebrow { margin-bottom: 12px; }
.lst-split__content p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1.02rem;
}

/* === CTA RENTREE === */
.lst-cta-rentree { padding: 90px 0; }
.lst-cta-rentree__inner {
    background: var(--gradient-brand);
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lst-cta-rentree__inner::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(244,164,28,.15) 0%, transparent 60%);
    transform: rotate(-12deg);
}
.lst-cta-rentree__inner::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(229,38,126,.12) 0%, transparent 60%);
    transform: rotate(12deg);
}
.lst-cta-rentree__inner > * { position: relative; z-index: 1; }
.lst-cta-rentree__inner .lst-eyebrow { margin-bottom: 14px; }
.lst-cta-rentree__buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.lst-cta-rentree .btn-primary {
    background: var(--color-lasalle-yellow);
    border-color: var(--color-lasalle-yellow);
    color: var(--color-primary);
}
.lst-cta-rentree .btn-primary:hover { background: #fff; color: var(--color-primary); }

/* === TEMOIGNAGES === */
.lst-testi { padding: 100px 0; background: var(--color-bg-alt); }
.lst-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lst-testi-card {
    background: #fff;
    border-radius: var(--lst-radius);
    padding: 36px 32px 32px;
    border: 1px solid var(--color-border);
    box-shadow: var(--lst-shadow);
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.lst-testi-card:hover { transform: translateY(-6px); box-shadow: var(--lst-shadow-strong); }
.lst-testi-card__quote-mark {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 18px;
}
.lst-testi-card__text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 24px;
    font-style: italic;
}
.lst-testi-card__author {
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    font-style: normal;
}
.lst-testi-card__author strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
}
.lst-testi-card__author span {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-top: 2px;
}

/* === CONTACT BAND === */
.lst-contact-band { padding: 80px 0 100px; }
.lst-contact-band__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    padding: 50px 56px;
    border-radius: var(--lst-radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--lst-shadow);
}
.lst-contact-band__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lst-contact-band__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    text-decoration: none;
    transition: all .3s var(--ease);
    border: 1px solid transparent;
}
.lst-contact-band__item:hover {
    background: #fff;
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--lst-shadow);
    color: var(--color-primary);
}
.lst-contact-band__item i {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.lst-contact-band__item span {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    font-size: 14px;
    color: var(--color-text);
    word-break: break-word;
}
.lst-contact-band__item strong {
    color: var(--color-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2px;
}

/* === Page generic (lst-page) === */
.lst-page-hero {
    position: relative;
    padding: 140px 0 90px;
    overflow: hidden;
    background: var(--gradient-brand);
    color: #fff;
}
.lst-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 60%, rgba(244,164,28,.18) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 100%, rgba(229,38,126,.15) 0%, transparent 60%);
    pointer-events: none;
}
.lst-page-hero--with-image {
    background-color: var(--color-primary);
    background-image: var(--lst-hero-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.lst-page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .35;
}
@media (max-width: 1024px) {
    /* iOS et certains mobiles ne supportent pas bien fixed — fallback en scroll */
    .lst-page-hero--with-image { background-attachment: scroll; }
}
.lst-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,42,74,.85) 0%, rgba(30,77,140,.7) 100%);
    z-index: 1;
}
.lst-page-hero__container {
    position: relative;
    z-index: 2;
}
.lst-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    margin-bottom: 22px;
}
.lst-breadcrumb a { color: rgba(255,255,255,.78); text-decoration: none; }
.lst-breadcrumb a:hover { color: #fff; }
.lst-breadcrumb i { font-size: 9px; opacity: .55; }
.lst-page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}
.lst-page-hero__kicker::before { content: ''; width: 14px; height: 2px; background: var(--color-lasalle-yellow); border-radius: 2px; }
.lst-page-hero__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -.015em;
    max-width: 880px;
}
.lst-page-hero__title em {
    font-style: italic;
    position: relative;
    display: inline-block;
    color: #0e2a47;
    padding: .04em .26em;
    z-index: 1;
    isolation: isolate;
}
.lst-page-hero__title em::before {
    content: '';
    position: absolute;
    inset: .04em -.04em .04em -.04em;
    background: var(--color-lasalle-yellow, #f5c500);
    border-radius: 14px;
    transform: rotate(-1.2deg);
    z-index: -1;
}
.lst-page-hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    max-width: 720px;
    margin: 0;
}

/* Section text content (post pages) */
.lst-section { padding: 80px 0; }
.lst-section--alt { background: var(--color-bg-alt); }
.lst-section--narrow .lst-section__inner { max-width: 860px; margin: 0 auto; }

.lst-section__head {
    margin-bottom: 40px;
    text-align: center;
}
.lst-section__head--left { text-align: left; }
.lst-section__head .lst-eyebrow { margin-bottom: 12px; }
.lst-section__head h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--color-primary);
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -.01em;
}
.lst-section__lead {
    color: var(--color-text-light);
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}
.lst-section__head--left .lst-section__lead { margin: 0; }
.lst-section__body p {
    color: var(--color-text);
    line-height: 1.75;
    font-size: 1.02rem;
    margin: 0 0 18px;
}
.lst-section__body h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.35rem;
    margin: 32px 0 12px;
    font-weight: 500;
}

/* Feature cards - 4 colored variants for cycling */
.lst-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.lst-features-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lst-features-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lst-features-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Auto-équilibrage : si la grille contient exactement N items, on force N colonnes
   pour éviter les rangées orphelines (ex: 3+1, 4+1, etc.) */
.lst-features-grid:has(> .lst-feature:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
}
.lst-features-grid:has(> .lst-feature:nth-child(5):last-child) {
    grid-template-columns: repeat(5, 1fr);
}
.lst-features-grid:has(> .lst-feature:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .lst-features-grid--4,
    .lst-features-grid:has(> .lst-feature:nth-child(4):last-child),
    .lst-features-grid:has(> .lst-feature:nth-child(5):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .lst-features-grid--4,
    .lst-features-grid:has(> .lst-feature:nth-child(4):last-child),
    .lst-features-grid:has(> .lst-feature:nth-child(5):last-child) {
        grid-template-columns: 1fr;
    }
}
.lst-feature {
    background: #fff;
    border: 1px solid #e9ecf2;
    border-radius: 18px;
    padding: 48px 36px 44px;
    box-shadow: 0 2px 14px rgba(14,42,74,.04);
    position: relative;
    overflow: hidden;
    transition: transform .45s cubic-bezier(.65,0,.35,1), box-shadow .45s cubic-bezier(.65,0,.35,1), border-color .35s ease;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lst-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--feat-color) 0%, var(--feat-color) 60%, transparent 100%);
    opacity: .55;
    transition: opacity .45s ease, height .45s ease;
}
.lst-feature::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--feat-color), transparent 70%);
    opacity: 0;
    transition: opacity .55s cubic-bezier(.65,0,.35,1);
    z-index: -1;
}
.lst-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -22px rgba(14,42,74,.22), 0 6px 18px -8px rgba(14,42,74,.12);
    border-color: var(--feat-color);
}
.lst-feature:hover::before {
    opacity: 1;
    height: 4px;
}
.lst-feature:hover::after { opacity: .08; }
.lst-feature:nth-child(4n+1) { --feat-color: var(--color-lasalle-red); }
.lst-feature:nth-child(4n+2) { --feat-color: var(--color-lasalle-yellow); }
.lst-feature:nth-child(4n+3) { --feat-color: var(--color-lasalle-green); }
.lst-feature:nth-child(4n+4) { --feat-color: var(--color-lasalle-blue); }
.lst-feature__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--feat-color), color-mix(in srgb, var(--feat-color) 70%, white));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 28px;
    box-shadow: 0 8px 22px -10px var(--feat-color);
    transition: transform .45s cubic-bezier(.65,0,.35,1);
    flex-shrink: 0;
}
.lst-feature:hover .lst-feature__icon {
    transform: scale(1.08) rotate(-4deg);
}
.lst-feature h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 0 0 16px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.005em;
}
.lst-feature p {
    color: var(--color-text-light);
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0;
    max-width: 320px;
}

/* Variante card avec photo en haut */
.lst-feature--photo {
    padding: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    min-height: 420px;
}
.lst-feature--photo .lst-feature__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
}
.lst-feature--photo .lst-feature__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14,42,74,.15) 100%);
    pointer-events: none;
}
.lst-feature--photo .lst-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.lst-feature--photo:hover .lst-feature__media img {
    transform: scale(1.06);
}
.lst-feature--photo .lst-feature__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}
.lst-feature--photo .lst-feature__body h3 {
    font-size: 1.25rem;
    margin: 0;
}
.lst-feature--photo .lst-feature__body p {
    flex: 1 1 auto;
}
.lst-feature--photo .lst-feature__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: auto;
    transition: gap .25s var(--ease), color .25s var(--ease);
}
.lst-feature--photo:hover .lst-feature__cta {
    gap: 14px;
    color: var(--feat-color, var(--color-primary));
}
@media (max-width: 768px) {
    .lst-feature--photo { min-height: 360px; }
    .lst-feature--photo .lst-feature__media { aspect-ratio: 16/9; }
}

/* === Fond bleu léger derrière les cards blanches pour les faire ressortir === */
#presentation,
.lst-section--alt {
    background-color: var(--color-bg-alt);
}
#presentation .lst-feature,
.lst-section--alt .lst-feature {
    box-shadow: 0 2px 6px rgba(10,37,64,.04), 0 14px 30px -18px rgba(10,37,64,.18);
    background: #fff;
}

/* === Mot du chef d'établissement : texte pleine largeur + photo + bulle nom === */
.lst-mot-chef--stack {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.lst-mot-chef__text {
    text-align: left;
    margin-bottom: 56px;
}
.lst-mot-chef__text .lst-eyebrow {
    margin-bottom: 12px;
    display: inline-flex;
}
.lst-mot-chef__text h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 24px;
    text-align: left;
}
.lst-mot-chef__text p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.02rem;
    margin: 0 0 16px;
}
.lst-mot-chef__sign {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding-bottom: 36px;
}
.lst-mot-chef__photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 22px 48px -16px rgba(10,37,64,.32);
    border: 6px solid #fff;
    position: relative;
    z-index: 1;
}
.lst-mot-chef__photo img,
.lst-mot-chef__photo picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lst-mot-chef__bubble {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    box-shadow: 0 12px 28px -10px rgba(10,37,64,.45);
    white-space: nowrap;
    z-index: 2;
}
@media (max-width: 540px) {
    .lst-mot-chef__photo { width: 180px; height: 180px; }
    .lst-mot-chef__bubble { font-size: 12px; padding: 10px 16px; white-space: normal; max-width: 220px; text-align: center; }
}

/* === Presentation split : texte 2-col + image à droite, icônes dessous === */
#presentation .lst-presentation--split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px; /* Plus d'air entre texte et icônes en dessous */
}
#presentation .lst-presentation__col {
    min-width: 0;
}
#presentation .lst-presentation__col .lst-section__head {
    text-align: left;
    margin-bottom: 24px;
}
/* H2 discret */
#presentation .lst-presentation__col h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-primary);
    margin: 0 0 18px;
    letter-spacing: -.005em;
}
#presentation .lst-presentation__col .lst-section__lead {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin: 0 0 14px;
}
#presentation .lst-presentation__col .lst-section__body {
    margin-top: 0;
}
#presentation .lst-presentation__col .lst-section__body p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 14px;
}
#presentation .lst-presentation__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 60px -20px rgba(10, 37, 64, .35);
    aspect-ratio: 4/5;
    max-height: 65vh;
    margin-left: auto;
    width: 100%;
}
#presentation .lst-presentation__media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid rgba(var(--color-accent-rgb), .55);
    pointer-events: none;
    z-index: 2;
    transform: translate(14px, 14px);
    transition: transform .7s var(--ease);
}
#presentation .lst-presentation--split:hover .lst-presentation__media::before {
    transform: translate(8px, 8px);
}
#presentation .lst-presentation__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}
#presentation .lst-presentation--split:hover .lst-presentation__media img {
    transform: scale(1.04);
}

/* Icônes dessous : margin top supplémentaire */
#presentation .lst-features-grid {
    margin-top: 0; /* le mb-80 du split prend le relai */
}

@media (max-width: 1024px) {
    #presentation .lst-presentation--split {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    #presentation .lst-presentation__media {
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 16/10;
        max-height: 50vh;
    }
}

/* === Timeline horizontale gold pour la section #programme === */
#programme .lst-features-grid {
    position: relative;
    margin-top: 60px;
    padding-top: 56px;
}
/* Ligne horizontale dorée qui relie les 3 numéros */
#programme .lst-features-grid::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 100%);
    z-index: 0;
}
#programme .lst-feature {
    overflow: visible;
    margin-top: 0;
}
/* Désactive la barre colorée au top de chaque card */
#programme .lst-feature::before {
    display: none;
}
/* Cercle doré avec chiffre romain, position au-dessus de la card */
#programme .lst-feature::after {
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 8px 22px -6px rgba(200,161,90,.55), 0 0 0 6px var(--color-bg-alt, #f4f7fb);
    z-index: 2;
}
#programme .lst-feature:nth-child(1)::after { content: 'I'; }
#programme .lst-feature:nth-child(2)::after { content: 'II'; }
#programme .lst-feature:nth-child(3)::after { content: 'III'; }

/* Masque l'icône d'origine, le cercle numéroté la remplace */
#programme .lst-feature__icon {
    display: none;
}
/* Le titre passe en haut, centré */
#programme .lst-feature h3 {
    text-align: center;
    margin-top: 4px;
    font-size: 1.25rem;
}
#programme .lst-feature .lst-list {
    margin-top: 18px;
}

/* Coches bleues à la place des vertes */
#programme .lst-list li i.fa-check {
    color: var(--color-secondary) !important;
}
/* Léger fond bleu rond pour les checks (façon badge) */
#programme .lst-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
#programme .lst-list li i.fa-check {
    margin-right: 0 !important;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(var(--color-secondary-rgb, 30,77,140), .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

/* Section .lst-section--alt avec couleur de fond → adapte le ring autour du cercle */
.lst-section--alt #programme,
.lst-section--alt#programme {
    background: inherit;
}
#programme.lst-section--alt .lst-feature::after,
.lst-section--alt #programme .lst-feature::after {
    box-shadow: 0 8px 22px -6px rgba(200,161,90,.55), 0 0 0 6px var(--color-bg-alt, #f4f7fb);
}

@media (max-width: 900px) {
    #programme .lst-features-grid {
        padding-top: 0;
        margin-top: 30px;
    }
    /* En mobile : timeline verticale */
    #programme .lst-features-grid::before {
        left: 26px;
        right: auto;
        top: 60px;
        bottom: 60px;
        width: 2px;
        height: auto;
        background: var(--color-accent);
    }
    #programme .lst-feature {
        padding-left: 80px;
    }
    #programme .lst-feature::after {
        top: 32px;
        left: -2px;
        transform: none;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    #programme .lst-feature h3 {
        text-align: left;
    }
}

/* Section text + image alternantes */
.lst-rich-section { padding: 90px 0; }
.lst-rich-section + .lst-rich-section { padding-top: 0; }
.lst-rich-section--alt { background: var(--color-bg-alt); }
.lst-rich-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lst-rich-row--reverse > .lst-rich-row__media { order: 2; }
.lst-rich-row__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: visible;
    isolation: isolate;
}
.lst-rich-row__media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid rgba(var(--color-accent-rgb), .55);
    pointer-events: none;
    z-index: 0;
    transform: translate(14px, 14px);
    transition: transform .7s var(--ease), border-color .4s ease;
}
.lst-rich-row__media:hover::before {
    transform: translate(8px, 8px);
    border-color: rgba(var(--color-primary-rgb), .55);
}
.lst-rich-row__media img,
.lst-rich-row__media picture > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--lst-shadow-strong);
    display: block;
    transition: transform .8s var(--ease);
}
.lst-rich-row__media:hover img { transform: scale(1.04); }
/* Variante reverse : décale le cadre à gauche pour rester dans la gouttière */
.lst-rich-row--reverse > .lst-rich-row__media::before {
    transform: translate(-14px, 14px);
}
.lst-rich-row--reverse > .lst-rich-row__media:hover::before {
    transform: translate(-8px, 8px);
}
@media (max-width: 768px) {
    .lst-rich-row__media::before,
    .lst-rich-row--reverse > .lst-rich-row__media::before {
        transform: translate(8px, 8px);
    }
}
.lst-rich-row__content .lst-eyebrow { margin-bottom: 12px; }
.lst-rich-row__content h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 18px;
}
.lst-rich-row__content p {
    color: var(--color-text-light);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Quotes (mot direction) */
.lst-quote {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff 100%);
    border-left: 4px solid var(--color-lasalle-yellow);
    border-radius: var(--lst-radius-sm);
    padding: 40px 44px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.75;
    position: relative;
}
.lst-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 32px;
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--color-lasalle-yellow);
    opacity: .4;
    line-height: 1;
}
.lst-quote__author {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 14px;
}

/* Inscription / contact CTA mid-page */
.lst-mid-cta {
    padding: 80px 0;
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
}
.lst-mid-cta h2,
.lst-mid-cta h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 14px;
    line-height: 1.2;
}
.lst-mid-cta p { color: rgba(255,255,255,.92); margin: 0 auto 28px; max-width: 620px; font-size: 1.05rem; line-height: 1.6; }
.lst-mid-cta .lst-mid-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.lst-mid-cta .btn-primary { background: var(--color-lasalle-yellow); border-color: var(--color-lasalle-yellow); color: var(--color-primary); }
.lst-mid-cta .btn-primary:hover { background: #fff; color: var(--color-primary); }

/* Numeric steps (parcours) */
.lst-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.lst-step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius);
    padding: 28px 24px;
    box-shadow: var(--lst-shadow);
    position: relative;
}
.lst-step__num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--step-color);
    line-height: 1;
    opacity: .85;
}
.lst-step:nth-child(4n+1) { --step-color: var(--color-lasalle-red); }
.lst-step:nth-child(4n+2) { --step-color: var(--color-lasalle-yellow); }
.lst-step:nth-child(4n+3) { --step-color: var(--color-lasalle-green); }
.lst-step:nth-child(4n+4) { --step-color: var(--color-lasalle-blue); }
.lst-step h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 16px 0 8px;
    font-size: 1.15rem;
    font-weight: 500;
}
.lst-step p { color: var(--color-text-light); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Pricing rows */
.lst-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--lst-radius);
    overflow: hidden;
    box-shadow: var(--lst-shadow);
}
.lst-pricing-table th, .lst-pricing-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.lst-pricing-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lst-pricing-table tr:last-child td { border-bottom: none; }
.lst-pricing-table tr:hover td { background: var(--color-bg-alt); }
.lst-pricing-table .lst-price-tag {
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

/* Document/file list (fournitures, JPO) */
.lst-docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.lst-doc {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius-sm);
    color: inherit;
    text-decoration: none;
    transition: all .25s var(--ease);
}
.lst-doc:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--lst-shadow);
    transform: translateY(-2px);
    color: inherit;
}
.lst-doc__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(229,38,126,.1);
    color: var(--color-lasalle-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.lst-doc--maternelle .lst-doc__icon { background: rgba(244,164,28,.12); color: var(--color-lasalle-yellow); }
.lst-doc--elementaire .lst-doc__icon { background: rgba(143,201,58,.14); color: var(--color-lasalle-green-dark); }
.lst-doc--college .lst-doc__icon { background: rgba(26,111,184,.12); color: var(--color-lasalle-blue); }
.lst-doc--lycee-gt .lst-doc__icon { background: rgba(30,77,140,.12); color: var(--color-secondary); }
.lst-doc--lycee-pro .lst-doc__icon { background: rgba(229,38,126,.12); color: var(--color-lasalle-red); }
.lst-doc--bts .lst-doc__icon { background: rgba(200,161,90,.18); color: var(--color-accent-dark); }
.lst-doc--maternelle:hover { border-color: var(--color-lasalle-yellow); }
.lst-doc--elementaire:hover { border-color: var(--color-lasalle-green-dark); }
.lst-doc--college:hover { border-color: var(--color-lasalle-blue); }
.lst-doc--lycee-gt:hover { border-color: var(--color-secondary); }
.lst-doc--lycee-pro:hover { border-color: var(--color-lasalle-red); }
.lst-doc--bts:hover { border-color: var(--color-accent-dark); }
.lst-doc__text { flex: 1; line-height: 1.4; }
.lst-doc__text strong { color: var(--color-primary); display: block; font-weight: 600; }
.lst-doc__text span { color: var(--color-text-muted); font-size: 13px; }
.lst-doc__action { color: var(--color-secondary); font-weight: 600; font-size: 13px; }

/* Filieres pills (formations) */
.lst-filieres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lst-filiere {
    display: block;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius-sm);
    color: inherit;
    text-decoration: none;
    text-align: center;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.lst-filiere::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity .3s var(--ease);
    z-index: 0;
}
.lst-filiere > * { position: relative; z-index: 1; }
.lst-filiere:hover { color: #fff; transform: translateY(-4px); box-shadow: var(--lst-shadow-strong); }
.lst-filiere:hover::before { opacity: 1; }
.lst-filiere__icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(14,42,74,.06);
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
    transition: all .3s var(--ease);
}
.lst-filiere:hover .lst-filiere__icon { background: rgba(255,255,255,.18); color: #fff; }
.lst-filiere h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    margin: 0 0 6px;
    font-weight: 500;
    line-height: 1.25;
    transition: color .3s var(--ease);
}
.lst-filiere:hover h3 { color: #fff; }
.lst-filiere span {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color .3s var(--ease);
}
.lst-filiere:hover span { color: rgba(255,255,255,.85); }

/* Team grid */
.lst-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    justify-content: center;
}
.lst-team--13 { grid-template-columns: repeat(5, 1fr); }
.lst-team--13 .lst-team-member:nth-last-child(-n+3):nth-child(11) { grid-column: 2 / span 1; }
@media (max-width: 1100px) {
    .lst-team--13 { grid-template-columns: repeat(4, 1fr); }
    .lst-team--13 .lst-team-member:nth-last-child(-n+3):nth-child(11) { grid-column: auto; }
}
@media (max-width: 720px) {
    .lst-team--13 { grid-template-columns: repeat(2, 1fr); }
}
.lst-team--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .lst-team--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .lst-team--3 { grid-template-columns: repeat(1, 1fr); }
}
.lst-team-member {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: var(--lst-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(14,42,74,.04);
    transition: transform .55s cubic-bezier(.65,0,.35,1), box-shadow .55s cubic-bezier(.65,0,.35,1), border-color .35s ease;
    will-change: transform;
}
.lst-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px -18px rgba(14,42,74,.28), 0 6px 18px -8px rgba(14,42,74,.18);
    border-color: #d4d8e0;
}
.lst-team-member__photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-bg-alt);
    position: relative;
}
.lst-team-member__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(14,42,74,.08) 100%);
    opacity: 0;
    transition: opacity .5s cubic-bezier(.65,0,.35,1);
    pointer-events: none;
}
.lst-team-member:hover .lst-team-member__photo::after { opacity: 1; }
.lst-team-member__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25,.1,.25,1);
}
.lst-team-member:hover .lst-team-member__photo img { transform: scale(1.08); }
.lst-team-member__info {
    padding: 22px 22px 26px;
    text-align: center;
}
.lst-team-member__name {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.25;
}
.lst-team-member__role {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.4;
    display: block;
}

/* === Rooms tabs (chambres internat) === */
.lst-rooms {
    margin-top: 48px;
}
.lst-rooms__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
    background: var(--color-bg-alt);
    border-radius: 18px;
    padding: 8px;
}
.lst-rooms__tab {
    background: transparent;
    border: 1px solid transparent;
    padding: 18px 22px;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    color: var(--color-text-light);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}
.lst-rooms__tab:hover {
    background: rgba(255,255,255,.55);
    color: var(--color-primary);
}
.lst-rooms__tab.is-active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 8px 22px -10px rgba(14,42,74,.18);
    border-color: #e6e8ec;
}
.lst-rooms__tab-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-lasalle-yellow);
    line-height: 1;
}
.lst-rooms__tab.is-active .lst-rooms__tab-num { color: var(--color-primary); }
.lst-rooms__tab-label {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
}
.lst-rooms__panel {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 18px rgba(14,42,74,.05);
    animation: lst-fade-in .45s cubic-bezier(.65,0,.35,1);
}
.lst-rooms__panel[hidden] { display: none; }
@keyframes lst-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.lst-rooms__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}
.lst-rooms__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lst-rooms__main {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.lst-rooms__main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.lst-rooms__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.lst-rooms__thumbs img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 2px solid transparent;
}
.lst-rooms__thumbs img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(14,42,74,.25);
}
.lst-rooms__thumbs img.is-active {
    border-color: var(--color-lasalle-yellow);
}
.lst-rooms__info h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    margin: 12px 0 16px;
    line-height: 1.2;
}
.lst-rooms__info h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1rem;
    margin: 24px 0 14px;
}
.lst-rooms__info p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 14px;
}
.lst-rooms__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(244,164,28,.16);
    color: var(--color-lasalle-yellow-dark, #c4830f);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.lst-rooms__equip {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.lst-rooms__equip li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text);
    font-size: 14.5px;
    line-height: 1.55;
    padding: 10px 14px;
    background: var(--color-bg-alt);
    border-radius: 10px;
}
.lst-rooms__equip i {
    color: var(--color-lasalle-yellow);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}
@media (max-width: 900px) {
    .lst-rooms__tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .lst-rooms__panel { padding: 24px; }
    .lst-rooms__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lst-rooms__thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

/* === Galerie photo grid (mosaïque) === */
.lst-gallery-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}
.lst-gallery-grid__item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 2px 10px rgba(14,42,74,.06);
    cursor: zoom-in;
    transition: transform .55s cubic-bezier(.65,0,.35,1), box-shadow .55s cubic-bezier(.65,0,.35,1);
    display: block;
}
.lst-gallery-grid__item--lg {
    grid-column: span 2;
    grid-row: span 2;
}
.lst-gallery-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -16px rgba(14,42,74,.32);
}
.lst-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25,.1,.25,1);
    display: block;
}
.lst-gallery-grid__item:hover img {
    transform: scale(1.06);
}
@media (max-width: 1024px) {
    .lst-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 170px;
    }
}
@media (max-width: 700px) {
    .lst-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }
    .lst-gallery-grid__item--lg { grid-column: span 2; grid-row: span 1; grid-auto-rows: 250px; }
}

/* === Voies cards (lycée général / techno) === */
.lst-voies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.lst-voie-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 30px -16px rgba(14,42,74,.4);
    text-decoration: none;
    color: #fff;
    transition: transform .55s cubic-bezier(.65,0,.35,1), box-shadow .55s cubic-bezier(.65,0,.35,1);
    will-change: transform;
}
.lst-voie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -22px rgba(14,42,74,.5);
    color: #fff;
}
.lst-voie-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.lst-voie-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25,.1,.25,1);
}
.lst-voie-card:hover .lst-voie-card__media img {
    transform: scale(1.06);
}
.lst-voie-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,42,74,.05) 0%, rgba(14,42,74,.55) 55%, rgba(14,42,74,.92) 100%);
    transition: background .5s ease;
}
.lst-voie-card--general .lst-voie-card__overlay {
    background: linear-gradient(180deg, rgba(14,42,74,.05) 0%, rgba(14,42,74,.55) 55%, rgba(14,42,74,.92) 100%);
}
.lst-voie-card--techno .lst-voie-card__overlay {
    background: linear-gradient(180deg, rgba(26,111,184,.05) 0%, rgba(26,111,184,.55) 55%, rgba(14,42,74,.92) 100%);
}
.lst-voie-card__content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 32px 30px 28px;
    z-index: 1;
}
.lst-voie-card__kicker {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.lst-voie-card__content h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    margin: 0 0 10px;
    line-height: 1.15;
}
.lst-voie-card__content p {
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 480px;
}
.lst-voie-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: var(--color-lasalle-yellow);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .02em;
    transition: gap .3s var(--ease), background .25s ease;
}
.lst-voie-card:hover .lst-voie-card__cta {
    gap: 16px;
    background: #ffb73a;
}
.lst-voie-card--techno .lst-voie-card__cta {
    background: #fff;
    color: var(--color-primary);
}
.lst-voie-card--techno:hover .lst-voie-card__cta {
    background: var(--color-lasalle-yellow);
}
@media (max-width: 900px) {
    .lst-voies-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 36px;
    }
    .lst-voie-card { aspect-ratio: 16 / 11; }
    .lst-voie-card__content { padding: 24px 22px 22px; }
}

/* === Signature directeur (photo + nom + titre) === */
.lst-signature {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    padding: 18px 26px 18px 18px;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(14,42,74,.06);
}
.lst-signature__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-alt);
}
.lst-signature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lst-signature__info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.lst-signature__info strong {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.05rem;
}
.lst-signature__info span {
    color: var(--color-text-muted);
    font-size: 13.5px;
    margin-top: 2px;
}
@media (max-width: 540px) {
    .lst-signature { width: 100%; padding: 16px 22px 16px 14px; }
}

/* === Timeline horizontale colorée (parcours collège) === */
.lst-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 30px;
}
.lst-timeline__line {
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-lasalle-red) 0%,
        var(--color-lasalle-yellow) 33%,
        var(--color-lasalle-green) 66%,
        var(--color-lasalle-blue) 100%);
    border-radius: 100px;
    opacity: .35;
    z-index: 0;
}
.lst-timeline__step {
    --step-color: var(--color-primary);
    position: relative;
    text-align: center;
    padding-top: 40px;
    z-index: 1;
}
.lst-timeline__step--c1 { --step-color: var(--color-lasalle-red); }
.lst-timeline__step--c2 { --step-color: var(--color-lasalle-yellow); }
.lst-timeline__step--c3 { --step-color: var(--color-lasalle-green); }
.lst-timeline__step--c4 { --step-color: var(--color-lasalle-blue); }
.lst-timeline__dot {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--step-color);
    box-shadow: 0 0 0 5px rgba(255,255,255,1), 0 0 0 7px rgba(0,0,0,.05);
    z-index: 2;
    transition: transform .35s cubic-bezier(.65,0,.35,1);
}
.lst-timeline__step:hover .lst-timeline__dot {
    transform: translateX(-50%) scale(1.25);
}
.lst-timeline__num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--step-color);
    line-height: 1;
    margin-bottom: 12px;
}
.lst-timeline__body {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: var(--lst-radius);
    padding: 20px 18px 22px;
    transition: transform .4s cubic-bezier(.65,0,.35,1), box-shadow .4s cubic-bezier(.65,0,.35,1), border-color .35s ease;
    box-shadow: 0 2px 10px rgba(14,42,74,.04);
}
.lst-timeline__step:hover .lst-timeline__body {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -14px rgba(14,42,74,.18);
    border-color: var(--step-color);
}
.lst-timeline__body h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.05rem;
    margin: 0 0 8px;
    line-height: 1.25;
}
.lst-timeline__body p {
    color: var(--color-text-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 900px) {
    .lst-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lst-timeline__line { display: none; }
    .lst-timeline__step { padding-top: 0; }
    .lst-timeline__dot { display: none; }
}

/* === CTA moderne === */
.lst-cta-modern {
    margin: 80px 0 100px;
    padding: 0;
}
.lst-cta-modern__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #0e2a4a 0%, #1a3f6e 100%);
    color: #fff;
    border-radius: 24px;
    padding: 60px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(14,42,74,.45);
}
.lst-cta-modern__inner::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,164,28,.18) 0%, rgba(244,164,28,0) 70%);
    pointer-events: none;
}
.lst-cta-modern__kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}
.lst-cta-modern__text h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin: 0 0 14px;
    line-height: 1.2;
}
.lst-cta-modern__text p {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}
.lst-cta-modern__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.lst-cta-modern__actions .btn {
    text-align: center;
    justify-content: center;
}
.lst-cta-modern__actions .btn-primary {
    background: var(--color-lasalle-yellow);
    color: var(--color-primary);
    border-color: var(--color-lasalle-yellow);
    font-weight: 600;
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.lst-cta-modern__actions .btn-primary:hover {
    background: #ffb73a;
    border-color: #ffb73a;
    transform: translateY(-2px);
}
.lst-cta-modern__actions .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    padding: 14px 26px;
}
.lst-cta-modern__actions .btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}
@media (max-width: 900px) {
    .lst-cta-modern { margin: 60px 0 70px; }
    .lst-cta-modern__inner {
        grid-template-columns: 1fr;
        padding: 44px 32px;
        gap: 32px;
    }
    .lst-cta-modern__actions { flex-direction: column; }
}

/* === Pricing tiles (3-icon visual block) === */
.lst-pricing-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}
.lst-pricing-tile {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: var(--lst-radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(14,42,74,.04);
    transition: transform .4s cubic-bezier(.65,0,.35,1), box-shadow .4s cubic-bezier(.65,0,.35,1), border-color .35s ease;
}
.lst-pricing-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px -16px rgba(14,42,74,.22);
    border-color: #d4d8e0;
}
.lst-pricing-tile__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244,164,28,.14), rgba(244,164,28,.06));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.lst-pricing-tile__label {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.lst-pricing-tile__price {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}
.lst-pricing-tile__detail {
    color: var(--color-text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .lst-pricing-tiles { grid-template-columns: 1fr; gap: 16px; }
    .lst-pricing-tile { padding: 26px 22px; }
}

/* === Inline parallax band (post_content) === */
.lst-inline-parallax {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 50vh;
    min-height: 320px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}
.lst-inline-parallax--60 {
    height: 60vh;
    min-height: 380px;
}
.lst-inline-parallax::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,42,74,.18) 0%, rgba(14,42,74,.04) 50%, rgba(14,42,74,.18) 100%);
    pointer-events: none;
}
@media (hover: none), (max-width: 900px) {
    .lst-inline-parallax {
        background-attachment: scroll;
        height: 38vh;
        min-height: 260px;
    }
}

/* === Menu items non-cliquables (href="#") === */
.nav-menu a[href="#"],
.nav-menu a[href$="/#"] {
    cursor: default;
}

/* Chef d'etablissement quote row */
.lst-chef-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.lst-chef-row__photo {
    position: sticky; top: 100px;
    text-align: center;
}
.lst-chef-row__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow-strong);
    display: block;
}
.lst-chef-row__caption {
    margin-top: 18px;
    font-family: var(--font-heading);
    line-height: 1.4;
}
.lst-chef-row__caption strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.lst-chef-row__caption span {
    color: var(--color-secondary);
    font-size: .9rem;
    font-style: italic;
}
.lst-chef-row__quote {
    background: #fff;
    border-radius: var(--lst-radius);
    padding: 36px 40px 32px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: var(--lst-shadow);
    position: relative;
}
.lst-chef-row__quote::before {
    content: "\201C";
    position: absolute;
    top: -22px; left: 22px;
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
    color: var(--color-accent);
    background: #fff;
    width: 60px; height: 56px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--lst-shadow);
}
.lst-chef-row__quote p {
    margin: 0 0 14px;
    color: var(--color-text);
    line-height: 1.7;
}
.lst-chef-row__quote p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
    .lst-chef-row { grid-template-columns: 1fr; gap: 28px; }
    .lst-chef-row__photo { position: static; max-width: 240px; margin: 0 auto; }
    .lst-chef-row__quote { padding: 28px 24px; }
}

/* Figure with caption (history images) */
.lst-figure { margin: 0; }
.lst-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow);
    display: block;
}
.lst-figure figcaption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}
.lst-figure__credit { display: block; font-size: 12px; opacity: .8; margin-top: 4px; }
.lst-figure__credit a { color: var(--color-secondary); text-decoration: none; border-bottom: 1px dotted var(--color-secondary); }
.lst-figure__credit a:hover { color: var(--color-primary); }

/* Interactive history timeline */
.lst-history {
    position: relative;
    margin: 40px auto 0;
    max-width: 980px;
    padding: 30px 0;
    display: block;
}
.lst-history__line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: rgba(14, 42, 74, .08);
    border-radius: 3px;
    pointer-events: none;
    overflow: hidden;
}
.lst-history__line::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: var(--lst-history-progress, 0%);
    background: linear-gradient(180deg, var(--color-lasalle-yellow) 0%, var(--color-lasalle-blue) 50%, var(--color-secondary) 100%);
    border-radius: 3px;
    transition: height .15s linear;
    box-shadow: 0 0 18px rgba(30,77,140,.45);
}
.lst-history__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.lst-history__item {
    position: relative;
    width: calc(50% - 36px);
    opacity: 0;
    transform: translateY(24px) scale(.96);
    transition: opacity .65s var(--ease), transform .7s cubic-bezier(.22, 1, .36, 1);
    box-sizing: border-box;
}
.lst-history__item:nth-child(odd) { align-self: flex-start; transform: translateY(24px) translateX(-32px) scale(.96); }
.lst-history__item:nth-child(even) { align-self: flex-end; transform: translateY(24px) translateX(32px) scale(.96); }
.lst-history__item.is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.lst-history__marker {
    position: absolute;
    top: 22px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(30,77,140,.18);
    z-index: 2;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .25s var(--ease), border-color .25s var(--ease), box-shadow .35s ease;
    transform: scale(.4);
}
.lst-history__item.is-visible .lst-history__marker {
    transform: scale(1);
    animation: lst-marker-pulse 1.4s ease-out .25s 1;
}
@keyframes lst-marker-pulse {
    0%   { box-shadow: 0 0 0 4px rgba(30,77,140,.18); }
    50%  { box-shadow: 0 0 0 14px rgba(30,77,140,0); }
    100% { box-shadow: 0 0 0 4px rgba(30,77,140,.18); }
}
.lst-history__item:nth-child(odd) .lst-history__marker { right: -45px; }
.lst-history__item:nth-child(even) .lst-history__marker { left: -45px; }
.lst-history__card {
    background: #fff;
    border-radius: var(--lst-radius);
    padding: 22px 24px 20px;
    box-shadow: var(--lst-shadow);
    border: 1px solid var(--color-border);
    cursor: default;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.lst-history__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lst-shadow-strong);
    border-color: var(--color-secondary);
}
.lst-history__item:hover .lst-history__marker {
    background: var(--color-accent);
    border-color: var(--color-accent-dark);
    transform: scale(1.18);
}
.lst-history__year {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: .01em;
}
.lst-history__card h3 {
    margin: 0 0 8px;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
}
.lst-history__card p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .lst-history__line { left: 18px; }
    .lst-history__item { width: calc(100% - 50px); align-self: flex-end !important; }
    .lst-history__item:nth-child(odd) .lst-history__marker,
    .lst-history__item:nth-child(even) .lst-history__marker { left: -39px; right: auto; }
}

/* Parallax section (full-width fixed background, no overlay) */
.lst-parallax {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 60vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
@media (max-width: 900px) {
    .lst-parallax { background-attachment: scroll; height: 50vh; min-height: 300px; }
}

/* Axes tabs widget */
.lst-axes {
    margin-top: 40px;
    background: #fff;
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.lst-axes__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}
.lst-axes__tab {
    border: 0;
    background: transparent;
    padding: 22px 18px 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: color .25s var(--ease), background .25s var(--ease);
    border-bottom: 3px solid transparent;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    line-height: 1.25;
}
.lst-axes__tab i {
    font-size: 24px;
    color: var(--axe-color, var(--color-secondary));
    transition: transform .3s var(--ease);
}
.lst-axes__tab:hover { color: var(--color-primary); background: rgba(255,255,255,.5); }
.lst-axes__tab:hover i { transform: scale(1.15); }
.lst-axes__tab[aria-selected="true"] {
    color: var(--color-primary);
    background: #fff;
    border-bottom-color: var(--axe-color, var(--color-secondary));
}
.lst-axes__panels { padding: 40px 44px 44px; }
.lst-axes__panel { display: none; animation: lst-axes-fade .35s var(--ease); }
.lst-axes__panel[aria-hidden="false"] { display: block; }
@keyframes lst-axes-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.lst-axes__panel-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--axe-color, var(--color-secondary));
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.lst-axes__panel h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 0 0 24px;
    font-weight: 600;
    line-height: 1.3;
}
.lst-axes__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lst-axes__col h4 {
    font-family: var(--font-heading);
    color: var(--axe-color, var(--color-secondary));
    font-size: .95rem;
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lst-axes__col ul {
    list-style: none; padding: 0; margin: 0;
}
.lst-axes__col li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 0;
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.55;
    border-bottom: 1px dashed var(--color-border);
}
.lst-axes__col li:last-child { border-bottom: 0; }
.lst-axes__col li::before {
    content: "";
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--axe-color, var(--color-secondary));
    border-radius: 50%;
    margin-top: 9px;
}
@media (max-width: 900px) {
    .lst-axes__nav { grid-template-columns: repeat(2, 1fr); }
    .lst-axes__panels { padding: 28px 22px; }
    .lst-axes__columns { grid-template-columns: 1fr; gap: 18px; }
}

/* FAQ accordion (homepage SEO block) */
.lst-faq { padding: 90px 0 70px; }
.lst-faq__list {
    max-width: 920px;
    margin: 36px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lst-faq__item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius);
    box-shadow: 0 2px 10px rgba(14,42,74,.05);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.lst-faq__item[open] {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(14,42,74,.10);
}
.lst-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.05rem;
    line-height: 1.4;
    user-select: none;
}
.lst-faq__q::-webkit-details-marker { display: none; }
.lst-faq__q i {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-secondary);
    font-size: 12px;
    transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.lst-faq__item[open] .lst-faq__q i {
    transform: rotate(45deg);
    background: var(--color-secondary);
    color: #fff;
}
.lst-faq__a {
    padding: 0 24px 24px;
    color: var(--color-text-light);
    line-height: 1.65;
    font-size: 15px;
}
.lst-faq__a a { color: var(--color-secondary); border-bottom: 1px dotted var(--color-secondary); text-decoration: none; }
.lst-faq__a a:hover { color: var(--color-primary); border-bottom-style: solid; }
@media (max-width: 700px) {
    .lst-faq { padding: 60px 0 50px; }
    .lst-faq__q { padding: 18px 18px; font-size: 1rem; }
    .lst-faq__a { padding: 0 18px 20px; font-size: 14px; }
}

/* Map embed */
.lst-map {
    aspect-ratio: 16 / 9;
    border-radius: var(--lst-radius);
    overflow: hidden;
    box-shadow: var(--lst-shadow);
    border: 1px solid var(--color-border);
}
.lst-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Contact grid: form left, map+sidebar right */
.lst-contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}
.lst-contact-form-card,
.lst-contact-aside-card {
    background: #fff;
    border-radius: var(--lst-radius);
    box-shadow: var(--lst-shadow);
    border: 1px solid var(--color-border);
    padding: 36px 36px 32px;
}
.lst-contact-form-card h3,
.lst-contact-aside-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 0 8px;
    font-weight: 600;
}
.lst-contact-form-card .lst-form-lead,
.lst-contact-aside-card .lst-aside-lead {
    color: var(--color-text-muted);
    margin: 0 0 24px;
    font-size: 15px;
}
.lst-contact-aside-card { padding: 0; overflow: hidden; }
.lst-contact-aside-card .lst-map { aspect-ratio: 4 / 3; border-radius: 0; box-shadow: none; border: 0; border-bottom: 1px solid var(--color-border); }
.lst-contact-aside-card__body { padding: 24px 28px 28px; }
.lst-contact-aside-card__row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0; border-bottom: 1px solid var(--color-border);
}
.lst-contact-aside-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.lst-contact-aside-card__row i {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 8px;
    background: var(--color-primary-light);
    color: var(--color-secondary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.lst-contact-aside-card__row strong {
    display: block; color: var(--color-primary); font-size: 14px; font-weight: 600; margin-bottom: 2px;
}
.lst-contact-aside-card__row span,
.lst-contact-aside-card__row a {
    color: var(--color-text-light); font-size: 14px; line-height: 1.45; text-decoration: none;
}
.lst-contact-aside-card__row a:hover { color: var(--color-secondary); }

/* Contact Form 7 styling within .lst-contact-form-card */
.lst-contact-form-card .wpcf7 form { margin: 0; }
.lst-contact-form-card .lst-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.lst-contact-form-card .lst-form-field { display: block; margin-bottom: 16px; }
.lst-contact-form-card .lst-form-field > label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--color-primary); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: .04em;
}
.lst-contact-form-card .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fafbfd;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-primary);
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.lst-contact-form-card .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30,77,140,.12);
}
.lst-contact-form-card textarea.wpcf7-form-control { min-height: 130px; resize: vertical; }
.lst-contact-form-card select.wpcf7-form-control { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--color-primary) 50%), linear-gradient(135deg, var(--color-primary) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.lst-contact-form-card .wpcf7-acceptance { display: block; margin: 8px 0 18px; }
.lst-contact-form-card .wpcf7-acceptance .wpcf7-list-item { margin: 0; display: flex; align-items: flex-start; gap: 10px; }
.lst-contact-form-card .wpcf7-acceptance label { font-size: 13px; color: var(--color-text-light); line-height: 1.5; cursor: pointer; }
.lst-contact-form-card .wpcf7-acceptance input[type=checkbox] { margin-top: 3px; accent-color: var(--color-secondary); }
.lst-contact-form-card .wpcf7-submit {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #fff;
    border: 0;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    transition: filter .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: 0 8px 24px rgba(14,42,74,.18);
}
.lst-contact-form-card .wpcf7-submit:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14,42,74,.24); }
.lst-contact-form-card .wpcf7-not-valid-tip { color: var(--color-lasalle-red); font-size: 12px; margin-top: 4px; }
.lst-contact-form-card .wpcf7-response-output {
    border-radius: 10px; padding: 12px 16px; font-size: 14px; margin: 18px 0 0;
    border: 1px solid var(--color-border);
}
.lst-contact-form-card .wpcf7 form.sent .wpcf7-response-output { border-color: var(--color-lasalle-green-dark); background: rgba(143,201,58,.08); color: var(--color-lasalle-green-dark); }
.lst-contact-form-card .wpcf7 form.invalid .wpcf7-response-output,
.lst-contact-form-card .wpcf7 form.failed .wpcf7-response-output { border-color: var(--color-lasalle-red); background: rgba(229,38,126,.08); color: var(--color-lasalle-red-dark); }
.lst-contact-form-card .wpcf7-spinner { vertical-align: middle; }

@media (max-width: 960px) {
    .lst-contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .lst-contact-form-card { padding: 28px 24px 24px; }
    .lst-contact-form-card .lst-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Anchor menu (sticky tabs on long pages) */
.lst-tabs {
    position: sticky;
    top: 80px;
    z-index: 10;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    margin-bottom: 0;
}
.lst-tabs__inner {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.lst-tabs__inner a {
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: all .25s var(--ease);
    border: 1px solid transparent;
}
.lst-tabs__inner a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border-color: var(--color-border);
}

/* Counter animation kicks via JS */
[data-count].is-counted { transition: none; }

/* ============================================
   RESPONSIVE - Mobile first safety
   ============================================ */
@media (max-width: 1024px) {
    .lst-stats__grid,
    .lst-cursus__grid,
    .lst-testi__grid,
    .lst-features-grid,
    .lst-features-grid--3,
    .lst-team,
    .lst-steps,
    .lst-filieres { grid-template-columns: repeat(2, 1fr); }

    .lst-split { grid-template-columns: 1fr; gap: 36px; }
    .lst-split--reverse > .lst-split__media { order: 0; }
    .lst-split--reverse > .lst-split__content { order: 0; }

    .lst-rich-row { grid-template-columns: 1fr; gap: 36px; }
    .lst-rich-row--reverse > .lst-rich-row__media { order: 0; }

    .lst-contact-band__inner { grid-template-columns: 1fr; padding: 36px 30px; gap: 28px; }
    .lst-contact-band__items { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .lst-hero { min-height: 78vh; }
    .lst-hero__container { padding-top: 60px; padding-bottom: 60px; }
    .lst-hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .lst-hero__sub { font-size: 1rem; }

    .lst-stats__grid,
    .lst-cursus__grid,
    .lst-testi__grid,
    .lst-features-grid,
    .lst-features-grid--3,
    .lst-features-grid--2,
    .lst-team,
    .lst-steps,
    .lst-filieres,
    .lst-docs { grid-template-columns: 1fr; gap: 16px; }

    .lst-stats { padding: 70px 0; }
    .lst-cursus, .lst-internat, .lst-entreprises, .lst-testi { padding: 70px 0; }
    .lst-cta-rentree__inner { padding: 60px 24px; }
    .lst-page-hero { padding: 110px 0 60px; }
    .lst-rich-section { padding: 60px 0; }

    .lst-quote { padding: 28px 24px; font-size: 1rem; }
    .lst-quote::before { font-size: 60px; left: 18px; top: -6px; }

    .lst-alert-band__inner { gap: 14px; }
    .lst-alert-band__icon { width: 38px; height: 38px; }
    .lst-alert-band__text strong { font-size: 1rem; }

    .lst-tabs { top: 64px; }

    .lst-contact-band__item { padding: 14px; gap: 12px; }
    .lst-contact-band__item i { width: 38px; height: 38px; font-size: 14px; }
}

@media (max-width: 420px) {
    .lst-hero__rainbow span { width: 38px; }
    .lst-cursus-card { padding: 28px 22px; }
    .lst-stat__num { font-size: 2rem; }
    .lst-pricing-table th, .lst-pricing-table td { padding: 12px 14px; font-size: 13px; }
}

/* === Small JS counter animation === */
@keyframes lst-fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up.is-visible,
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Force visible on noscript */
.no-js .reveal-up { opacity: 1; transform: none; }

/* ============================================================
   2026-04 UPGRADES — Parallax fixe + bordures + bulles dégradées
   ============================================================ */

/* === HERO PAGES INTERNES : fond fixe parallax === */
/* Le JS convertit <img class="lst-page-hero__bg"> en background-image
   sur le parent .lst-page-hero--with-image (sauf homepage .hero) */
.lst-page-hero--with-image.lst-bg-parallax {
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.lst-page-hero--with-image.lst-bg-parallax .lst-page-hero__bg { display: none; }
.lst-page-hero--with-image.lst-bg-parallax .lst-page-hero__overlay {
    background: linear-gradient(135deg, rgba(14,42,74,.78) 0%, rgba(14,42,74,.62) 50%, rgba(14,42,74,.85) 100%);
}

/* Parallax désactivé sur mobile (perf + iOS Safari ne supporte pas bien) */
@media (max-width: 960px) {
    .lst-page-hero--with-image.lst-bg-parallax {
        background-attachment: scroll;
    }
}

/* === BORDURES sur les cadres (style campustroyes) === */
.lst-feature,
.lst-cursus-card,
.lst-team-member,
.lst-step,
.lst-filiere-card,
.lst-pricing-card,
.lst-doc-card,
.contact-info-card,
.lst-stat-card {
    border: 1px solid var(--color-border);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.lst-feature:hover,
.lst-cursus-card:hover,
.lst-team-member:hover,
.lst-step:hover,
.lst-filiere-card:hover {
    border-color: rgba(var(--color-secondary-rgb), .35);
}

/* Override : seules les cards cliquables se soulèvent au hover */
a.lst-feature:hover,
a.lst-cursus-card:hover,
a.lst-filiere-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(14,42,74,.12); }

/* === BULLES DÉGRADÉS (4 couleurs LaSalle, monochromes) === */
/* Utilisation : <div class="lst-blob lst-blob--green lst-blob--top-left"></div>
   à mettre dans une section position:relative pour décorer en arrière-plan. */
.lst-blob {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.lst-blob--green   { background: radial-gradient(circle at 30% 30%, #c8e98a 0%, #8FC93A 55%, #3e7510 100%); }
.lst-blob--pink    { background: radial-gradient(circle at 30% 30%, #fcb6d9 0%, #E5267E 55%, #80123f 100%); }
.lst-blob--yellow  { background: radial-gradient(circle at 30% 30%, #ffd87f 0%, #F4A41C 55%, #8a5b08 100%); }
.lst-blob--blue    { background: radial-gradient(circle at 30% 30%, #87c3ed 0%, #1A6FB8 55%, #0d3a64 100%); }

.lst-blob--top-left     { top: -80px; left: -80px; }
.lst-blob--top-right    { top: -80px; right: -80px; }
.lst-blob--bottom-left  { bottom: -80px; left: -80px; }
.lst-blob--bottom-right { bottom: -80px; right: -80px; }

.lst-blob--sm { width: 180px; height: 180px; filter: blur(50px); opacity: .5; }
.lst-blob--lg { width: 420px; height: 420px; filter: blur(80px); opacity: .45; }

@media (max-width: 720px) {
    .lst-blob { width: 200px; height: 200px; opacity: .4; }
    .lst-blob--lg { width: 280px; height: 280px; }
}

/* Conteneur de section avec bulles en fond (z-index management) */
.lst-section--blobs {
    position: relative;
    overflow: hidden;
}
.lst-section--blobs > .container { position: relative; z-index: 1; }

/* === BANDE PARALLAX PHOTO PLEINE LARGEUR === */
/* Markup : <section class="lst-parallax-band" style="background-image:url(...)">
              <div class="lst-parallax-band__overlay"></div>
              <div class="container lst-parallax-band__content">...</div>
            </section> */
.lst-parallax-band {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.lst-parallax-band__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(14,42,74,.72) 0%, rgba(14,42,74,.55) 50%, rgba(14,42,74,.82) 100%);
    z-index: 0;
}
.lst-parallax-band__content {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.lst-parallax-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.lst-parallax-band p { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.92); margin-bottom: 24px; }

@media (max-width: 960px) {
    .lst-parallax-band { min-height: 380px; padding: 80px 0; }
    .lst-parallax-band__bg { background-attachment: scroll; }
}

/* === BADGE FLOTTANT PHOTO (component flottant style campus) === */
.lst-image-frame { position: relative; border-radius: 20px; overflow: visible; }
.lst-image-frame img { display: block; width: 100%; border-radius: 20px; box-shadow: 0 18px 50px rgba(14,42,74,.18); }

.lst-floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 16px 38px rgba(14,42,74,.18);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    z-index: 2;
}
.lst-floating-badge--top-left     { top: 20px; left: -24px; }
.lst-floating-badge--top-right    { top: 20px; right: -24px; }
.lst-floating-badge--bottom-left  { bottom: 24px; left: -24px; }
.lst-floating-badge--bottom-right { bottom: 24px; right: -24px; }

.lst-floating-badge__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.lst-floating-badge__icon--green  { background: linear-gradient(135deg, #b6dd71 0%, #6da127 100%); }
.lst-floating-badge__icon--pink   { background: linear-gradient(135deg, #f481b7 0%, #b21d62 100%); }
.lst-floating-badge__icon--yellow { background: linear-gradient(135deg, #ffc56b 0%, #c4830f 100%); }
.lst-floating-badge__icon--blue   { background: linear-gradient(135deg, #4d9ad8 0%, #135690 100%); }

.lst-floating-badge__num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    display: block;
    margin-bottom: 2px;
}
.lst-floating-badge__label {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.2;
}

@media (max-width: 720px) {
    .lst-floating-badge { padding: 10px 14px; min-width: 0; }
    .lst-floating-badge--top-left, .lst-floating-badge--top-right { top: -16px; left: 12px; right: auto; }
    .lst-floating-badge--bottom-left, .lst-floating-badge--bottom-right { bottom: -16px; left: 12px; right: auto; }
}

/* === MAP CONTAINER FIX === */
.lst-map { aspect-ratio: 16 / 9; min-height: 360px; }
@media (max-width: 720px) { .lst-map { aspect-ratio: 4 / 3; min-height: 280px; } }

/* === SECTION photo dominante 70% (photo + texte côte à côte modernes) === */
.lst-photo-split {
    position: relative;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 56px;
    align-items: center;
}
.lst-photo-split--reverse { grid-template-columns: 1fr 1.7fr; }
.lst-photo-split--reverse .lst-photo-split__media { order: 2; }
.lst-photo-split__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(14,42,74,.18);
    aspect-ratio: 4 / 3;
}
.lst-photo-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lst-photo-split__content h2 { margin-bottom: 18px; }
.lst-photo-split__content p { color: var(--color-text-light); font-size: 1.06rem; line-height: 1.75; margin-bottom: 18px; }

@media (max-width: 1024px) {
    .lst-photo-split { grid-template-columns: 1fr; gap: 32px; }
    .lst-photo-split--reverse .lst-photo-split__media { order: 0; }
}

/* Map "voir sur Google Maps" link overlay */
.lst-map { position: relative; }
.lst-map__link {
    position: absolute;
    bottom: 16px; right: 16px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(14,42,74,.16);
    border: 1px solid var(--color-border);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lst-map__link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,42,74,.22); color: var(--color-secondary); }

/* === CARDS FORMATIONS CLIQUABLES (avec CTA visible) === */
/* Utilisation : <a class="lst-feature lst-feature--clickable" href="..."> avec icon + h3 + p + span.lst-feature__cta */
a.lst-feature.lst-feature--clickable {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}
a.lst-feature.lst-feature--clickable h3,
a.lst-feature.lst-feature--clickable p { color: inherit; }
a.lst-feature.lst-feature--clickable p { flex: 1; }
.lst-feature__cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s var(--ease), color .25s var(--ease);
}
.lst-feature__cta i { font-size: .85em; transition: transform .25s var(--ease); }
a.lst-feature.lst-feature--clickable:hover .lst-feature__cta { gap: 12px; color: var(--color-primary); }
a.lst-feature.lst-feature--clickable:hover .lst-feature__cta i { transform: translateX(4px); }

/* === AVENIR : 6 lettres sur une seule ligne === */
.lst-steps--avenir {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.lst-steps--avenir .lst-step {
    padding: 22px 16px;
    text-align: center;
}
.lst-steps--avenir .lst-step__num {
    font-size: 2rem;
    font-weight: 600;
    display: inline-block;
}
.lst-steps--avenir .lst-step h3 {
    font-size: 1rem;
    margin: 10px 0 6px;
}
.lst-steps--avenir .lst-step p {
    font-size: 13px;
    line-height: 1.45;
}
.lst-steps--avenir .lst-step:nth-child(6n+1) { --step-color: var(--color-lasalle-red); }
.lst-steps--avenir .lst-step:nth-child(6n+2) { --step-color: var(--color-lasalle-yellow); }
.lst-steps--avenir .lst-step:nth-child(6n+3) { --step-color: var(--color-lasalle-green); }
.lst-steps--avenir .lst-step:nth-child(6n+4) { --step-color: var(--color-lasalle-blue); }
.lst-steps--avenir .lst-step:nth-child(6n+5) { --step-color: var(--color-lasalle-red); }
.lst-steps--avenir .lst-step:nth-child(6n+6) { --step-color: var(--color-lasalle-yellow); }
@media (max-width: 900px) {
    .lst-steps--avenir { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
    .lst-steps--avenir { grid-template-columns: repeat(2, 1fr); }
}

/* === PDF DOWNLOAD CARD === */
.lst-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px 16px 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--lst-shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    margin-top: 24px;
}
.lst-pdf-download:hover {
    transform: translateY(-2px);
    border-color: var(--color-lasalle-red);
    box-shadow: 0 14px 32px rgba(14,42,74,.18);
    color: var(--color-primary);
}
.lst-pdf-download__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-lasalle-red), var(--color-lasalle-yellow));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lst-pdf-download__label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.lst-pdf-download__label strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}
.lst-pdf-download__label span {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 400;
    margin-top: 3px;
}

/* === CARTE INTERACTIVE DES ETABLISSEMENTS === */
.lst-carte { padding: 110px 0 100px; background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%); }
.lst-carte .section-head-center { margin-bottom: 56px; }
.lst-carte .lst-lead {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
}
.lst-carte__layout {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 32px;
    align-items: stretch;
}
.lst-carte__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lst-carte__item {
    display: flex;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--lst-radius);
    padding: 18px 20px;
    cursor: pointer;
    box-shadow: var(--lst-shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
    font-family: var(--font-body);
    color: var(--color-text);
}
.lst-carte__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--lst-shadow-strong);
    border-color: rgba(var(--color-secondary-rgb), .35);
}
.lst-carte__item.is-active {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(var(--color-secondary-rgb), .04) 0%, rgba(var(--color-primary-rgb), .04) 100%);
    box-shadow: 0 6px 24px rgba(var(--color-secondary-rgb), .12);
}
.lst-carte__pin {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(var(--color-secondary-rgb), .35);
}
.lst-carte__item.is-active .lst-carte__pin {
    background: var(--color-primary);
    box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), .4);
}
.lst-carte__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lst-carte__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
    line-height: 1.25;
}
.lst-carte__addr {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.45;
}
.lst-carte__sub {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lst-carte__sub li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--color-text);
    transition: color .25s var(--ease), gap .25s var(--ease);
}
.lst-carte__sub li a i {
    font-size: 10px;
    color: var(--color-secondary);
    transition: transform .25s var(--ease);
}
.lst-carte__sub li a:hover {
    color: var(--color-secondary);
    gap: 12px;
}
.lst-carte__sub li a:hover i { transform: translateX(2px); }
.lst-carte__route {
    margin-top: 10px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(var(--color-secondary-rgb), .08);
    transition: background-color .25s var(--ease), color .25s var(--ease);
}
.lst-carte__route:hover {
    background: var(--color-primary);
    color: #fff;
}
.lst-carte__map-wrap {
    position: relative;
    border-radius: var(--lst-radius);
    overflow: hidden;
    box-shadow: var(--lst-shadow-strong);
    border: 1px solid var(--color-border);
    min-height: 480px;
}
.lst-carte__map {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: var(--color-bg-alt);
}
/* Leaflet popup styles */
.lst-carte-popup .leaflet-popup-content-wrapper {
    border-radius: 14px;
    padding: 4px;
}
.lst-carte-popup .leaflet-popup-content {
    margin: 12px 16px;
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--color-text);
}
.lst-carte-popup .leaflet-popup-content strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.lst-carte-popup .leaflet-popup-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-weight: 600;
    color: var(--color-secondary);
}
.lst-carte-popup .leaflet-popup-content a:hover { color: var(--color-primary); }
/* Custom div marker */
.lst-carte-marker {
    background: none !important;
    border: none !important;
}
.lst-carte-marker__inner {
    width: 38px;
    height: 38px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--color-secondary);
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(var(--color-secondary-rgb), .45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.lst-carte-marker__inner span {
    transform: rotate(45deg);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.lst-carte-marker.is-active .lst-carte-marker__inner {
    background: var(--color-primary);
    transform: rotate(-45deg) scale(1.15);
}
@media (max-width: 960px) {
    .lst-carte { padding: 80px 0 70px; }
    .lst-carte__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .lst-carte__map-wrap, .lst-carte__map { min-height: 380px; }
}
@media (max-width: 540px) {
    .lst-carte { padding: 64px 0 56px; }
    .lst-carte__item { padding: 16px; gap: 12px; }
    .lst-carte__pin { width: 34px; height: 34px; font-size: 14px; }
    .lst-carte__name { font-size: 1rem; }
    .lst-carte__map-wrap, .lst-carte__map { min-height: 320px; }
}

/* ============================================
   TOPBAR (coordonnees + socials, au-dessus du header)
   ============================================ */
:root { --lst-topbar-height: 38px; }
.lst-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: #0e2a47;
    color: #fff;
    height: var(--lst-topbar-height);
    font-size: .82rem;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.lst-topbar__inner {
    max-width: var(--max-width-wide, 1280px);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.lst-topbar__contact { display: flex; align-items: center; gap: 22px; flex: 1; min-width: 0; }
.lst-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lst-topbar__item svg { color: var(--color-lasalle-yellow, #f5c500); flex-shrink: 0; }
a.lst-topbar__item:hover { color: var(--color-lasalle-yellow, #f5c500); }
.lst-topbar__socials { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lst-topbar__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lst-topbar__social:hover {
    background: var(--color-lasalle-yellow, #f5c500);
    color: #0e2a47;
    transform: translateY(-1px);
}

/* Navbar pousse vers le bas pour laisser place a la topbar */
#site-header { top: var(--lst-topbar-height) !important; }
/* L'outer main = direct child de body. Certaines templates (front-page.php) ouvrent un
   second <main id="main-content"> imbrique : ce selecteur cible uniquement l'externe
   pour eviter de cumuler deux margin-top. */
body > #main-content { margin-top: calc(var(--header-height) + var(--lst-topbar-height)) !important; }
body > #main-content #main-content { margin-top: 0 !important; }
html { scroll-padding-top: calc(var(--header-height) + var(--lst-topbar-height)) !important; }
[id] { scroll-margin-top: calc(var(--header-height) + var(--lst-topbar-height)) !important; }

@media (max-width: 960px) {
    :root { --lst-topbar-height: 34px; }
    .lst-topbar__inner { padding: 0 16px; gap: 12px; }
    .lst-topbar__item--address { display: none; }
    .lst-topbar__contact { gap: 14px; }
}
@media (max-width: 540px) {
    .lst-topbar { font-size: .78rem; }
    .lst-topbar__socials { gap: 6px; }
    .lst-topbar__social { width: 24px; height: 24px; }
}

/* Navbar : items sur une seule ligne (largeur elargie + gap reduit + nowrap) */
header#site-header .nav-container {
    max-width: 1600px;
    padding: 0 24px;
}
header#site-header .nav-menu { gap: 2px; }
header#site-header .nav-menu li > a {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 13px;
}
/* Items avec sous-menu : padding-right supplementaire pour ne pas que le chevron empiete sur l'item suivant */
header#site-header .nav-menu li.menu-item-has-children > a { padding-right: 24px; }
@media (max-width: 1280px) {
    header#site-header .nav-menu li > a { padding: 8px 10px; font-size: 12.5px; }
    header#site-header .nav-menu li.menu-item-has-children > a { padding-right: 22px; }
}

/* === PATHWAY CARDS (voies generale / techno - design sobre, sans icone gradient) === */
.lst-pathway-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.lst-pathway-card {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-top: 3px solid var(--color-lasalle-yellow, #f5c500);
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform .35s var(--ease, cubic-bezier(.65,0,.35,1)), box-shadow .35s ease, border-top-color .35s ease;
    display: flex;
    flex-direction: column;
}
.lst-pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -12px rgba(14,42,71,.18);
}
.lst-pathway-card__num {
    display: block;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-lasalle-yellow, #f5c500);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}
.lst-pathway-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-heading, Georgia, serif);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: #0e2a47;
    background: rgba(245,197,0,.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.lst-pathway-card h3 {
    font-size: 1.2rem;
    color: #0e2a47;
    margin: 0 0 12px;
    line-height: 1.3;
}
.lst-pathway-card p {
    color: #5b6678;
    font-size: .96rem;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 980px) {
    .lst-pathway-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .lst-pathway-cards { grid-template-columns: 1fr; gap: 16px; }
    .lst-pathway-card { padding: 26px 22px; }
    .lst-pathway-card__num { font-size: 2rem; }
}

/* Bouton Site Campus dans la navbar : cadre blanc (lisible en scroll quand le header passe navy) */
.nav-cta a.nav-campus,
.nav-mobile-cta a.nav-campus,
.nav-cta a.nav-campus *,
.nav-mobile-cta a.nav-campus * {
    background: #fff !important;
    background-image: none !important;
    color: #0e2a47 !important;
    -webkit-text-fill-color: #0e2a47 !important;
    border: 1.5px solid #0e2a47 !important;
    white-space: nowrap !important;
}
.nav-cta a.nav-campus:hover,
.nav-mobile-cta a.nav-campus:hover,
.nav-cta a.nav-campus:hover *,
.nav-mobile-cta a.nav-campus:hover * {
    background: #0e2a47 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-1px);
}
