/*
=============================================================
  NATELYFOREVER — STYLESHEET
  Lydie & Nathan — 09/04/2027
=============================================================
*/


/* =========================================================
   01 — RESET & VARIABLES
========================================================= */

/* =========================================================
   TRAITS DE SÉPARATION ENTRE LES SECTIONS
========================================================= */

.date-section,
.location-section {
    border-bottom: none;
    position: relative;
}

.date-section::after,
.location-section::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: #d8d8d2;
}

* {
    box-sizing: border-box;
}

:root {
    --white: rgba(255, 255, 255, .94);
    --text: #858382;
    --muted: #aaa8a6;
    --bg: #ffffff;
    --line: #d8d5d2;
    --dark: #292526;
}

.nav--dark {
    color: #292926;
}

.nav--dark .nav__links a,
.nav--dark .nav__tools button {
    color: #292926;
}

.nav--dark .menu-toggle span {
    background: #292926;
}

.nav--dark .search::before {
    border-color: #292926;
}

.nav--dark .nav__button {
    background: #292926;
    color: #ffffff;
    border-color: #292926;
}

.nav--dark .search::after {
    background: #292926;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family: "Libre Caslon Condensed", serif;
    font-weight: 400;
}

img,
video {
    max-width: 100%;
}

a,
button,
input,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
    font: inherit;
}

.site {
    width: 100%;
    
}


/* =========================================================
   02 — HERO
========================================================= */

.hero {
    position: sticky;
    top : 0;

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

    z-index:1;

    margin: 0;

    overflow: hidden;
    isolation: isolate;
}


/*
    VIDÉO
*/

.hero__video {
    position: absolute;

    inset: 0;

    z-index: -2;

    width: 100%;
    height: 100%;

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


/*
    OVERLAY
*/

.hero__veil {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(37, 43, 35, .10) 0%,
            rgba(38, 43, 34, .02) 35%,
            rgba(28, 31, 26, .08) 62%,
            rgba(24, 28, 23, .56) 100%
        ),
        linear-gradient(
            90deg,
            rgba(31, 35, 29, .18),
            transparent 32%,
            transparent 70%,
            rgba(31, 35, 29, .12)
        );
}

/* =========================================================
   03 — HEADER
========================================================= */

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.nav {
    position: fixed;

    z-index: 99999;

    top: 0;
    left: 0;

    width: 100%;
    height: 105px;

    padding: 0 clamp(28px, 5vw, 80px);

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;
    align-content: center ;

    background: transparent;

    color: #ffffff;

    transition:
        background-color .3s ease,
        color .3s ease;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.logo {
    grid-column: 1;

    justify-self: start;

    display: block;

    width: 150px;
    min-width: 150px;

    line-height: 0;

    color: #ffffff;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;
}


/* ---------------------------------------------------------
   MENU DESKTOP
--------------------------------------------------------- */

.nav__links {
    grid-column: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(22px, 2.4vw, 40px);

    width: max-content;
}

.nav__links a {
    display: block;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        opacity .25s ease;
}

.nav__links a:hover {
    opacity: .6;
}


/* ---------------------------------------------------------
   PARTIE DROITE
--------------------------------------------------------- */

.nav__tools {
    grid-column: 3;

    justify-self: end;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 16px;
}


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

.nav__button {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 105px;
    height: 40px;

    padding: 0 22px;

    border: none;
    border-radius: 999px;

    background: #ffffff;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, .08);

    transition:
        opacity .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.nav__button:hover {
    opacity: .9;

    transform: translateY(-1px);

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .14);
}


/* ---------------------------------------------------------
   MENU BURGER
--------------------------------------------------------- */

.menu-toggle {
    display: none;

    position: relative;

    width: 30px;
    height: 30px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;
    align-items: flex-end;

    gap: 5px;

    z-index: 100003;

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


/* ---------------------------------------------------------
   TRAITS DU BURGER
--------------------------------------------------------- */

.menu-toggle span {
    display: block;

    width: 24px;
    height: 1.5px;

    background: #ffffff;

    transform-origin: center;

    transition:
        transform .3s ease,
        opacity .2s ease,
        width .3s ease,
        background-color .2s ease;
}


/* ---------------------------------------------------------
   NAVIGATION SUR FOND BLANC
--------------------------------------------------------- */

.nav--dark {
    background: #ffffff;

    color: #292926;
}

.nav--dark .nav__links a {
    color: #292926;
}

.nav--dark .menu-toggle span {
    background: #292926;
}


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

@media (max-width: 1100px) {

    .nav {
        height: 90px;

        padding: 0 40px;
    }

    .logo {
        width: 135px;
        min-width: 135px;
    }

    .nav__links {
        gap: 18px;
    }

    .nav__links a {
        font-size: 13px;
    }

    .nav__tools {
        gap: 14px;
    }

    .nav__button {
        min-width: 100px;

        height: 36px;

        padding: 0 16px;

        font-size: 14px;
    }
}


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

@media (max-width: 850px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .nav {
        --menu-width: min(82vw, 390px);

        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 80px;

        padding: 0 22px 0px 0px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 0;

        background: transparent;

        z-index: 100001;

        transition:
        background-color .3s ease,
        color .3s ease;
    }

    .nav.nav--dark {
        background: #ffffff;
        color: #292926;
    }
    
    .nav.nav--dark .menu-toggle span {
        background: #292926;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .logo {
        width: 120px;
        min-width: 120px;

        transition:
            opacity .2s ease,
            visibility 0s linear .2s;
    }


    /* -----------------------------------------------------
       OUTILS
    ----------------------------------------------------- */

    .nav__tools {
        display: flex;

        align-items: center;
        justify-content: flex-end;

        gap: 12px;

        width: auto;
    }


    /* -----------------------------------------------------
       RSVP
    ----------------------------------------------------- */

    .nav__button {
        min-width: 78px;

        height: 34px;

        padding: 0 15px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       BURGER
    ----------------------------------------------------- */

    .menu-toggle {
        display: flex;

        flex: 0 0 auto;

        width: 30px;
        height: 30px;

        padding: 0;

        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
        height: 1.5px;

        background: #ffffff;
    }


    /* -----------------------------------------------------
       MENU LATERAL
    ----------------------------------------------------- */

    .nav__links {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        width: var(--menu-width);
        height: 100svh;

        margin: 0;

        padding: 110px 38px 45px;

        box-sizing: border-box;

        display: flex;

        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-start;

        gap: 0;

        background: #ffffff;

        opacity: 1;
        visibility: visible;

        pointer-events: none;

        transform: translateX(100%);

        transition:
            transform .35s cubic-bezier(.77, 0, .18, 1);

        z-index: 100000;

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

        -webkit-overflow-scrolling: touch;
    }


    /* -----------------------------------------------------
       MENU OUVERT
    ----------------------------------------------------- */

    .nav.menu-open .nav__links {
        pointer-events: auto;

        transform: translateX(0);
    }


    /* -----------------------------------------------------
       LIENS MOBILE
    ----------------------------------------------------- */

    .nav__links a {
        display: block;

        width: 100%;

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

        color: #292926 !important;

        font-size: 22px;
        font-weight: 600;

        line-height: 1.15;

        letter-spacing: -0.02em;

        white-space: normal;

        text-decoration: none;

        transition:
            opacity .2s ease;
    }

    .nav__links a:hover {
        opacity: .55;
    }

    .nav__links a:last-child {
        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       HEADER QUAND LE MENU EST OUVERT
    ----------------------------------------------------- */

    .nav.menu-open {
        background: transparent;

        pointer-events: none;
    }


    /* Logo + RSVP cachés */

    .nav.menu-open .logo,
    .nav.menu-open .nav__button {
        opacity: 0;

        visibility: hidden;

        pointer-events: none;
    }


    /* -----------------------------------------------------
       BURGER → CROIX
    ----------------------------------------------------- */

    .nav.menu-open .menu-toggle {
        position: fixed;

        top: 25px;
        left: calc(100% - var(--menu-width) + 24px);

        width: 30px;
        height: 30px;

        margin: 0;
        padding: 0;

        display: flex;

        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 0;

        pointer-events: auto;

        background: transparent;

        z-index: 100003;
    }

    .nav.menu-open .menu-toggle span {
        position: absolute;

        width: 24px;
        height: 1.5px;

        background: #292926;

        transform-origin: center;

        transition:
            transform .3s ease,
            opacity .2s ease;
    }

    .nav.menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
    }

    .nav.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav.menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }


    /* -----------------------------------------------------
       HERO MOBILE
    ----------------------------------------------------- */

    .hero {
        height: 100svh;
        min-height: 100svh;
    }

    .hero__video {
        object-position: center center;
    }
}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 400px) {

    .nav {
        --menu-width: 82vw;

        height: 75px;

        padding: 0 18px 0px 0px;
    }

    .logo {
        width: 105px;
        min-width: 105px;
    }

    .nav__tools {
        gap: 10px;
    }

    .nav__button {
        min-width: 70px;

        height: 32px;

        padding: 0 12px;

        font-size: 13px;
    }

    .nav__links {
        padding:
            100px
            30px
            40px;
    }

    .nav__links a {
        font-size: 21px;

        margin-bottom: 27px;
    }

    .nav.menu-open .menu-toggle {
        top: 22px;

        left: calc(100% - var(--menu-width) + 20px);
    }
}






/* =========================================================
   02 — DATE
========================================================= */

.date-section__heading {
    margin: 0px;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
}

@media (max-width: 600px) {
    .date-section__heading {
        margin-bottom: 0px;
        font-size: clamp(34px, 9vw, 46px);
    }
}

/*
    SECTION
*/

.date-section {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 50px 30px;

    background: #ffffff;

    color: #292926;
}


/*
    CONTENU
*/

.date-section__content {
    width: min(100%, 1000px);

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


/*
    COMPTE À REBOURS
*/

.date-section__countdown {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(16px, 2vw, 32px);

    margin-top: 70px;

    margin-bottom: 70px;

    color: #292926;
}


/*
    ÉLÉMENT
*/

.countdown__item {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}


/*
    CHIFFRE
*/

.countdown__number {
    display: block;

    min-width: 75px;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(32px, 2.7vw, 47px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -.025em;
}


/*
    LABEL
*/

.countdown__label {
    display: block;

    margin-top: 12px;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: .15em;

    line-height: 1;
}


/*
    SÉPARATEUR
*/

.countdown__separator {
    align-self: flex-start;

    margin-top: 2px;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(38px, 3.2vw, 52px);

    font-weight: 400;

    line-height: .9;

    color: #292926;
}


/*
    TEXTE
*/

.date-section__text {
    width: min(100%, 1000px);
}

.date-section__text p {
    margin: 0;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(30px, 2.5vw, 44px);

    font-weight: 400;

    line-height: 1.28;

    letter-spacing: -.02em;

    color: #292926;
}


/* =========================================================
   03 — DATE RESPONSIVE
========================================================= */


/*
    TABLETTE
*/

@media (max-width: 900px) {

    .date-section {
        padding: 42.5px 25px;
    }


    /*
        COMPTE À REBOURS
    */

    .date-section__countdown {
        gap: 12px;

        margin-bottom: 50px;
        margin-top: 50px;
    }


    /*
        CHIFFRE
    */

    .countdown__number {
        min-width: 50px;

        font-size: 40px;
    }


    /*
        LABEL
    */

    .countdown__label {
        font-size: 8px;
    }


    /*
        SÉPARATEUR
    */

    .countdown__separator {
        font-size: 34px;
    }


    /*
        TEXTE
    */

    .date-section__text p {
        font-size: 30px;
    }
}


/*
    MOBILE
*/

@media (max-width: 600px) {

    .date-section {
        min-height: auto;

        padding: 37.5px 20px;
    }


    /*
        COMPTE À REBOURS
    */

    .date-section__countdown {
        width: 100%;

        gap: 4px;

        margin-bottom: 40px;
        margin-top: 40px;
    }


    /*
        ÉLÉMENT
    */

    .countdown__item {
        flex: 1;
    }


    /*
        CHIFFRE
    */

    .countdown__number {
        min-width: 0;

        font-size: clamp(22px, 6.5vw, 30px);
    }


    /*
        LABEL
    */

    .countdown__label {
        margin-top: 7px;

        font-size: 6px;

        letter-spacing: .07em;
    }


    /*
        SÉPARATEUR
    */

    .countdown__separator {
        margin-top: 0;

        font-size: 22px;
    }


    /*
        TEXTE
    */

    .date-section__text {
        width: 100%;
    }

    .date-section__text p {
        font-size: clamp(19px, 5.5vw, 24px);

        line-height: 1.28;

        letter-spacing: -.01em;
    }
}


/*
    PETITS MOBILES
*/

@media (max-width: 380px) {

    .date-section {
        padding: 32.5px 16px;
    }


    /*
        COMPTE À REBOURS
    */

    .date-section__countdown {
        gap: 2px;

        margin-bottom: 35px;

        margin-top: 35px;
    }


    /*
        CHIFFRE
    */

    .countdown__number {
        font-size: 21px;
    }


    /*
        LABEL
    */

    .countdown__label {
        margin-top: 6px;

        font-size: 5px;

        letter-spacing: .05em;
    }


    /*
        SÉPARATEUR
    */

    .countdown__separator {
        font-size: 19px;
    }


    /*
        TEXTE
    */

    .date-section__text p {
        font-size: 19px;

        line-height: 1.25;
    }
}






/* =========================================================
   03 — LIEU
========================================================= */

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

/*
    SECTION
*/

.location-section {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 50px 60px 50px;

    background: #ffffff;

    color: #292926;
}


/*
    HEADER
*/

.location-section__header {
    width: 100%;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


/*
    TITRES
*/

.location-section__heading {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/*
    PETIT TITRE
*/

.location-section__eyebrow {
    margin: 0 0 18px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;
}


/*
    GRAND TITRE
*/

.location-section__heading h2 {
    margin: 0;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.035em;
}


/*
    BOUTON GOOGLE MAPS
*/

.location-section__map-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-width: 200px;
    height: 44px;

    padding: 0 25px;

    border-radius: 999px;

    background: #292926;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.location-section__map-button:hover {
    background: #3d3d37;

    transform: translateY(-2px);
}


/*
    DEUX IMAGES
*/

.location-section__images {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/*
    IMAGE
*/

.location-section__image {
    position: relative;

    width: 100%;

    overflow: hidden;
}


/*
    IMAGE
*/

.location-section__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/*
    INFORMATIONS
*/

.location-section__details {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: clamp(35px, 6vw, 100px);

    padding-top: 55px;
}


/*
    BLOC
*/

.location-section__detail {
    min-width: 0;
}


/*
    TITRE DU BLOC
*/

.location-section__detail h3 {
    margin: 0 0 17px;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(28px, 2.2vw, 38px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.02em;
}


/*
    TEXTE
*/

.location-section__detail p {
    margin: 0 0 13px;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(17px, 1.25vw, 22px);

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: -.01em;
}


/*
    TEXTE EN GRAS
*/

.location-section__detail strong {
    color: #555550;

    font-weight: 600;
}


/* =========================================================
   04 — LIEU RESPONSIVE
========================================================= */


/*
    TABLETTE
*/

@media (max-width: 900px) {

    .location-section {
        padding: 42.5px 22px 40px;
    }


    /*
        HEADER
    */

    .location-section__header {
        align-items: flex-end;

        margin-bottom: 42px;
    }


    /*
        PETIT TITRE
    */

    .location-section__eyebrow {
        margin-bottom: 14px;

        font-size: 18px;
    }


    /*
        GRAND TITRE
    */

    .location-section__heading h2 {
        font-size: clamp(38px, 5.8vw, 54px);
    }


    /*
        BOUTON
    */

    .location-section__map-button {
        min-width: 175px;

        height: 40px;

        padding: 0 20px;

        font-size: 15px;
    }


    /*
        DEUX IMAGES
    */

    .location-section__images {
        gap: 14px;
    }


    /*
        IMAGE
    */

  

    /*
        INFORMATIONS
    */

    .location-section__details {
        gap: 20px;

        padding-top: 45px;
    }


    /*
        TITRES
    */

    .location-section__detail h3 {
        font-size: 30px;
    }


    /*
        TEXTES
    */

    .location-section__detail p {
        font-size: 18px;
    }
}


/*
    MOBILE
*/

@media (max-width: 600px) {

    .location-section__images .location-section__image:first-child {
        display: none;
    }

    

    .location-section {
        padding: 37.5px 20px 35px;
    }


    /*
        HEADER
    */

    .location-section__header {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-bottom: 35px;
    }


    /*
        PETIT TITRE
    */

    .location-section__eyebrow {
        margin-bottom: 12px;

        color: #999994;

        font-size: 17px;
    }


    /*
        GRAND TITRE
    */

    .location-section__heading h2 {
        font-size: clamp(34px, 9vw, 46px);

        line-height: .98;
    }


    /*
        BOUTON
    */

    .location-section__map-button {
        min-width: 0;

        width: auto;

        height: 39px;

        padding: 0 20px;

        font-size: 15px;
    }


    /*
        DEUX IMAGES
    */

    .location-section__images {

        grid-template-columns: repeat(1, 1fr);

        gap: 10px;
    }


    /*
        IMAGE
    */

    .location-section__image {

        max-height: 500px;
    }


    /*
        INFORMATIONS
    */

    .location-section__details {
        display: flex;

        flex-direction: column;

        gap: 20px;

        padding-top: 42px;
    }


    /*
        TITRES
    */

    .location-section__detail h3 {
        margin-bottom: 13px;

        font-size: 27px;
    }


    /*
        TEXTES
    */

    .location-section__detail p {
        margin-bottom: 11px;

        color: #777772;

        font-size: 17px;

        line-height: 1.3;
    }
}


/*
    PETITS MOBILES
*/

@media (max-width: 380px) {

    .location-section {
        padding: 32.5px 16px 30px;
    }


    /*
        PETIT TITRE
    */

    .location-section__eyebrow {
        font-size: 16px;
    }


    /*
        GRAND TITRE
    */

    .location-section__heading h2 {
        font-size: 32px;
    }


    /*
        DEUX IMAGES
    */

    .location-section__images {
        gap: 8px;
    }


    /*
        IMAGE
    */

    .location-section__image {
        height: 120vw;
    }


    /*
        INFORMATIONS
    */

    .location-section__details {
        gap: 20px;

        padding-top: 38px;
    }


    /*
        TITRES
    */

    .location-section__detail h3 {
        font-size: 25px;
    }


    /*
        TEXTES
    */

    .location-section__detail p {
        font-size: 16px;

        line-height: 1.3;
    }
}











/* =========================================================
   05 — PROGRAMME
========================================================= */

.program-section {
    width: 100%;

    position: relative;
    z-index: 2;

    background: #ffffff;
    color: #292926;
}

.program-section__intro {
    width: min(100%, 1000px);

    margin: 0 auto;

    text-align: center;

    padding-top:50px;
}

.program-section__eyebrow {
    margin: 0 0 18px;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;
}

.program-section__intro h2 {
    margin: 0;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.035em;
}

.program-section__description {
    width: min(100%, 800px);

    margin: 28px auto 0;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(21px, 1.7vw, 28px);

    font-weight: 400;

    line-height: 1.3;
}


/* TIMELINE */

.program-timeline {
    position: relative;

    width: min(100%, 1400px);

    margin: 120px auto 0;

    padding: 0;
}

.program-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background: #d8d8d2;

    transform: translateX(-50%);
}


/* ACTIVITÉS */

.program-item {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    width: 100%;
    

    min-height: 520px;

    margin-bottom: 100px;
}

.program-item:last-child {
    margin-bottom: 0;
}


/* CONTENU */

.program-item__content {
    width: min(100%, 500px);
}

.program-item__time {
    margin: 0 0 22px;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1;
}

.program-item__content h3 {
    margin: 0 0 25px;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(28px, 2.2vw, 38px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.03em;
}

.program-item__text {
    max-width: 500px;

    margin: 0;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(19px, 1.5vw, 19px);

    font-weight: 400;

    line-height: 1.35;
}


/* IMAGES */

.program-item__image {
    width: 100%;
    height: 520px;

    overflow: hidden;
}

.program-item__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.program-item__image:hover img {
    transform: scale(1.025);
}


/* POINT CENTRAL */

.program-item::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 3;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #777772;

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


/* ACTIVITÉ À DROITE */

.program-item--right {
    padding-left: 8%;
}

.program-item--right .program-item__content {
    grid-column: 2;

    padding-left: 70px;

    order: 2;
    
    width:100%;
}

.program-item--right .program-item__image {
    grid-column: 2;

    margin-left: 0;

    order: 1;

    margin-bottom: 25px;
    
}


/* ACTIVITÉ À GAUCHE */

.program-item--left {
    padding-right: 8%;
}

.program-item--left .program-item__content {
    grid-column: 1;

    padding-right: 70px;

    order: 1;

    justify-self: end;
}

.program-item--left .program-item__image {
    grid-column: 1;

    padding-top: 25px;
    
    order: 2;

    justify-self: end;
}


/* NOTE */

.program-section__notes {
    width: min(100%, 1100px);

    margin: 100px auto 0;

    padding-top: 100px;

    padding-bottom:100px;

    border-top: 1px solid #d8d8d2;
}

.program-section__notes p {
    margin: 0;

    text-align: center;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(18px, 1.4vw, 22px);

    font-weight: 400;

    line-height: 1.35;
}


/* =========================================================
   05 — PROGRAMME RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .program-section {
        padding: 0px 22px;
    }

    .program-section__intro h2 {
        font-size: clamp(38px, 5.8vw, 54px);
    }

    .program-section__description {
        font-size: 2Opx;
    }

    .program-timeline {
        margin-top: 90px;
    }

    .program-item {
        min-height: 420px;

        margin-bottom: 80px;
    }

    .program-item__image {
        height: 420px;
    }

    .program-item--right {
        padding-left: 0;
    }

    .program-item--left {
        padding-right: 0;
    }

    .program-item--right .program-item__content {
        padding-left: 45px;
    }

    .program-item--left .program-item__content {
        padding-right: 45px;
    }

    .program-item__content h3 {
        font-size: 30px;
    }

    .program-item__time {
        font-size: 21px;
    }

    .program-item__text {
        font-size: 19px;
    }

    .program-section__notes {
        gap: 45px;

        margin-top: 80px;

        padding-bottom:50px;
    }
}


@media (max-width: 600px) {

    .program-section {
        padding: 0px 20px;
    }

    .program-section__eyebrow {
        margin-bottom: 16px;

        font-size: 16px;
    }

    .program-section__intro h2 {
        font-size: clamp(34px, 9vw, 46px);

        line-height: .95;
    }

    .program-section__description {
        margin-top: 22px;

        font-size: 20px;
    }

    .program-timeline {
        margin-top: 70px;
    }

    .program-timeline::before {
        display: none;
    }

    .program-item {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        min-height: 0;

        margin-bottom: 80px;

        padding: 0;
    }

    .program-item::before {
        display: none;
    }

    .program-item__content,
    .program-item--right .program-item__content,
    .program-item--left .program-item__content {
        width: 100%;

        padding: 0;

        order: 1;

        justify-self: auto;
    }

    .program-item__time {
        margin-bottom: 15px;

        font-size: 19px;
    }

    .program-item__content h3 {
        margin-bottom: 18px;

        font-size: 27px;
    }

    .program-item__text {
        max-width: 100%;

        margin-bottom: 25px;

        font-size: 17px;

        line-height: 1.3;
    }

    .program-item__image,
    .program-item--right .program-item__image,
    .program-item--left .program-item__image {
        width: 100%;
        height: 360px;

        order: 2;

        margin: 0;
    }

    .program-section__notes {
        width: min(100%, 800px);
    
        margin: 20px auto 0;
    
        padding-top: 35px;
    
        text-align: center;

        padding-bottom:50px;
    }

    .program-section__notes p {
        font-size: 17px;
    }
}


@media (max-width: 380px) {

    .program-section {
        padding: 0px 16px;
    }

    .program-section__intro h2 {
        font-size: 32px;
    }

    .program-section__description {
        font-size: 18px;
    }

    .program-item__content h3 {
        font-size: 24px;
    }

    .program-item__image {
        height: 300px;
    }

    .program-item__text {
        font-size: 17px;
    }
}








/* =========================================================
   05 — DRESS CODE
========================================================= */


/*
    SECTION
*/

.dress-code-section {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 100px 60px;

    background: #1d1d1d;

    color: #ffffff;

    overflow: hidden;
}


/*
    HEADER
*/

.dress-code-section__header {
    width: 100%;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, .16);
}


/*
    PETIT TITRE
*/

.dress-code-section__eyebrow {
    margin: 0 0 18px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;
}


/*
    GRAND TITRE
*/

.dress-code-section__header h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.035em;
}


/*
    LIGNE DRESS CODE
*/

.dress-code-section__row {
    width: 100%;

    display: grid;

    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);

    gap: clamp(45px, 6vw, 90px);

    padding: 55px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .16);

    align-items: start;
}


/*
    DERNIÈRE LIGNE
*/

.dress-code-section__row:last-child {
    border-bottom: none;

    padding-bottom: 0;
}


/*
    CONTENU TEXTE
*/

.dress-code-section__content {
    padding-top: 15px;
}


/*
    PETIT LABEL
*/

.dress-code-section__label {
    margin: 0 0 22px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .03em;
}


/*
    TITRE
*/

.dress-code-section__content h3 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(32px, 2.8vw, 46px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.025em;
}


/*
    TEXTE
*/

.dress-code-section__text {
    max-width: 285px;

    margin: 0;

    color: #b8b8b3;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(17px, 1.25vw, 21px);

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: -.01em;
}


/*
    GALERIE
*/

.dress-code-section__gallery {
    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -ms-overflow-style: none;

    cursor: grab;

    overscroll-behavior-x: contain;
}

.dress-code-section__gallery::-webkit-scrollbar {
    display: none;
}


/*
    TRACK
*/

.dress-code-section__gallery-track {
    display: flex;

    width: max-content;

    gap: 18px;
}


/*
    IMAGE
*/

.dress-code-section__image {
    position: relative;

    flex: 0 0 clamp(300px, 27vw, 450px);

    height: clamp(400px, 44vw, 620px);

    overflow: hidden;

    background: #292929;
}


/*
    IMAGE
*/

.dress-code-section__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition: transform .6s ease;
}


/*
    ZOOM
*/

.dress-code-section__image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   06 — DRESS CODE RESPONSIVE
========================================================= */


/*
    TABLETTE
*/

@media (max-width: 900px) {

    .dress-code-section {
        padding: 50px 22px;
    }


    /*
        HEADER
    */

    .dress-code-section__header {
        padding-bottom: 45px;
    }


    /*
        PETIT TITRE
    */

    .dress-code-section__eyebrow {
        font-size: 18px;
    }


    /*
        GRAND TITRE
    */

    .dress-code-section__header h2 {
        font-size: clamp(38px, 5.8vw, 54px);
    }


    /*
        LIGNE
    */

    .dress-code-section__row {
        grid-template-columns: 220px minmax(0, 1fr);

        gap: 35px;

        padding: 45px 0;
    }


    /*
        CONTENU
    */

    .dress-code-section__content {
        padding-top: 8px;
    }


    /*
        TITRE
    */

    .dress-code-section__content h3 {
        font-size: 32px;
    }


    /*
        TEXTE
    */

    .dress-code-section__text {
        font-size: 18px;
    }


    /*
        GALERIE
    */

    .dress-code-section__gallery-track {
        gap: 12px;
    }


    /*
        IMAGE
    */

    .dress-code-section__image {
        flex-basis: 38vw;

        height: 52vw;

        min-height: 380px;
    }
}


/*
    MOBILE
*/

@media (max-width: 600px) {

    .dress-code-section {
        padding: 50px 20px;
    }


    /*
        HEADER
    */

    .dress-code-section__header {
        padding-bottom: 38px;
    }


    /*
        PETIT TITRE
    */

    .dress-code-section__eyebrow {
        margin-bottom: 12px;

        font-size: 16px;
    }


    /*
        GRAND TITRE
    */

    .dress-code-section__header h2 {
        font-size: clamp(34px, 9vw, 46px);

        line-height: .98;
    }


    /*
        LIGNE
    */

    .dress-code-section__row {
        display: flex;

        flex-direction: column;

        gap: 30px;

        padding: 42px 0;
    }


    /*
        CONTENU
    */

    .dress-code-section__content {
        padding-top: 0;
    }


    /*
        LABEL
    */

    .dress-code-section__label {
        margin-bottom: 15px;

        font-size: 15px;
    }


    /*
        TITRE
    */

    .dress-code-section__content h3 {
        margin-bottom: 18px;

        font-size: 30px;
    }


    /*
        TEXTE
    */

    .dress-code-section__text {
        max-width: 100%;

        font-size: 17px;

        line-height: 1.3;
    }


    /*
        GALERIE
    */

    .dress-code-section__gallery {
        width: calc(100% + 20px);

        margin-right: -20px;

        padding-right: 20px;
    }


    /*
        TRACK
    */

    .dress-code-section__gallery-track {
        gap: 10px;
    }


    /*
        IMAGE
    */

    .dress-code-section__image {
        flex: 0 0 72vw;

        height: 100vw;

        min-height: 0;

        max-height: 500px;
    }
}


/*
    PETITS MOBILES
*/

@media (max-width: 380px) {

    .dress-code-section {
        padding: 60px 16px;
    }


    /*
        HEADER
    */

    .dress-code-section__header {
        padding-bottom: 32px;
    }


    /*
        GRAND TITRE
    */

    .dress-code-section__header h2 {
        font-size: 32px;
    }


    /*
        LIGNE
    */

    .dress-code-section__row {
        padding: 36px 0;

        gap: 25px;
    }


    /*
        GALERIE
    */

    .dress-code-section__gallery {
        width: calc(100% + 16px);

        margin-right: -16px;

        padding-right: 16px;
    }


    /*
        IMAGE
    */

    .dress-code-section__image {
        flex-basis: 78vw;

        height: 105vw;
    }


    /*
        TITRE
    */

    .dress-code-section__content h3 {
        font-size: 27px;
    }


    /*
        TEXTE
    */

    .dress-code-section__text {
        font-size: 16px;
    }
}










/* =========================================================
   07 — HÉBERGEMENT
========================================================= */

.accommodation-card__content h3 a {
    color: inherit;
    text-decoration: none;
}

.accommodation-card__content h3 a:hover {
    opacity: .65;
}


/*
    SECTION
*/

.accommodation-section {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 50px 60px;

    padding-bottom: 100px;

    background: #1d1d1d;

    color: #ffffff;

    overflow: hidden;
}


/*
    HEADER
*/

.accommodation-section__header {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: clamp(50px, 10vw, 160px);

    align-items: start;

    margin-bottom: 75px;
}


/*
    BLOC TITRE
*/

.accommodation-section__heading {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/*
    PETIT TITRE
*/

.accommodation-section__eyebrow {
    margin: 0 0 18px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;
}


/*
    GRAND TITRE
*/

.accommodation-section__heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(48px, 4.5vw, 70px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.035em;
}


/*
    INTRODUCTION
*/

.accommodation-section__intro {
    max-width: 560px;
    height:100%;
    align-content: center;
}


/*
    TEXTE INTRODUCTION
*/

.accommodation-section__intro p {

    color: #b8b8b2;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(19px, 1.45vw, 24px);

    font-weight: 400;

    line-height: 1.35;

    letter-spacing: -.01em;
}


/*
    LIEN
*/

.accommodation-section__link {
    display: inline-block;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.2;

    text-decoration: none;

    border-bottom: 1px solid #ffffff;

    padding-bottom: 3px;

    transition:
        opacity .25s ease,
        border-color .25s ease;
}

.accommodation-section__link:hover {
    opacity: .6;
}


/*
    GALERIE
*/

.accommodation-section__slider {
    width: calc(100% + 60px);

    margin-left: -60px;

    padding-left: 60px;
    padding-right: 60px;

    display: flex;

    gap: 22px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.accommodation-section__slider::-webkit-scrollbar {
    display: none;
}


/*
    CARTE
*/

.accommodation-card {
    flex: 0 0 calc(50% - 11px);

    min-width: 0;

    scroll-snap-align: start;
}


/*
    IMAGE
*/

.accommodation-card__image {
    position: relative;

    width: 100%;

    aspect-ratio: 1.45 / 1;

    overflow: hidden;

    75px

    background: #292929;
}


/*
    IMAGE
*/

.accommodation-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform .6s cubic-bezier(.2,.6,.2,1);
}

.accommodation-card:hover .accommodation-card__image img {
    transform: scale(1.025);
}


/*
    CONTENU
*/

.accommodation-card__content {
    padding-top: 75px;

    text-align: center;
}


/*
    PETIT TITRE CARTE
*/

/*
    TITRE CARTE
*/

.accommodation-card__content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(30px, 2.4vw, 40px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.025em;
}


/*
    DESCRIPTION
*/

.accommodation-card__content > p:last-child {
    margin: 0;

    color: #b8b8b2;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(17px, 1.2vw, 20px);

    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   07 — HÉBERGEMENT RESPONSIVE
========================================================= */


/*
    TABLETTE
*/

@media (max-width: 900px) {

    .accommodation-section {
        padding: 50px 22px;

        background: #1d1d1d;
    }


    /*
        HEADER
    */

    .accommodation-section__header {
        grid-template-columns: 1fr 1fr;

        column-gap: 45px;

        margin-bottom: 55px;
    }


    /*
        PETIT TITRE
    */

    .accommodation-section__eyebrow {
        margin-bottom: 14px;

        font-size: 18px;
    }


    /*
        TITRE
    */

    .accommodation-section__heading h2 {
        font-size: clamp(40px, 6vw, 56px);
    }


    /*
        INTRODUCTION
    */

    .accommodation-section__intro p {
        font-size: 19px;
    }


    /*
        GALERIE
    */

    .accommodation-section__slider {
        width: calc(100% + 44px);

        margin-left: -22px;

        padding-left: 22px;
        padding-right: 22px;

        gap: 18px;
    }


    /*
        CARTES
    */

    .accommodation-card {
        flex-basis: calc(72% - 9px);
    }
}


/*
    MOBILE
*/

@media (max-width: 600px) {

    .accommodation-section {
        padding: 50px 20px;

        background: #1d1d1d;
    }


    /*
        HEADER
    */

    .accommodation-section__header {
        display: flex;

        flex-direction: column;

        gap: 35px;

        margin-bottom: 45px;
    }


    /*
        PETIT TITRE
    */

    .accommodation-section__eyebrow {
        margin-bottom: 12px;

        font-size: 17px;
    }


    /*
        TITRE
    */

    .accommodation-section__heading h2 {
        font-size: clamp(36px, 10vw, 48px);

        line-height: .98;
    }


    /*
        INTRODUCTION
    */

    .accommodation-section__intro {
        max-width: 100%;

        padding-top: 0;
    }


    /*
        TEXTE
    */

    .accommodation-section__intro p {
        margin-bottom: 22px;

        color: #b8b8b2;

        font-size: 18px;

        line-height: 1.3;
    }


    /*
        LIEN
    */

    .accommodation-section__link {
        font-size: 17px;
    }


    /*
        GALERIE
    */

    .accommodation-section__slider {
        width: calc(100% + 40px);

        margin-left: -20px;

        padding-left: 20px;
        padding-right: 20px;

        gap: 15px;

        scroll-snap-type: x mandatory;
    }


    /*
        CARTES
    */

    .accommodation-card {
        flex: 0 0 84%;
    }


    /*
        IMAGE
    */

    .accommodation-card__image {
        aspect-ratio: 1.15 / 1;
    }


    /*
        CONTENU
    */

    .accommodation-card__content {
        padding-top: 45px;
    }

    /*
        TITRE
    */

    .accommodation-card__content h3 {
        margin-bottom: 9px;

        font-size: 29px;

        line-height: 1;
    }


    /*
        DESCRIPTION
    */

    .accommodation-card__content > p:last-child {
        font-size: 17px;

        line-height: 1.3;
    }
}


/*
    PETITS MOBILES
*/

@media (max-width: 380px) {

    .accommodation-section {
        padding: 60px 16px;

        background: #1d1d1d;
    }


    /*
        GALERIE
    */

    .accommodation-section__slider {
        width: calc(100% + 32px);

        margin-left: -16px;

        padding-left: 16px;
        padding-right: 16px;
    }


    /*
        CARTES
    */

    .accommodation-card {
        flex-basis: 88%;
    }


    /*
        TITRE
    */

    .accommodation-card__content h3 {
        font-size: 26px;
    }
}









/* =========================================================
   07 — FORMULAIRE RSVP
========================================================= */


/*
    SECTION
*/

.rsvp-section {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 800px;

    padding: 100px 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #1d1d1d;

    color: #ffffff;
}


/*
    IMAGE DE FOND
*/

.rsvp-section__background {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;
}


.rsvp-section__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/*
    OVERLAY
*/

.rsvp-section__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background: rgba(0, 0, 0, .50);

    backdrop-filter: blur(1px);
}


/*
    CARTE
*/

.rsvp-section__card {
    position: relative;

    z-index: 2;

    width: min(100%, 560px);

    padding: 65px 70px;

    background: rgba(45, 45, 43, .68);

    border: 1px solid rgba(255, 255, 255, .16);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .18);

    text-align: center;

    backdrop-filter: blur(8px);
}


/*
    PETIT SYMBOLE
*/

.rsvp-section__symbol {
    margin-bottom: 28px;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1;
}


/*
    PETIT TITRE
*/

.rsvp-section__eyebrow {
    margin: 0 0 14px;

    color: rgba(255, 255, 255, .72);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: .02em;
}


/*
    GRAND TITRE
*/

.rsvp-section__title {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(38px, 4vw, 52px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.025em;
}


/*
    INTRODUCTION
*/

.rsvp-section__intro {
    max-width: 430px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, .78);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 19px;

    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   FORMULAIRE
========================================================= */

.rsvp-form__success,
.rsvp-form__error {
    display: none;
    margin: 25px 0 0;
    text-align: center;

    font-family: "Libre Caslon Condensed", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.rsvp-form__success {
    color: #ffffff;
}

.rsvp-form__error {
    color: #ffffff;
}
/*
    FORMULAIRE
*/

.rsvp-form {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 18px;

    text-align: left;
}


/*
    CHAMP
*/

.rsvp-form__field {
    width: 100%;
}


/*
    LABEL
*/

.rsvp-form__field label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, .85);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.2;
}


/*
    INPUTS
*/

.rsvp-form__field input,
.rsvp-form__field select,
.rsvp-form__field textarea {

    width: 100%;

    padding: 13px 15px;

    border: 1px solid rgba(255, 255, 255, .28);

    border-radius: 0;

    outline: none;

    background: rgba(255, 255, 255, .08);

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.2;

    transition:
        border-color .25s ease,
        background .25s ease;
}


/*
    PLACEHOLDER
*/

.rsvp-form__field input::placeholder,
.rsvp-form__field textarea::placeholder {

    color: rgba(255, 255, 255, .45);
}


/*
    SELECT
*/

.rsvp-form__field select {

    appearance: none;

    cursor: pointer;
}


/*
    OPTIONS
*/

.rsvp-form__field select option {

    background: #1d1d1d;

    color: #ffffff;
}


/*
    TEXTAREA
*/

.rsvp-form__field textarea {

    min-height: 90px;

    resize: vertical;
}


/*
    FOCUS
*/

.rsvp-form__field input:focus,
.rsvp-form__field select:focus,
.rsvp-form__field textarea:focus {

    border-color: rgba(255, 255, 255, .7);

    background: rgba(255, 255, 255, .12);
}


/*
    BOUTON
*/

.rsvp-form__submit {

    width: 100%;

    margin-top: 12px;

    min-height: 50px;

    padding: 14px 25px;

    border: 1px solid #ffffff;

    border-radius: 999px;

    background: #ffffff;

    color: #1d1d1d;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.rsvp-form__submit:hover {

    background: transparent;

    color: #ffffff;

    transform: translateY(-2px);
}

.transition {
    position: relative;
    z-index: 2;
    background-color: #1d1d1d;
    height: 100px;
}


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

@media (max-width: 900px) {

    .rsvp-section {

        min-height: 750px;

        padding: 80px 22px;
    }


    .rsvp-section__card {

        width: min(100%, 520px);

        padding: 55px 50px;
    }


    .rsvp-section__title {

        font-size: clamp(36px, 6vw, 48px);
    }


    .rsvp-section__intro {

        font-size: 18px;
    }
}


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

@media (max-width: 600px) {

    .rsvp-section {

        min-height: auto;

        padding: 70px 20px;
    }


    /*
        IMAGE
    */

    .rsvp-section__background img {

        object-position: center center;
    }


    /*
        CARTE
    */

    .rsvp-section__card {

        width: 100%;

        padding: 45px 25px;
    }


    /*
        SYMBOLE
    */

    .rsvp-section__symbol {

        margin-bottom: 22px;

        font-size: 24px;
    }


    /*
        EYEBROW
    */

    .rsvp-section__eyebrow {

        margin-bottom: 12px;

        font-size: 17px;
    }


    /*
        TITRE
    */

    .rsvp-section__title {

        margin-bottom: 20px;

        font-size: clamp(34px, 10vw, 44px);

        line-height: .96;
    }


    /*
        INTRO
    */

    .rsvp-section__intro {

        margin-bottom: 28px;

        font-size: 17px;

        line-height: 1.3;
    }


    /*
        FORMULAIRE
    */

    .rsvp-form {

        gap: 16px;
    }


    /*
        LABEL
    */

    .rsvp-form__field label {

        font-size: 16px;
    }


    /*
        INPUTS
    */

    .rsvp-form__field input,
    .rsvp-form__field select,
    .rsvp-form__field textarea {

        padding: 12px 13px;

        font-size: 16px;
    }


    /*
        BOUTON
    */

    .rsvp-form__submit {

        min-height: 48px;

        font-size: 17px;
    }
}


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

@media (max-width: 380px) {

    .rsvp-section {

        padding: 55px 16px;
    }


    .rsvp-section__card {

        padding: 38px 20px;
    }


    .rsvp-section__title {

        font-size: 32px;
    }


    .rsvp-section__intro {

        font-size: 16px;
    }
}








/* =========================================================
   08 — INFORMATIONS
========================================================= */


/*
    SECTION
*/

.information-section {

    position: relative;
    z-index: 2;

    width: 100%;

    padding: 100px 60px;

    background: #ffffff;

    color: #292926;
}


/*
    CONTENEUR
*/

.information-section__inner {

    width: 100%;

    display: grid;

    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);

    column-gap: clamp(70px, 10vw, 160px);

    align-items: start;
}


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

.information-section__heading {

    position: sticky;

    top: 100px;
}


/*
    PETIT TITRE
*/

.information-section__eyebrow {

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;

    
}


/*
    GRAND TITRE
*/

.information-section__heading h2 {

    margin: 0;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.035em;
}


/* =========================================================
   COLONNE DROITE
========================================================= */

.information-section__list {

    width: 100%;
}


/*
    BLOC INFORMATION
*/

.information-section__item {

    width: 100%;

    display: grid;

    grid-template-columns: 70px minmax(0, 1fr);

    column-gap: 40px;

    align-items: start;

    padding: 0 0 42px;

    margin: 0 0 42px;

    border-bottom: 1px solid #d8d8d4;
}


/*
    DERNIER BLOC
*/

.information-section__item:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;
}


/*
    NUMÉRO
*/

.information-section__number {

    display: block;

    padding-top: 3px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;
}


/*
    TEXTE
*/

.information-section__item p {

    max-width: 850px;

    margin: 0;

    color: #292926;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(19px, 1.35vw, 24px);

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: -.01em;
}


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

@media (max-width: 900px) {

    .information-section {

        padding: 90px 22px;
    }


    .information-section__inner {

        grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);

        column-gap: 55px;
    }


    /*
        PETIT TITRE
    */

    .information-section__eyebrow {

        margin-bottom: x;

        font-size: 18px;
    }


    /*
        GRAND TITRE
    */

    .information-section__heading h2 {

        font-size: clamp(42px, 6vw, 58px);
    }


    /*
        BLOCS
    */

    .information-section__item {

        grid-template-columns: 50px minmax(0, 1fr);

        column-gap: 25px;

        padding-bottom: 35px;

        margin-bottom: 35px;
    }


    /*
        NUMÉROS
    */

    .information-section__number {

        font-size: 17px;
    }


    /*
        TEXTE
    */

    .information-section__item p {

        font-size: 19px;

        line-height: 1.4;
    }
}


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

@media (max-width: 600px) {

    .information-section {

        padding: 70px 20px;
    }


    /*
        STRUCTURE
    */

    .information-section__inner {

        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    /*
        TITRE
    */

    .information-section__heading {

        position: static;
    }


    /*
        PETIT TITRE
    */

    .information-section__eyebrow {

        margin-bottom: 25px;

        font-size: 17px;

        letter-spacing: .15em;
    }


    /*
        GRAND TITRE
    */

    .information-section__heading h2 {

        font-size: clamp(42px, 11vw, 54px);

        line-height: .94;
    }


    /*
        INFORMATIONS
    */

    .information-section__item {

        grid-template-columns: 40px minmax(0, 1fr);

        column-gap: 18px;

        padding-bottom: 30px;

        margin-bottom: 30px;
    }


    /*
        NUMÉRO
    */

    .information-section__number {

        padding-top: 2px;

        font-size: 16px;
    }


    /*
        TEXTE
    */

    .information-section__item p {

        font-size: 18px;

        line-height: 1.4;
    }
}


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

@media (max-width: 380px) {

    .information-section {

        padding: 60px 16px;
    }


    .information-section__inner {

        gap: 45px;
    }


    .information-section__eyebrow {

        font-size: 16px;
    }


    .information-section__heading h2 {

        font-size: 38px;
    }


    .information-section__item {

        grid-template-columns: 34px minmax(0, 1fr);

        column-gap: 15px;

        padding-bottom: 26px;

        margin-bottom: 26px;
    }


    .information-section__number {

        font-size: 15px;
    }


    .information-section__item p {

        font-size: 17px;

        line-height: 1.38;
    }
}










/* =========================================================
   08 — GALERIE PHOTOS
========================================================= */


/*
    SECTION
*/

.gallery-section {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 100px 60px;

    background: #1d1d1d;

    color: #ffffff;
}


/*
    HEADER
*/

.gallery-section__header {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-bottom: 85px;
}


/*
    COLONNE GAUCHE
*/

.gallery-section__heading {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/*
    PETIT TITRE
*/

.gallery-section__eyebrow {
    margin: 0 0 18px;

    color: #8f8f8a;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;
}


/*
    GRAND TITRE
*/

.gallery-section__heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(48px, 5vw, 72px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.035em;
}


/*
    INTRO SOUS LE TITRE
*/

.gallery-section__intro {
    max-width: 430px;

    margin: 50px 0 0;

    color: #858581;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(17px, 1.25vw, 21px);

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: -.01em;
}


/*
    COLONNE DROITE
*/




/*
    DESCRIPTION
*/

/*
    LIEN
*/

.gallery-section__link {
    display: inline-flex;

    width: fit-content;

    margin-top: 42px;

    padding-bottom: 7px;

    border-bottom: 1px solid #777772;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    text-decoration: none;

    transition:
        opacity .25s ease,
        border-color .25s ease;
}

.gallery-section__link:hover {
    opacity: .65;

    border-color: #ffffff;
}


/*
    GRILLE
*/

.gallery-section__grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/*
    IMAGE
*/

.gallery-section__item {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #292929;
}


/*
    IMAGE
*/

.gallery-section__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s cubic-bezier(.2,.6,.2,1),
        opacity .35s ease;
}


/*
    HOVER
*/

.gallery-section__item:hover img {
    transform: scale(1.035);

    opacity: .9;
}


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

@media (max-width: 1000px) {

    .gallery-section {
        padding: 80px 40px;
    }


    /*
        HEADER
    */

    .gallery-section__header {
        gap: 50px;

        margin-bottom: 60px;
    }


    /*
        TITRE
    */

    .gallery-section__heading h2 {
        font-size: clamp(44px, 6vw, 62px);
    }


    /*
        INTRO
    */

    .gallery-section__intro {
        margin-top: 35px;

        font-size: 18px;
    }


    /*
        TEXTE
    */


    /*
        GRILLE
    */

    .gallery-section__grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 16px;
    }
}


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

@media (max-width: 600px) {

    .gallery-section {
        padding: 80px 20px;
    }


    /*
        HEADER
    */

    .gallery-section__header {
        display: flex;

        flex-direction: column;

        gap: 0;

        margin-bottom: 45px;
    }


    /*
        PETIT TITRE
    */

    .gallery-section__eyebrow {
        margin-bottom: 15px;

        font-size: 17px;

        color: #8f8f8a;
    }


    /*
        GRAND TITRE
    */

    .gallery-section__heading h2 {
        font-size: clamp(40px, 11vw, 52px);

        line-height: .96;
    }


    /*
        INTRO
    */

    .gallery-section__intro {
        margin-top: 28px;

        color: #858581;

        font-size: 17px;

        line-height: 1.35;
    }


    /*
        TEXTE DROIT
    */

    


    /*
        LIEN
    */

    .gallery-section__link {
        margin-top: 28px;

        font-size: 17px;
    }


    /*
        GALERIE HORIZONTALE
    */

    .gallery-section__grid {

        display: flex;

        flex-wrap: nowrap;

        gap: 12px;

        width: calc(100% + 20px);

        overflow-x: auto;

        padding-right: 20px;

        padding-bottom: 10px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    /*
        CACHE LA BARRE DE DÉFILEMENT
    */

    .gallery-section__grid::-webkit-scrollbar {
        display: none;
    }


    /*
        PHOTOS
    */

    .gallery-section__item {

        flex: 0 0 72vw;

        width: 72vw;

        aspect-ratio: 3 / 4;

        scroll-snap-align: start;
    }


    /*
        PAS DE ZOOM AU TOUCH
    */

    .gallery-section__item:hover img {
        transform: none;

        opacity: 1;
    }
}


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

@media (max-width: 380px) {

    .gallery-section {
        padding: 70px 16px;
    }


    .gallery-section__heading h2 {
        font-size: 38px;
    }


    .gallery-section__item {
        flex-basis: 78vw;

        width: 78vw;
    }
}











/* =========================================================
   09 — REMERCIEMENTS
========================================================= */


/*
    SECTION
*/

.signature {
    margin-top:40px;
}

/*
    BOUTON RSVP
*/

.thanks-section__rsvp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 10px;

    margin-bottom: 10px;

    min-width: 145px;
    height: 48px;

    padding: 0 30px;

    border: 1px solid #1d1d1d;

    border-radius: 999px;

    background: #1d1d1d;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.thanks-section__rsvp:hover {

    background: transparent;

    color: #3f3f38;

    transform: translateY(-2px);
}

.thanks-section__symbol {
    margin: 0 0 28px;

    color: #3f3f38;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 28px;

    font-weight: 400;

    line-height: 1;
}

.thanks-section {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 100px;

    background: white;

    color: #292926;
}


/*
    CONTENU
*/

.thanks-section__content {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

}






/*
    PETIT TITRE
*/

.thanks-section__eyebrow {
    margin: 0 0 24px;

    color: #77766e;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .01em;
}


/*
    GRAND TITRE
*/

.thanks-section__content h2 {
    max-width: 1050px;

    margin: 0;

    color: #3f3f38;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(30px, 2.5vw, 44px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.035em;
}


/*
    TEXTE
*/

.thanks-section__text {
    max-width: 680px;

    color: #77766e;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(19px, 1.5vw, 24px);

    font-weight: 400;

    line-height: 1.35;

    letter-spacing: -.01em;
}


/*
    SIGNATURE
*/

.thanks-section__names {
    margin: 48px 0 0;

    color: #3f3f38;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(30px, 2.7vw, 40px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.02em;
}


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

@media (max-width: 900px) {

    .thanks-section {
        padding: 40px 30px 50px;
    }


    .thanks-section__content {
        min-height: 560px;

        padding: 90px 30px;
    }


    .thanks-section__content h2 {
        font-size: clamp(42px, 6vw, 60px);
    }


    .thanks-section__text {
        margin-top: 28px;

        font-size: 20px;
    }


    .thanks-section__names {
        margin-top: 42px;

        font-size: 34px;
    }
}


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

@media (max-width: 600px) {

    .thanks-section {
        padding: 25px 20px 30px;
    }


    .thanks-section__content {
        min-height: 520px;

        padding: 75px 22px;
    }


    /*
        SYMBOLE
    */

    .thanks-section__symbol {
        margin-bottom: 22px;

        font-size: 24px;
    }


    /*
        PETIT TITRE
    */

    .thanks-section__eyebrow {
        margin-bottom: 18px;

        font-size: 16px;

        letter-spacing: .1em;
    }


    /*
        GRAND TITRE
    */

    .thanks-section__content h2 {
        max-width: 380px;

        font-size: clamp(36px, 10vw, 48px);

        line-height: .98;
    }


    /*
        TEXTE
    */

    .thanks-section__text {
        max-width: 330px;

        margin-top: 27px;

        font-size: 18px;

        line-height: 1.35;
    }


    /*
        SIGNATURE
    */

    .thanks-section__names {
        margin-top: 40px;

        font-size: 30px;
    }
}


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

@media (max-width: 380px) {

    .thanks-section {
        padding: 20px 16px 25px;
    }


    .thanks-section__content {
        min-height: 480px;

        padding: 65px 18px;
    }


    .thanks-section__content h2 {
        font-size: 34px;
    }


    .thanks-section__text {
        font-size: 17px;
    }


    .thanks-section__names {
        font-size: 28px;
    }
}








/* =========================================================
   10 — FOOTER
========================================================= */


/*
    SECTION
*/

.site-footer {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 80px 60px 30px;

    background: #1d1d1d;

    color: #ffffff;
}


/*
    CONTENU PRINCIPAL
*/

.site-footer__inner {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.2fr;

    gap: 60px;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(255, 255, 255, .14);
}


/*
    IDENTITÉ
*/

.site-footer__brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/*
    SYMBOLE
*/

.site-footer__symbol {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, .85);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 28px;

    line-height: 1;
}


/*
    NOMS
*/

.site-footer__names {
    margin: 0;

    color: #ffffff;

    font-family: "Libre Caslon Condensed", serif;

    font-size: clamp(32px, 3vw, 48px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.03em;
}


/*
    ANNÉE
*/

.site-footer__date {
    margin: 18px 0 0;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    line-height: 1;
}


/*
    COLONNES
*/

.site-footer__column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/*
    TITRES DES COLONNES
*/

.site-footer__title {
    margin: 0 0 24px;

    color: #999994;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/*
    LIENS
*/

.site-footer__column a {
    margin-bottom: 13px;

    color: rgba(255, 255, 255, .78);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.2;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.site-footer__column a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/*
    TEXTE CONTACT
*/

.site-footer__contact-text {
    max-width: 220px;

    margin: 10px 0 0;

    color: #777772;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    line-height: 1.3;
}


/*
    BAS DU FOOTER
*/

.site-footer__bottom {
    width: 100%;

    padding-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.site-footer__bottom p {
    margin: 0;

    color: #666660;

    font-family: "Libre Caslon Condensed", serif;

    font-size: 15px;

    line-height: 1.2;
}


.site-footer__rsvp-text {
    max-width: 400px;

    color: rgba(255, 255, 255, .78);

    font-family: "Libre Caslon Condensed", serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.3;
}


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

@media (max-width: 900px) {

    .site-footer {
        padding: 70px 40px 28px;
    }


    .site-footer__inner {
        grid-template-columns: 1fr 1fr;

        gap: 55px 40px;

        padding-bottom: 60px;
    }


    .site-footer__brand {
        grid-column: 1 / -1;
    }


    .site-footer__names {
        font-size: 42px;
    }
}


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

@media (max-width: 600px) {

    .site-footer {
        padding: 60px 20px 25px;
    }


    .site-footer__inner {
        display: flex;

        flex-direction: column;

        gap: 42px;

        padding-bottom: 45px;
    }


    /*
        IDENTITÉ
    */

    .site-footer__names {
        font-size: 38px;
    }


    /*
        COLONNES
    */

    .site-footer__title {
        margin-bottom: 19px;

        font-size: 15px;
    }


    .site-footer__column a {
        margin-bottom: 11px;

        font-size: 17px;
    }


    .site-footer__contact-text {
        font-size: 16px;
    }


    /*
        BAS
    */

    .site-footer__bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        padding-top: 22px;
    }


    .site-footer__bottom p {
        font-size: 14px;
    }
}


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

@media (max-width: 380px) {

    .site-footer {
        padding: 50px 16px 22px;
    }


    .site-footer__names {
        font-size: 34px;
    }
}