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


/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #ffffff;
    color: #ffffff;

    font-family: 'Jost', sans-serif;
}

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

button {
    font: inherit;
}


/* ---------------------------------------------------------
   POLICES
--------------------------------------------------------- */



@font-face {
    font-family: "Apfel Grotezk";

    src: url("fonts/ApfelGrotezk-Regular.woff2")
        format("woff2");

    font-weight: 400;
    font-style: normal;

    font-display: swap;
}

@font-face {
    font-family: "Apfel Grotezk";

    src: url("fonts/ApfelGrotezk-Medium.woff2")
        format("woff2");

    font-weight: 500;
    font-style: normal;

    font-display: swap;
}


/* ---------------------------------------------------------
   COULEURS DU SITE
--------------------------------------------------------- */

:root {
    --burgundy: #641f2b;
    --burgundy-light: #8b3949;

    --space-gray: #34363a;

    --white: #ffffff;
}


/* ---------------------------------------------------------
   CONTENEUR HERO
--------------------------------------------------------- */

.wedding-hero {
    position: relative;

    width: 100%;
    height: 800px;

    overflow: hidden;

    background: var(--space-gray);

    color: var(--white);
}


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

.wedding-nav {
    position: fixed;

    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;
    height: 46px;

    padding: 6px 36px;

    display: grid;

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

    align-items: center;

    /* Fond transparent comme demandé */
    background: rgba(52, 54, 58, 0.35);

    /* Effet blur de la navigation */
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(10px);
}


/* ---------------------------------------------------------
   LIENS DESKTOP
--------------------------------------------------------- */

.nav-left {
    display: flex;

    align-items: center;

    gap: 32px;
}

.nav-left a {
    font-family: 'Jost', sans-serif;

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

    letter-spacing: -0.03em;

    transition: opacity 0.25s ease;
}

.nav-left a:hover {
    opacity: 0.6;
}


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

.nav-logo {
    font-family: 'Jost', sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.05em;

    white-space: nowrap;

    text-align: center;
}


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

.nav-right {
    display: flex;

    justify-content: flex-end;

    align-items: center;
}


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

.rsvp-link {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family: 'Jost', sans-serif;

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

    letter-spacing: -0.03em;

    transition: opacity 0.25s ease;
}

.rsvp-link:hover {
    opacity: 0.65;
}

.rsvp-arrow {
    font-size: 22px;

    line-height: 1;
}


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

.burger-menu {
    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: 20;
}


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

.burger-menu span {
    display: block;

    width: 24px;
    height: 1.5px;

    background: #ffffff;

    transform-origin: center;

    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        width 0.3s ease;
}


/* ---------------------------------------------------------
   BURGER ACTIF
   Transformation en croix
--------------------------------------------------------- */

.burger-menu.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* ---------------------------------------------------------
   IMAGE PRINCIPALE
--------------------------------------------------------- */

.hero-media {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.hero-media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);
}


/* ---------------------------------------------------------
   OVERLAY DE L'IMAGE
--------------------------------------------------------- */

.hero-overlay {
    position: absolute;

    z-index: 2;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,

            rgba(20, 20, 20, 0.38) 0%,

            rgba(20, 20, 20, 0.08) 35%,

            rgba(20, 20, 20, 0.12) 60%,

            rgba(20, 20, 20, 0.55) 100%
        );
}


/* ---------------------------------------------------------
   CONTENU DU HERO
--------------------------------------------------------- */

.hero-content {
    position: absolute;

    z-index: 5;

    left: 36px;
    right: 36px;

    bottom: 34px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* ---------------------------------------------------------
   DATE
--------------------------------------------------------- */

.hero-date {
    margin-bottom: 8px;

    font-family: 'Jost', sans-serif;

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

    letter-spacing: 0.02em;

    color: #ffffff;
}


/* ---------------------------------------------------------
   NOMS DES MARIÉS
--------------------------------------------------------- */

.hero-content h1 {
    margin: 0;

    font-family: "Parisienne", cursive;

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

    font-weight: 500;

    line-height: 0.88;

    color: #ffffff;
}


/* ---------------------------------------------------------
   BANDEAU BORDEAUX
--------------------------------------------------------- */

.hero-highlight {
    display: inline-flex;

    width: fit-content;

    margin-top: 5px;

    padding:
        7px
        10px
        9px
        8px;

    background: var(--burgundy);
}


/* ---------------------------------------------------------
   TEXTE DU BANDEAU
--------------------------------------------------------- */

.hero-highlight h2 {
    margin: 0;

    font-family: 'Jost', sans-serif;

    font-size: clamp(
        38px,
        4.2vw,
        42px
    );

    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -0.06em;

    color: #ffffff;
}


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


/* ---------------------------------------------------------
   CONTENEUR DU MENU
--------------------------------------------------------- */

.mobile-menu {
    position: fixed;

    z-index: 100;

    top: 0;
    right: 0;

    width: 100%;
    height: 100dvh;

    padding:
        80px
        24px
        40px;

    display: flex;

    flex-direction: column;

    /*
       FOND TRANSPARENT + BLUR
       Même principe que la navbar
    */
    background: rgba(52, 54, 58, 0.35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /*
       Le menu arrive depuis la droite
    */
    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform 0.45s
        cubic-bezier(
            0.77,
            0,
            0.175,
            1
        ),

        visibility 0s
        linear
        0.45s;
}


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

.mobile-menu.active {
    transform: translateX(0);

    visibility: visible;

    transition:
        transform 0.45s
        cubic-bezier(
            0.77,
            0,
            0.175,
            1
        ),

        visibility 0s
        linear
        0s;
}


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

.mobile-menu-close {
    position: absolute;

    top: 9px;
    right: 16px;

    width: 30px;
    height: 30px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;
}


/* ---------------------------------------------------------
   CROIX DE FERMETURE
--------------------------------------------------------- */

.mobile-menu-close span {
    position: absolute;

    top: 14px;
    left: 3px;

    width: 24px;
    height: 1.5px;

    background: #ffffff;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}


/* ---------------------------------------------------------
   LIENS DU MENU MOBILE
--------------------------------------------------------- */

.mobile-menu-links {
    position: absolute;

    top: 50%;
    left: 50%;

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

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 64px;

    text-align: center;
}


/* ---------------------------------------------------------
   STYLE DES LIENS
--------------------------------------------------------- */

.mobile-menu-links a {
    font-family: 'Jost', sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 0;

    letter-spacing: -0.045em;

    color: #ffffff;

    text-align: center;

    opacity: 0;

    transform: translateY(15px);

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


/* ---------------------------------------------------------
   ANIMATION À L'OUVERTURE
--------------------------------------------------------- */

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;

    transform: translateY(0);
}


/* ---------------------------------------------------------
   DÉLAIS D'ANIMATION
--------------------------------------------------------- */

.mobile-menu.active
.mobile-menu-links
a:nth-child(1) {
    transition-delay: 0.10s;
}

.mobile-menu.active
.mobile-menu-links
a:nth-child(2) {
    transition-delay: 0.16s;
}

.mobile-menu.active
.mobile-menu-links
a:nth-child(3) {
    transition-delay: 0.22s;
}

.mobile-menu.active
.mobile-menu-links
a:nth-child(4) {
    transition-delay: 0.28s;
}

.mobile-menu.active
.mobile-menu-links
a:nth-child(5) {
    transition-delay: 0.34s;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.mobile-menu-links a:hover {
    opacity: 0.6;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* ---------------------------------------------------------
   TABLETTE
--------------------------------------------------------- */

@media (max-width: 1239px) and (min-width: 810px) {

    .wedding-hero {
        height: 800px;
    }


    /* Navigation */

    .wedding-nav {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-left {
        gap: 24px;
    }


    /* Contenu */

    .hero-content {
        left: 24px;
        right: 24px;

        bottom: 28px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-highlight h2 {
        font-size: 35px;
    }
}


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

@media (max-width: 809px) {


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

    .wedding-hero {
        height: 600px;
    }


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

    .wedding-nav {
        height: 48px;

        padding:
            7px
            16px;

        display: flex;

        justify-content: space-between;

        align-items: center;
    }


    /* -----------------------------------------------------
       ANCIEN MENU DESKTOP
       Caché sur téléphone
    ----------------------------------------------------- */

    .nav-left {
        display: none !important;
    }


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

    .nav-logo {
        font-size: 16px;
    }


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

    .nav-right {
        margin-left: auto;

        display: flex;

        align-items: center;
    }


    /* -----------------------------------------------------
       RSVP MOBILE
       Remplacé par le burger
    ----------------------------------------------------- */

    .rsvp-link {
        display: none;
    }


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

    .burger-menu {
        display: flex;
    }


    /* -----------------------------------------------------
       IMAGE MOBILE
    ----------------------------------------------------- */

    .hero-media img {
        object-position: center center;
    }


    /* -----------------------------------------------------
       OVERLAY MOBILE
    ----------------------------------------------------- */

    .hero-overlay {
        background:
            linear-gradient(
                to bottom,

                rgba(20, 20, 20, 0.25) 0%,

                rgba(20, 20, 20, 0.05) 40%,

                rgba(20, 20, 20, 0.48) 100%
            );
    }


    /* -----------------------------------------------------
       CONTENU MOBILE
    ----------------------------------------------------- */

    .hero-content {
        left: 16px;
        right: 16px;

        bottom: 20px;
    }


    /* -----------------------------------------------------
       DATE MOBILE
    ----------------------------------------------------- */

    .hero-date {
        margin-bottom: 6px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       NOMS MOBILE
    ----------------------------------------------------- */

    .hero-content h1 {
        font-size: 46px;

        line-height: 0.9;

        letter-spacing: -0.05em;
    }


    /* -----------------------------------------------------
       BANDEAU MOBILE
    ----------------------------------------------------- */

    .hero-highlight {
        margin-top: 4px;

        padding:
            5px
            7px
            7px
            6px;
    }


    /* -----------------------------------------------------
       TEXTE BANDEAU MOBILE
    ----------------------------------------------------- */

    .hero-highlight h2 {
        font-size: 25px;

        line-height: 0.85;

        letter-spacing: -0.055em;
    }


    /* -----------------------------------------------------
       MENU MOBILE
    ----------------------------------------------------- */

    .mobile-menu {
        display: flex;

        /*
           IMPORTANT :
           Le menu est transparent comme la navbar.
           L'image du hero reste visible derrière.
        */
        background: rgba(52, 54, 58, 0.35);

        /*
           Même effet de flou que la navbar
        */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}


/* ---------------------------------------------------------
   PETITS MOBILES
--------------------------------------------------------- */

@media (max-width: 380px) {


    /* Hero */

    .wedding-hero {
        height: 560px;
    }


    /* Logo */

    .nav-logo {
        font-size: 14px;
    }


    /* Burger */

    .burger-menu {
        width: 28px;
    }

    .burger-menu span {
        width: 22px;
    }


    /* Menu */

    .mobile-menu {
        padding-left: 20px;
        padding-right: 20px;

        /*
           On garde le fond transparent + blur
        */
        background: rgba(52, 54, 58, 0.35);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }


    /* Liens */

    .mobile-menu-links a {
        font-size: 20px;
    }


    /* Texte hero */

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-highlight h2 {
        font-size: 15px;
    }
}


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

@media (min-width: 810px) {

    .burger-menu,
    .mobile-menu {
        display: none !important;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITÉ
--------------------------------------------------------- */

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

    html {
        scroll-behavior: auto;
    }

    .mobile-menu,
    .mobile-menu-links a,
    .burger-menu span {
        transition: none;

    }
}










/* =========================================================
   SECTION 01
   NOTRE MARIAGE
   ========================================================= */

   .intro-section {
    position: relative;

    width: 100%;

    background: var(--space-gray);
    color: var(--white) ;

    overflow: hidden;
}


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

.intro-content {
    width: 100%;
    min-height: 100vh;

    padding: 120px 36px;

    display: grid;

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

    gap: 38px;

    align-items: stretch;
}


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

.intro-text {
    position: relative;

    min-height: 680px;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   LIGNE
   ========================================================= */

.intro-line {
    display: block;

    width: 100%;
    height: 3px;

    margin-bottom: 34px;

    background: WHITE;
}


/* =========================================================
   INDEX
   ========================================================= */

.intro-index {
    position: absolute;

    top: 42px;
    right: 0;

    font-family: 'Jost', sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.035em;

    color: var(--space-gray);
}


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

.intro-title {
    max-width: 700px;

    margin: 55px 0 0;

    font-family: "Parisienne", cursive;

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;

    line-height: 0.88;

    color: white;
}

.intro-title span {
    color: white;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.intro-description {
    max-width: 400px;

    margin: 45px 0 0;

    font-family: 'Jost', sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -0.04em;

    color: white;
}


/* =========================================================
   DATE
   ========================================================= */

.intro-date {
    margin-top: 45px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.intro-date-label {
    font-family: 'Jost', sans-serif;

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

    letter-spacing: 0.02em;

    color: white;
}

.intro-date strong {
    font-family: 'Jost', sans-serif;

    font-size: clamp(32px, 7vw, 46px);
    font-weight: 400;

    line-height: 0.9;
    letter-spacing: -0.05em;

    color: var(--space-gray);
}


/* =========================================================
   REMERCIEMENTS
   ========================================================= */

.intro-thanks {
    max-width: 390px;

    margin: auto 0 0 auto;

    padding-bottom: 5px;

    font-family: 'Jost', sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -0.04em;

    text-align: right;

    color: var(--space-gray);
}


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

.intro-image {
    position: relative;

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

    overflow: hidden;

    background: var(--space-gray);
}

.intro-image img {
    display: block;

    width: 100%;
    height: 100%;

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

    transform: scale(1.01);

    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1239px) and (min-width: 810px) {

    .intro-content {
        padding: 120px 24px;

        gap: 28px;
    }

    .intro-text,
    .intro-image {
        min-height: 580px;
    }

    .intro-title {
        font-size: clamp(38px, 4vw, 58px);
        margin-top: 48px;
    }

    .intro-description {
        margin-top: 38px;

        font-size: 18px;
    }

    .intro-date strong {
        font-size: clamp(32px, 7vw, 46px);
    }

    .intro-thanks {
        font-size: 18px;
    }
}


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

@media (max-width: 809px) {

    .intro-content {
        min-height: auto;

        padding: 80px 16px 80px;

        display: flex;
        flex-direction: column;

        gap: 45px;
    }


    /* TEXTE */

    .intro-text {
        min-height: 570px;
    }


    /* Ligne */

    .intro-line {
        width: 65%;

        height: 3px;

        margin-bottom: 25px;
    }


    /* Index */

    .intro-index {
        top: 30px;
        right: 0;

        font-size: 11px;
    }


    /* Titre */

    .intro-title {
        max-width: 100%;

        margin-top: 45px;

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

        line-height: 0.88;
    }


    /* Description */

    .intro-description {
        max-width: 310px;

        margin-top: 32px;

        font-size: 16px;

        line-height: 1.08;
    }


    /* Date */

    .intro-date {
        margin-top: 35px;
    }

    .intro-date strong {
        font-size: clamp(25px, 7.5vw, 34px);
    }


    /* Remerciements */

    .intro-thanks {
        max-width: 280px;

        margin-top: auto;

        font-size: 16px;

        line-height: 1.08;
    }


    /* IMAGE */

    .intro-image {
        width: 100%;

        height: 70svh;

        min-height: 420px;
        max-height: 600px;
    }
}


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

@media (max-width: 380px) {

    .intro-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .intro-title {
        font-size: 38px;
    }

    .intro-date strong {
        font-size: 36px;
    }

    .intro-image {
        height: 65svh;
        min-height: 380px;
    }
}







/* =========================================================
   SECTION 01
   COMPTE À REBOURS
   ========================================================= */

   .countdown-section {
    position: relative;
    width: 100%;
    padding: 120px 36px 120px;
    background: var(--space-gray);
    color: var(--white);

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

    overflow: hidden;
}

.countdown-content {
    width: 100%;
    max-width: 1400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* ---------------------------------------------------------
   COMPTE À REBOURS
   --------------------------------------------------------- */

.countdown-grid {
    width: 100%;
    max-width: 1100px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 30px;

    white-space: nowrap;
}

.countdown-item {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    white-space: nowrap;
}

.countdown-value {
    display: block;

    font-family: 'Jost', sans-serif;
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -0.07em;

    color: var(--white);

    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.countdown-label {
    display: block;

    margin-top: 18px;

    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;

    color: var(--white);

    white-space: nowrap;
}

/* ---------------------------------------------------------
   PHRASE
   --------------------------------------------------------- */

.countdown-message {
    margin: 65px 0 0;

    max-width: 700px;

    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: var(--white);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1239px) and (min-width: 810px) {

    .countdown-section {
        padding: 120px 24px 120px;
    }

    .countdown-grid {
        max-width: 850px;
        column-gap: 20px;
    }

    .countdown-value {
        font-size: clamp(55px, 7vw, 80px);
    }

    .countdown-message {
        margin-top: 55px;
        font-size: 18px;
    }
}


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

@media (max-width: 809px) {

    .countdown-section {
        padding: 80px 16px 80px;
    }

    .countdown-content {
        width: 100%;
    }

    .countdown-grid {
        width: 100%;
        max-width: 100%;

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

        column-gap: 4px;

        white-space: nowrap;
    }

    .countdown-value {
        font-size: clamp(28px, 10vw, 50px);
        line-height: 0.82;
        letter-spacing: -0.065em;

        white-space: nowrap;
    }

    .countdown-label {
        margin-top: 14px;
        font-size: 14px;
        letter-spacing: 0.02em;
    }

    .countdown-message {
        max-width: 310px;

        margin-top: 55px;

        font-size: 16px;
        line-height: 1.05;
        letter-spacing: -0.04em;
    }
}


/* =========================================================
   PETITS ÉCRANS
   ========================================================= */

@media (max-width: 380px) {

    .countdown-section {
        padding: 80px 16px 80px;
    }

    .countdown-value {
        font-size: 25px;
    }

    .countdown-label {
        margin-top: 11px;
        font-size: 12px;
    }

    .countdown-message {
        max-width: 285px;
        margin-top: 48px;
        font-size: 15px;
    }
}


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

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

    .countdown-value {
        transition: none;
    }
}








/* =========================================================
   SECTION 02
   DÉROULEMENT DE LA JOURNÉE
   ========================================================= */

   .top {
    padding-top:80px;
    background-color: var(--space-gray);
   }


/* ---------------------------------------------------------
   CONTENEUR
--------------------------------------------------------- */

.day-section {
    position: relative;

    width: 100%;

    padding:
        0px
        36px
        80px;

    background: var(--space-gray);

    color: #ffffff;
}


/* ---------------------------------------------------------
   INDICATION DE SECTION
--------------------------------------------------------- */

.day-section-top {
    width: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: flex-end;

    padding-bottom: 12px;
    padding-right: 16px;
}


/* ---------------------------------------------------------
   LABEL
--------------------------------------------------------- */

.day-section-label {
    margin-right: 20px;

    font-family: 'Jost', sans-serif;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: -0.02em;

    text-transform: uppercase;

    color: #ffffff;
}


/* ---------------------------------------------------------
   NUMÉRO
--------------------------------------------------------- */

.day-section-number {
    font-family: 'Jost', sans-serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 1;

    color: white;
}


/* =========================================================
   GRILLE
   ========================================================= */

.day-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 36px;

    align-items: start;
}


/* =========================================================
   COLONNES
   ========================================================= */

.day-column {
    width: 100%;
}

.day-column-left {
    padding-right: 18px;
}

.day-column-right {
    padding-left: 18px;

    padding-top: 235px;
}

/* ---------------------------------------------------------
   LIGNE
--------------------------------------------------------- */

.day-line {
    width: 100%;

    height: 2px;

    margin-bottom: 34px;

    background: var(--burgundy-light);
}





/* =========================================================
   CARTES ÉVÉNEMENTS
   ========================================================= */

.day-card {
    width: 100%;

    padding:
        28px
        0
        35px;

    border-top: 3px solid white;
}


/* ---------------------------------------------------------
   EN-TÊTE CARTE
--------------------------------------------------------- */

.day-card-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 22px;
}


/* ---------------------------------------------------------
   HEURE
--------------------------------------------------------- */

.day-time {
    font-family: 'Jost', sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.02em;

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

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   NUMÉRO
--------------------------------------------------------- */

.day-number {
    font-family: 'Jost', sans-serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 0.9;

    color: white;
}


/* ---------------------------------------------------------
   TITRE ÉVÉNEMENT
--------------------------------------------------------- */

.day-card h3 {
    margin: 0;

    font-family: "Parisienne", cursive;

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

    font-weight: 500;

    line-height: 0.87;

    color: #ffffff;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.day-card p {
    max-width: 570px;

    margin-top: 25px;

    font-family: 'Jost', sans-serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.03em;

    color: rgba(255, 255, 255, 0.9);
}


/* ---------------------------------------------------------
   LIEU
--------------------------------------------------------- */

.day-location {
    display: block;

    margin-top: 25px;

    font-family: 'Jost', sans-serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: -0.02em;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   DÉCALAGE COLONNE DROITE
   ========================================================= */


/* =========================================================
   SOIRÉE DANSANTE
   ========================================================= */

.day-card-evening {
    padding-bottom: 35px;
}


/* ---------------------------------------------------------
   HORAIRES
--------------------------------------------------------- */

.evening-list {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
}


/* ---------------------------------------------------------
   LIGNE HORAIRE
--------------------------------------------------------- */

.evening-row {
    display: flex;

    align-items: baseline;

    gap: 25px;
}


/* ---------------------------------------------------------
   HEURE
--------------------------------------------------------- */

.evening-row strong {
    min-width: 62px;

    font-family: 'Jost', sans-serif;

    font-size: 20px;

    font-weight: 500;

    line-height: 1;

    color: var(--burgundy-light);
}


/* ---------------------------------------------------------
   TEXTE
--------------------------------------------------------- */

.evening-row span {

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.025em;

    color: rgba(255, 255, 255, 0.88);
}


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

.day-image {
    width: 100%;

    overflow: hidden;

    background: #22252a;
}


/* ---------------------------------------------------------
   GRANDE IMAGE
--------------------------------------------------------- */

.day-image-large {

    margin-top: 15px;

    margin-bottom: 40px;
}


/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.day-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.01);

    transition:
        transform 0.7s ease;
}


.day-image:hover img {
    transform: scale(1.04);
}


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

@media (max-width: 1239px) and (min-width: 810px) {

    .day-section {
        padding:
            0px
            24px
            80px;
    }


    .day-column-right {
        padding-top: 180px;
    }


    .day-card h3 {
        font-size: 43px;
    }


    .day-card p {
        font-size: 18px;
    }

}


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

@media (max-width: 809px) {

    .day-section {
        padding:
            0px
            16px
            40px;
    }


    /* -----------------------------------------------------
       EN-TÊTE
    ----------------------------------------------------- */

    .day-section-top {
        padding-bottom: 10px;
    }


    .day-section-label {
        font-size: 9px;

        margin-right: 12px;
    }


    .day-section-number {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       GRILLE
    ----------------------------------------------------- */

    .day-grid {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    /* -----------------------------------------------------
       COLONNES
    ----------------------------------------------------- */

    .day-column-left,
    .day-column-right {
        padding-left: 0;
        padding-right: 0;
    }


    .day-column-right {
        padding-top: 0;
    }


    .day-line {
        height: 1.5px;

        margin-bottom: 25px;
    }

    /* -----------------------------------------------------
       CARTES
    ----------------------------------------------------- */

    .day-card {
        padding:
            24px
            0
            30px;
    }


    .day-card-header {
        margin-bottom: 18px;
    }


    .day-time {
        font-size: 11px;
    }


    .day-number {
        font-size: 19px;
    }


    .day-card h3 {
        font-size: 34px;

        line-height: 0.88;
    }


    .day-card p {
        margin-top: 18px;

        font-size: 16px;

        line-height: 1.1;
    }


    .day-location {
        margin-top: 20px;

        font-size: 16px;
    }


    /* -----------------------------------------------------
       ESPACEMENT ENTRE LES BLOCS
    ----------------------------------------------------- */

    .day-card-offset {
        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       SOIRÉE
    ----------------------------------------------------- */

    .evening-list {
        margin-top: 23px;

        gap: 12px;
    }


    .evening-row {
        gap: 16px;
    }


    .evening-row strong {
        min-width: 52px;

        font-size: 17px;
    }


    .evening-row span {
        font-size: 16px;
    }


    /* -----------------------------------------------------
       IMAGE
    ----------------------------------------------------- */

    .day-image-large {

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

}


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

@media (max-width: 380px) {

    .day-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .day-card h3 {
        font-size: 30px;
    }


    .day-card p {
        font-size: 16px;
    }

}










/* =========================================================
   SECTION 03
   PHOTOS — SCROLL HORIZONTAL
   ========================================================= */

   .photos-section {
    position: relative;
    width: 100%;
    background: var(--space-gray);
    color: var(--white);
}

.photos-section-top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px 36px 12px;
}

.photos-header {
    position: relative;
    z-index: 10;
    padding: 0px 36px 70px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    column-gap: 80px;
    align-items: start;
}

.photos-title-wrap {
    position: relative;
    max-width: 900px;
}

.photos-line {
    display: block;
    width: 38%;
    height: 1.5px;
    margin-bottom: 25px;
    background: var(--burgundy-light);
}

.photos-title {
    margin: 0;
    font-family: "Parisienne", cursive;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 0.87;
    color: var(--white);
}

.photos-title span {
    color: white;
}

.photos-intro {
    max-width: 320px;
    margin: 18px 0 0 auto;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-align: right;
    color: rgba(255,255,255,0.88);
}

/* =========================================================
   ZONE DE DÉFILEMENT
   La hauteur reste équivalente à plusieurs écrans :
   le scroll vertical sert uniquement à parcourir les images
   horizontalement.
   ========================================================= */

.photos-scroll {
    position: relative;
    width: 100%;
    height: 300vh;
}

.photos-track {
    position: sticky;
    top: 0;
    left: 0;
    width: max-content;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

/* =========================================================
   CHAQUE PHOTO
   Même taille qu'avant : 100vw x 100vh pour la zone,
   et le .photo-card conserve exactement ses dimensions.
   ========================================================= */

.photo-slide {
    position: relative;
    flex: 0 0 100vw;
    width: 100vw;
    height: 100vh;
    min-height: 650px;
}

.photo-slide:nth-child(1) { z-index: 1; }
.photo-slide:nth-child(2) { z-index: 2; }
.photo-slide:nth-child(3) { z-index: 3; }
.photo-slide:nth-child(4) { z-index: 4; }

.photo-sticky {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #24272b;
}

.photo-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(25,27,29,0.34);
}

.photo-background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(16px);
    transform: scale(1.12);
    opacity: 0.72;
}

.photo-card {
    position: relative;
    z-index: 2;
    width: min(68vw, 900px);
    height: 80%;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 25px 70px rgba(0,0,0,0.22);
}

.photo-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover > img {
    transform: scale(1.035);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.22) 0%,
        rgba(0,0,0,0) 28%,
        rgba(0,0,0,0) 68%,
        rgba(0,0,0,0.28) 100%
    );
}

.photo-info {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.photo-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.photo-event {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
}

.photo-place {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    color: rgba(255,255,255,0.78);
}

.photo-number {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

.gradient-bottom {
    width: 100%;
    display: block;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 55%,
        rgba(0, 0, 0, 0.7) 70%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 55%,
        rgba(0, 0, 0, 0.7) 70%,
        transparent 100%
    );
}

.photo-date {
    position: absolute;
    z-index: 20;
    width: min(76vw, 1050px);
    left: 50%;

    /* Le .photo-card fait 80% de la hauteur et est centré.
       Son bas est donc à 90% de la hauteur du viewport.
       Le verset est placé juste en dessous, dans la zone floue. */
    top: calc(50% + 40% + 22px);

    transform: translate(-50%, -50%);
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
    text-align: center;
    pointer-events: none;
}

@media (max-width: 1239px) and (min-width: 810px) {
    .photos-section-top {
        padding: 0px 24px 12px;
    }

    .photos-header {
        padding: 0px 24px 50px;
        column-gap: 45px;
    }

    .photos-title {
        font-size: clamp(38px, 4vw, 58px);
    }

    .photos-intro {
        font-size: 18px;
    }

    .photos-track {
        min-height: 580px;
    }

    .photo-slide {
        height: 100vh;
        min-height: 580px;
    }

    .photo-card {
        width: 72vw;
        height: 80%;
    }
}

@media (max-width: 809px) {
    .photos-section-top {
        padding: 0px 20px 10px;
    }

    .photos-header {
        display: block;
        padding: 0px 16px 50px;
        min-height: auto;
    }

    .photos-line {
        width: 65%;
        height: 1px;
        margin-bottom: 20px;
    }

    .photos-title {
        font-size: clamp(38px, 4vw, 58px);
        line-height: 0.88;
    }

    .photos-intro {
        max-width: 275px;
        margin: 27px 0 0;
        font-size: 16px;
        line-height: 1.08;
        text-align: left;
    }

    .photos-scroll {
        height: 300svh;
    }

    .photos-track {
        height: 100svh;
        min-height: 520px;
    }

    .photo-slide {
        width: 100vw;
        flex-basis: 100vw;
        height: 100svh;
        min-height: 520px;
    }

    .photo-sticky {
        height: 100svh;
        min-height: 520px;
        padding: 0 16px;
    }

    .photo-background img {
        filter: blur(12px);
        transform: scale(1.1);
    }

    .photo-card {
        width: 100%;
        height: 62svh;
        min-height: 340px;
        max-height: 500px;
    }

    .photo-info {
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .photo-event {
        font-size: 14px;
    }

    .photo-place {
        font-size: 9px;
    }

    .photo-number {
        font-size: 11px;
    }

    .photo-date {
        width: min(88vw, 620px);
        left: 50%;

        /* Sur mobile, la photo fait 62svh et reste centrée.
           On place donc le texte juste sous son bord inférieur. */
        top: calc(50% + 31svh + 14px);

        transform: translate(-50%, -50%);
        font-size: clamp(16px, 4.2vw, 18px);
        line-height: 1.18;
    }
}

@media (max-width: 380px) {
    .photos-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .photos-title {
        font-size: 38px;
    }
}



/* Verset unique : reste fixe pendant tout le défilement horizontal */
.photo-date-fixed {
    position: sticky;
    z-index: 20;
    top: calc(100vh - 72px);
    width: min(68vw, 900px);
    height: 0;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
    text-align: center;
    pointer-events: none;
}

@media (max-width: 809px) {
    .photo-date-fixed {
        width: calc(100% - 32px);
        top: calc(100svh - 64px);
        font-size: 20px;
        line-height: 1.08;
    }
}


/* =========================================================
   GALERIE — VERSION FINALE
   Le texte reste attaché à la zone visible de la galerie,
   pas au track horizontal. Il reste donc fixe à l'écran
   pendant que les images se déplacent derrière lui.
   ========================================================= */

.photos-scroll {
    position: relative;
    width: 100%;
    height: 300vh;
}

.photos-viewport {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    position: -webkit-sticky;
}

.photos-track {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    height: 100%;
    min-height: 650px;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.photo-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    min-height: 650px;
}

.photo-sticky {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Le verset est positionné par rapport à la zone visible,
   donc il ne suit jamais le déplacement horizontal du track. */
.photo-date {
    position: absolute;
    z-index: 30;
    left: 50%;
    top: 95%;
    width: min(76vw, 1050px);
    margin: 0;
    transform: translate(-50%, -50%);
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--white);
    text-align: center;
    pointer-events: none;
}

@media (max-width: 809px) {
    .photos-viewport {
        height: 100svh;
        min-height: 520px;
    }

    .photos-track {
        height: 100svh;
        min-height: 520px;
    }

    .photo-slide {
        height: 100svh;
        min-height: 520px;
    }

    .photo-date {
        left: 50%;
        top: 95%;
        width: min(88vw, 620px);
        margin: 0;
        transform: translate(-50%, -50%);
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.18;
        text-align: center;
        text-wrap: balance;
    }
}


/* =========================================================
   GALERIE — AJUSTEMENTS V5
   ========================================================= */

/* Image principale légèrement réduite sur PC */
.photo-card {
    width: min(62vw, 820px);
    height: 74%;
}

/* Verset */
.photo-date {
    width: min(78vw, 1120px);
    font-size: 25px;
    line-height: 1.08;
    text-align: center;
}

/* Surlignage rouge utilisable à l'intérieur du verset.
   On garde la classe hero-highlight, mais on la transforme
   en élément inline pour pouvoir l'appliquer à quelques mots. */
.photo-date .hero-highlight {
    display: inline;
    width: auto;
    margin: 0 0.04em;
    padding: 0.04em 0.14em 0.06em;
    background: var(--burgundy);
    color: #ffffff;
    line-height: 1.08;
    vertical-align: baseline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

@media (max-width: 1239px) and (min-width: 810px) {
    .photo-card {
        width: min(66vw, 780px);
        height: 74%;
    }

    .photo-date {
        width: min(82vw, 980px);
        font-size: 25px;
    }
}

@media (max-width: 809px) {
    .photo-card {
        width: 92%;
        height: 58svh;
        min-height: 320px;
        max-height: 460px;
    }

    .photo-date {
        width: 88vw;
        font-size: clamp(16px, 4.2vw, 19px);
        line-height: 1.18;
    }

    .photo-date .hero-highlight {
        padding: 0.04em 0.12em 0.06em;
    }
}

@media (max-width: 380px) {
    .photo-card {
        height: 55svh;
        min-height: 300px;
    }
}

/* =========================================================
   GALERIE — AJUSTEMENTS V6
   Image plus compacte + cadrage prioritaire sur le haut
   ========================================================= */

.photo-card {
    width: min(60vw, 820px);
    height: 68%;
}

.photo-card > img {
}

.photo-date {
    top: 92%;
    font-size: 25px;
}

@media (max-width: 1239px) and (min-width: 810px) {
    .photo-card {
        width: min(64vw, 780px);
        height: 68%;
    }

    .photo-date {
        top: 91.5%;
        font-size: 23px;
    }
}

@media (max-width: 809px) {
    .photo-card {
        width: 86%;
        height: 54svh;
        min-height: 300px;
        max-height: 430px;
    }

    .photo-card > img {
        }

    .photo-date {
        top: 87.5%;
        width: 88vw;
        font-size: clamp(16px, 4.2vw, 19px);
        line-height: 1.18;
    }
}

@media (max-width: 380px) {
    .photo-card {
        height: 52svh;
        min-height: 285px;
    }

    .photo-date {
        top: 88%;
    }
}

.photo-img-1 {
    object-position: center 55%;
}

.photo-img-2 {
    object-position: center 30%;
}

.photo-img-3 {
    object-position: center 40%;
}














/* =========================================================
   SECTION 04
   HÉBERGEMENTS
   ========================================================= */

   .accommodation-section {
    position: relative;

    padding: 120px 36px 0;

    width: 100%;

    background: var(--space-gray);
    color: var(--white);

    overflow: hidden;
}


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

.accommodation-header {
    position: relative;
    z-index: 10;

    width: 100%;

    padding: 0 0 70px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(280px, 0.6fr);

    column-gap: 80px;

    align-items: start;
}

.accommodation-title-wrap {
    position: relative;

    max-width: 900px;
}


/* ---------------------------------------------------------
   Ligne décorative
   --------------------------------------------------------- */

.accommodation-line {
    display: block;

    width: 38%;
    height: 1.5px;

    margin-bottom: 25px;

    background: var(--burgundy-light);
}


/* ---------------------------------------------------------
   Titre
   --------------------------------------------------------- */

.accommodation-title {
    margin: 0;

    font-family: "Parisienne", cursive;

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;

    line-height: 0.87;

    color: var(--white);
}

.accommodation-title span {
    color: var(--white);
}


/* ---------------------------------------------------------
   Texte d'introduction
   --------------------------------------------------------- */

.accommodation-intro {
    max-width: 320px;

    margin: 18px 0 0 auto;

    font-family: 'Jost', sans-serif;

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

    line-height: 1.05;
    letter-spacing: -0.035em;

    text-align: right;

    color: rgba(255, 255, 255, 0.88);
}


/* ---------------------------------------------------------
   Index de section
   --------------------------------------------------------- */

.accommodation-index {
    position: absolute;

    top: 35px;
    right: 36px;

    font-family: 'Jost', sans-serif;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: -0.035em;

    color: var(--white);
}


/* =========================================================
   GRILLE DES HÉBERGEMENTS
   ========================================================= */

.accommodation-grid {
    position: relative;

    width: 100%;

    padding: 0 0 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


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

.accommodation-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #24272b;

    color: var(--white);
}


/* ---------------------------------------------------------
   HAUTEUR DES CARTES
   --------------------------------------------------------- */

.accommodation-card-large {
    height: 580px;
}

.accommodation-card-small {
    height: 580px;
}


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

.accommodation-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.accommodation-image img {
    display: block;

    width: 100%;
    height: 100%;

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

    transform: scale(1.01);

    transition:
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.accommodation-card:hover
.accommodation-image img {
    transform: scale(1.035);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.accommodation-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.02) 38%,
            rgba(0, 0, 0, 0.62) 100%
        );
}


/* =========================================================
   NUMÉRO
   ========================================================= */

.accommodation-number {
    position: absolute;

    z-index: 3;

    top: 22px;
    right: 22px;

    font-family: 'Jost', sans-serif;

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

    line-height: 1;

    letter-spacing: -0.04em;

    color: var(--white);
}


/* =========================================================
   CONTENU DES CARTES
   ========================================================= */

.accommodation-content {
    position: absolute;

    z-index: 3;

    left: 22px;
    right: 22px;
    bottom: 25px;
}


/* ---------------------------------------------------------
   NOM DE L'HÔTEL
   --------------------------------------------------------- */

.accommodation-content h3 {
    margin: 0 0 12px;

    font-family: 'Jost', sans-serif;

    font-size: clamp(32px, 7vw, 46px);
    font-weight: 400;

    line-height: 0.9;
    letter-spacing: -0.05em;

    color: var(--white);
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.accommodation-content p {
    max-width: 520px;

    margin: 0 0 15px;

    font-family: 'Jost', sans-serif;

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

    line-height: 1.05;
    letter-spacing: -0.025em;

    color: rgba(255, 255, 255, 0.94);
}


/* ---------------------------------------------------------
   DISTANCE
   --------------------------------------------------------- */

.accommodation-distance {
    display: block;

    font-family: 'Jost', sans-serif;

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

    line-height: 1;

    letter-spacing: -0.025em;

    color: rgba(255, 255, 255, 0.72);
}


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

@media (max-width: 1239px) and (min-width: 810px) {

    .accommodation-section {
        padding: 120px 24px 0;
    }


    .accommodation-header {
        padding: 0 0 50px;

        column-gap: 45px;
    }


    .accommodation-title {
        font-size:
            clamp(38px, 4vw, 58px);
    }


    .accommodation-intro {
        font-size: 18px;
    }


    .accommodation-index {
        right: 24px;
    }


    .accommodation-grid {
        gap: 12px;
    }


    .accommodation-card-large,
    .accommodation-card-small {
        height: 470px;
    }


    .accommodation-content h3 {
        font-size:
            clamp(28px, 8vw, 40px);
    }


    .accommodation-content p {
        font-size: 18px;
    }
}


/* =========================================================
   MOBILE — CARROUSSEL
   ========================================================= */

@media (max-width: 809px) {

    .accommodation-section {
        width: 100%;

        padding: 80px 0 0;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       EN-TÊTE
       ----------------------------------------------------- */

    .accommodation-header {
        display: block;

        min-height: auto;

        padding: 0 16px 45px;
    }


    /* -----------------------------------------------------
       LIGNE
       ----------------------------------------------------- */

    .accommodation-line {
        width: 65%;

        height: 1px;

        margin-bottom: 20px;
    }


    /* -----------------------------------------------------
       TITRE
       ----------------------------------------------------- */

    .accommodation-title {
        font-size: 38px;

        line-height: 0.88;
    }


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

    .accommodation-intro {
        max-width: 275px;

        margin: 27px 0 0;

        font-size: 16px;

        line-height: 1.08;

        text-align: left;
    }


    /* -----------------------------------------------------
       INDEX
       ----------------------------------------------------- */

    .accommodation-index {
        top: 30px;
        right: 16px;

        font-size: 12px;
    }


    /* =====================================================
       CARROUSSEL
       ===================================================== */

    .accommodation-grid {
        position: relative;

        width: 100%;

        display: flex;

        gap: 12px;

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

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

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


    /* Cache scrollbar Chrome / Safari */

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


    /* -----------------------------------------------------
       CARTES DU CARROUSSEL
       ----------------------------------------------------- */

    .accommodation-card-large,
    .accommodation-card-small {
        flex:
            0 0 calc(88vw - 16px);

        width:
            calc(88vw - 16px);

        height: 520px;

        scroll-snap-align: start;

        scroll-snap-stop: always;
    }


    /* -----------------------------------------------------
       NUMÉRO
       ----------------------------------------------------- */

    .accommodation-number {
        top: 17px;
        right: 17px;

        font-size: 17px;
    }


    /* -----------------------------------------------------
       CONTENU
       ----------------------------------------------------- */

    .accommodation-content {
        left: 17px;
        right: 17px;
        bottom: 20px;
    }


    .accommodation-content h3 {
        margin-bottom: 10px;

        font-size:
            clamp(28px, 8vw, 36px);

        line-height: 0.9;
    }


    .accommodation-content p {
        max-width: 300px;

        font-size: 16px;

        line-height: 1.05;
    }


    .accommodation-distance {
        font-size: 14px;
    }
}


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

@media (max-width: 380px) {

    .accommodation-section {
        padding-top: 70px;
    }


    .accommodation-title {
        font-size: 36px;
    }


    .accommodation-header {
        padding-bottom: 38px;
    }


    .accommodation-card-large,
    .accommodation-card-small {

        flex:
            0 0 calc(88vw - 16px);

        width:
            calc(88vw - 16px);

        height: 470px;
    }


    .accommodation-content h3 {
        font-size: 29px;
    }


    .accommodation-content p {
        font-size: 15px;
    }
}
















/* =========================================================
   RSVP — CSS COMPLET
   Version responsive stable
   ========================================================= */


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

   .rsvp-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--space-gray);
}


/* =========================================================
   SLIDE
   ========================================================= */

.rsvp-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;

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

    padding: 30px 20px;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE DE FOND
   ========================================================= */

.rsvp-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 0;
}

.rsvp-background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.06);

    filter:
        blur(7px)
        brightness(.68)
        saturate(.72);
}


/* =========================================================
   PANNEAU
   ========================================================= */

.rsvp-panel {
    position: relative;
    z-index: 2;

    width: min(1400px, 100%);

    min-height: calc(100vh - 60px);

    padding: 28px 65px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    color: var(--white);

    background:
        rgba(35, 35, 35, .24);

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

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, .15);
}


/* =========================================================
   HEADER
   ========================================================= */

.rsvp-top {
    flex-shrink: 0;

    width: 100%;

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

    padding-bottom: 12px;

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

.rsvp-label,
.rsvp-number {
    font-family: 'Jost', sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: .04em;
}

.rsvp-number {
    opacity: .7;
}


/* =========================================================
   CENTRE
   ========================================================= */

.rsvp-center {
    width: min(900px, 100%);

    margin: 0 auto;

    flex: 1;

    box-sizing: border-box;
}


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

.rsvp-title {
    margin: 0;

    padding-top: 34px;

    font-family: "Parisienne", cursive;

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

    font-weight: 500;

    line-height: .84;

    text-align: center;

    color: var(--white);
}

.rsvp-title span {
    display: block;

    width: fit-content;

    margin: 8px auto 0;

    padding: 5px 16px 7px;

    background: var(--burgundy);

    color: var(--white);
}


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

.rsvp-form {
    width: 100%;

    margin-top: 27px;

    box-sizing: border-box;
}


/* =========================================================
   CHAMPS
   ========================================================= */

.rsvp-fields {
    width: 100%;

    display: grid;

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

    column-gap: 30px;
    row-gap: 15px;

    margin: 0 0 20px;
}

.rsvp-field {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.rsvp-field-full {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
   ========================================================= */

.rsvp-field label {
    display: block;

    margin: 0 0 7px;

    font-family: 'Jost', sans-serif;

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

    line-height: 1.2;

    color: var(--white);
}


/* =========================================================
   INPUTS + SELECT
   ========================================================= */

.rsvp-field input,
.rsvp-field select {
    display: block;

    width: 100%;
    height: 35px;

    padding: 0 0 6px;

    box-sizing: border-box;

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

    border-radius: 0;

    outline: none;

    background: transparent;

    color: var(--white);

    font-family: 'Jost', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1;

    transition:
        border-color .2s ease;
}

.rsvp-field input::placeholder {
    color: rgba(255, 255, 255, .52);
}

.rsvp-field input:focus,
.rsvp-field select:focus {
    border-bottom-color: rgba(255, 255, 255, .95);
}


/* =========================================================
   SELECT
   ========================================================= */

.rsvp-field select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.rsvp-field select option {
    background: #333;
    color: #fff;
}


/* =========================================================
   QUESTIONS
   ========================================================= */

.rsvp-choice {
    width: 100%;
}

.rsvp-choice-title {
    margin: 0 0 7px;

    font-family: 'Jost', sans-serif;

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

    line-height: 1.25;

    color: var(--white);
}


/* =========================================================
   QUESTION ENFANTS
   ========================================================= */

.rsvp-children-choice {
    margin-top: 18px;
}


/* =========================================================
   LISTE OPTIONS
   ========================================================= */

.rsvp-options {
    width: 100%;

    display: flex;
    flex-direction: column;

    border-top:
        1px solid rgba(255, 255, 255, .27);
}


/* =========================================================
   OPTION
   ========================================================= */

.rsvp-option {
    position: relative;

    width: 100%;

    min-height: 38px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 5px 0;

    box-sizing: border-box;

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

    cursor: pointer;

    transition: opacity .2s ease;
}

.rsvp-option:hover {
    opacity: .78;
}


/* =========================================================
   INPUT NATIF CACHÉ
   ========================================================= */

.rsvp-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   CASE / RADIO
   ========================================================= */

.rsvp-control {
    position: relative;

    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    box-sizing: border-box;

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

    background: transparent;
}


/* =========================================================
   CHECKBOX
   ========================================================= */

.rsvp-control-checkbox {
    border-radius: 0;
}

.rsvp-control-checkbox::after {
    content: "✓";

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%)
        scale(.5);

    opacity: 0;

    color: #fff;

    font-family: 'Jost', sans-serif;

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

    transition:
        opacity .18s ease,
        transform .18s ease;
}

.rsvp-option input[type="checkbox"]:checked
+ .rsvp-control-checkbox {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.rsvp-option input[type="checkbox"]:checked
+ .rsvp-control-checkbox::after {
    opacity: 1;

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


/* =========================================================
   RADIO
   ========================================================= */

.rsvp-control-radio {
    border-radius: 50%;
}

.rsvp-control-radio::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #fff;

    transform:
        translate(-50%, -50%)
        scale(.3);

    opacity: 0;

    transition:
        opacity .18s ease,
        transform .18s ease;
}

.rsvp-option input[type="radio"]:checked
+ .rsvp-control-radio {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.rsvp-option input[type="radio"]:checked
+ .rsvp-control-radio::after {
    opacity: 1;

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


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

.rsvp-option-text {
    min-width: 0;

    font-family: 'Jost', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -.02em;

    color: var(--white);
}


/* =========================================================
   BOUTON
   ========================================================= */

.rsvp-submit {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 18px;
}

.rsvp-button {
    display: inline-flex;

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

    gap: 12px;

    min-height: 45px;

    padding: 0 25px;

    border: 0;
    border-radius: 0;

    background: var(--white);

    color: var(--space-gray);

    font-family: 'Jost', sans-serif;

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

    line-height: 1;

    cursor: pointer;

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

.rsvp-button-arrow {
    font-size: 22px;
    line-height: 1;
}

.rsvp-button:hover {
    background: var(--burgundy);
    color: var(--white);

    transform: translateY(-2px);
}

.rsvp-button:disabled {
    opacity: .65;
    cursor: default;

    transform: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.rsvp-bottom {
    flex-shrink: 0;

    margin-top: 15px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

    font-family: 'Jost', sans-serif;

    font-size: 9px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: .08em;

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

.rsvp-bottom-line {
    display: block;

    width: 40px;
    height: 1px;

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


/* =========================================================
   ÉCRANS DESKTOP BAS
   ========================================================= */

@media (min-width: 810px) and (max-height: 820px) {

    .rsvp-slide {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .rsvp-panel {
        min-height: calc(100vh - 40px);

        padding:
            22px 50px;
    }

    .rsvp-title {
        padding-top: 22px;

        font-size: 52px;
    }

    .rsvp-form {
        margin-top: 19px;
    }

    .rsvp-fields {
        row-gap: 10px;

        margin-bottom: 14px;
    }

    .rsvp-field label {
        font-size: 14px;
    }

    .rsvp-field input,
    .rsvp-field select {
        height: 30px;

        font-size: 13px;
    }

    .rsvp-choice-title {
        font-size: 13px;
    }

    .rsvp-option {
        min-height: 31px;

        padding: 3px 0;
    }

    .rsvp-control {
        width: 18px;
        height: 18px;
    }

    .rsvp-option-text {
        font-size: 13px;
    }

    .rsvp-children-choice {
        margin-top: 11px;
    }

    .rsvp-submit {
        margin-top: 10px;
    }

    .rsvp-button {
        min-height: 39px;

        padding: 0 20px;
    }

    .rsvp-bottom {
        margin-top: 9px;
    }
}


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

@media (max-width: 809px) {

    .rsvp-section {
        overflow: hidden;
    }

    .rsvp-slide {
        min-height: 100vh;

        height: auto;

        display: block;

        padding:
            15px 12px;
    }


    /* ---------------------------------------------------------
       BACKGROUND
       --------------------------------------------------------- */

    .rsvp-background {
        position: absolute;

        inset: 0;

        height: 100%;
    }

    .rsvp-background img {
        transform: scale(1.08);
    }


    /* ---------------------------------------------------------
       PANEL
       --------------------------------------------------------- */

    .rsvp-panel {
        width: 100%;

        min-height: 0;
        height: auto;

        padding:
            20px 20px 24px;

        box-sizing: border-box;
    }


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

    .rsvp-top {
        padding-bottom: 10px;
    }

    .rsvp-label,
    .rsvp-number {
        font-size: 10px;
    }


    /* ---------------------------------------------------------
       CENTRE
       --------------------------------------------------------- */

    .rsvp-center {
        width: 100%;

        margin: 0;

        flex: none;
    }


    /* ---------------------------------------------------------
       TITRE
       --------------------------------------------------------- */

    .rsvp-title {
        padding-top: 24px;

        font-size:
            clamp(40px, 10vw, 55px);

        line-height: .86;
    }

    .rsvp-title span {
        margin-top: 6px;

        padding:
            4px 12px 6px;
    }


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

    .rsvp-form {
        margin-top: 23px;
    }


    /* ---------------------------------------------------------
       CHAMPS
       --------------------------------------------------------- */

    .rsvp-fields {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 18px;
    }

    .rsvp-field-full {
        grid-column: auto;
    }

    .rsvp-field label {
        margin-bottom: 7px;

        font-size: 14px;
    }

    .rsvp-field input,
    .rsvp-field select {
        height: 32px;

        padding-bottom: 5px;

        font-size: 14px;
    }


    /* ---------------------------------------------------------
       QUESTIONS
       --------------------------------------------------------- */

    .rsvp-choice-title {
        margin-bottom: 6px;

        font-size: 13px;

        line-height: 1.3;
    }

    .rsvp-children-choice {
        margin-top: 17px;
    }


    /* ---------------------------------------------------------
       OPTIONS
       --------------------------------------------------------- */

    .rsvp-option {
        min-height: 39px;

        padding: 6px 0;

        gap: 11px;
    }

    .rsvp-control {
        width: 19px;
        height: 19px;
    }

    .rsvp-option-text {
        font-size: 13px;

        line-height: 1.25;
    }


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

    .rsvp-submit {
        margin-top: 17px;
    }

    .rsvp-button {
        width: 100%;

        min-height: 45px;

        padding:
            0 15px;

        font-size: 11px;
    }


    /* ---------------------------------------------------------
       FOOTER
       --------------------------------------------------------- */

    .rsvp-bottom {
        margin-top: 18px;

        font-size: 8px;

        line-height: 1.2;

        gap: 7px;
    }

    .rsvp-bottom-line {
        width: 32px;
    }
}


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

@media (max-width: 480px) {

    .rsvp-slide {
        padding:
            10px 8px;
    }

    .rsvp-panel {
        padding:
            17px 14px 20px;
    }


    /* HEADER */

    .rsvp-top {
        padding-bottom: 9px;
    }

    .rsvp-label,
    .rsvp-number {
        font-size: 9px;
    }


    /* TITRE */

    .rsvp-title {
        padding-top: 21px;

        font-size:
            clamp(36px, 11vw, 47px);
    }

    .rsvp-title span {
        margin-top: 5px;

        padding:
            3px 10px 5px;
    }


    /* FORM */

    .rsvp-form {
        margin-top: 20px;
    }


    /* CHAMPS */

    .rsvp-fields {
        gap: 11px;

        margin-bottom: 17px;
    }

    .rsvp-field label {
        font-size: 14px;
    }

    .rsvp-field input,
    .rsvp-field select {
        height: 30px;

        font-size: 13px;
    }


    /* QUESTIONS */

    .rsvp-choice-title {
        font-size: 12px;
    }

    .rsvp-children-choice {
        margin-top: 15px;
    }


    /* OPTIONS */

    .rsvp-option {
        min-height: 37px;

        gap: 9px;

        padding: 5px 0;
    }

    .rsvp-control {
        width: 18px;
        height: 18px;
    }

    .rsvp-option-text {
        font-size: 12px;
    }


    /* BUTTON */

    .rsvp-submit {
        margin-top: 15px;
    }

    .rsvp-button {
        min-height: 43px;

        font-size: 10px;
    }

    .rsvp-button-arrow {
        font-size: 19px;
    }


    /* FOOTER */

    .rsvp-bottom {
        margin-top: 15px;

        font-size: 7px;
    }
}


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

@media (max-width: 360px) {

    .rsvp-slide {
        padding:
            8px 6px;
    }

    .rsvp-panel {
        padding:
            15px 12px 18px;
    }

    .rsvp-title {
        padding-top: 19px;

        font-size: 34px;
    }

    .rsvp-form {
        margin-top: 18px;
    }

    .rsvp-fields {
        gap: 10px;

        margin-bottom: 15px;
    }

    .rsvp-field input,
    .rsvp-field select {
        height: 28px;

        font-size: 12px;
    }

    .rsvp-option {
        min-height: 35px;
    }

    .rsvp-option-text {
        font-size: 11px;
    }

    .rsvp-control {
        width: 17px;
        height: 17px;
    }

    .rsvp-button {
        min-height: 41px;
    }
}

/* =========================================================
   MESSAGE DE CONFIRMATION
   ========================================================= */

   .rsvp-success {
    display: none;

    width: 100%;

    margin: 10px 0 0;

    text-align: center;

    font-family: 'Jost', sans-serif;

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

    line-height: 1.4;

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

.rsvp-success.is-visible {
    display: block;
}

.rsvp-success.is-error {
    color: #ffb5b5;
}


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

@media (max-width: 480px) {

    .rsvp-success {
        margin-top: 9px;

        font-size: 10px;
    }

}


/* =========================================================
   ZONE BOUTON
   ========================================================= */

.rsvp-submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   BOUTON PENDANT L'ENVOI
   ========================================================= */

.rsvp-button.is-loading {
    opacity: 0.65;
    cursor: wait;
}


/* =========================================================
   MESSAGE DE VALIDATION
   ========================================================= */

.rsvp-success {
    display: none;

    margin: 12px 0 0;

    width: 100%;

    text-align: center;

    font-family: 'Jost', sans-serif;

    font-size: 11px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.9);
}


.rsvp-success.is-visible {
    display: block;
}


.rsvp-success.is-error {
    color: #ffb5b5;
}


/* =========================================================
   CHAMP MESSAGE
   ========================================================= */

.rsvp-message-field {
    margin-top:18px;
    width: 100%;
}


.rsvp-message-field textarea {
    width: 100%;

    height: 60px;

    resize: vertical;

    box-sizing: border-box;

    font-family: inherit;

    color: inherit;

    background: transparent;

    border: 0;

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

    outline: none;

    padding: 12px 0;

    font-size: 16px;
}


.rsvp-message-field textarea::placeholder {
    color: rgba(255,255,255,0.45);
}


.rsvp-message-field textarea:focus {
    border-bottom-color:
        rgba(255,255,255,0.8);
}

















/* =========================================================
   SECTION 07 — FAQ
   ========================================================= */

   .faq-section {
    position: relative;
    width: 100%;

    background: var(--space-gray);
    color: var(--white);

    padding: 120px 36px;
    padding-bottom:70px;

    overflow: hidden;
}


/* --- Contenu --- */

.faq-content {
    width: 100%;
    margin: 0 auto;
}


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

.faq-top {
    width: 100%;

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

    padding-bottom: 18px;

    border-bottom: 2px solid rgba(255, 255, 255, .9);
}

.faq-label,
.faq-number {
    font-size: 11px;
    letter-spacing: .08em;
}

.faq-number {
    opacity: .6;
}


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

.faq-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-top: 70px;
    margin-bottom: 90px;
}


.faq-title {
    font-family: "Parisienne", cursive;
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: .8;

    font-weight: 500;
}

.faq-title span {
    display: inline-block;

    margin-top: 8px;
    padding: 4px 14px 8px;

    background: var(--burgundy);
    color: var(--white);
}


.faq-intro {
    width: 300px;

    margin: 0 4vw 5px 0;

    font-size: 18px;
    line-height: 1.1;

    color: rgba(255, 255, 255, 0.856);
}


/* =========================================================
   LISTE FAQ
   ========================================================= */

.faq-list {
    width: 100%;
}


/* --- Question --- */

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, .35);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}


/* --- Ligne cliquable --- */

.faq-item summary {
    min-height: 105px;

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

    gap: 30px;

    cursor: pointer;

    list-style: none;

    font-size: 18px;
    line-height: .95;
    letter-spacing: -.035em;

    transition: color .3s ease;
}


/* Supprime le triangle natif */

.faq-item summary::-webkit-details-marker {
    display: none;
}


/* --- Icône --- */

.faq-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

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

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

    font-size: 25px;
    font-weight: 300;

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


/* --- Hover --- */

.faq-item summary:hover {
    color: var(--burgundy-light);
}

.faq-item summary:hover .faq-icon {
    border-color: var(--burgundy-light);
}


/* --- Ouvert --- */

.faq-item[open] summary {
    color: var(--burgundy-light);
}

.faq-item[open] .faq-icon {
    background: var(--burgundy);
    border-color: var(--burgundy);

    color: var(--white);

    transform: rotate(45deg);
}


/* =========================================================
   RÉPONSE
   ========================================================= */

.faq-answer {
    max-width: 700px;

    padding: 0 80px 35px 0;

    color: rgb(255, 255, 255);

    font-size: 18px;
    line-height: 1.2;
}

.faq-answer p {
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.faq-footer {
    margin: 65px 0 0;

    font-size: 10px;
    letter-spacing: .1em;

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


/* =========================================================
   FAQ — MOBILE
   ========================================================= */

@media (max-width: 809px) {

    .faq-section {
        padding: 80px 16px 40px;
    }


    /* --- En-tête --- */

    .faq-top {
        padding-bottom: 14px;
    }

    .faq-label,
    .faq-number {
        font-size: 10px;
    }


    /* --- Titre --- */

    .faq-heading {
        display: block;

        margin-top: 45px;
        margin-bottom: 55px;
    }

    .faq-title {
        font-size: clamp(25px, 7.5vw, 34px);
        line-height: .84;
    }

    .faq-title span {
        margin-top: 6px;
        padding: 3px 9px 6px;
    }


    /* --- Introduction --- */

    .faq-intro {
        width: 100%;
        max-width: 300px;

        margin: 30px 0 0;

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


    /* --- Questions --- */

    .faq-item summary {
        min-height: 78px;

        gap: 15px;

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


    /* --- Icône --- */

    .faq-icon {
        width: 32px;
        height: 32px;

        font-size: 20px;
    }


    /* --- Réponse --- */

    .faq-answer {
        padding: 0 35px 25px 0;

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


    /* --- Footer --- */

    .faq-footer {
        margin-top: 45px;

        font-size: 9px;
    }
}









/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    background: var(--burgundy);
    color: var(--white);

    padding: 70px 36px 30px;

    overflow: hidden;
}


/* =========================================================
   CONTENU GÉNÉRAL
   ========================================================= */

.footer-content {
    width: 100%;

    display: grid;

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

    column-gap: 80px;
    row-gap: 70px;

    margin: 0 auto;
}


/* =========================================================
   PARTIE PRINCIPALE
   ========================================================= */

.footer-main {
    max-width: 620px;
}


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

.footer-title {
    margin: 0;

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

    line-height: .85;

    letter-spacing: -.055em;

    font-weight: 500;
}


.footer-title span {
    color: rgba(255, 255, 255, .65);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.footer-description {
    max-width: 560px;

    margin: 30px 0 0;

    font-size: 16px;

    line-height: 1.1;

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


/* =========================================================
   BOUTON RSVP
   ========================================================= */

.footer-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;

    padding: 14px 20px;

    background: var(--white);

    color: var(--burgundy);

    text-decoration: none;

    font-size: 13px;

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


.footer-button span {
    font-size: 22px;

    line-height: 1;
}


.footer-button:hover {
    background: var(--space-gray);

    color: var(--white);

    transform: translateY(-3px);
}


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

.footer-nav {
    display: grid;

    grid-template-columns:
        180px
        260px;

    gap: 70px;

    align-self: start;

    width: fit-content;
}


/* =========================================================
   COLONNES
   ========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   TITRES DES COLONNES
   ========================================================= */

.footer-column h3 {
    margin: 0 0 8px;

    font-size: 15px;

    font-weight: 500;

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


/* =========================================================
   LIENS
   ========================================================= */

.footer-column a {
    color: rgba(255, 255, 255, .82);

    text-decoration: none;

    font-size: 14px;

    transition: color .25s ease;
}


.footer-column a:hover {
    color: var(--white);
}


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

.footer-column p {
    margin: 0;

    font-size: 14px;

    line-height: 1.1;

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


/* =========================================================
   BAS DU FOOTER
   ========================================================= */

.footer-bottom {
    grid-column: 1 / -1;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .3);

    font-size: 10px;

    letter-spacing: .06em;

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


/* =========================================================
   PARTIE DROITE DU BAS
   ========================================================= */

.footer-bottom-right {
    display: flex;

    align-items: center;

    gap: 5px;
}


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

.footer-instagram {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 18px;

    height: 18px;

    text-decoration: none;

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


.footer-instagram img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


.footer-instagram:hover {
    opacity: .75;

    transform: translateY(-2px);
}


/* =========================================================
   CRÉDIT
   ========================================================= */

.footer-creator {
    white-space: nowrap;
}


/* =========================================================
   FOOTER — TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .footer-content {
        grid-template-columns: 1fr;

        row-gap: 60px;
    }


    .footer-main {
        max-width: 620px;
    }


    .footer-nav {
        width: 100%;

        grid-template-columns:
            180px
            260px;

        gap: 50px;
    }


    .footer-bottom {
        grid-column: auto;
    }

}


/* =========================================================
   FOOTER — MOBILE
   ========================================================= */

@media (max-width: 809px) {

    .site-footer {
        padding: 40px 24px 25px;
    }


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

    .footer-content {
        display: grid;

        grid-template-columns: 1fr;

        row-gap: 55px;
    }


    /* =====================================================
       PARTIE PRINCIPALE
       ===================================================== */

    .footer-main {
        max-width: 100%;
    }


    .footer-title {
        font-size: clamp(38px, 11vw, 40px);

        line-height: .86;
    }


    .footer-description {
        max-width: 310px;

        margin-top: 25px;

        font-size: 14px;

        line-height: 1.1;
    }


    /* =====================================================
       BOUTON
       ===================================================== */

    .footer-button {
        margin-top: 25px;

        padding: 13px 17px;

        gap: 10px;

        font-size: 11px;
    }


    .footer-button span {
        font-size: 20px;
    }


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

    .footer-nav {
        width: 100%;

        display: grid;

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

        gap: 30px;

        align-self: auto;
    }


    /* =====================================================
       COLONNES
       ===================================================== */

    .footer-column {
        min-width: 0;

        gap: 10px;
    }


    .footer-column h3 {
        margin-bottom: 7px;

        font-size: 11px;
    }


    .footer-column a,
    .footer-column p {
        font-size: 12px;

        line-height: 1.15;
    }


    /* =====================================================
       BAS
       ===================================================== */

    .footer-bottom {
        grid-column: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        padding-top: 17px;

        font-size: 8px;
    }


    /* =====================================================
       PARTIE DROITE MOBILE
       ===================================================== */

    .footer-bottom-right {
        width: 100%;

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        gap: 5px;
    }


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

    .footer-instagram {
        width: 16px;

        height: 16px;
    }


    /* =====================================================
       CRÉDIT MOBILE
       ===================================================== */

    .footer-creator {
        white-space: nowrap;
    }

}


/* =========================================================
   FOOTER — PETITS TÉLÉPHONES
   ========================================================= */

@media (max-width: 380px) {

    .site-footer {
        padding-left: 14px;

        padding-right: 14px;
    }


    .footer-title {
        font-size: 36px;
    }


    .footer-description {
        font-size: 14px;
    }


    .footer-nav {
        gap: 20px;
    }


    .footer-column a,
    .footer-column p {
        font-size: 11px;
    }


    .footer-bottom {
        font-size: 7px;
    }


    .footer-bottom-right {
        gap: 8px;
    }


    .footer-instagram {
        width: 15px;

        height: 15px;
    }

}

