/* Styles propres à la page d’accueil. */

main > section + section {
    border-top: 1px solid color-mix(in srgb, var(--color-gold) 35%, transparent);
}

/* L’en-tête se superpose au hero, puis retrouve son apparence au défilement. */
.home-page .site-header {
    position: fixed;
    transition:
        background-color 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        backdrop-filter 240ms ease;
}

.home-page .site-header .site-brand {
    transition: opacity 220ms ease, visibility 220ms ease;
}

.home-page .site-header:not(.is-past-hero) {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home-page .site-header:not(.is-past-hero) .site-brand {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.home-page .site-header:not(.is-past-hero) .main-navigation__list > li > a,
.home-page .site-header:not(.is-past-hero) .main-navigation__list > li > .main-navigation__parent,
.home-page .site-header:not(.is-past-hero) .main-navigation__submenu-toggle,
.home-page .site-header:not(.is-past-hero) .site-header__menu-toggle {
    color: #fff;
}

.home-page .site-header:not(.is-past-hero) .main-navigation__list > li > a::after {
    background: #fff;
}

.home-page .site-header:not(.is-past-hero) .main-navigation__list > li > .main-navigation__parent::after {
    background: #fff;
}

/* Section 01 — Hero */

.home-hero {
    --hero-background-image: none;

    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: clamp(112px, 14vh, 154px) max(24px, calc((100vw - 1280px) / 2)) clamp(44px, 7vh, 72px);
    overflow: hidden;
    place-items: center stretch;
    background-color: #24211e;
    color: #f8f6f2;
}

.home-hero__media,
.home-hero__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.home-hero__media {
    background-color: #24211e;
    background-image:
        var(--hero-background-image),
        radial-gradient(circle at 72% 42%, rgb(184 159 111 / 24%), transparent 32%),
        linear-gradient(115deg, #171615 0%, #302b27 58%, #151414 100%);
    background-position: center;
    background-size: cover;
}

.home-hero__video {
    width: 100%;
    height: 100%;
    animation: home-hero-video-reveal 1.8s cubic-bezier(.2, .65, .3, 1) both;
    object-fit: cover;
    object-position: center 45%;
}

.home-hero__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(12 10 9 / 48%) 0%, rgb(23 18 15 / 22%) 52%, rgb(0 0 0 / 38%) 100%),
        linear-gradient(0deg, rgb(8 7 6 / 70%) 0%, transparent 48%, rgb(0 0 0 / 36%) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    row-gap: clamp(24px, 3.5vh, 38px);
    justify-items: center;
    text-align: center;
}

.home-hero__eyebrow {
    margin: 0;
    animation: home-hero-item-reveal .75s .1s ease-out both;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.home-hero__brand-mark {
    width: clamp(240px, 31vw, 430px);
    height: auto;
    margin-block: clamp(-20px, -2vh, -8px);
    animation: home-hero-logo-reveal .9s .18s cubic-bezier(.2, .65, .3, 1) both;
    filter: drop-shadow(0 10px 28px rgb(0 0 0 / 18%));
}

.home-hero__title {
    margin: 0;
    animation: home-hero-item-reveal .75s .46s ease-out both;
    color: #f8f6f2;
    font-family: var(--font-heading);
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.1;
    text-transform: uppercase;
}

@keyframes home-hero-video-reveal {
    from { opacity: .55; transform: scale(1.045); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes home-hero-logo-reveal {
    from { opacity: 0; transform: translateY(18px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes home-hero-item-reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__video {
        display: none;
    }

    .home-hero__brand-mark,
    .home-hero__eyebrow,
    .home-hero__title {
        animation: none;
    }

    .home-page .site-header,
    .home-page .site-header .site-brand {
        transition: none;
    }

    .home-intro__principles.is-reveal-ready li,
    .home-intro__principles.is-reveal-visible li,
    .home-audience-card.is-reveal-ready,
    .home-audience-card.is-reveal-visible,
    .home-practice-card.is-reveal-ready,
    .home-practice-card.is-reveal-visible {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 100svh;
        padding: 106px clamp(28px, 6vw, 52px) 54px;
    }

    .home-hero__content {
        row-gap: 28px;
    }
}

@media (max-width: 980px) {
    .home-page .site-header:not(.is-past-hero).is-menu-open .main-navigation__list > li > a,
    .home-page .site-header:not(.is-past-hero).is-menu-open .main-navigation__list > li > .main-navigation__parent,
    .home-page .site-header:not(.is-past-hero).is-menu-open .main-navigation__submenu-toggle,
    .home-page .site-header:not(.is-past-hero).is-menu-open .main-navigation .sub-menu a {
        color: #443f39;
    }
}

@media (max-width: 600px) {
    .home-hero {
        min-height: 100svh;
        padding: 94px 24px 42px;
    }

    .home-hero__video {
        object-position: 58% center;
    }

    .home-hero__content {
        row-gap: 24px;
    }

    .home-hero__brand-mark {
        width: min(72vw, 330px);
    }

    .home-hero__title {
        font-size: clamp(14px, 4.2vw, 17px);
    }

}

/* Section 02 — Présentation */

.home-intro {
    position: relative;
    isolation: isolate;
    padding-block: clamp(54px, 7vw, 88px);
    overflow: hidden;
    background: var(--color-background);
}

.home-intro > .wb-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    column-gap: clamp(44px, 6vw, 96px);
    row-gap: clamp(30px, 4vw, 48px);
    align-items: start;
}

.home-intro::before {
    position: absolute;
    z-index: -1;
    width: min(46vw, 680px);
    aspect-ratio: 1;
    inset: 50% -5% auto auto;
    background: url("../../assets/images/accueil/calligraphie-fond.webp") center / contain no-repeat;
    content: "";
    opacity: 0.09;
    pointer-events: none;
    transform: translateY(-50%);
}

.home-intro__eyebrow {
    margin: 0 0 16px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-intro__title {
    max-width: 620px;
    margin: 0;
    font-size: clamp(42px, 4vw, 62px);
    letter-spacing: -0.025em;
    line-height: 1;
    text-wrap: balance;
}

.home-intro__body {
    padding-top: 16px;
}

.home-intro__body p {
    margin: 0;
}

.home-intro__body p + p {
    margin-top: 16px;
}

.home-intro__lead {
    color: var(--color-heading);
    font-size: clamp(20px, 2vw, 23px);
    line-height: 1.38;
}

.home-intro__link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-gold);
    color: var(--color-heading);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.home-intro__link span {
    color: var(--color-primary);
    transition: transform 180ms ease;
}

.home-intro__link:hover span,
.home-intro__link:focus-visible span {
    transform: translateX(4px);
}

.home-intro__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 5px;
}

.home-intro__principles {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgb(184 159 111 / 42%);
    list-style: none;
}

.home-intro__principles li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 24px;
    padding: 32px 40px 0 0;
}

.home-intro__principles li + li {
    padding-left: 40px;
    border-left: 1px solid rgb(184 159 111 / 42%);
}

.home-intro__principles.is-reveal-ready li {
    opacity: 0;
    transform: translateY(32px) scale(.98);
}

.home-intro__principles.is-reveal-visible li {
    animation: home-intro-card-reveal .78s cubic-bezier(.2, .65, .3, 1) forwards;
}

.home-intro__principles.is-reveal-visible li:nth-child(2) {
    animation-delay: .12s;
}

.home-intro__principles.is-reveal-visible li:nth-child(3) {
    animation-delay: .24s;
}

.home-intro__principles strong {
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.1;
}

.home-intro__principles strong + span {
    font-size: 16px;
    line-height: 1.45;
}

.home-intro__number {
    grid-row: 1 / 3;
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 0.08em;
}

@keyframes home-intro-card-reveal {
    from {
        opacity: 0;
        transform: translateY(32px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Section 03 — Pratiques */

.home-practices {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-background-warm);
    padding-block: clamp(28px, 3.2vw, 46px);
}

.home-practices::before {
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    top: -300px;
    left: -300px;
    border-radius: 50%;
    background: rgb(184 159 111 / 8%);
    content: "";
    filter: blur(70px);
}

.home-practices__lead {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(34px, 4vw, 60px);
    align-items: center;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.home-practices__eyebrow {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-practices__title {
    max-width: 640px;
    margin: 0;
    font-size: clamp(44px, 3.85vw, 62px);
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-wrap: balance;
}

.home-practices__introduction {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--color-text);
    font-size: 19px;
    line-height: 1.38;
}

.home-practices__media {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1.9;
    border-radius: 30px;
    background: #dedbd5;
    box-shadow: 0 24px 54px rgb(47 38 30 / 13%);
}

.home-practices__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 38%;
}

.home-practices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-practice-card {
    min-height: 164px;
    padding: 18px 24px 20px;
    border: 1px solid rgb(184 159 111 / 42%);
    border-radius: 30px;
    background: rgb(255 255 255 / 66%);
    box-shadow: 0 14px 30px rgb(50 42 34 / 5%);
}

.home-practice-card.is-reveal-ready {
    opacity: 0;
    transform: translateY(22px);
}

.home-practice-card.is-reveal-visible {
    animation: home-practice-card-reveal .88s cubic-bezier(.2, .65, .3, 1) forwards;
}

.home-practice-card.is-reveal-visible:nth-child(2) {
    animation-delay: 110ms;
}

.home-practice-card.is-reveal-visible:nth-child(3) {
    animation-delay: 220ms;
}

.home-practice-card--bridge {
    background:
        linear-gradient(145deg, rgb(144 40 34 / 4%), transparent 68%),
        rgb(255 255 255 / 60%);
}

.home-practice-card__topline {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
}

.home-practice-card__number {
    color: rgb(144 40 34 / 13%);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 0.8;
}

.home-practice-card__family {
    color: var(--color-text);
    font-size: 12px;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-practice-card h3 {
    margin: 12px 0 6px;
    font-size: clamp(27px, 2vw, 32px);
    letter-spacing: -0.015em;
    line-height: 1.05;
}

.home-practice-card h3 + p {
    margin: 0;
    font-size: 15px;
    line-height: 1.32;
}

@keyframes home-practice-card-reveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .home-practices__lead {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 28px;
    }

    .home-practices__media {
        max-width: 680px;
    }

    .home-practices__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-practice-card {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .home-practices__title {
        font-size: 38px;
    }

    .home-practices__introduction {
        margin-top: 16px;
        font-size: 18px;
    }

    .home-practices__media {
        border-radius: 24px;
    }

    .home-practice-card {
        padding: 20px 20px 22px;
        border-radius: 24px;
    }
}

/* Section 04 — Événements à venir */

.home-upcoming {
    overflow: hidden;
    padding-block: clamp(30px, 4vw, 46px);
    background: #24211e;
    color: #f8f5ef;
}

.home-upcoming__header {
    display: grid;
    margin-bottom: clamp(18px, 2.2vw, 26px);
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
    gap: clamp(30px, 6vw, 92px);
    align-items: end;
}

.home-upcoming__eyebrow {
    margin: 0 0 12px;
    color: #d8bd82;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.home-upcoming__title {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 4.7vw, 64px);
    letter-spacing: -.03em;
    line-height: .92;
}

.home-upcoming__introduction {
    max-width: 470px;
    margin: 0;
    color: rgb(248 245 239 / 72%);
    font-size: 17px;
    line-height: 1.45;
}

.home-events-carousel {
    position: relative;
    min-width: 0;
}

.home-events-carousel__viewport {
    overflow: hidden;
    border-radius: 18px;
}

.home-events-carousel__track {
    display: flex;
    gap: 0;
    transition: transform 620ms cubic-bezier(.22, .68, .28, 1);
    will-change: transform;
}

.home-event-slide {
    display: grid;
    min-width: 100%;
    height: clamp(340px, 44vw, 390px);
    overflow: hidden;
    grid-template-columns: minmax(0, 58fr) minmax(350px, 42fr);
    background: #f4f0e8;
    color: var(--color-text);
}

.home-event-slide__media {
    position: relative;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    background: #171513;
}

.home-event-slide__media::after {
    position: absolute;
    background: linear-gradient(90deg, transparent 74%, rgb(0 0 0 / 10%));
    content: "";
    inset: 0;
}

.home-event-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-event-slide__media--contain img {
    object-fit: contain;
}

.home-event-slide__media--fallback {
    display: grid;
    background:
        radial-gradient(circle at 22% 28%, rgb(216 189 130 / 22%), transparent 34%),
        linear-gradient(135deg, #2d2925, #171513);
    place-items: center;
}

.home-event-slide__visual-fallback {
    color: rgb(216 189 130 / 58%);
    font-family: var(--font-heading);
    font-size: clamp(100px, 16vw, 210px);
    line-height: 1;
}

.home-event-slide__content {
    display: flex;
    min-width: 0;
    padding: clamp(28px, 3vw, 42px);
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.home-event-slide__header {
    display: flex;
    width: 100%;
    margin-bottom: clamp(20px, 2.4vw, 30px);
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.home-event-slide__meta {
    min-width: 0;
}

.home-event-slide__topline {
    display: flex;
    margin: 0;
    gap: 10px 12px;
    align-items: center;
    flex-wrap: wrap;
    color: #6e675e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    line-height: 1.35;
    text-transform: uppercase;
}

.home-event-slide__category {
    display: inline-block;
    padding: 5px 9px;
    border: 1px solid rgb(144 40 34 / 28%);
    border-radius: 999px;
    color: var(--color-primary);
}

.home-event-slide__location {
    margin: 8px 0 0;
    overflow: hidden;
    color: #81786e;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-event-slide__counter {
    flex: none;
    padding-top: 5px;
    color: #9a8f82;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
}

.home-event-slide h3 {
    max-width: 10.5em;
    margin: 0 0 14px;
    color: var(--color-heading);
    font-size: clamp(34px, 3.1vw, 46px);
    letter-spacing: -.025em;
    line-height: 1;
}

.home-event-slide__description {
    display: -webkit-box;
    max-width: 540px;
    margin: 0 0 18px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-event-slide__content > a {
    display: inline-flex;
    margin-top: auto;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    padding-block: 0 7px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-events-carousel__controls {
    display: grid;
    margin-top: 13px;
    grid-template-columns: auto 1fr auto auto;
    gap: clamp(16px, 2.4vw, 32px);
    align-items: center;
}

.home-events-carousel__arrows {
    display: flex;
    gap: 10px;
}

.home-events-carousel__arrows button {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 28%);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    place-items: center;
}

.home-events-carousel__dots {
    display: flex;
    gap: 6px;
    justify-self: center;
}

.home-events-carousel__dots button {
    position: relative;
    width: 24px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: width 220ms ease;
}

.home-events-carousel__dots button::after {
    position: absolute;
    height: 2px;
    background: rgb(255 255 255 / 24%);
    content: "";
    inset: calc(50% - 1px) 0 auto;
    transition: background-color 220ms ease;
}

.home-events-carousel__dots button.is-active {
    width: 42px;
}

.home-events-carousel__dots button.is-active::after {
    background: #d8bd82;
}

.home-events-carousel__pause {
    justify-self: end;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 38%);
    background: transparent;
    color: rgb(255 255 255 / 76%);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-events-carousel__arrows button:disabled {
    opacity: .35;
    cursor: default;
}

.home-events-carousel__empty {
    margin: 0;
    padding: clamp(42px, 7vw, 76px);
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 28px;
    color: rgb(248 245 239 / 72%);
    font-size: 18px;
    text-align: center;
}

.home-upcoming__all-events {
    display: flex;
    width: fit-content;
    margin: 0;
    padding: 7px 0;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgb(216 189 130 / 48%);
    color: rgb(248 245 239 / 78%);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.home-events-carousel__controls .home-upcoming__all-events {
    justify-self: end;
}

.home-upcoming__all-events span {
    transition: transform 180ms ease;
}

.home-upcoming__all-events:hover,
.home-upcoming__all-events:focus-visible {
    border-color: #d8bd82;
    color: #d8bd82;
}

.home-upcoming__all-events:hover span,
.home-upcoming__all-events:focus-visible span {
    transform: translateX(4px);
}

.home-events-carousel button:hover,
.home-events-carousel button:focus-visible,
.home-event-slide__content > a:hover,
.home-event-slide__content > a:focus-visible {
    color: #d8bd82;
}

.home-events-carousel button:focus-visible,
.home-event-slide__content > a:focus-visible,
.home-upcoming__all-events:focus-visible {
    outline: 2px solid #d8bd82;
    outline-offset: 4px;
}

.home-event-slide[aria-hidden="false"] .home-event-slide__media img {
    animation: home-event-image-in 620ms cubic-bezier(.22, .68, .28, 1) both;
}

.home-event-slide[aria-hidden="false"] .home-event-slide__header,
.home-event-slide[aria-hidden="false"] h3,
.home-event-slide[aria-hidden="false"] .home-event-slide__description,
.home-event-slide[aria-hidden="false"] .home-event-slide__link {
    animation: home-event-content-in 480ms ease-out both;
}

.home-event-slide[aria-hidden="false"] h3 { animation-delay: 70ms; }
.home-event-slide[aria-hidden="false"] .home-event-slide__description { animation-delay: 120ms; }
.home-event-slide[aria-hidden="false"] .home-event-slide__link { animation-delay: 170ms; }

@keyframes home-event-image-in {
    from { opacity: .76; transform: translateX(14px) scale(1.015); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes home-event-content-in {
    from { opacity: 0; transform: translateX(14px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1000px) {
    .home-event-slide {
        grid-template-columns: minmax(0, 56fr) minmax(310px, 44fr);
    }

    .home-event-slide__content {
        padding: 28px;
    }

    .home-event-slide h3 {
        font-size: clamp(32px, 4vw, 40px);
    }
}

@media (max-width: 800px) {
    .home-upcoming {
        padding-block: 34px;
    }

    .home-upcoming__header {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 700px) {
    .home-event-slide {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .home-event-slide__media {
        height: clamp(210px, 34vh, 250px);
        min-height: 0;
        aspect-ratio: auto;
    }

    .home-event-slide__content {
        min-height: 290px;
        padding: 26px 28px 30px;
    }
}

@media (max-width: 600px) {
    .home-upcoming {
        padding-block: 32px;
    }

    .home-upcoming__header {
        margin-bottom: 20px;
        gap: 10px;
    }

    .home-upcoming__eyebrow {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .home-upcoming__title {
        font-size: clamp(40px, 11vw, 46px);
    }

    .home-upcoming__introduction {
        font-size: 16px;
        line-height: 1.4;
    }

    .home-events-carousel__viewport {
        border-radius: 16px;
    }

    .home-event-slide__media {
        height: clamp(180px, 29vh, 220px);
        aspect-ratio: auto;
    }

    .home-event-slide__content {
        min-height: 300px;
        padding: 24px 22px 28px;
    }

    .home-event-slide__header {
        margin-bottom: 14px;
    }

    .home-event-slide__topline {
        font-size: 10px;
    }

    .home-event-slide__location {
        font-size: 11px;
    }

    .home-event-slide h3 {
        margin-bottom: 12px;
        font-size: 34px;
    }

    .home-event-slide__description {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.4;
    }

    .home-event-slide__content > a {
        gap: 12px;
        font-size: 12px;
    }

    .home-events-carousel__controls {
        margin-top: 14px;
        grid-template-columns: 1fr auto;
        gap: 8px 14px;
    }

    .home-events-carousel__arrows button {
        width: 40px;
        height: 40px;
    }

    .home-events-carousel__pause {
        grid-column: 2;
        grid-row: 1;
        font-size: 11px;
    }

    .home-events-carousel__dots {
        grid-row: 2;
        grid-column: 1;
        justify-self: start;
    }

    .home-events-carousel__controls .home-upcoming__all-events {
        grid-column: 2;
        grid-row: 2;
        font-size: 11px;
    }
}

@media (max-width: 600px) and (max-height: 720px) {
    .home-upcoming__introduction {
        display: none;
    }

    .home-event-slide__media {
        height: 160px;
    }

    .home-event-slide__content {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-events-carousel__track,
    .home-events-carousel__dots button,
    .home-upcoming__all-events,
    .home-upcoming__all-events span,
    .home-event-slide[aria-hidden="false"] .home-event-slide__media img,
    .home-event-slide[aria-hidden="false"] .home-event-slide__header,
    .home-event-slide[aria-hidden="false"] h3,
    .home-event-slide[aria-hidden="false"] .home-event-slide__description,
    .home-event-slide[aria-hidden="false"] .home-event-slide__link {
        animation: none;
        transition: none;
    }
}

/* Section 05 — Publics */

.home-audiences {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f4f1eb;
    padding-block: clamp(30px, 3.8vw, 54px);
}

.home-audiences > .wb-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: start;
}

.home-audiences::before {
    position: absolute;
    z-index: -2;
    width: 700px;
    height: 700px;
    top: -260px;
    left: -300px;
    border-radius: 50%;
    background: rgb(184 159 111 / 9%);
    content: "";
    filter: blur(70px);
}

.home-audiences__content {
    position: sticky;
    top: calc(var(--site-header-height, 92px) + 18px);
    padding-top: 18px;
}

.home-audiences__eyebrow {
    margin: 0 0 14px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-audiences__title {
    max-width: 500px;
    margin: 0;
    font-size: clamp(46px, 4vw, 64px);
    letter-spacing: 0;
    line-height: 1;
}

.home-audiences__title-emphasis {
    display: grid;
    gap: 1px;
    width: min-content;
    min-width: min(100%, 390px);
    margin-top: 4px;
    color: var(--color-primary);
    font-size: 0.76em;
    font-style: italic;
    font-weight: 400;
    line-height: 0.96;
}

.home-audiences__title-emphasis span {
    display: block;
}

.home-audiences__title-emphasis span:last-child {
    margin-left: clamp(10px, 1.4vw, 22px);
}

.home-audiences__introduction {
    max-width: 530px;
    margin: 24px 0 0;
    font-size: 19px;
    line-height: 1.42;
}

.home-audiences__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    max-width: 500px;
    margin-top: 24px;
    padding: 17px 22px;
    border: 1px solid rgb(184 159 111 / 38%);
    border-radius: 28px;
    background: rgb(255 255 255 / 60%);
}

.home-audiences__summary strong {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
}

.home-audiences__summary p {
    margin: 0;
    font-size: 16px;
    line-height: 1.36;
}

.home-audiences__actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
}

.home-audiences__button,
.home-audiences__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-audiences__button {
    display: inline-flex;
    min-height: 56px;
    padding: 16px 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
}

.home-audiences__button:hover,
.home-audiences__button:focus-visible {
    background: #74201c;
}

.home-audiences__link {
    padding-bottom: 6px;
    border-bottom: 1px solid rgb(100 100 100 / 48%);
    color: var(--color-heading);
}

.home-audiences__button:focus-visible,
.home-audiences__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 5px;
}

.home-audiences__list {
    position: relative;
    display: grid;
    gap: 14px;
}

.home-audiences__list::before {
    position: absolute;
    z-index: -1;
    width: 700px;
    height: 700px;
    inset: 12% auto auto 4%;
    background: url("../../assets/images/accueil/fond-2.webp") center / contain no-repeat;
    content: "";
    opacity: 0.13;
    pointer-events: none;
}

.home-audience-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 10px 22px;
    min-height: 184px;
    padding: 20px 28px;
    border: 1px solid rgb(184 159 111 / 24%);
    border-radius: 34px;
    background: rgb(255 255 255 / 88%);
    box-shadow: 0 20px 42px rgb(50 42 34 / 8%);
}

.home-audience-card.is-reveal-ready {
    opacity: 0;
    transform: translateY(24px);
}

.home-audience-card.is-reveal-visible {
    animation: home-audience-card-reveal .92s cubic-bezier(.2, .65, .3, 1) forwards;
}

.home-audience-card.is-reveal-visible:nth-child(2) {
    animation-delay: 120ms;
}

.home-audience-card.is-reveal-visible:nth-child(3) {
    animation-delay: 240ms;
}

.home-audience-card__header {
    display: flex;
    grid-column: 1 / -1;
    align-items: baseline;
    justify-content: space-between;
}

.home-audience-card__header h3 {
    margin: 0;
    font-size: 38px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.home-audience-card__header span {
    padding-right: 82px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.home-audience-card > p {
    grid-column: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.34;
}

.home-audience-card > p strong {
    color: var(--color-primary);
    font-weight: 600;
}

.home-audience-card ul {
    display: flex;
    grid-column: 1;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.home-audience-card li {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgb(144 40 34 / 7%);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-audience-card__character {
    display: grid;
    grid-column: 2;
    grid-row: 2 / 4;
    width: 64px;
    height: 64px;
    align-self: center;
    place-items: center;
    border: 1px solid rgb(184 159 111 / 50%);
    border-radius: 50%;
    color: var(--color-gold);
    font-family: Georgia, serif;
    font-size: 29px;
}

@keyframes home-audience-card-reveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1000px) {
    .home-audiences > .wb-section-inner {
        grid-template-columns: 1fr;
    }

    .home-audiences__content {
        position: static;
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    .home-intro {
        padding-block: 48px;
    }

    .home-intro > .wb-section-inner {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .home-intro__body {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .home-intro {
        padding-block: 42px;
    }

    .home-intro__title {
        font-size: 38px;
    }

    .home-intro__principles {
        grid-template-columns: 1fr;
    }

    .home-intro__principles li,
    .home-intro__principles li + li {
        padding: 26px 0;
        border-left: 0;
    }

    .home-intro__principles li + li {
        border-top: 1px solid rgb(184 159 111 / 42%);
    }

    .home-audiences__title {
        max-width: 430px;
        font-size: 42px;
    }

    .home-audiences__title-emphasis {
        min-width: 0;
    }

    .home-audiences__title-emphasis span:last-child {
        margin-left: 10px;
    }

    .home-audiences__introduction {
        margin-top: 20px;
        font-size: 18px;
    }

    .home-audiences__actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 20px;
    }

    .home-audience-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 20px 20px;
        border-radius: 26px;
    }

    .home-audience-card__header span {
        padding-right: 0;
    }

    .home-audience-card__character {
        display: none;
    }
}

/* Section 05 — Enseignants */

.home-teachers {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #20201e;
    color: rgb(248 246 242 / 74%);
}

.home-teachers::before {
    position: absolute;
    z-index: -1;
    width: 620px;
    height: 620px;
    right: -260px;
    bottom: -300px;
    border: 1px solid rgb(184 159 111 / 12%);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgb(184 159 111 / 3%), 0 0 0 180px rgb(184 159 111 / 2%);
    content: "";
}

.home-teachers__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: clamp(56px, 8vw, 128px);
    align-items: end;
    margin-bottom: 72px;
}

.home-teachers__eyebrow {
    margin: 0 0 24px;
    color: var(--color-gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-teachers__title {
    margin: 0;
    color: #f8f6f2;
    font-size: clamp(60px, 5.3vw, 86px);
    letter-spacing: -0.03em;
    line-height: 0.92;
}

.home-teachers__title em {
    color: var(--color-gold);
    font-weight: 400;
}

.home-teachers__introduction {
    margin: 0 0 6px;
    font-size: 21px;
    line-height: 1.6;
}

.home-teachers__founder {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgb(184 159 111 / 26%);
    border-radius: 36px;
    background: #292825;
}

.home-teachers__founder-media {
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.home-teachers__founder-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
}

.home-teachers__founder-content {
    display: flex;
    padding: clamp(42px, 5vw, 72px);
    justify-content: center;
    flex-direction: column;
}

.home-teachers__role {
    margin: 0 0 20px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-teachers__founder-content h3 {
    margin: 0 0 24px;
    color: #f8f6f2;
    font-size: clamp(50px, 4.5vw, 70px);
    letter-spacing: -0.025em;
    line-height: 1;
}

.home-teachers__founder-content > p:not(.home-teachers__role) {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
}

.home-teachers__founder-content a {
    display: inline-flex;
    gap: 12px;
    width: fit-content;
    margin-top: 34px;
    padding-bottom: 6px;
    align-items: center;
    border-bottom: 1px solid var(--color-gold);
    color: #f8f6f2;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.home-teachers__founder-content a span {
    color: var(--color-gold);
    transition: transform 180ms ease;
}

.home-teachers__founder-content a:hover span,
.home-teachers__founder-content a:focus-visible span {
    transform: translateX(4px);
}

.home-teachers__founder-content a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 5px;
}

.home-teachers__team-heading {
    display: flex;
    margin: 80px 0 28px;
    padding-bottom: 20px;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgb(184 159 111 / 28%);
}

.home-teachers__team-heading p,
.home-teachers__team-heading span {
    margin: 0;
}

.home-teachers__team-heading p {
    color: #f8f6f2;
    font-family: var(--font-heading);
    font-size: 29px;
}

.home-teachers__team-heading span {
    font-size: 16px;
}

.home-teachers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-teacher-card {
    position: relative;
    display: grid;
    min-height: 300px;
    overflow: hidden;
    grid-template-columns: minmax(190px, .78fr) minmax(0, 1.22fr);
    border: 1px solid rgb(184 159 111 / 22%);
    border-radius: 26px;
    background: rgb(248 246 242 / 4%);
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.home-teacher-card figure {
    position: relative;
    margin: 0;
    min-height: 300px;
    overflow: hidden;
    background: #34332f;
}

.home-teacher-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82);
    transition: filter 220ms ease, transform 300ms ease;
}

.home-teacher-card:nth-child(4) img {
    object-position: center 28%;
}

.home-teacher-card:hover,
.home-teacher-card:focus-within {
    border-color: rgb(184 159 111 / 55%);
    background: rgb(248 246 242 / 7%);
    transform: translateY(-3px);
}

.home-teacher-card:hover img,
.home-teacher-card:focus-within img {
    filter: saturate(1);
    transform: scale(1.025);
}

.home-teacher-card__content {
    display: flex;
    padding: 24px 24px 22px;
    flex-direction: column;
}

.home-teacher-card h3 {
    margin: 0;
    color: #f8f6f2;
    font-size: 28px;
    line-height: 1;
}

.home-teacher-card__grade {
    margin: 8px 0 0;
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-teacher-card__summary {
    margin: 16px 0 0;
    color: rgb(248 246 242 / 72%);
    font-size: 15px;
    line-height: 1.48;
}

.home-teacher-card__summary a {
    position: relative;
    z-index: 2;
    color: #f8f6f2;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 3px;
}

.home-teacher-card__profile-link {
    display: inline-flex;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    align-items: center;
    color: #f8f6f2;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.home-teacher-card__profile-link::after {
    position: absolute;
    inset: 0;
    content: "";
}

.home-teacher-card__profile-link span {
    color: var(--color-gold);
    transition: transform 180ms ease;
}

.home-teacher-card__profile-link:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 5px;
}

.home-teacher-card__profile-link:hover span,
.home-teacher-card__profile-link:focus-visible span {
    transform: translateX(4px);
}

@media (max-width: 1000px) {
    .home-teachers__header,
    .home-teachers__founder {
        grid-template-columns: 1fr;
    }

    .home-teachers__introduction {
        max-width: 680px;
    }

    .home-teachers__founder-media {
        min-height: 0;
        aspect-ratio: 1.55;
    }

    .home-teachers__grid { grid-template-columns: 1fr; }

    .home-teacher-card {
        min-height: 280px;
        grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    }

    .home-teacher-card figure { min-height: 280px; }
}

@media (max-width: 600px) {
    .home-teachers__header {
        gap: 36px;
        margin-bottom: 48px;
    }

    .home-teachers__title {
        font-size: 48px;
    }

    .home-teachers__introduction {
        font-size: 19px;
    }

    .home-teachers__founder {
        min-height: 0;
        border-radius: 26px;
    }

    .home-teachers__founder-media {
        aspect-ratio: 1.2;
    }

    .home-teachers__founder-content {
        padding: 34px 26px 40px;
    }

    .home-teachers__team-heading {
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 60px;
    }

    .home-teachers__grid {
        grid-template-columns: 1fr;
    }

    .home-teacher-card {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .home-teacher-card figure {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .home-teacher-card__content {
        padding: 22px 22px 24px;
    }

    .home-teacher-card__summary { margin-top: 14px; }
    .home-teacher-card__profile-link { padding-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-teachers__founder-content a span,
    .home-teacher-card,
    .home-teacher-card img,
    .home-teacher-card__profile-link span {
        transition: none;
    }
}

/* Section 06 — Planning et tarifs */

.wb-planning-section {
    position: relative;
    overflow: hidden;
    padding: 88px 28px;
    background: var(--color-background-warm);
    color: var(--color-heading);
}

.wb-planning-section::before {
    position: absolute;
    top: -6%;
    right: -28px;
    width: min(36vw, 390px);
    height: 112%;
    background: url("../../assets/images/accueil/sceau-sun-wu-kong.webp") right center / contain no-repeat;
    content: "";
    mix-blend-mode: multiply;
    opacity: 0.09;
    pointer-events: none;
}

.wb-planning-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1220px);
    margin: 0 auto;
}

.wb-planning-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(660px, 1.4fr);
    gap: clamp(50px, 6vw, 88px);
    align-items: center;
}

.wb-planning-kicker {
    margin: 0 0 17px;
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wb-planning-title {
    max-width: 550px;
    margin: 0;
    font-size: clamp(42px, 4.3vw, 60px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.99;
}

.wb-planning-copy {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.55;
}

.wb-planning-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 24px 0 0;
    color: #4f4e4a;
    font-size: 15px;
}

.wb-planning-meta span::before {
    margin-right: 7px;
    color: var(--color-gold);
    content: "—";
}

.wb-planning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.wb-planning-button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wb-planning-button:hover,
.wb-planning-button:focus-visible {
    background: #741f1a;
    color: #fff;
    transform: translateY(-1px);
}

.wb-planning-button--secondary {
    border-color: rgb(29 29 27 / 24%);
    background: transparent;
    color: var(--color-heading);
}

.wb-planning-button--secondary:hover,
.wb-planning-button--secondary:focus-visible {
    border-color: var(--color-primary);
    background: rgb(255 255 255 / 55%);
    color: var(--color-primary);
}

.wb-planning-button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.wb-planning-card {
    padding: 26px;
    border: 1px solid #ded8cc;
    border-radius: 24px;
    background: rgb(255 255 255 / 64%);
    box-shadow: 0 16px 45px rgb(45 40 31 / 5.5%);
    backdrop-filter: blur(3px);
}

.wb-planning-card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    align-items: baseline;
    justify-content: space-between;
}

.wb-planning-card-title {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
}

.wb-planning-card-note {
    color: var(--color-text);
    font-size: 14px;
}

.wb-planning-week {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.wb-planning-day {
    min-width: 0;
    padding: 15px 8px 13px;
    border: 1px solid rgb(29 29 27 / 9%);
    border-radius: 15px;
    background: rgb(248 246 242 / 82%);
    text-align: center;
}

.wb-planning-day-name {
    display: block;
    margin-bottom: 11px;
    color: var(--color-heading);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.wb-planning-tags {
    display: flex;
    min-height: 76px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.wb-planning-tag {
    display: inline-flex;
    width: 100%;
    min-height: 21px;
    padding: 3px 5px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eee8dc;
    color: #4e493f;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.wb-planning-price {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 27px;
    margin-top: 20px;
    padding-top: 20px;
    align-items: center;
    border-top: 1px solid rgb(29 29 27 / 10%);
}

.wb-planning-price-label {
    margin: 0 0 2px;
    color: var(--color-text);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wb-planning-price-value {
    margin: 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.wb-planning-price-details {
    padding-left: 27px;
    border-left: 1px solid #ded8cc;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.5;
}

.wb-planning-price-details strong {
    color: var(--color-heading);
    font-weight: 600;
}

.wb-planning-disclaimer {
    grid-column: 1 / -1;
    margin: -4px 0 0;
    color: #7b7973;
    font-size: 12px;
    font-style: italic;
}

@media (max-width: 1080px) {
    .wb-planning-section {
        padding: 64px 28px;
    }

    .wb-planning-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .wb-planning-copy {
        max-width: 700px;
    }

    .wb-planning-week {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wb-planning-tags {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .wb-planning-section {
        padding: 48px 18px;
    }

    .wb-planning-section::before {
        top: 4%;
        right: -54px;
        width: 245px;
        height: 92%;
        opacity: 0.065;
    }

    .wb-planning-title {
        font-size: clamp(38px, 12vw, 48px);
        line-height: 1.01;
    }

    .wb-planning-copy {
        margin-top: 20px;
        font-size: 17px;
    }

    .wb-planning-meta {
        display: grid;
        gap: 7px;
    }

    .wb-planning-actions {
        display: grid;
    }

    .wb-planning-button {
        width: 100%;
    }

    .wb-planning-card {
        padding: 20px;
        border-radius: 20px;
    }

    .wb-planning-card-header {
        display: block;
    }

    .wb-planning-card-note {
        display: block;
        margin-top: 4px;
    }

    .wb-planning-week {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .wb-planning-day {
        padding: 13px 9px;
    }

    .wb-planning-price {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wb-planning-price-details {
        padding: 13px 0 0;
        border-top: 1px solid #ded8cc;
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wb-planning-button {
        transition: none;
    }
}

/* Section — Village d’été */
.wb-village {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 106px) 32px;
    background: radial-gradient(circle at 88% 18%, rgb(184 159 111 / 11%), transparent 29%), linear-gradient(135deg, #1d1d1b 0%, #24221f 58%, #181817 100%);
    color: #f8f6f2;
}
.wb-village::before { position: absolute; top: 0; left: max(32px, calc((100vw - 1200px) / 2)); width: 74px; height: 1px; background: var(--color-gold); content: ""; }
.wb-village__inner { display: grid; width: 100%; max-width: 1200px; margin-inline: auto; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: clamp(52px, 6vw, 88px); align-items: center; }
.wb-village__content { max-width: 535px; }
.wb-village__eyebrow { display: flex; gap: 14px; margin: 0 0 20px; align-items: center; color: var(--color-gold); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.wb-village__eyebrow::before { width: 38px; height: 1px; background: currentcolor; content: ""; }
.wb-village__title { max-width: 520px; margin: 0; color: #f8f6f2; font-size: clamp(46px, 4.3vw, 68px); font-weight: 500; letter-spacing: -.025em; line-height: .98; }
.wb-village__copy { margin: 27px 0 0; color: rgb(248 246 242 / 72%); font-size: 18px; line-height: 1.62; }
.wb-village__details { display: flex; margin: 29px 0 0; padding: 0; flex-wrap: wrap; gap: 9px; list-style: none; }
.wb-village__details li { padding: 8px 13px; border: 1px solid rgb(248 246 242 / 14%); border-radius: 999px; background: rgb(248 246 242 / 4%); color: rgb(248 246 242 / 84%); font-size: 14px; line-height: 1.25; }
.wb-village__actions { display: flex; margin-top: 32px; flex-wrap: wrap; gap: 12px; }
.wb-village__button { display: inline-flex; min-height: 48px; padding: 12px 20px; align-items: center; justify-content: center; border: 1px solid var(--color-primary); border-radius: 999px; background: var(--color-primary); color: #f8f6f2; font-size: 15px; font-weight: 600; line-height: 1.2; text-align: center; text-decoration: none; transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.wb-village__button:hover, .wb-village__button:focus-visible { border-color: #a73730; background: #a73730; transform: translateY(-2px); }
.wb-village__button--secondary { border-color: rgb(248 246 242 / 28%); background: transparent; }
.wb-village__button--secondary:hover, .wb-village__button--secondary:focus-visible { border-color: var(--color-gold); background: rgb(184 159 111 / 10%); }
.wb-village__gallery { position: relative; display: grid; min-height: 510px; grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr); grid-template-rows: 1fr 1fr auto; gap: 14px; }
.wb-village__photo { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgb(248 246 242 / 14%); border-radius: 22px; background: #292723; box-shadow: 0 20px 55px rgb(0 0 0 / 24%); }
.wb-village__photo::after { position: absolute; background: linear-gradient(180deg, transparent 58%, rgb(0 0 0 / 24%)); content: ""; inset: 0; pointer-events: none; }
.wb-village__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.wb-village__gallery:hover .wb-village__photo img { transform: scale(1.025); }
.wb-village__photo--main { grid-row: 1 / 3; transform: translateY(-9px); }
.wb-village__photo--main img { object-position: 52% center; }
.wb-village__photo--top, .wb-village__photo--bottom { transform: translateY(12px); }
.wb-village__card { display: grid; width: 100%; padding: 17px 21px; grid-column: 1 / -1; grid-template-columns: auto 1fr auto; gap: 5px 20px; align-items: center; border: 1px solid rgb(248 246 242 / 18%); border-radius: 16px; background: rgb(248 246 242 / 5%); box-shadow: 0 12px 36px rgb(0 0 0 / 18%); }
.wb-village__card-edition { grid-row: 1 / 3; color: var(--color-gold); font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.wb-village__card strong { color: #f8f6f2; font-family: var(--font-heading); font-size: 24px; font-weight: 500; line-height: 1.05; }
.wb-village__card > span:not(.wb-village__card-edition) { color: rgb(248 246 242 / 78%); font-size: 13px; }
.wb-village__card small { grid-column: 3; grid-row: 1 / 3; color: rgb(248 246 242 / 58%); font-size: 12px; font-style: italic; }
@media (max-width: 1080px) {
    .wb-village__inner { grid-template-columns: 1fr; }
    .wb-village__content { max-width: 730px; }
    .wb-village__gallery { min-height: 540px; grid-template-columns: 1.35fr 1fr; }
}
@media (max-width: 620px) {
    .wb-village { padding: 62px 18px 68px; }
    .wb-village::before { left: 18px; }
    .wb-village__inner { gap: 42px; }
    .wb-village__title { font-size: clamp(41px, 13vw, 52px); }
    .wb-village__copy { font-size: 17px; }
    .wb-village__details { display: grid; grid-template-columns: 1fr 1fr; }
    .wb-village__details li { display: flex; min-height: 44px; padding-inline: 11px; align-items: center; border-radius: 13px; }
    .wb-village__actions { display: grid; }
    .wb-village__button { width: 100%; }
    .wb-village__gallery { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 270px 190px auto; gap: 10px; }
    .wb-village__photo { border-radius: 16px; transform: none; }
    .wb-village__photo--main { grid-column: 1 / -1; grid-row: 1; }
    .wb-village__photo--top, .wb-village__photo--bottom { grid-row: 2; }
    .wb-village__card { padding: 15px 17px; grid-template-columns: 1fr; gap: 4px; }
    .wb-village__card-edition,
    .wb-village__card small { grid-column: 1; grid-row: auto; }
    .wb-village__card strong { font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
    .wb-village__button, .wb-village__photo img { transition: none; }
}

/* Section — Stages & événements */
.wb-events {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 7vw, 90px) 32px;
    background:
        radial-gradient(circle at 92% 8%, rgb(184 159 111 / 9%), transparent 23%),
        var(--color-background-warm);
    color: var(--color-text);
}

.wb-events::after {
    position: absolute;
    right: clamp(-105px, -5vw, -45px);
    bottom: -48px;
    width: clamp(310px, 34vw, 520px);
    aspect-ratio: 1;
    background: url("../../assets/images/accueil/calligraphie-poisson-2.png") center / contain no-repeat;
    content: "";
    opacity: .075;
    pointer-events: none;
}

.wb-events__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.wb-events__intro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: end;
}

.wb-events__eyebrow {
    display: flex;
    gap: 14px;
    margin: 0 0 18px;
    align-items: center;
    color: var(--color-primary);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.wb-events__eyebrow::before {
    width: 38px;
    height: 1px;
    background: var(--color-gold);
    content: "";
}

.wb-events__title {
    max-width: 550px;
    margin: 0;
    color: #1d1d1b;
    font-size: clamp(44px, 4.5vw, 64px);
    letter-spacing: -.025em;
    line-height: .98;
}

.wb-events__lead > p {
    max-width: 650px;
    margin: 0;
    font-size: 18px;
    line-height: 1.58;
}

.wb-events__topics {
    display: flex;
    margin: 22px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.wb-events__topics li {
    padding: 7px 12px;
    border: 1px solid rgb(29 29 27 / 10%);
    border-radius: 999px;
    background: rgb(255 255 255 / 42%);
    color: #55524c;
    font-size: 13px;
    line-height: 1.2;
}

.wb-events__grid {
    display: grid;
    margin-top: clamp(42px, 5vw, 60px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wb-events__card {
    display: flex;
    min-width: 0;
    min-height: 300px;
    padding: clamp(24px, 2.5vw, 32px);
    flex-direction: column;
    border: 1px solid rgb(29 29 27 / 10%);
    border-radius: 24px;
    background: rgb(255 255 255 / 58%);
    box-shadow: 0 16px 38px rgb(44 39 32 / 5%);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wb-events__card:hover {
    border-color: rgb(184 159 111 / 48%);
    box-shadow: 0 20px 44px rgb(44 39 32 / 9%);
    transform: translateY(-4px);
}

.wb-events__card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wb-events__number {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1;
}

.wb-events__tag {
    padding: 5px 10px;
    border: 1px solid rgb(144 40 34 / 15%);
    border-radius: 999px;
    color: var(--color-primary);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.wb-events__card h3 {
    margin: 31px 0 14px;
    color: #1d1d1b;
    font-size: clamp(27px, 2.2vw, 34px);
    line-height: 1;
}

.wb-events__card p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.5;
}

.wb-events__card a {
    display: inline-flex;
    margin-top: auto;
    gap: 10px;
    align-items: center;
    color: #1d1d1b;
    font-size: 15px;
    font-weight: 600;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 5px;
}

.wb-events__card a span {
    color: var(--color-primary);
    transition: transform 180ms ease;
}

.wb-events__card a:hover span,
.wb-events__card a:focus-visible span {
    transform: translateX(4px);
}

.wb-events__footer {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    align-items: center;
    justify-content: space-between;
}

.wb-events__address {
    margin: 0;
    color: #77736b;
    font-size: 14px;
}

.wb-events__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.wb-events__button {
    display: inline-flex;
    min-height: 47px;
    padding: 11px 19px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: #f8f6f2;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.wb-events__button:hover,
.wb-events__button:focus-visible {
    border-color: #a73730;
    background: #a73730;
    transform: translateY(-2px);
}

.wb-events__button--secondary {
    border-color: rgb(29 29 27 / 20%);
    background: transparent;
    color: #1d1d1b;
}

.wb-events__button--secondary:hover,
.wb-events__button--secondary:focus-visible {
    border-color: var(--color-gold);
    background: rgb(184 159 111 / 9%);
}

@media (max-width: 980px) {
    .wb-events {
        padding: 64px 28px;
    }

    .wb-events__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wb-events__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-events__card:last-child {
        grid-column: 1 / -1;
        min-height: 250px;
    }

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

@media (max-width: 620px) {
    .wb-events {
        padding: 48px 18px;
    }

    .wb-events__title {
        font-size: clamp(40px, 12vw, 50px);
    }

    .wb-events__lead > p {
        font-size: 17px;
    }

    .wb-events__topics {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .wb-events__topics li {
        display: flex;
        min-height: 40px;
        align-items: center;
        border-radius: 12px;
    }

    .wb-events__grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .wb-events__card,
    .wb-events__card:last-child {
        min-height: 270px;
        grid-column: auto;
    }

    .wb-events__actions {
        display: grid;
        width: 100%;
    }

    .wb-events__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wb-events__card,
    .wb-events__card a span,
    .wb-events__button {
        transition: none;
    }
}

/* Section — Venir découvrir l’école */
.wb-visit {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 100px) 32px;
    background:
        radial-gradient(circle at 84% 22%, rgb(184 159 111 / 12%), transparent 28%),
        linear-gradient(135deg, #1d1d1b 0%, #24221f 60%, #181817 100%);
    color: #f8f6f2;
}

.wb-visit::before {
    position: absolute;
    top: -150px;
    left: -130px;
    width: 410px;
    height: 410px;
    border: 1px solid rgb(184 159 111 / 10%);
    border-radius: 50%;
    box-shadow: inset 0 0 0 48px rgb(184 159 111 / 2%);
    content: "";
    pointer-events: none;
}

.wb-visit__inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    gap: clamp(56px, 8vw, 108px);
    align-items: center;
}

.wb-visit__content {
    max-width: 650px;
}

.wb-visit__eyebrow {
    display: flex;
    gap: 14px;
    margin: 0 0 20px;
    align-items: center;
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.wb-visit__eyebrow::before {
    width: 38px;
    height: 1px;
    background: currentcolor;
    content: "";
}

.wb-visit__title {
    max-width: 640px;
    margin: 0;
    color: #f8f6f2;
    font-size: clamp(48px, 5vw, 72px);
    letter-spacing: -.025em;
    line-height: .96;
}

.wb-visit__copy {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgb(248 246 242 / 72%);
    font-size: 18px;
    line-height: 1.6;
}

.wb-visit__audience {
    max-width: 600px;
    margin: 25px 0 0;
    color: rgb(248 246 242 / 88%);
    font-size: 15px;
    line-height: 1.55;
}

.wb-visit__audience span {
    margin-inline: 7px;
    color: var(--color-gold);
}

.wb-visit__card {
    padding: clamp(28px, 3.2vw, 40px);
    border: 1px solid rgb(248 246 242 / 14%);
    border-radius: 26px;
    background: rgb(248 246 242 / 6%);
    box-shadow: 0 24px 60px rgb(0 0 0 / 22%);
    backdrop-filter: blur(8px);
}

.wb-visit__card-heading {
    padding-bottom: 23px;
    border-bottom: 1px solid rgb(248 246 242 / 12%);
}

.wb-visit__card-heading p {
    margin: 0 0 6px;
    color: var(--color-gold);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wb-visit__card h3 {
    margin: 0;
    color: #f8f6f2;
    font-size: clamp(30px, 2.7vw, 39px);
    line-height: 1;
}

.wb-visit__address {
    display: flex;
    margin-top: 22px;
    flex-direction: column;
    color: rgb(248 246 242 / 72%);
    font-size: 16px;
    font-style: normal;
    line-height: 1.45;
}

.wb-visit__address strong {
    margin-bottom: 3px;
    color: #f8f6f2;
    font-weight: 600;
}

.wb-visit__facts {
    display: grid;
    margin: 21px 0 0;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.wb-visit__facts li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgb(248 246 242 / 82%);
    font-size: 14px;
}

.wb-visit__facts li::before {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-gold);
    content: "";
}

.wb-visit__actions {
    display: grid;
    margin-top: 27px;
    gap: 10px;
}

.wb-visit__button {
    display: inline-flex;
    min-height: 49px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: #f8f6f2;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.wb-visit__button:hover,
.wb-visit__button:focus-visible {
    border-color: #a73730;
    background: #a73730;
    transform: translateY(-2px);
}

.wb-visit__button--secondary {
    border-color: rgb(248 246 242 / 25%);
    background: transparent;
}

.wb-visit__button--secondary:hover,
.wb-visit__button--secondary:focus-visible {
    border-color: var(--color-gold);
    background: rgb(184 159 111 / 10%);
}

.wb-visit__contact {
    display: inline-flex;
    margin-top: 18px;
    gap: 8px;
    align-items: center;
    color: rgb(248 246 242 / 66%);
    font-size: 13px;
    text-decoration-color: rgb(184 159 111 / 60%);
    text-underline-offset: 4px;
}

.wb-visit__contact span {
    color: var(--color-gold);
}

@media (max-width: 900px) {
    .wb-visit {
        padding: 72px 28px;
    }

    .wb-visit__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wb-visit__content {
        max-width: 720px;
    }

    .wb-visit__card {
        width: min(100%, 620px);
    }
}

@media (max-width: 620px) {
    .wb-visit {
        padding: 56px 18px;
    }

    .wb-visit__inner {
        gap: 38px;
    }

    .wb-visit__title {
        font-size: clamp(42px, 13vw, 54px);
    }

    .wb-visit__copy {
        margin-top: 23px;
        font-size: 17px;
    }

    .wb-visit__audience {
        display: grid;
        gap: 3px;
    }

    .wb-visit__audience span {
        display: none;
    }

    .wb-visit__card {
        padding: 26px 22px;
        border-radius: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wb-visit__button {
        transition: none;
    }
}

/* Évite le débordement horizontal des sections pleine largeur sur cette page. */
body {
    overflow-x: hidden;
}

/* Sections validées dans le laboratoire de la page d’accueil. */

/* Village d’été — version immersive. */
.wb-village {
    position: relative;
    display: grid;
    min-height: 90vh;
    overflow: hidden;
    padding: 0;
    isolation: isolate;
    background: #252017;
    color: #fff;
}

.wb-village::before {
    content: none;
}

.wb-village__media,
.wb-village__overlay {
    position: absolute;
    inset: 0;
}

.wb-village__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wb-village__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgb(16 14 10 / 36%), rgb(25 18 10 / 18%) 45%, rgb(12 11 8 / 54%)),
        linear-gradient(90deg, rgb(18 13 8 / 78%) 0%, rgb(35 24 14 / 52%) 42%, rgb(18 13 8 / 8%) 78%);
}

.wb-village__content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1200px, calc(100% - 64px));
    max-width: none;
    min-height: 90vh;
    margin: auto;
    padding: clamp(72px, 9vw, 126px) 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    animation: wb-village-reveal 1s ease-out both;
}

.wb-village__panel {
    width: min(610px, 100%);
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 3px;
    background: linear-gradient(135deg, rgb(24 18 12 / 70%), rgb(24 18 12 / 42%));
    box-shadow: 0 28px 80px rgb(0 0 0 / 22%);
    backdrop-filter: blur(7px);
}

.wb-village__eyebrow {
    display: flex;
    margin: 0 0 22px;
    gap: 13px;
    align-items: center;
    color: var(--color-gold);
    font: 500 0.72rem Arial, sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.wb-village__eyebrow::before {
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: currentcolor;
    content: "";
}

.wb-village__title {
    max-width: none;
    margin: 0;
    color: #fff;
    font: 500 clamp(4rem, 7vw, 6.8rem) / .84 "Cormorant Garamond", Georgia, serif;
    letter-spacing: -.035em;
    text-shadow: 0 4px 32px rgb(0 0 0 / 28%);
}

.wb-village__tagline {
    max-width: 520px;
    margin: 30px 0 0;
    font: 500 clamp(1.4rem, 2.2vw, 1.9rem) / 1.18 "Cormorant Garamond", Georgia, serif;
}

.wb-village__description {
    max-width: 500px;
    margin: 17px 0 0;
    color: rgb(255 250 239 / 82%);
    font-size: 1.05rem;
    line-height: 1.55;
}

.wb-village__actions {
    display: flex;
    margin-top: 38px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

.wb-village__button {
    display: inline-flex;
    min-height: 49px;
    padding: 0 22px;
    gap: 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 65%);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font: 600 .76rem Arial, sans-serif;
    letter-spacing: .025em;
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.wb-village__button--primary {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgb(144 40 34 / 28%);
}

.wb-village__button.wb-village__button--primary:hover,
.wb-village__button.wb-village__button--primary:focus-visible {
    border-color: #b13a32;
    background: #b13a32;
    color: #fff;
}

.wb-village__arrow {
    transition: transform .25s ease;
}

.wb-village__logo {
    display: block;
    width: 118px;
    height: auto;
    margin-top: 28px;
    object-fit: contain;
    opacity: .84;
}

.wb-village__button:hover,
.wb-village__button:focus-visible {
    border-color: #fff;
    background: rgb(255 255 255 / 16%);
    color: #fff;
    transform: none;
}

.wb-village__button:hover .wb-village__arrow,
.wb-village__button:focus-visible .wb-village__arrow {
    transform: translateX(4px);
}

@keyframes wb-village-reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stages et événements — version en cartes décalées. */
.wb-events {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 64px) clamp(100px, 14vw, 190px);
    background: #f3eee5;
    color: #25231f;
}

.wb-events::after {
    content: none;
}

.wb-events__inner {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    max-width: none;
    margin: 0 auto;
}

.wb-events__header {
    display: flex;
    margin-bottom: clamp(48px, 6vw, 82px);
    gap: 40px;
    align-items: flex-end;
    justify-content: space-between;
}

.wb-events__heading {
    max-width: 820px;
}

.wb-events__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: #9b332e;
    font: 600 .7rem / 1.2 Arial, sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.wb-events__eyebrow::before {
    content: none;
}

.wb-events__title {
    max-width: none;
    margin: 0;
    color: #25231f;
    font: 500 clamp(3rem, 6vw, 5.7rem) / .9 "Cormorant Garamond", Georgia, serif;
    letter-spacing: -.03em;
}

.wb-events__intro {
    margin: 22px 0 0;
    color: #5f5a52;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.4;
}

.wb-events__button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 25px;
    flex: 0 0 auto;
    gap: 28px;
    align-items: center;
    border: 1px solid rgb(56 49 41 / 28%);
    border-radius: 999px;
    background: transparent;
    color: #332f29;
    font: 600 .76rem / 1 Arial, sans-serif;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.wb-events__button span {
    font-size: 1.2rem;
    transition: transform .25s ease;
}

.wb-events__button:hover,
.wb-events__button:focus-visible {
    border-color: #173e38;
    background: #173e38;
    color: #fff;
    transform: none;
}

.wb-events__button:hover span,
.wb-events__button:focus-visible span {
    transform: translateX(4px);
}

.wb-events__grid {
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
    align-items: start;
}

.wb-events-card {
    overflow: hidden;
    border: 1px solid rgb(59 51 42 / 10%);
    border-radius: 24px;
    background: #fbf8f2;
    box-shadow: 0 18px 45px rgb(44 37 29 / 7%);
    transition: transform .35s ease, box-shadow .35s ease;
}

.wb-events-card:nth-child(1) { grid-column: 1 / span 4; }
.wb-events-card:nth-child(2) { margin-top: clamp(105px, 11vw, 155px); grid-column: 5 / span 4; }
.wb-events-card:nth-child(3) { margin-top: clamp(34px, 4vw, 62px); grid-column: 9 / span 4; }

.wb-events-card__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ddd5c8;
}

.wb-events-card:nth-child(1) .wb-events-card__media { aspect-ratio: 1 / 1.08; }
.wb-events-card:nth-child(2) .wb-events-card__media { aspect-ratio: 1 / 1.18; }
.wb-events-card:nth-child(3) .wb-events-card__media { aspect-ratio: 1 / 1; }

.wb-events-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .65, .3, 1);
}

.wb-events-card__content {
    padding: clamp(24px, 3vw, 34px);
}

.wb-events-card__title {
    margin: 0;
    font: 600 clamp(1.65rem, 2.6vw, 2.25rem) / 1 "Cormorant Garamond", Georgia, serif;
}

.wb-events-card__text {
    margin: 14px 0 0;
    color: #665f56;
    font-size: 1.04rem;
    line-height: 1.45;
}

.wb-events-card:hover,
.wb-events-card:focus-within {
    box-shadow: 0 24px 55px rgb(44 37 29 / 11%);
    transform: translateY(-5px);
}

.wb-events-card:hover .wb-events-card__image,
.wb-events-card:focus-within .wb-events-card__image {
    transform: scale(1.025);
}

/* Venez découvrir l’école — version citation. */
.wb-visit {
    position: relative;
    display: grid;
    min-height: clamp(28rem, 58svh, 38rem);
    overflow: hidden;
    padding: clamp(3.25rem, 6vh, 5rem) clamp(1.5rem, 6vw, 5rem);
    place-items: center;
    isolation: isolate;
    background: radial-gradient(circle at 50% 43%, rgb(255 253 247 / 80%), transparent 48%), linear-gradient(135deg, #f2ede3 0%, #e9e1d3 100%);
    color: #29241e;
}

.wb-visit::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    box-shadow: none;
    content: "";
    opacity: .08;
    pointer-events: none;
}

.wb-visit::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url("../../assets/images/accueil/caligraphie-fond-2.webp") calc(100% - clamp(0rem, 3vw, 3rem)) center / min(62vw, 46rem) auto no-repeat;
    content: "";
    opacity: .22;
    pointer-events: none;
}

.wb-visit__inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(70rem, 100%);
    max-width: none;
    margin: 0;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
}

.wb-visit__label {
    margin: 0 0 clamp(1.25rem, 2.5vh, 2rem);
    color: #902822;
    font: 600 clamp(.67rem, .8vw, .76rem) / 1.2 "EB Garamond", Georgia, serif;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.wb-visit__label::after {
    display: block;
    width: 2.5rem;
    height: 1px;
    margin: .85rem auto 0;
    background: #b89f6f;
    content: "";
}

.wb-visit__quote {
    max-width: 64rem;
    margin: 0;
    color: #29241e;
    font: 500 clamp(2.35rem, 4.65vw, 4.6rem) / 1 "Cormorant Garamond", Georgia, serif;
    letter-spacing: -.025em;
    text-wrap: balance;
}

.wb-visit__button {
    display: inline-flex;
    min-height: 3.15rem;
    margin-top: clamp(2rem, 3.5vh, 3rem);
    padding: .75rem 1.55rem;
    gap: 1.4rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(42 35 28 / 42%);
    border-radius: 999px;
    background: transparent;
    color: #29241e;
    font: 600 .78rem / 1 "EB Garamond", Georgia, serif;
    letter-spacing: .105em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.wb-visit__button span {
    transition: transform .3s ease;
}

.wb-visit__button:hover,
.wb-visit__button:focus-visible {
    border-color: #902822;
    background: #902822;
    color: #fffaf1;
    outline: none;
    transform: none;
}

.wb-visit__button:hover span,
.wb-visit__button:focus-visible span {
    transform: translateX(.25rem);
}

@media (max-width: 920px) {
    .wb-events__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .wb-events__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-events-card:nth-child(1),
    .wb-events-card:nth-child(2),
    .wb-events-card:nth-child(3) {
        grid-column: auto;
    }

    .wb-events-card:nth-child(2) {
        margin-top: 72px;
    }

    .wb-events-card:nth-child(3) {
        width: calc(50% - 14px);
        margin: 4px auto 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .wb-village,
    .wb-village__content {
        min-height: 100svh;
    }

    .wb-village__content {
        width: min(calc(100% - 28px), 560px);
        padding: 42px 0;
    }

    .wb-village__panel {
        padding: 30px 22px 26px;
        background: linear-gradient(135deg, rgb(24 18 12 / 76%), rgb(24 18 12 / 50%));
    }

    .wb-village__title {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .wb-village__tagline {
        margin-top: 24px;
        font-size: 1.45rem;
    }

    .wb-village__description {
        font-size: 1rem;
    }

    .wb-village__actions {
        display: flex;
        width: min(100%, 310px);
        margin-top: 32px;
        flex-direction: column;
    }

    .wb-village__button {
        width: 100%;
    }

    .wb-village__logo {
        width: 96px;
        margin: 24px auto 0;
    }

    .wb-events {
        padding-inline: 18px;
    }

    .wb-events__header {
        gap: 28px;
    }

    .wb-events__button {
        width: 100%;
        justify-content: space-between;
    }

    .wb-events__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .wb-events-card:nth-child(1),
    .wb-events-card:nth-child(2),
    .wb-events-card:nth-child(3) {
        width: auto;
        margin: 0;
        grid-column: auto;
    }

    .wb-events-card:nth-child(2) { margin-left: 24px; }
    .wb-events-card:nth-child(3) { margin-right: 24px; }
    .wb-events-card { border-radius: 20px; }

    .wb-events-card:nth-child(1) .wb-events-card__media,
    .wb-events-card:nth-child(2) .wb-events-card__media,
    .wb-events-card:nth-child(3) .wb-events-card__media {
        aspect-ratio: 4 / 3;
    }

    .wb-visit {
        min-height: 29rem;
        padding-block: 3.25rem;
        padding-inline: 1.25rem;
    }

    .wb-visit::after {
        background-position: center bottom;
        background-size: auto 78%;
        opacity: .14;
    }

    .wb-visit__quote {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
        line-height: 1.02;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wb-village__content {
        animation: none;
    }

    .wb-village__button,
    .wb-village__arrow,
    .wb-events-card,
    .wb-events-card__image,
    .wb-events__button,
    .wb-events__button span,
    .wb-visit__button,
    .wb-visit__button span {
        transition: none;
    }

    .wb-events-card:hover,
    .wb-events-card:focus-within,
    .wb-events-card:hover .wb-events-card__image,
    .wb-events-card:focus-within .wb-events-card__image {
        transform: none;
    }
}
