/* =========================================================
   EKOW GALERIE — CSS GLOBAL
   Version harmonisée complète
   ========================================================= */


/* ---------------------------------------------------------
   1. VARIABLES
   --------------------------------------------------------- */

:root {
    --ekow-black: #111111;
    --ekow-dark: #181818;
    --ekow-white: #ffffff;
    --ekow-grey: #777777;
    --ekow-light-grey: #b7b7b7;
    --ekow-line: rgba(17, 17, 17, 0.18);

    --ekow-page-width: 1300px;
    --ekow-page-gutter: 50px;

    --ekow-section-space: 96px;
    --ekow-section-space-mobile: 64px;

    --ekow-sans: Arial, Helvetica, sans-serif;
    --ekow-serif: "Instrument Serif", Georgia, serif;

    --ekow-ease: cubic-bezier(.22, .61, .36, 1);
}


/* ---------------------------------------------------------
   2. RESET ET BASE
   --------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    background: var(--ekow-white);
    color: var(--ekow-black);

    font-family: var(--ekow-sans);
    font-size: 16px;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* Conteneur éditorial commun */

.ekow-container {
    width: calc(100% - (var(--ekow-page-gutter) * 2));
    max-width: var(--ekow-page-width);

    margin-right: auto;
    margin-left: auto;
}


/* Titres communs de sections */

.past-expo-section-title,
.artist-selector-heading h2 {
    margin: 0;

    color: var(--ekow-black);

    font-family: var(--ekow-sans) !important;
    font-size: 20px;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   3. FORMULAIRE DE CONTACT
   --------------------------------------------------------- */

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px;

    border: 1px solid var(--ekow-black);
    border-radius: 0;

    background: transparent;
    color: var(--ekow-black);
}

.wpcf7 textarea {
    resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: 1px solid var(--ekow-black);
    outline-offset: 2px;
}

.wpcf7-submit {
    width: auto;
    padding: 12px 22px;

    border: 1px solid var(--ekow-black);
    border-radius: 0;

    background: var(--ekow-black);
    color: var(--ekow-white);

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.wpcf7-submit:hover {
    background: var(--ekow-white);
    color: var(--ekow-black);
}


/* ---------------------------------------------------------
   4. HERO
   --------------------------------------------------------- */

.hero-image {
    position: relative;
    z-index: 1;

    overflow: hidden;
}

.hero-image img {
    width: 100%;

    transition:
        transform 0.7s var(--ekow-ease),
        filter 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {

    .hero-image:hover img {
        transform: scale(1.025);
        filter: brightness(72%);
    }
}

.hero-box {
    position: relative;
    z-index: 2;

    width: min(480px, calc(100% - 100px));
    max-width: 480px;

    margin-left: 50px;
    margin-bottom: 50px;
    padding: 34px 38px;

    background: rgba(0, 0, 0, 0.86);
    color: var(--ekow-white);
}

.hero-box,
.hero-box * {
    color: var(--ekow-white) !important;
}

.hero-box h1,
.hero-box h2 {
    margin: 0 0 15px;

    font-family: var(--ekow-serif) !important;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 0.98;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero-box p {
    margin: 8px 0;
}


/* ---------------------------------------------------------
   5. CARTES D’EXPOSITION — ACCUEIL
   --------------------------------------------------------- */

.expo-card {
    position: relative;
    z-index: 5;

    width: 84%;
    max-width: 560px;

    margin: -94px 0 0 20px;
    padding: 25px 25px 23px;

    background: rgba(24, 24, 24, 0.95);
    color: var(--ekow-white);
}

.expo-card,
.expo-card * {
    color: var(--ekow-white) !important;
}

.expo-card h1,
.expo-card h2,
.expo-card h3 {
    margin: 0 0 14px;

    font-family: var(--ekow-sans) !important;
    font-size: clamp(27px, 2.2vw, 36px);
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 0.98;

    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.expo-card p {
    margin: 5px 0;

    font-family: var(--ekow-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.expo-card p:last-child {
    margin-bottom: 0;
}

.expo-card a {
    display: inline-block;

    margin-top: 14px;

    font-family: var(--ekow-sans);
    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {

    .expo-card a:hover {
        transform: translateX(4px);
        opacity: 0.7;
    }
}


/* ---------------------------------------------------------
   6. SLIDER DES ŒUVRES — PAGES D’EXPOSITION
   --------------------------------------------------------- */

.expo-slider-section {
    width: 100%;

    margin: 120px auto;
}

.expo-swiper {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.expo-swiper .swiper-wrapper {
    align-items: center;
}

.expo-swiper .swiper-slide {
    opacity: 0.28;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.expo-swiper .swiper-slide-active {
    opacity: 1;
}

.expo-swiper .swiper-slide-prev,
.expo-swiper .swiper-slide-next {
    opacity: 0.55;
}

.expo-slide {
    margin: 0;
}

.expo-slide img {
    width: 100%;
    height: 72vh;
    max-height: 900px;

    margin: 0 auto;

    object-fit: contain;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.expo-swiper .swiper-slide-active img {
    transform: scale(1);
}

.expo-swiper .swiper-slide-prev img,
.expo-swiper .swiper-slide-next img {
    transform: scale(0.88);
}

.expo-information {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;
}

.expo-text {
    max-width: 700px;
}

.expo-current-title {
    margin: 0 0 12px;

    font-family: var(--ekow-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
}

.expo-current-details {
    margin: 0;

    color: var(--ekow-grey);

    font-size: 16px;
    line-height: 1.7;
}

.expo-navigation {
    text-align: right;
}

.expo-counter {
    display: block;

    margin-bottom: 18px;

    color: #999;

    font-size: 13px;
    letter-spacing: 0.15em;
}

.expo-pagination {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: auto !important;
}

.expo-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 6px !important;

    background: #bbb;

    opacity: 1;
}

.expo-pagination .swiper-pagination-bullet-active {
    background: var(--ekow-black);
}

.expo-arrow {
    width: 54px !important;
    height: 54px !important;

    border: 1px solid rgba(0, 0, 0, 0.65);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.expo-arrow::after {
    color: var(--ekow-black);

    font-size: 18px !important;
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {

    .expo-arrow:hover {
        transform: scale(1.08);

        background: var(--ekow-white);

        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    }
}


/* ---------------------------------------------------------
   7. EXPOSITIONS PASSÉES
   --------------------------------------------------------- */

.past-expo-slider-section {
    position: relative;

    width: 100%;

    margin: var(--ekow-section-space) 0;

    overflow: hidden;
}

.past-expo-section-title {
    width: calc(100% - 100px);
    max-width: var(--ekow-page-width);

    margin: 0 auto 42px;
}

.past-expo-swiper {
    position: relative;

    width: 100%;

    overflow: visible;
}

.past-expo-swiper .swiper-wrapper {
    align-items: flex-start;
}

.past-expo-swiper .swiper-slide {
    height: auto;
}

.past-expo-item-link {
    display: block;

    color: inherit;
    text-decoration: none;
}

.past-expo-slide {
    height: auto;
}

.past-expo-image {
    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #ededed;
}

.past-expo-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.past-expo-card,
.past-expo-card-content,
.past-expo-card .past-expo-content {
    position: relative;

    width: calc(100% - 40px);

    margin: -80px auto 0;
    padding: 28px 26px 30px;

    background: rgba(24, 24, 24, 0.96);
    color: var(--ekow-white);
}

.past-expo-card,
.past-expo-card * {
    color: var(--ekow-white);
}

.past-expo-card h1,
.past-expo-card h2,
.past-expo-card h3,
.past-expo-card .past-expo-title,
.past-expo-card .title {
    margin: 0 0 14px;

    font-family: var(--ekow-sans) !important;
    font-size: clamp(30px, 2.2vw, 42px);
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 0.96;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.past-expo-card .past-expo-artist,
.past-expo-card .artist-name {
    margin: 0 0 12px;

    font-family: var(--ekow-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.past-expo-card .past-expo-date,
.past-expo-card .expo-date {
    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--ekow-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.past-expo-card .past-expo-location,
.past-expo-card .expo-location {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--ekow-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.past-expo-card .past-expo-link,
.past-expo-card .past-expo-discover {
    display: inline-block;

    color: var(--ekow-white);

    font-family: var(--ekow-sans);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.past-expo-item-link:hover .past-expo-link,
.past-expo-item-link:hover .past-expo-discover {
    opacity: 0.62;
    transform: translateX(4px);
}

.past-expo-arrow,
.past-expo-prev,
.past-expo-next {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 50px !important;
    height: 50px !important;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);
    color: var(--ekow-black);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.past-expo-arrow-prev,
.past-expo-prev {
    left: 24px;
}

.past-expo-arrow-next,
.past-expo-next {
    right: 24px;
}

.past-expo-arrow::after {
    color: var(--ekow-black);

    font-size: 18px !important;
    font-weight: 700;
}

.past-expo-arrow:hover,
.past-expo-prev:hover,
.past-expo-next:hover {
    border-color: var(--ekow-black);

    background: var(--ekow-black);
    color: var(--ekow-white);
}

.past-expo-arrow:hover::after {
    color: var(--ekow-white);
}

.past-expo-arrow.swiper-button-disabled,
.past-expo-prev.swiper-button-disabled,
.past-expo-next.swiper-button-disabled {
    opacity: 0.25;

    cursor: default;
    pointer-events: none;
}

.past-expo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: calc(100% - 100px);
    max-width: var(--ekow-page-width);

    margin: 32px auto 0;
}

.past-expo-counter {
    color: #999;

    font-family: var(--ekow-sans);
    font-size: 13px;
    line-height: 1;

    letter-spacing: 0.15em;
}

.past-expo-pagination {
    position: relative !important;

    display: flex;
    justify-content: flex-end;

    width: auto !important;
    max-width: none;

    margin: 0;
}

.past-expo-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 6px !important;

    background: #aaa;

    opacity: 0.7;
}

.past-expo-pagination .swiper-pagination-bullet-active {
    background: var(--ekow-black);

    opacity: 1;
}


/* ---------------------------------------------------------
   8. SLIDER ARTISTES
   --------------------------------------------------------- */

.artist-selector-section {
    position: relative;

    width: 100%;

    margin: var(--ekow-section-space) 0;

    overflow: hidden;
}

.artist-selector-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: calc(100% - 100px);
    max-width: var(--ekow-page-width);

    margin: 0 auto 42px;
}

.artist-selector-heading h2 {
    flex: 0 0 auto;
}

.artist-selector-controls {
    display: flex;
    align-items: center;

    gap: 10px;
}

.artist-selector-prev,
.artist-selector-next {
    position: relative;

    width: 50px;
    height: 50px;

    padding: 0;

    border: 1px solid var(--ekow-black);
    border-radius: 50%;

    background: transparent;
    color: var(--ekow-black);

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.artist-selector-prev::before,
.artist-selector-next::before {
    position: absolute;
    top: 50%;
    left: 50%;

    font-size: 19px;
    line-height: 1;

    transform: translate(-50%, -53%);
}

.artist-selector-prev::before {
    content: "←";
}

.artist-selector-next::before {
    content: "→";
}

.artist-selector-prev:hover,
.artist-selector-next:hover {
    background: var(--ekow-black);
    color: var(--ekow-white);

    transform: scale(1.04);
}

.artist-selector-prev.swiper-button-disabled,
.artist-selector-next.swiper-button-disabled {
    opacity: 0.25;

    pointer-events: none;
    transform: none;
}

.artist-selector-swiper {
    width: calc(100% - 50px);

    margin-left: 50px;

    overflow: visible;
}

.artist-selector-swiper .swiper-wrapper {
    align-items: flex-start;
}

.artist-selector-slide {
    width: min(31vw, 390px) !important;
    height: auto;

    cursor: pointer;

    opacity: 0.58;

    transition:
        opacity 0.4s ease,
        transform 0.55s var(--ekow-ease);
}

.artist-selector-slide.swiper-slide-active {
    z-index: 2;

    opacity: 1;
}

.artist-selector-slide.swiper-slide-prev,
.artist-selector-slide.swiper-slide-next {
    opacity: 0.82;
}

.artist-selector-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #ededed;
}

.artist-selector-portrait img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: none !important;

    transition: transform 0.65s var(--ekow-ease);
}

@media (hover: hover) and (pointer: fine) {

    .artist-selector-slide:hover .artist-selector-portrait img {
        transform: scale(1.025);
    }
}

.artist-selector-slide-name {
    display: block;

    margin-top: 14px;

    color: var(--ekow-black);

    font-family: var(--ekow-sans) !important;
    font-size: 15px;
    font-weight: 700 !important;
    line-height: 1.2;

    letter-spacing: -0.015em;
    text-align: left;
    text-transform: uppercase;

    opacity: 0.6;

    transition: opacity 0.3s ease;
}

.artist-selector-slide.swiper-slide-active .artist-selector-slide-name {
    opacity: 1;
}

.artist-selector-information {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);

    gap: 55px;

    width: calc(100% - 100px);
    max-width: var(--ekow-page-width);

    margin: 55px auto 0;
    padding-top: 30px;

    border-top: 1px solid var(--ekow-line);
}

.artist-selector-index {
    padding-top: 8px;

    color: #999;

    font-family: var(--ekow-sans);
    font-size: 13px;
    line-height: 1;

    letter-spacing: 0.15em;
}

.artist-selector-separator {
    margin: 0 6px;
}

.artist-selector-biography {
    max-width: 780px;

    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.artist-selector-biography.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.artist-selector-category {
    display: none !important;
}


/* Nom principal harmonisé en sans-serif */

.artist-selector-name {
    margin: 0 0 22px;

    color: var(--ekow-black);

    font-family: var(--ekow-sans) !important;
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 0.95;

    letter-spacing: -0.045em;
}


/* Biographie harmonisée */

.artist-selector-bio {
    max-width: 720px;

    margin: 0 0 27px;

    color: #222;

    font-family: var(--ekow-sans) !important;
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: -0.01em;
}


/* Lien harmonisé */

.artist-selector-link {
    display: inline-block;

    color: var(--ekow-black);

    font-family: var(--ekow-sans) !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.artist-selector-link:hover {
    opacity: 0.58;
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   9. TABLETTE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    :root {
        --ekow-page-gutter: 25px;
        --ekow-section-space: 76px;
    }

    .hero-box {
        width: min(460px, calc(100% - 50px));

        margin-left: 25px;
    }

    .past-expo-section-title,
    .past-expo-footer,
    .artist-selector-heading,
    .artist-selector-information {
        width: calc(100% - 50px);
    }

    .past-expo-section-title,
    .artist-selector-heading h2 {
        font-size: 18px;
    }

    .past-expo-card,
    .past-expo-card-content,
    .past-expo-card .past-expo-content {
        width: calc(100% - 30px);

        margin-top: -65px;
        padding: 24px 22px 26px;
    }

    .past-expo-card h1,
    .past-expo-card h2,
    .past-expo-card h3,
    .past-expo-card .past-expo-title,
    .past-expo-card .title {
        font-size: 32px;
    }

    .past-expo-card .past-expo-artist,
    .past-expo-card .artist-name {
        font-size: 15px;
    }

    .past-expo-card .past-expo-date,
    .past-expo-card .expo-date,
    .past-expo-card .past-expo-location,
    .past-expo-card .expo-location {
        font-size: 14px;
    }

    .past-expo-arrow-prev,
    .past-expo-prev {
        left: 15px;
    }

    .past-expo-arrow-next,
    .past-expo-next {
        right: 15px;
    }

    .artist-selector-swiper {
        width: calc(100% - 25px);

        margin-left: 25px;
    }

    .artist-selector-slide {
        width: min(42vw, 340px) !important;
    }

    .artist-selector-information {
        grid-template-columns: 100px minmax(0, 1fr);

        gap: 35px;
    }
}


/* ---------------------------------------------------------
   10. MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    :root {
        --ekow-page-gutter: 15px;
        --ekow-section-space: var(--ekow-section-space-mobile);
    }

    .hero-box {
        width: calc(100% - 30px);

        margin-left: 15px;
        margin-bottom: 30px;
        padding: 25px 22px;
    }

    .expo-card {
        width: calc(100% - 30px);

        margin-top: -55px;
        margin-left: 15px;
        padding: 21px 18px 23px;
    }

    .past-expo-section-title,
    .past-expo-footer,
    .artist-selector-heading,
    .artist-selector-information {
        width: calc(100% - 30px);
    }

    .past-expo-section-title,
    .artist-selector-heading h2 {
        font-size: 16px;
        line-height: 1.1;
    }

    .past-expo-section-title,
    .artist-selector-heading {
        margin-bottom: 26px;
    }

    .past-expo-card,
    .past-expo-card-content,
    .past-expo-card .past-expo-content {
        width: calc(100% - 20px);

        margin-top: -48px;
        padding: 21px 18px 23px;
    }

    .past-expo-card h1,
    .past-expo-card h2,
    .past-expo-card h3,
    .past-expo-card .past-expo-title,
    .past-expo-card .title {
        margin-bottom: 12px;

        font-size: 27px;
    }

    .past-expo-card .past-expo-artist,
    .past-expo-card .artist-name {
        margin-bottom: 10px;

        font-size: 14px;
    }

    .past-expo-card .past-expo-date,
    .past-expo-card .expo-date,
    .past-expo-card .past-expo-location,
    .past-expo-card .expo-location {
        font-size: 13px;
    }

    .past-expo-card .past-expo-location,
    .past-expo-card .expo-location {
        margin-bottom: 18px;
    }

    .past-expo-card .past-expo-link,
    .past-expo-card .past-expo-discover {
        font-size: 13px;
    }

    .past-expo-arrow,
    .past-expo-prev,
    .past-expo-next,
    .artist-selector-prev,
    .artist-selector-next {
        width: 42px !important;
        height: 42px !important;
    }

    .past-expo-arrow-prev,
    .past-expo-prev {
        left: 10px;
    }

    .past-expo-arrow-next,
    .past-expo-next {
        right: 10px;
    }

    .past-expo-footer {
        margin-top: 24px;
    }

    .artist-selector-heading {
        align-items: center;
    }

    .artist-selector-heading h2 {
        max-width: 160px;
    }

    .artist-selector-swiper {
        width: calc(100% - 15px);

        margin-left: 15px;
    }

    .artist-selector-slide {
        width: 76vw !important;
        max-width: 285px;
    }

    .artist-selector-slide-name {
        margin-top: 11px;

        font-size: 13px;
    }

    .artist-selector-information {
        display: block;

        margin-top: 38px;
        padding-top: 22px;
    }

    .artist-selector-index {
        margin-bottom: 25px;
        padding-top: 0;
    }

    .artist-selector-name {
        font-size: 43px;
    }

    .artist-selector-bio {
        font-size: 17px;
    }
}
/* ==========================================
   RAPPROCHER LES DEUX SLIDERS
========================================== */

/* Moins d'espace sous "Expositions passées" */

.past-expo-slider-section{
    margin-bottom:30px !important;
}

.artist-selector-section{
    margin-top:30px !important;
}
/* =========================================================
   EKOW GALERIE — NEWSLETTER MAILCHIMP
   ========================================================= */

.newsletter-section {
    width: 100%;

    margin: 40px 0 110px;
}

.newsletter-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);

    gap: 90px;

    width: calc(100% - 100px);
    max-width: 1300px;

    margin: 0 auto;
    padding-top: 58px;

    border-top: 1px solid rgba(17, 17, 17, 0.18);
}


/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.newsletter-intro h2 {
    margin: 0 0 18px;

    color: #111;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 20px;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.newsletter-intro p {
    max-width: 460px;

    margin: 0;

    color: #222;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;

    letter-spacing: -0.01em;
}


/* ---------------------------------------------------------
   FORMULAIRE
   --------------------------------------------------------- */

.newsletter-form {
    position: relative;

    width: 100%;
}

.newsletter-label {
    display: block;

    margin-bottom: 13px;

    color: #111;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;

    border-bottom: 1px solid #111;
}


/* ---------------------------------------------------------
   CHAMP E-MAIL
   --------------------------------------------------------- */

.newsletter-input {
    width: 100%;
    min-width: 0;

    padding: 15px 16px 15px 0;

    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;

    background: transparent !important;
    color: #111 !important;

    box-shadow: none !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;

    -webkit-appearance: none;
    appearance: none;
}

.newsletter-input::placeholder {
    color: #999;

    opacity: 1;
}

.newsletter-input:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}


/* Empêche l’autofill du navigateur de changer la DA */

.newsletter-input:-webkit-autofill,
.newsletter-input:-webkit-autofill:hover,
.newsletter-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #111;
    -webkit-box-shadow:
        0 0 0 1000px #fff inset !important;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* ---------------------------------------------------------
   BOUTON
   --------------------------------------------------------- */

.newsletter-submit {
    padding: 15px 0 15px 24px;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: #111 !important;

    box-shadow: none !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    white-space: nowrap;
    letter-spacing: -0.01em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.newsletter-submit:hover {
    opacity: 0.58;
    transform: translateX(4px);
}

.newsletter-submit:focus-visible {
    outline: 1px solid #111 !important;
    outline-offset: 5px;
}


/* ---------------------------------------------------------
   TEXTE LÉGAL
   --------------------------------------------------------- */

.newsletter-note {
    max-width: 560px;

    margin: 13px 0 0;

    color: #888;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   CHAMP ANTISPAM MAILCHIMP
   --------------------------------------------------------- */

.newsletter-antispam {
    position: absolute !important;
    top: auto;
    left: -5000px !important;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .newsletter-section {
        margin-bottom: 90px;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;

        gap: 45px;

        width: calc(100% - 50px);
        padding-top: 45px;
    }

    .newsletter-intro p {
        max-width: 560px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .newsletter-section {
        margin: 25px 0 70px;
    }

    .newsletter-inner {
        width: calc(100% - 30px);

        gap: 35px;

        padding-top: 34px;
    }

    .newsletter-intro h2 {
        margin-bottom: 14px;

        font-size: 16px;
    }

    .newsletter-intro p {
        font-size: 17px;
        line-height: 1.45;
    }

    .newsletter-fields {
        display: block;

        border-bottom: 0;
    }

    .newsletter-input {
        padding: 14px 0;

        border-bottom: 1px solid #111 !important;

        font-size: 17px;
    }

    .newsletter-submit {
        margin-top: 17px;
        padding: 0;
    }

    .newsletter-note {
        margin-top: 17px;
    }
}
/* =========================================================
   EKOW GALERIE — PAGE ARTISTE
   Version propre et réutilisable
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.artist-profile {
    --artist-black: #111;
    --artist-grey: #777;
    --artist-border: rgba(17, 17, 17, 0.18);
    --artist-background: #fff;
    --artist-max-width: 1450px;
    --artist-text-width: 720px;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    background: var(--artist-background);
    color: var(--artist-black);
}

.artist-profile,
.artist-profile * {
    box-sizing: border-box;
}


/* =========================================================
   EN-TÊTE / NOM DE L’ARTISTE
========================================================= */

.artist-profile-header {
    width: calc(100% - 100px);
    max-width: var(--artist-max-width);

    margin: 0 auto !important;

    padding: 18px 0 30px !important;

    border-bottom: 1px solid var(--artist-border);
}

.artist-profile-name {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--artist-black);

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(32px, 3.6vw, 55px);
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}


/* =========================================================
   MISE EN PAGE PRINCIPALE
========================================================= */

.artist-profile-introduction {
    display: grid;

    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(430px, 1.15fr);

    align-items: start;

    gap: clamp(55px, 8vw, 120px);

    width: calc(100% - 100px);
    max-width: var(--artist-max-width);

    margin: 0 auto !important;

    padding: 64px 0 110px;
}


/* =========================================================
   PORTRAIT
========================================================= */

.artist-profile-portrait {
    position: relative;

    width: 100%;

    margin: 0 !important;
    padding: 0;

    overflow: hidden;

    aspect-ratio: 4 / 5;

    background: #efefef;
}

.artist-profile-image {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.artist-profile-portrait:hover .artist-profile-image {
    transform: scale(1.015);
}


/* =========================================================
   COLONNE TEXTE
========================================================= */

.artist-profile-content {
    width: 100%;

    margin: 0;
    padding: 2px 0 0;
}


/* =========================================================
   À PROPOS
========================================================= */

.artist-profile-label {
    margin: 0 0 34px !important;
    padding: 0;

    color: var(--artist-grey);

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   BIOGRAPHIE
========================================================= */

.artist-profile-biography {
    width: 100%;
    max-width: var(--artist-text-width);

    margin: 0;
    padding: 0;
}

.artist-profile-biography p {
    width: 100%;

    margin: 0 0 1.45em !important;
    padding: 0;

    color: var(--artist-black);

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.65;

    letter-spacing: -0.01em;

    text-align: justify;
    text-justify: inter-word;

    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;

    overflow-wrap: break-word;
}

.artist-profile-biography p:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.artist-profile-social {
    width: 100%;
    max-width: var(--artist-text-width);

    margin: 32px 0 0;
    padding: 0;
}

.artist-instagram-link {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: var(--artist-black) !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.08em;
    text-decoration: none !important;
    text-transform: uppercase;

    transition: opacity 0.25s ease;
}

.artist-instagram-link:hover {
    opacity: 0.5;
}

.artist-instagram-link:focus-visible {
    outline: 1px solid var(--artist-black);
    outline-offset: 5px;
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
========================================================= */

@media (max-width: 1100px) {

    .artist-profile-header,
    .artist-profile-introduction {
        width: calc(100% - 50px);
    }

    .artist-profile-introduction {
        grid-template-columns:
            minmax(290px, 0.85fr)
            minmax(0, 1.15fr);

        gap: 50px;
    }

}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 800px) {

    .artist-profile-header {
        width: calc(100% - 30px);

        padding: 14px 0 22px !important;
    }

    .artist-profile-name {
        font-size: clamp(28px, 9vw, 42px);
    }

    .artist-profile-introduction {
        display: block;

        width: calc(100% - 30px);

        padding: 28px 0 80px;
    }

    .artist-profile-portrait {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .artist-profile-content {
        padding-top: 40px;
    }

    .artist-profile-label {
        margin-bottom: 25px !important;
    }

    .artist-profile-biography {
        max-width: none;
    }

    .artist-profile-biography p {
        font-size: 17px;
        line-height: 1.58;
    }

    .artist-profile-social {
        max-width: none;
        margin-top: 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .artist-profile-header {
        padding: 12px 0 20px !important;
    }

    .artist-profile-name {
        font-size: 28px;
    }

    .artist-profile-introduction {
        padding-top: 22px;
    }

    .artist-profile-content {
        padding-top: 35px;
    }

    .artist-profile-biography p {
        font-size: 16px;
        line-height: 1.55;

        text-align: left;

        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
    }

    .artist-profile-social {
        margin-top: 24px;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .artist-profile-image,
    .artist-instagram-link {
        transition: none;
    }

    .artist-profile-portrait:hover .artist-profile-image {
        transform: none;
    }

}
/* =========================================================
   EKOW GALERIE — LES DERNIÈRES ŒUVRES
========================================================= */


/* =========================================================
   SECTION GLOBALE
========================================================= */

.artworks-selection {
    width: calc(100% - 100px);
    max-width: 1450px;

    margin: 0 auto;
    padding: 70px 0 110px;

    color: #111;
    background: transparent;

    font-family: Arial, Helvetica, sans-serif !important;
}

.artworks-selection,
.artworks-selection * {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif !important;
}


/* =========================================================
   EN-TÊTE DE SECTION
========================================================= */

.artworks-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: 100%;

    margin: 0 0 38px;
    padding: 0;
}

.artworks-selection-title {
    margin: 0 !important;
    padding: 0 !important;

    color: #111 !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1.1 !important;

    letter-spacing: -0.025em !important;
    text-transform: uppercase !important;
}


/* =========================================================
   NAVIGATION
========================================================= */

.artworks-selection-arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    flex: 0 0 auto;
}

.artworks-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0;
    padding: 0;

    border: 1px solid #111;
    border-radius: 50%;

    outline: none;

    background: transparent;
    color: #111;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;

    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
}

.artworks-arrow span {
    display: block;

    margin: 0;
    padding: 0;

    line-height: 1;

    transform: translateY(-1px);
}

.artworks-arrow:hover {
    border-color: #111;

    background: #111;
    color: #fff;
}

.artworks-arrow:focus-visible {
    outline: 1px solid #111;
    outline-offset: 4px;
}

.artworks-arrow.swiper-button-disabled {
    border-color: #d3d3d3;

    background: transparent;
    color: #c7c7c7;

    opacity: 1;

    cursor: default;
    pointer-events: none;
}


/* =========================================================
   CONTENEUR SWIPER
========================================================= */

.artworks-swiper {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}

.artworks-swiper .swiper-wrapper {
    display: flex;
    align-items: flex-start;

    margin: 0;
    padding: 0;
}


/* =========================================================
   CARTE ŒUVRE
========================================================= */

.artworks-card {
    display: flex;
    flex-direction: column;

    height: auto;

    margin: 0;
    padding: 0;

    background: transparent;
}


/* =========================================================
   ZONE D’AFFICHAGE DE L’ŒUVRE
========================================================= */

.artworks-card-figure {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: clamp(380px, 34vw, 520px);

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: transparent;
}


/* =========================================================
   IMAGE
   VERTICALE, CARRÉE OU HORIZONTALE
========================================================= */

.artworks-card-image {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center;

    background: transparent;

    transform: none !important;

    transition: opacity 0.3s ease;
}

.artworks-card:hover .artworks-card-image {
    opacity: 0.94;

    transform: none !important;
}


/* =========================================================
   INFORMATIONS DE L’ŒUVRE
========================================================= */

.artworks-card-information {
    width: 100%;

    margin: 0;
    padding: 14px 0 0;
}

.artworks-card-title {
    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #111 !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1.25 !important;

    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
}

.artworks-card-details {
    margin: 0 !important;
    padding: 0 !important;

    color: #777 !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1.45 !important;

    letter-spacing: 0 !important;
    text-transform: none !important;
}


/* =========================================================
   COMPTEUR
========================================================= */

.artworks-selection-footer {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;

    margin: 54px 0 0;
    padding: 36px 0 0;

    border-top: 1px solid #d7d7d7;

    color: #999;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1 !important;

    letter-spacing: 0.12em !important;
}

.artworks-current-number,
.artworks-counter-separator,
.artworks-total-number {
    margin: 0;
    padding: 0;

    color: #999;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1 !important;

    letter-spacing: 0.12em !important;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .artworks-selection {
        width: calc(100% - 50px);

        padding-top: 65px;
        padding-bottom: 95px;
    }

    .artworks-selection-header {
        margin-bottom: 34px;
    }

    .artworks-selection-title {
        font-size: 21px !important;
    }

    .artworks-card-figure {
        height: clamp(350px, 46vw, 500px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .artworks-selection {
        width: calc(100% - 30px);

        padding-top: 55px;
        padding-bottom: 80px;
    }

    .artworks-selection-header {
        align-items: center;

        margin-bottom: 28px;
    }

    .artworks-selection-title {
        font-size: 19px !important;
        line-height: 1.1 !important;
    }

    .artworks-selection-arrows {
        gap: 8px;
    }

    .artworks-arrow {
        width: 44px;
        height: 44px;

        font-size: 19px;
    }

    .artworks-card-figure {
        height: min(112vw, 520px);
    }

    .artworks-card-information {
        padding-top: 12px;
    }

    .artworks-card-title {
        font-size: 13px !important;
    }

    .artworks-card-details {
        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .artworks-selection-footer {
        margin-top: 38px;
        padding-top: 25px;
    }

}


/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 480px) {

    .artworks-selection-header {
        align-items: flex-end;
        gap: 18px;
    }

    .artworks-selection-title {
        max-width: 210px;

        font-size: 18px !important;
        line-height: 1.15 !important;
    }

    .artworks-arrow {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .artworks-card-figure {
        height: min(116vw, 480px);
    }

    .artworks-selection-footer,
    .artworks-current-number,
    .artworks-counter-separator,
    .artworks-total-number {
        font-size: 11px !important;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .artworks-arrow,
    .artworks-card-image {
        transition: none;
    }

}
/* =========================================================
   EKOW GALERIE — PAGE À PROPOS
   VERSION ISOLÉE ET COHÉRENTE AVEC LE SITE
========================================================= */


/* =========================================================
   BASE
========================================================= */

.ekow-about-page {
    --about-black: #111;
    --about-grey: #777;
    --about-border: rgba(17, 17, 17, 0.18);
    --about-max-width: 1450px;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #fff;
    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-about-page,
.ekow-about-page * {
    box-sizing: border-box;
}

.ekow-about-page h1,
.ekow-about-page h2,
.ekow-about-page p,
.ekow-about-page figure,
.ekow-about-page blockquote {
    margin-top: 0;
}


/* =========================================================
   CONTENEUR
========================================================= */

.ekow-about-page .ekow-about-container {
    width: calc(100% - 100px);
    max-width: var(--about-max-width);

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ekow-about-page .ekow-about-hero {
    width: 100%;

    padding:
        18px
        0
        95px;
}

.ekow-about-page .ekow-about-title {
    margin: 0 0 55px;

    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    font-style: normal;
    line-height: 1;

    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.ekow-about-page .ekow-about-introduction {
    width: 100%;
    max-width: 900px;

    margin: 0;

    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 3.5vw, 50px);
    font-weight: 400;
    line-height: 1.12;

    letter-spacing: -0.04em;
}


/* =========================================================
   GRANDE IMAGE
========================================================= */

.ekow-about-page .ekow-about-main-image {
    width: calc(100% - 100px);
    max-width: var(--about-max-width);
    height: min(60vw, 760px);

    margin: 0 auto;
    padding: 0;

    overflow: hidden;

    background: #eee;
}

.ekow-about-page .ekow-about-main-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   SECTIONS ÉDITORIALES
========================================================= */

.ekow-about-page .ekow-about-editorial-section {
    width: calc(100% - 100px);
    max-width: var(--about-max-width);

    margin: 0 auto;
    padding: 105px 0;

    border-bottom: 1px solid var(--about-border);
}

.ekow-about-page .ekow-about-editorial-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 0.75fr)
        minmax(420px, 1.25fr);

    align-items: start;

    gap: clamp(60px, 8vw, 130px);
}


/* =========================================================
   TITRES DES SECTIONS
========================================================= */

.ekow-about-page .ekow-about-section-index {
    margin: 0 0 24px;

    color: var(--about-grey);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
}

.ekow-about-page .ekow-about-editorial-heading h2 {
    margin: 0;

    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 700;
    font-style: normal;
    line-height: 1;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}


/* =========================================================
   TEXTE
========================================================= */

.ekow-about-page .ekow-about-editorial-text {
    width: 100%;
    max-width: 720px;
}

.ekow-about-page .ekow-about-editorial-text p {
    margin: 0 0 1.45em;

    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;

    letter-spacing: -0.01em;

    text-align: justify;
    text-justify: inter-word;

    hyphens: auto;
    -webkit-hyphens: auto;

    overflow-wrap: break-word;
}

.ekow-about-page .ekow-about-editorial-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CITATION
========================================================= */

.ekow-about-page .ekow-about-quote-section {
    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(100% - 100px);
    max-width: var(--about-max-width);
    min-height: 65vh;

    margin: 0 auto;
    padding: 110px 0;
}

.ekow-about-page .ekow-about-quote {
    width: 100%;
    max-width: 1100px;

    margin: 0;
    padding: 0;

    border: 0;
}

.ekow-about-page .ekow-about-quote p {
    margin: 0;

    color: var(--about-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.04;

    letter-spacing: -0.05em;
}


/* =========================================================
   GALERIE IMMERSIVE
========================================================= */

.ekow-about-page .ekow-about-immersive-gallery {
    position: relative;

    width: 100%;
    height: 100svh;
    min-height: 620px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #000;
}

.ekow-about-page .ekow-about-gallery-track {
    display: flex;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    overscroll-behavior-x: contain;

    scrollbar-width: none;
}

.ekow-about-page .ekow-about-gallery-track::-webkit-scrollbar {
    display: none;
}

.ekow-about-page .ekow-about-gallery-slide {
    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    background: #000;
}

.ekow-about-page .ekow-about-gallery-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    user-select: none;
    -webkit-user-drag: none;
}

.ekow-about-page .ekow-about-gallery-hint {
    position: absolute;
    right: 30px;
    bottom: 25px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    pointer-events: none;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .ekow-about-page .ekow-about-container,
    .ekow-about-page .ekow-about-main-image,
    .ekow-about-page .ekow-about-editorial-section,
    .ekow-about-page .ekow-about-quote-section {
        width: calc(100% - 50px);
    }

    .ekow-about-page .ekow-about-editorial-grid {
        grid-template-columns:
            minmax(210px, 0.7fr)
            minmax(0, 1.3fr);

        gap: 50px;
    }

    .ekow-about-page .ekow-about-main-image {
        height: min(70vw, 700px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .ekow-about-page .ekow-about-container,
    .ekow-about-page .ekow-about-editorial-section,
    .ekow-about-page .ekow-about-quote-section {
        width: calc(100% - 30px);
    }


    /* HERO */

    .ekow-about-page .ekow-about-hero {
        padding:
            14px
            0
            65px;
    }

    .ekow-about-page .ekow-about-title {
        margin-bottom: 45px;

        font-size: 28px;
    }

    .ekow-about-page .ekow-about-introduction {
        max-width: none;

        font-size: clamp(27px, 8.5vw, 42px);
        line-height: 1.12;
    }


    /* IMAGE */

    .ekow-about-page .ekow-about-main-image {
        width: 100%;
        height: 65svh;
        min-height: 460px;
    }


    /* SECTIONS */

    .ekow-about-page .ekow-about-editorial-section {
        padding: 70px 0;
    }

    .ekow-about-page .ekow-about-editorial-grid {
        display: block;
    }

    .ekow-about-page .ekow-about-section-index {
        margin-bottom: 18px;
    }

    .ekow-about-page .ekow-about-editorial-heading h2 {
        font-size: clamp(29px, 9vw, 42px);
    }

    .ekow-about-page .ekow-about-editorial-text {
        max-width: none;

        margin-top: 42px;
    }

    .ekow-about-page .ekow-about-editorial-text p {
        font-size: 17px;
        line-height: 1.6;
    }


    /* CITATION */

    .ekow-about-page .ekow-about-quote-section {
        min-height: 55vh;

        padding: 85px 0;
    }

    .ekow-about-page .ekow-about-quote p {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.04;
    }


    /* GALERIE */

    .ekow-about-page .ekow-about-immersive-gallery {
        min-height: 520px;
    }

    .ekow-about-page .ekow-about-gallery-hint {
        right: 18px;
        bottom: 18px;

        font-size: 10px;
    }

}


/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 480px) {

    .ekow-about-page .ekow-about-introduction {
        font-size: 28px;
    }

    .ekow-about-page .ekow-about-editorial-text p {
        font-size: 16px;
        line-height: 1.58;

        text-align: justify;

        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .ekow-about-page .ekow-about-quote p {
        font-size: 36px;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ekow-about-page .ekow-about-gallery-track {
        scroll-behavior: auto;
    }

}
/* =========================================================
   EKOW GALERIE — PAGE ARTISTES
   COLONNE GAUCHE + PANNEAU DROIT
========================================================= */


/* =========================================================
   STRUCTURE GLOBALE
========================================================= */

.ekow-artists-page {
    --artists-black: #111;
    --artists-grey: #777;
    --artists-line: rgba(17, 17, 17, 0.18);
    --artists-sidebar-width: 24vw;
    --artists-sidebar-max: 355px;

    display: grid;
    grid-template-columns:
        minmax(280px, var(--artists-sidebar-max))
        minmax(0, 1fr);

    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background: #fff;
    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-artists-page,
.ekow-artists-page * {
    box-sizing: border-box;
}


/* =========================================================
   COLONNE GAUCHE
========================================================= */

.ekow-artists-page .ekow-artists-sidebar {
    position: relative;

    min-height: 100vh;

    border-right: 1px solid var(--artists-line);

    background: #fff;
}


/* =========================================================
   TITRE
========================================================= */

.ekow-artists-page .ekow-artists-sidebar-header {
    padding: 28px 30px 30px;

    border-top: 1px solid var(--artists-line);
    border-bottom: 1px solid var(--artists-line);
}

.ekow-artists-page .ekow-artists-sidebar-label {
    margin: 0 0 8px;

    color: var(--artists-grey);

    font-size: 10px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ekow-artists-page .ekow-artists-sidebar-title {
    margin: 0;

    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION ARTISTES
========================================================= */

.ekow-artists-page .ekow-artists-navigation {
    width: 100%;
}

.ekow-artists-page .ekow-artist-tab {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        24px;

    position: relative;

    width: 100%;
    min-height: 118px;

    margin: 0;
    padding: 25px 28px;

    border: 0;
    border-bottom: 1px solid var(--artists-line);
    border-radius: 0;

    background: #fff;
    color: var(--artists-black);

    text-align: left;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        background-color 0.25s ease,
        opacity 0.25s ease;
}

.ekow-artists-page .ekow-artist-tab:hover {
    background: #fafafa;
}

.ekow-artists-page .ekow-artist-tab.is-active {
    min-height: 158px;

    background: #f8f8f8;
}

.ekow-artists-page .ekow-artist-tab-number {
    position: absolute;
    top: 23px;
    left: 28px;

    color: var(--artists-grey);

    font-size: 10px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: 0.05em;
}

.ekow-artists-page .ekow-artist-tab-main {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 18px;
}

.ekow-artists-page .ekow-artist-tab-name {
    display: block;

    color: var(--artists-black);

    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.ekow-artists-page .ekow-artist-tab-more {
    display: none;

    margin-top: 15px;

    color: var(--artists-black);

    font-size: 11px;
    font-weight: 400;
    line-height: 1;

    text-transform: none;
}

.ekow-artists-page
.ekow-artist-tab.is-active
.ekow-artist-tab-more {
    display: block;
}

.ekow-artists-page .ekow-artist-tab-arrow {
    align-self: center;
    justify-self: end;

    font-size: 17px;
    line-height: 1;
}

.ekow-artists-page .ekow-artist-tab:focus-visible {
    outline: 1px solid var(--artists-black);
    outline-offset: -4px;
}


/* =========================================================
   CONTENU DROIT
========================================================= */

.ekow-artists-page .ekow-artists-content {
    min-width: 0;

    padding: 52px 55px 90px;
}

.ekow-artists-page .ekow-artist-panel[hidden] {
    display: none;
}

.ekow-artists-page .ekow-artist-panel {
    animation: ekowArtistPanelIn 0.45s ease both;
}

@keyframes ekowArtistPanelIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

}


/* =========================================================
   NOM DE L’ARTISTE
========================================================= */

.ekow-artists-page .ekow-artist-panel-heading {
    margin: 0 0 45px;
}

.ekow-artists-page .ekow-artist-panel-number {
    display: block;

    margin: 0 0 18px;

    color: var(--artists-grey);

    font-size: 11px;
    line-height: 1;

    letter-spacing: 0.08em;
}

.ekow-artists-page .ekow-artist-panel-name {
    margin: 0;

    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 700;
    line-height: 0.92;

    letter-spacing: -0.06em;
    text-transform: uppercase;
}


/* =========================================================
   PORTRAIT + TEXTE
========================================================= */

.ekow-artists-page .ekow-artist-profile {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(360px, 1.1fr);

    align-items: start;

    gap: clamp(48px, 7vw, 105px);
}

.ekow-artists-page .ekow-artist-profile-image {
    width: 100%;
    aspect-ratio: 4 / 5;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #efefef;
}

.ekow-artists-page .ekow-artist-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.ekow-artists-page
.ekow-artist-profile-image:hover img {
    transform: scale(1.015);
}


/* =========================================================
   BIOGRAPHIE
========================================================= */

.ekow-artists-page .ekow-artist-profile-text {
    padding-top: 2px;
}

.ekow-artists-page .ekow-artist-profile-biography {
    max-width: 650px;
}

.ekow-artists-page .ekow-artist-profile-biography p {
    margin: 0 0 1.45em;

    color: var(--artists-black);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.62;

    letter-spacing: -0.01em;

    text-align: left;
}

.ekow-artists-page
.ekow-artist-profile-biography p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   LIENS DE L’ARTISTE
   GRAS, SOULIGNÉS ET SANS FLÈCHE
========================================================= */

.ekow-artists-page .ekow-artist-profile-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 30px;

    width: 100%;

    margin: 45px 0 0;
    padding: 0;
}

.ekow-artists-page .ekow-artist-profile-link {
    display: inline-block;

    margin: 0;
    padding: 0 0 3px;

    border: 0;
    border-bottom: 1px solid var(--artists-black);

    background: transparent;
    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;

    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: none;

    transition: opacity 0.2s ease;
}

.ekow-artists-page .ekow-artist-profile-link:hover {
    color: var(--artists-black);

    opacity: 0.5;
}

.ekow-artists-page .ekow-artist-profile-link:focus-visible {
    outline: 1px solid var(--artists-black);
    outline-offset: 5px;
}

/* Sécurité : masque une éventuelle flèche encore présente */

.ekow-artists-page .ekow-artist-profile-link span {
    display: none;
}


/* =========================================================
   LIENS — MOBILE
========================================================= */

@media (max-width: 800px) {

    .ekow-artists-page .ekow-artist-profile-links {
        gap: 24px;

        margin-top: 35px;
    }

    .ekow-artists-page .ekow-artist-profile-link {
        font-size: 11px;
    }

}
/* =========================================================
   SECTION ŒUVRES
========================================================= */

.ekow-artists-page .ekow-artist-works {
    width: 100%;

    margin: 65px 0 0;
    padding: 30px 0 0;

    overflow: hidden;

    border-top: 1px solid var(--artists-line);
}


/* =========================================================
   EN-TÊTE DES ŒUVRES
========================================================= */

.ekow-artists-page .ekow-artist-works-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    width: 100%;

    margin: 0 0 28px;
    padding: 0;
}

.ekow-artists-page .ekow-artist-works-header h3 {
    margin: 0;
    padding: 0;

    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.02em;
    text-transform: uppercase;
}


/* =========================================================
   FLÈCHES DES ŒUVRES
========================================================= */

.ekow-artists-page .ekow-artist-works-arrows {
    display: flex;
    align-items: center;

    gap: 24px;

    flex: 0 0 auto;
}

.ekow-artists-page .ekow-works-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition: opacity 0.2s ease;
}

.ekow-artists-page .ekow-works-arrow:hover {
    opacity: 0.45;
}

.ekow-artists-page .ekow-works-arrow:focus-visible {
    outline: 1px solid var(--artists-black);
    outline-offset: 5px;
}


/* =========================================================
   TRACK HORIZONTAL DES ŒUVRES
========================================================= */

.ekow-artists-page .ekow-works-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;

    gap: 24px;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0 0 10px;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ekow-artists-page .ekow-works-track::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARTE ŒUVRE
========================================================= */

.ekow-artists-page .ekow-work-card {
    display: block !important;

    flex: 0 0 calc((100% - 72px) / 4) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;

    width: calc((100% - 72px) / 4) !important;
    min-width: 210px;
    max-width: none !important;

    margin: 0;
    padding: 0;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    background: transparent;
}


/* =========================================================
   CONTENEUR DE L’IMAGE
========================================================= */

.ekow-artists-page .ekow-work-card figure {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 280px;

    margin: 0 0 13px;
    padding: 0;

    overflow: hidden;

    background: transparent;
}


/* =========================================================
   IMAGE DE L’ŒUVRE
   VERTICALE, CARRÉE OU HORIZONTALE
========================================================= */

.ekow-artists-page .ekow-work-card figure img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center;

    background: transparent;

    transform: none !important;
}


/* =========================================================
   INFORMATIONS DE L’ŒUVRE
========================================================= */

.ekow-artists-page .ekow-work-card h4 {
    margin: 0 0 5px;
    padding: 0;

    color: var(--artists-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.ekow-artists-page .ekow-work-card p {
    margin: 0;
    padding: 0;

    color: var(--artists-grey);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================================
   SÉCURITÉ DES PANNEAUX
========================================================= */

.ekow-artists-page .ekow-artist-panel[hidden] {
    display: none !important;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .ekow-artists-page {
        grid-template-columns:
            minmax(240px, 300px)
            minmax(0, 1fr);
    }

    .ekow-artists-page .ekow-artists-content {
        padding: 45px 35px 80px;
    }

    .ekow-artists-page .ekow-artist-profile {
        grid-template-columns:
            minmax(250px, 0.85fr)
            minmax(0, 1.15fr);

        gap: 45px;
    }

    .ekow-artists-page .ekow-work-card {
        flex-basis: calc((100% - 48px) / 3) !important;

        width: calc((100% - 48px) / 3) !important;
    }

    .ekow-artists-page .ekow-work-card figure {
        height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .ekow-artists-page {
        display: block;

        min-height: auto;
    }

    .ekow-artists-page .ekow-artists-sidebar {
        min-height: auto;

        border-right: 0;
    }

    .ekow-artists-page .ekow-artists-sidebar-header {
        padding: 22px 15px;
    }

    .ekow-artists-page .ekow-artists-sidebar-title {
        font-size: 16px;
    }

    .ekow-artists-page .ekow-artist-tab {
        min-height: 82px;

        padding: 19px 15px;
    }

    .ekow-artists-page .ekow-artist-tab.is-active {
        min-height: 110px;
    }

    .ekow-artists-page .ekow-artist-tab-number {
        top: 17px;
        left: 15px;
    }

    .ekow-artists-page .ekow-artist-tab-name {
        font-size: 19px;
    }

    .ekow-artists-page .ekow-artists-content {
        padding: 45px 15px 75px;
    }

    .ekow-artists-page .ekow-artist-panel-heading {
        margin-bottom: 32px;
    }

    .ekow-artists-page .ekow-artist-panel-name {
        font-size: clamp(36px, 11vw, 52px);
    }

    .ekow-artists-page .ekow-artist-profile {
        display: block;
    }

    .ekow-artists-page .ekow-artist-profile-image {
        max-width: 600px;
    }

    .ekow-artists-page .ekow-artist-profile-text {
        padding-top: 35px;
    }

    .ekow-artists-page .ekow-artist-profile-biography p {
        font-size: 16px;
        line-height: 1.58;
    }

    .ekow-artists-page .ekow-artist-works {
        margin-top: 50px;
    }

    .ekow-artists-page .ekow-works-track {
        gap: 16px;
    }

    .ekow-artists-page .ekow-work-card {
        flex: 0 0 82% !important;

        width: 82% !important;
        min-width: 250px;
    }

    .ekow-artists-page .ekow-work-card figure {
        height: min(112vw, 480px);
    }

}


/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 480px) {

    .ekow-artists-page .ekow-artist-tab {
        grid-template-columns:
            minmax(0, 1fr)
            20px;
    }

    .ekow-artists-page .ekow-artist-tab-name {
        font-size: 17px;
    }

    .ekow-artists-page .ekow-artist-panel-name {
        font-size: 36px;
    }

    .ekow-artists-page .ekow-work-card {
        flex-basis: 88% !important;

        width: 88% !important;
        min-width: 240px;
    }

    .ekow-artists-page .ekow-work-card figure {
        height: min(118vw, 450px);
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ekow-artists-page .ekow-artist-panel,
    .ekow-artists-page .ekow-artist-profile-image img,
    .ekow-artists-page .ekow-works-track,
    .ekow-artists-page .ekow-artist-profile-link {
        animation: none;
        transition: none;
        scroll-behavior: auto;
    }

}
/* =========================================================
   EKOW GALERIE — PAGE EXPOSITIONS
========================================================= */


/* =========================================================
   STRUCTURE GLOBALE
========================================================= */

.ekow-exhibitions-page {
    --exhibitions-black: #111;
    --exhibitions-grey: #777;
    --exhibitions-line: rgba(17, 17, 17, 0.18);
    --exhibitions-sidebar: 355px;

    display: grid;
    grid-template-columns:
        minmax(280px, var(--exhibitions-sidebar))
        minmax(0, 1fr);

    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #fff;
    color: var(--exhibitions-black);

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-exhibitions-page,
.ekow-exhibitions-page * {
    box-sizing: border-box;
}


/* =========================================================
   COLONNE GAUCHE
========================================================= */

.ekow-exhibitions-page .ekow-exhibitions-sidebar {
    min-height: 100vh;

    border-right: 1px solid var(--exhibitions-line);

    background: #fff;
}

.ekow-exhibitions-page .ekow-exhibitions-sidebar-header {
    padding: 28px 30px 30px;

    border-top: 1px solid var(--exhibitions-line);
    border-bottom: 1px solid var(--exhibitions-line);
}

.ekow-exhibitions-page .ekow-exhibitions-sidebar-label {
    margin: 0 0 8px;

    color: var(--exhibitions-grey);

    font-size: 10px;
    line-height: 1;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ekow-exhibitions-page .ekow-exhibitions-sidebar-title {
    margin: 0;

    color: var(--exhibitions-black);

    font-size: 20px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
========================================================= */

.ekow-exhibitions-page .ekow-exhibitions-nav-item {
    display: grid;
    grid-template-columns:
        34px
        minmax(0, 1fr)
        20px;

    align-items: center;

    gap: 12px;

    min-height: 105px;

    padding: 24px 28px;

    border-bottom: 1px solid var(--exhibitions-line);

    color: var(--exhibitions-black);

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        opacity 0.25s ease;
}

.ekow-exhibitions-page .ekow-exhibitions-nav-item:hover,
.ekow-exhibitions-page .ekow-exhibitions-nav-item.is-active {
    background: #f8f8f8;
}

.ekow-exhibitions-page .ekow-exhibitions-nav-number {
    color: var(--exhibitions-grey);

    font-size: 10px;
    letter-spacing: 0.05em;
}

.ekow-exhibitions-page .ekow-exhibitions-nav-text {
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}


/* =========================================================
   CONTENU
========================================================= */

.ekow-exhibitions-page .ekow-exhibitions-content {
    min-width: 0;

    padding: 52px 55px 100px;
}

.ekow-exhibitions-page .ekow-exhibitions-section {
    width: 100%;

    padding: 0 0 110px;
}

.ekow-exhibitions-page
.ekow-exhibitions-section
+ .ekow-exhibitions-section {
    padding-top: 95px;

    border-top: 1px solid var(--exhibitions-line);
}


/* =========================================================
   TITRES
========================================================= */

.ekow-exhibitions-page .ekow-exhibitions-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin: 0 0 45px;
}

.ekow-exhibitions-page .ekow-exhibitions-section-number {
    display: block;

    margin: 0 0 17px;

    color: var(--exhibitions-grey);

    font-size: 11px;
    letter-spacing: 0.08em;
}

.ekow-exhibitions-page .ekow-exhibitions-section-header h2 {
    margin: 0;

    color: var(--exhibitions-black);

    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 0.95;

    letter-spacing: -0.05em;
    text-transform: uppercase;
}


/* =========================================================
   EXPOSITION PRINCIPALE
========================================================= */

.ekow-exhibitions-page .ekow-featured-exhibition {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(360px, 1.1fr);

    align-items: start;

    gap: clamp(48px, 7vw, 105px);
}

.ekow-exhibitions-page
.ekow-featured-exhibition-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: 4 / 5;

    margin: 0;

    overflow: hidden;

    background: #efefef;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-visual.is-placeholder {
    padding: 30px;

    color: var(--exhibitions-grey);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================================
   INFORMATIONS
========================================================= */

.ekow-exhibitions-page
.ekow-featured-exhibition-content {
    padding-top: 2px;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-status {
    margin: 0 0 25px;

    color: var(--exhibitions-grey);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-title {
    margin: 0 0 12px;

    color: var(--exhibitions-black);

    font-size: clamp(32px, 4vw, 58px);
    font-weight: 700;
    line-height: 0.96;

    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-artist {
    margin: 0 0 43px;

    color: var(--exhibitions-black);

    font-size: 17px;
    font-weight: 700;

    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    margin-bottom: 38px;
    padding: 25px 0;

    border-top: 1px solid var(--exhibitions-line);
    border-bottom: 1px solid var(--exhibitions-line);
}

.ekow-exhibitions-page
.ekow-featured-exhibition-label {
    display: block;

    margin-bottom: 8px;

    color: var(--exhibitions-grey);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-information p {
    margin: 0;

    color: var(--exhibitions-black);

    font-size: 14px;
    line-height: 1.5;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-description {
    max-width: 650px;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-description p {
    margin: 0;

    color: var(--exhibitions-black);

    font-size: 17px;
    line-height: 1.62;

    letter-spacing: -0.01em;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-link {
    display: inline-block;

    margin-top: 40px;
    padding-bottom: 3px;

    border-bottom: 1px solid var(--exhibitions-black);

    color: var(--exhibitions-black);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.ekow-exhibitions-page
.ekow-featured-exhibition-link:hover {
    opacity: 0.5;
}


/* =========================================================
   ARCHIVES
========================================================= */

.ekow-exhibitions-page
.ekow-exhibitions-archive-arrows {
    display: flex;

    gap: 24px;
}

.ekow-exhibitions-page
.ekow-exhibitions-archive-arrow {
    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;
    color: var(--exhibitions-black);

    font-size: 20px;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.ekow-exhibitions-page
.ekow-exhibitions-archive-arrow:hover {
    opacity: 0.45;
}


/* =========================================================
   TRACK HORIZONTAL
========================================================= */

.ekow-exhibitions-page
.ekow-exhibitions-archive-track {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;

    gap: 25px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ekow-exhibitions-page
.ekow-exhibitions-archive-track::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARTES
========================================================= */

.ekow-exhibitions-page .ekow-exhibition-card {
    flex: 0 0 calc((100% - 50px) / 3);

    min-width: 260px;

    scroll-snap-align: start;
}

.ekow-exhibitions-page
.ekow-exhibition-card-link {
    display: block;

    color: inherit;
    text-decoration: none;
}

.ekow-exhibitions-page
.ekow-exhibition-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;

    margin: 0;

    overflow: hidden;

    background: #eee;
}

.ekow-exhibitions-page
.ekow-exhibition-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.65s ease;
}

.ekow-exhibitions-page
.ekow-exhibition-card-link:hover
.ekow-exhibition-card-image img {
    transform: scale(1.02);
}

.ekow-exhibitions-page
.ekow-exhibition-card-content {
    padding-top: 16px;
}

.ekow-exhibitions-page
.ekow-exhibition-card-content h3 {
    margin: 0 0 7px;

    color: var(--exhibitions-black);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-exhibition-card-artist {
    margin: 0 0 14px;

    color: var(--exhibitions-black);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.ekow-exhibitions-page
.ekow-exhibition-card-date,
.ekow-exhibitions-page
.ekow-exhibition-card-location {
    margin: 0 0 5px;

    color: var(--exhibitions-grey);

    font-size: 11px;
    line-height: 1.4;
}

.ekow-exhibitions-page
.ekow-exhibition-card-discover {
    display: inline-block;

    margin-top: 15px;
    padding-bottom: 2px;

    border-bottom: 1px solid var(--exhibitions-black);

    color: var(--exhibitions-black);

    font-size: 11px;
    font-weight: 700;
}

.ekow-exhibitions-page
.ekow-exhibitions-archive-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    margin-top: 28px;

    color: var(--exhibitions-grey);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .ekow-exhibitions-page {
        grid-template-columns:
            minmax(240px, 300px)
            minmax(0, 1fr);
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-content {
        padding: 45px 35px 85px;
    }

    .ekow-exhibitions-page
    .ekow-featured-exhibition {
        grid-template-columns:
            minmax(250px, 0.85fr)
            minmax(0, 1.15fr);

        gap: 45px;
    }

    .ekow-exhibitions-page
    .ekow-exhibition-card {
        flex-basis: calc((100% - 25px) / 2);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .ekow-exhibitions-page {
        display: block;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-sidebar {
        min-height: auto;

        border-right: 0;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-sidebar-header {
        padding: 22px 15px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-sidebar-title {
        font-size: 16px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-nav-item {
        min-height: 80px;

        padding: 19px 15px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-nav-text {
        font-size: 18px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-content {
        padding: 45px 15px 75px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-section {
        padding-bottom: 80px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-section
    + .ekow-exhibitions-section {
        padding-top: 70px;
    }

    .ekow-exhibitions-page
    .ekow-exhibitions-section-header h2 {
        font-size: clamp(29px, 9vw, 42px);
    }

    .ekow-exhibitions-page
    .ekow-featured-exhibition {
        display: block;
    }

    .ekow-exhibitions-page
    .ekow-featured-exhibition-content {
        padding-top: 38px;
    }

    .ekow-exhibitions-page
    .ekow-featured-exhibition-title {
        font-size: 38px;
    }

    .ekow-exhibitions-page
    .ekow-featured-exhibition-description p {
        font-size: 16px;
        line-height: 1.58;
    }

    .ekow-exhibitions-page
    .ekow-exhibition-card {
        flex: 0 0 82%;
    }

}


/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 480px) {

    .ekow-exhibitions-page
    .ekow-featured-exhibition-information {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .ekow-exhibitions-page
    .ekow-exhibition-card {
        flex-basis: 88%;
    }

}
/* =========================================================
   EKOW GALERIE — FOOTER COMPLET
========================================================= */


/* =========================================================
   FOOTER PLEINE LARGEUR
========================================================= */

.ekow-footer {
    --ekow-footer-white: #ffffff;
    --ekow-footer-muted: rgba(255, 255, 255, 0.62);
    --ekow-footer-line: rgba(255, 255, 255, 0.16);

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: none;

    margin:
        0
        0
        0
        -50vw !important;

    padding:
        58px
        0
        24px;

    overflow: hidden;

    background: #000000 !important;
    color: var(--ekow-footer-white);

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-footer,
.ekow-footer * {
    box-sizing: border-box;
}


/* =========================================================
   FOND NOIR DE SÉCURITÉ
========================================================= */

.ekow-footer::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    background: #000000;
}


/* =========================================================
   CONTENEUR INTÉRIEUR
========================================================= */

.ekow-footer-container {
    position: relative;
    z-index: 1;

    width: calc(100% - 100px);
    max-width: 1450px;

    margin: 0 auto;
    padding: 0;

    background: #000000;
}


/* =========================================================
   MANIFESTE
========================================================= */

.ekow-footer-manifesto {
    width: 100%;

    margin: 0;
    padding: 0;

    text-align: center;
}

.ekow-footer-manifesto-title {
    margin: 0;
    padding: 0;

    color: var(--ekow-footer-white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.ekow-footer-manifesto-text {
    margin: 17px 0 0;
    padding: 0;

    color: var(--ekow-footer-muted);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(15px, 1.25vw, 19px);
    font-weight: 400;
    line-height: 1.45;

    letter-spacing: -0.015em;
}


/* =========================================================
   RÉSEAUX SOCIAUX
========================================================= */

.ekow-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 13px;

    width: 100%;

    margin: 31px 0 40px;
    padding: 0;
}

.ekow-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    margin: 0;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    background: #000000;
    color: #ffffff;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ekow-footer-social-link svg {
    display: block;

    width: 21px;
    height: 21px;

    margin: 0;
    padding: 0;

    overflow: visible;

    fill: #ffffff !important;
    stroke: none !important;

    opacity: 1;
}

.ekow-footer-social-link svg path {
    fill: #ffffff !important;
    stroke: none !important;
}

.ekow-footer-social-link:hover {
    border-color: #ffffff;

    background: #ffffff;

    transform: translateY(-2px);
}

.ekow-footer-social-link:hover svg,
.ekow-footer-social-link:hover svg path {
    fill: #000000 !important;
}

.ekow-footer-social-link:focus-visible {
    outline: 1px solid #ffffff;
    outline-offset: 5px;
}


/* =========================================================
   COORDONNÉES
========================================================= */

.ekow-footer-contact {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(40px, 8vw, 120px);

    width: 100%;

    margin: 0;
    padding: 29px 0;

    border-top: 1px solid var(--ekow-footer-line);
    border-bottom: 1px solid var(--ekow-footer-line);
}

.ekow-footer-contact-column {
    min-width: 0;
}

.ekow-footer-small-label {
    margin: 0 0 13px;
    padding: 0;

    color: var(--ekow-footer-white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ekow-footer-address {
    margin: 0;
    padding: 0;

    color: var(--ekow-footer-muted);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.ekow-footer-contact-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    gap: 9px;
}

.ekow-footer-contact-link {
    display: inline-block;

    margin: 0;
    padding: 0 0 2px;

    color: var(--ekow-footer-white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    text-decoration: none;

    border-bottom: 1px solid currentColor;

    transition: opacity 0.2s ease;
}

.ekow-footer-contact-link:hover {
    opacity: 0.55;
}


/* =========================================================
   INFORMATIONS LÉGALES
========================================================= */

.ekow-footer-legal {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #000000;
}

.ekow-footer-legal-item {
    width: 100%;

    margin: 0;
    padding: 0;

    border-bottom: 1px solid var(--ekow-footer-line);

    background: #000000;
    color: #ffffff;
}

.ekow-footer-legal-item summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 0;
    padding: 17px 0;

    color: var(--ekow-footer-white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    list-style: none;
}

.ekow-footer-legal-item summary::-webkit-details-marker {
    display: none;
}

.ekow-footer-legal-item summary::after {
    content: "+";

    flex: 0 0 auto;

    margin-left: 25px;

    color: var(--ekow-footer-muted);

    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.ekow-footer-legal-item[open] summary::after {
    content: "−";
}

.ekow-footer-legal-content {
    width: 100%;
    max-width: 850px;

    margin: 0;
    padding: 0 0 24px;
}

.ekow-footer-legal-content p {
    margin: 0 0 10px;
    padding: 0;

    color: var(--ekow-footer-muted);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.ekow-footer-legal-content p:last-child {
    margin-bottom: 0;
}

.ekow-footer-legal-content strong {
    color: var(--ekow-footer-white);
    font-weight: 700;
}


/* =========================================================
   BAS DU FOOTER
========================================================= */

.ekow-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    width: 100%;

    margin: 0;
    padding: 22px 0 0;
}

.ekow-footer-bottom span {
    color: rgba(255, 255, 255, 0.46);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}


/* =========================================================
   SUPPRESSION DES ESPACES ET BANDES BLANCHES
========================================================= */

body .ekow-footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.ekow-footer:first-child,
.ekow-footer:last-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1000px) {

    .ekow-footer-container {
        width: calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ekow-footer {
        padding:
            46px
            0
            22px;
    }

    .ekow-footer-container {
        width: calc(100% - 30px);
    }

    .ekow-footer-manifesto-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .ekow-footer-manifesto-text {
        margin-top: 15px;

        font-size: 16px;
    }

    .ekow-footer-socials {
        gap: 10px;

        margin:
            28px
            0
            35px;
    }

    .ekow-footer-social-link {
        width: 44px;
        height: 44px;
    }

    .ekow-footer-social-link svg {
        width: 19px;
        height: 19px;
    }

    .ekow-footer-contact {
        grid-template-columns: 1fr;

        gap: 27px;

        padding: 27px 0;
    }

    .ekow-footer-contact-link {
        font-size: 13px;
    }

    .ekow-footer-legal-item summary {
        padding: 16px 0;

        font-size: 11px;
    }

    .ekow-footer-legal-content p {
        font-size: 11px;
        line-height: 1.6;
    }

    .ekow-footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

}
/* =========================================================
   EKOW GALERIE — PAGE CONTACT
========================================================= */

.ekow-contact-page {
    --contact-black: #111;
    --contact-grey: #777;
    --contact-line: rgba(17, 17, 17, 0.18);
    --contact-max-width: 1450px;

    width: calc(100% - 100px);
    max-width: var(--contact-max-width);

    margin: 0 auto;
    padding: 55px 0 0;

    color: var(--contact-black);
    background: #fff;

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-contact-page,
.ekow-contact-page * {
    box-sizing: border-box;
}


/* =========================================================
   EN-TÊTE
========================================================= */

.ekow-contact-header {
    padding: 0 0 60px;

    border-bottom: 1px solid var(--contact-line);
}

.ekow-contact-eyebrow {
    margin: 0 0 18px;

    color: var(--contact-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ekow-contact-title {
    margin: 0;

    color: var(--contact-black);

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.94;

    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.ekow-contact-introduction {
    max-width: 650px;

    margin: 32px 0 0;

    font-size: 18px;
    line-height: 1.55;

    letter-spacing: -0.015em;
}


/* =========================================================
   INFORMATIONS
========================================================= */

.ekow-contact-information-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0;

    padding: 65px 0 70px;
}

.ekow-contact-card {
    min-height: 210px;

    margin: 0;
    padding: 32px;

    border-top: 1px solid var(--contact-line);
}

.ekow-contact-card:nth-child(odd) {
    border-right: 1px solid var(--contact-line);
}

.ekow-contact-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--contact-line);
}

.ekow-contact-label {
    margin: 0 0 27px;

    color: var(--contact-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ekow-contact-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
}

.ekow-contact-links a {
    color: var(--contact-black);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.ekow-contact-whatsapp,
.ekow-contact-person-email {
    display: inline-block;

    margin-top: 23px;
    padding-bottom: 3px;

    border-bottom: 1px solid var(--contact-black);

    color: var(--contact-black);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.ekow-contact-address {
    margin: 0;

    color: var(--contact-black);

    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}

.ekow-contact-person-name {
    margin: 0 0 7px;

    color: var(--contact-black);

    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -0.03em;
}

.ekow-contact-person-role {
    margin: 0;

    color: var(--contact-grey);

    font-size: 12px;
    line-height: 1.4;
}

.ekow-contact-links a:hover,
.ekow-contact-whatsapp:hover,
.ekow-contact-person-email:hover {
    opacity: 0.5;
}


/* =========================================================
   TITRE DU FORMULAIRE
========================================================= */

.ekow-contact-form-heading {
    margin: 0 0 38px;
    padding: 0 0 24px;

    border-bottom: 1px solid var(--contact-line);
}

.ekow-contact-form-index {
    margin: 0 0 14px;

    color: var(--contact-grey);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.ekow-contact-form-heading h2 {
    margin: 0;

    color: var(--contact-black);

    font-size: clamp(27px, 2.5vw, 38px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}


/* =========================================================
   CONTACT FORM 7
========================================================= */

.wpcf7 {
    width: calc(100% - 100px);
    max-width: 1450px;

    margin: 0 auto 120px !important;

    font-family: Arial, Helvetica, sans-serif;
}

.wpcf7 form {
    width: 100%;

    margin: 0;
    padding: 0;
}

.wpcf7 form > p {
    margin: 0 0 30px;
    padding: 0;
}

.wpcf7 label {
    display: block;

    width: 100%;

    color: #111;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wpcf7-form-control-wrap {
    display: block;

    width: 100%;

    margin-top: 10px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select {
    display: block;

    width: 100%;
    min-height: 50px;

    margin: 0;
    padding: 12px 0;

    border: 0;
    border-bottom: 1px solid #111;
    border-radius: 0;

    outline: none;

    background: transparent;
    box-shadow: none;
    color: #111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;

    appearance: none;
    -webkit-appearance: none;
}

.wpcf7 textarea {
    display: block;

    width: 100%;
    min-height: 190px;

    margin: 0;
    padding: 15px;

    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 0;

    outline: none;

    background: transparent;
    box-shadow: none;
    color: #111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;

    resize: vertical;
}

.wpcf7 textarea:focus {
    border-color: #111;
}


/* =========================================================
   CONSENTEMENT
========================================================= */

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);

    align-items: start;

    gap: 11px;

    color: #777;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: 0;
    text-transform: none;

    cursor: pointer;
}

.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;

    margin: 1px 0 0;

    accent-color: #111;
}


/* =========================================================
   BOUTON
========================================================= */

.wpcf7 input[type="submit"] {
    display: block;

    width: 100%;

    margin: 5px 0 0;
    padding: 17px 20px;

    border: 1px solid #111;
    border-radius: 0;

    background: #111;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #fff;
    color: #111;
}

.wpcf7-not-valid-tip {
    margin-top: 7px;

    color: #a31e1e;

    font-size: 11px;
    line-height: 1.4;
}

.wpcf7 form .wpcf7-response-output {
    margin: 25px 0 0;
    padding: 14px 16px;

    border: 1px solid #111;

    color: #111;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1000px) {

    .ekow-contact-page,
    .wpcf7 {
        width: calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ekow-contact-page,
    .wpcf7 {
        width: calc(100% - 30px);
    }

    .ekow-contact-page {
        padding-top: 38px;
    }

    .ekow-contact-header {
        padding-bottom: 45px;
    }

    .ekow-contact-title {
        font-size: clamp(38px, 12vw, 52px);
    }

    .ekow-contact-introduction {
        font-size: 16px;
    }

    .ekow-contact-information-grid {
        display: block;

        padding: 45px 0 60px;
    }

    .ekow-contact-card {
        min-height: auto;

        padding: 27px 0;

        border-right: 0 !important;
        border-bottom: 1px solid var(--contact-line);
    }

    .ekow-contact-card:first-child {
        border-top: 1px solid var(--contact-line);
    }

    .wpcf7 {
        margin-bottom: 80px !important;
    }

    .wpcf7 textarea {
        min-height: 165px;
    }

}
/* =========================================================
   EKOW GALERIE — PARTENAIRES & COLLABORATIONS
========================================================= */


/* =========================================================
   PAGE GLOBALE
========================================================= */

.ekow-partners-page {
    --partners-black: #111111;
    --partners-grey: #777777;
    --partners-light: #f4f4f2;
    --partners-line: rgba(17, 17, 17, 0.18);
    --partners-max-width: 1450px;

    width: 100%;

    margin: 0;
    padding: 0 50px 130px;

    overflow: hidden;

    background: #ffffff;
    color: var(--partners-black);

    font-family: Arial, Helvetica, sans-serif;
}

.ekow-partners-page,
.ekow-partners-page * {
    box-sizing: border-box;
}


/* =========================================================
   EN-TÊTE DE PAGE
========================================================= */

.ekow-partners-page-header {
    width: 100%;
    max-width: var(--partners-max-width);

    margin: 0 auto;
    padding: 55px 0 65px;

    border-bottom: 1px solid var(--partners-line);
}

.ekow-partners-page-eyebrow {
    margin: 0 0 20px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ekow-partners-page-title {
    max-width: 1050px;

    margin: 0;
    padding: 0;

    color: var(--partners-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 700;
    line-height: 0.94;

    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.ekow-partners-page-introduction {
    max-width: 650px;

    margin: 35px 0 0;
    padding: 0;

    color: var(--partners-black);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: -0.015em;
}


/* =========================================================
   SECTIONS
========================================================= */

.ekow-partners-section,
.ekow-collaborations-section {
    width: 100%;
    max-width: var(--partners-max-width);

    margin: 0 auto;
    padding: 75px 0 0;
}

.ekow-collaborations-section {
    margin-top: 115px;
    padding-top: 85px;

    border-top: 1px solid var(--partners-line);
}


/* =========================================================
   EN-TÊTES DE SECTION
========================================================= */

.ekow-partners-section-header,
.ekow-collaborations-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    width: 100%;

    margin: 0 0 45px;
    padding: 0;
}

.ekow-partners-section-index {
    margin: 0 0 17px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
}

.ekow-partners-section-title {
    margin: 0;
    padding: 0;

    color: var(--partners-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 0.96;

    letter-spacing: -0.05em;
    text-transform: uppercase;
}


/* =========================================================
   FLÈCHES
========================================================= */

.ekow-partners-arrows {
    display: flex;
    align-items: center;

    gap: 25px;

    flex: 0 0 auto;
}

.ekow-partners-arrow {
    color: var(--partners-black);

    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}


/* =========================================================
   SLIDER PARTENAIRES
========================================================= */

.ekow-partners-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;

    gap: 30px;

    width: 100%;

    margin: 0;
    padding: 0 0 12px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ekow-partners-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   SLIDE PARTENAIRE
========================================================= */

.ekow-partner-slide {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(380px, 1.1fr);

    align-items: stretch;

    gap: clamp(50px, 7vw, 105px);

    flex: 0 0 100%;

    width: 100%;
    min-width: 100%;

    margin: 0;
    padding: 0;

    scroll-snap-align: start;
    scroll-snap-stop: always;
}


/* =========================================================
   LOGO
========================================================= */

.ekow-partner-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 460px;

    margin: 0;
    padding: clamp(45px, 7vw, 100px);

    overflow: hidden;

    background: var(--partners-light);
}

.ekow-partner-visual img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 230px;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   TEXTE DU PARTENAIRE
========================================================= */

.ekow-partner-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 35px 0;
}

.ekow-partner-number {
    margin: 0 0 34px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
}

.ekow-partner-name {
    margin: 0 0 10px;
    padding: 0;

    color: var(--partners-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 700;
    line-height: 0.96;

    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.ekow-partner-category {
    margin: 0 0 38px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ekow-partner-description {
    max-width: 650px;
}

.ekow-partner-description p {
    margin: 0 0 1.35em;
    padding: 0;

    color: var(--partners-black);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.62;

    letter-spacing: -0.01em;
}

.ekow-partner-description p:last-child {
    margin-bottom: 0;
}

.ekow-partner-link {
    display: inline-block;

    margin: 38px 0 0;
    padding: 0 0 3px;

    border-bottom: 1px solid var(--partners-black);

    color: var(--partners-black);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.ekow-partner-link:hover {
    opacity: 0.5;
}


/* =========================================================
   INDICATION DE DÉFILEMENT
========================================================= */

.ekow-partners-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    margin: 28px 0 0;

    color: var(--partners-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   LISTE DES COLLABORATIONS
========================================================= */

.ekow-collaborations-list {
    width: 100%;

    margin: 0;
    padding: 0;
}

.ekow-collaboration-item {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(380px, 1.1fr);

    align-items: center;

    gap: clamp(50px, 7vw, 105px);

    width: 100%;

    margin: 0;
    padding: 65px 0;

    border-top: 1px solid var(--partners-line);
}

.ekow-collaboration-item:last-child {
    border-bottom: 1px solid var(--partners-line);
}

.ekow-collaboration-item:nth-child(even) {
    grid-template-columns:
        minmax(380px, 1.1fr)
        minmax(320px, 0.9fr);
}

.ekow-collaboration-item:nth-child(even)
.ekow-collaboration-image {
    grid-column: 2;
    grid-row: 1;
}

.ekow-collaboration-item:nth-child(even)
.ekow-collaboration-content {
    grid-column: 1;
    grid-row: 1;
}


/* =========================================================
   IMAGE COLLABORATION
========================================================= */

.ekow-collaboration-image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: 4 / 5;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: var(--partners-light);
}

.ekow-collaboration-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.ekow-collaboration-item:hover
.ekow-collaboration-image img {
    transform: scale(1.015);
}


/* =========================================================
   TEXTE COLLABORATION
========================================================= */

.ekow-collaboration-content {
    min-width: 0;
}

.ekow-collaboration-number {
    margin: 0 0 35px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
}

.ekow-collaboration-title {
    margin: 0 0 12px;
    padding: 0;

    color: var(--partners-black);

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.ekow-collaboration-meta {
    margin: 0 0 37px;
    padding: 0;

    color: var(--partners-grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ekow-collaboration-description {
    max-width: 650px;
}

.ekow-collaboration-description p {
    margin: 0 0 1.35em;
    padding: 0;

    color: var(--partners-black);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.62;

    letter-spacing: -0.01em;
}

.ekow-collaboration-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

    .ekow-partners-page {
        padding-right: 25px;
        padding-left: 25px;
    }

    .ekow-partner-slide,
    .ekow-collaboration-item {
        grid-template-columns:
            minmax(270px, 0.85fr)
            minmax(0, 1.15fr);

        gap: 50px;
    }

    .ekow-collaboration-item:nth-child(even) {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(270px, 0.85fr);
    }

    .ekow-partner-visual {
        min-height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .ekow-partners-page {
        padding:
            0
            15px
            85px;
    }

    .ekow-partners-page-header {
        padding:
            38px
            0
            45px;
    }

    .ekow-partners-page-title {
        font-size: clamp(37px, 11vw, 52px);
    }

    .ekow-partners-page-introduction {
        margin-top: 27px;

        font-size: 16px;
        line-height: 1.58;
    }

    .ekow-partners-section,
    .ekow-collaborations-section {
        padding-top: 55px;
    }

    .ekow-collaborations-section {
        margin-top: 75px;
    }

    .ekow-partners-section-header,
    .ekow-collaborations-header {
        margin-bottom: 32px;
    }

    .ekow-partners-section-title {
        font-size: clamp(28px, 8.5vw, 39px);
    }

    .ekow-partners-arrows {
        display: none;
    }

    .ekow-partner-slide {
        display: block;
    }

    .ekow-partner-visual {
        min-height: 320px;

        padding: 55px 35px;
    }

    .ekow-partner-visual img {
        max-height: 170px;
    }

    .ekow-partner-content {
        padding: 35px 0 10px;
    }

    .ekow-partner-number {
        margin-bottom: 27px;
    }

    .ekow-partner-name {
        font-size: clamp(30px, 10vw, 43px);
    }

    .ekow-partner-description p {
        font-size: 16px;
        line-height: 1.58;
    }

    .ekow-partners-scroll-hint {
        margin-top: 22px;
    }

    .ekow-collaboration-item,
    .ekow-collaboration-item:nth-child(even) {
        display: block;

        padding: 45px 0;
    }

    .ekow-collaboration-item:nth-child(even)
    .ekow-collaboration-image,
    .ekow-collaboration-item:nth-child(even)
    .ekow-collaboration-content {
        grid-column: auto;
        grid-row: auto;
    }

    .ekow-collaboration-content {
        padding-top: 32px;
    }

    .ekow-collaboration-number {
        margin-bottom: 25px;
    }

    .ekow-collaboration-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .ekow-collaboration-description p {
        font-size: 16px;
        line-height: 1.58;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ekow-partners-slider,
    .ekow-partner-link,
    .ekow-collaboration-image img {
        scroll-behavior: auto;
        transition: none;
    }

}