/* ==================================================
   VARIABLES
================================================== */

:root {
    --noir: #222222;
    --gris: #666666;
    --beige: #eee9e1;
    --beige-clair: #f7f5f1;
    --blanc: #ffffff;
    --texte: #222222;
}


/* ==================================================
   RESET
================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--blanc);
    color: var(--noir);

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* ==================================================
   CURSEUR APPAREIL PHOTO
================================================== */

body {
    cursor: auto;
}

a,
button,
.button,
.nav-dropdown-title {
    cursor: url("./images/pointeur.png") 16 16, pointer;
}


/* ==================================================
   HEADER FIXE AU DÉFILEMENT
================================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 5vw;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* LOGO */

.logo {
    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.05;

    color: var(--noir);

    text-decoration: none;
    white-space: nowrap;

    text-align: center;
}


/* ==================================================
   NAVIGATION PRINCIPALE
================================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    font-weight: 400;

    letter-spacing: 1.2px;

    text-transform: uppercase;
    text-decoration: none;

    color: var(--noir);

    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.5;
}


/* ==================================================
   MENUS DÉROULANTS
   PORTFOLIO + PRESTATIONS
================================================== */

.nav-dropdown {
    position: relative;
}

/* TITRE DU MENU */

.nav-dropdown-title {
    display: block;

    position: relative;

    padding-bottom: 8px;
    margin-bottom: -8px;
}

/* PETITE FLÈCHE */

.nav-dropdown-title::after {
    content: "⌄";

    display: inline-block;

    margin-left: 6px;

    font-size: 11px;

    transition: transform 0.25s ease;
}

/* SOUS-MENU */

.nav-dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    min-width: 190px;

    padding: 15px 0;

    background: var(--blanc);

    border: 1px solid #e5e2dd;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 300;
}

/* LIENS DU SOUS-MENU */

.nav-dropdown-menu a {
    display: block;

    padding: 9px 20px;

    white-space: nowrap;

    text-align: center;
}

/* AFFICHAGE AU SURVOL ET AU FOCUS */

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

/* ROTATION DE LA FLÈCHE */

.nav-dropdown:hover .nav-dropdown-title::after,
.nav-dropdown:focus-within .nav-dropdown-title::after {
    transform: rotate(180deg);
}


/* ==================================================
   BOUTONS
================================================== */

.button {
    display: inline-block;

    padding: 13px 24px;

    border: 1px solid var(--noir);

    color: var(--noir);

    text-decoration: none;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.button:hover {
    background: var(--noir);
    color: var(--blanc);
}


/* ==================================================
   TEXTES COMMUNS
================================================== */

.surtitle {
    margin: 0;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gris);
}


/* ==================================================
   HERO — ACCUEIL
================================================== */

.hero {
    display: flex;
    align-items: stretch;

    width: 100%;
}


/* PHOTO / DIAPORAMA */

.hero-photo {
    width: 55%;

    position: relative;

    overflow: hidden;
}

.hero-slider {
    position: relative;

    width: 100%;
}

.hero-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    display: block;

    opacity: 0;

    transition: opacity 1.2s ease;
}

.hero-slide.active {
    position: relative;

    opacity: 1;
}


/* TEXTE */

.hero-text {
    width: 45%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 5vw;

    background: var(--beige);
}

.hero-text .surtitle {
    margin-bottom: 18px;
}

.hero-text h1 {
    margin: 0 0 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;

    line-height: 1.05;
}

.hero-text .intro {
    max-width: 430px;

    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;
    line-height: 1.5;

    color: var(--gris);
}

.hero-text .button {
    align-self: center;

    margin-top: 40px;
}


/* ==================================================
   INTRODUCTION — ACCUEIL
================================================== */

.intro-section {
    max-width: 1400px;

    margin: 0 auto;

    padding: 70px 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: left;
}

.intro-content h2 {
    margin: 18px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 400;

    line-height: 1.05;
}

.intro-large {
    max-width: 620px;

    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 22px;
    line-height: 1.6;

    color: var(--gris);
}

.intro-content .button {
    align-self: flex-start;

    margin-top: 40px;
}

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    max-width: 500px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* ==================================================
   SECTIONS ALTERNÉES — ACCUEIL
================================================== */

.home-feature {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 55px 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.home-feature-light {
    max-width: none;

    background: var(--beige-clair);

    padding-left: max(
        5vw,
        calc((100vw - 1400px) / 2 + 5vw)
    );

    padding-right: max(
        5vw,
        calc((100vw - 1400px) / 2 + 5vw)
    );
}

.home-feature-reverse .home-feature-image {
    order: 2;
}

.home-feature-reverse .home-feature-text {
    order: 1;
}

.home-feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-feature-image img {
    width: 100%;
    max-width: 500px;

    height: auto;

    display: block;

    object-fit: contain;
}

.home-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    text-align: left;
}

.home-feature-text h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 400;

    line-height: 1.05;
}

.home-feature-text p:not(.surtitle) {
    max-width: 620px;

    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}

.home-feature-text .button {
    margin-top: 40px;
}


/* ==================================================
   CONTACT — ACCUEIL
================================================== */

.contact-section {
    max-width: 800px;

    margin: 0 auto;

    padding: 90px 6vw;

    text-align: center;
}

.contact-section h2 {
    margin: 15px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4vw, 56px);
    font-weight: 400;

    line-height: 1.05;
}

.contact-section p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto 15px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    line-height: 1.6;

    color: var(--gris);
}

.contact-section .button {
    margin-top: 45px;
}


/* ==================================================
   CITATION DE FIN
================================================== */

.footer-quote {
    padding: 70px 6vw 60px;

    text-align: center;

    background: var(--beige-clair);
}

.quote-text {
    max-width: 850px;

    margin: 0 auto;

    font-family: 'Allura', cursive;

    font-size: clamp(32px, 3.5vw, 48px);

    line-height: 1.35;

    color: var(--noir);
}

.quote-signature {
    margin: 20px 0 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 2px;

    color: var(--gris);
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 25px 5vw;

    border-top: 1px solid #e5e2dd;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--gris);

    text-decoration: none;

    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: var(--texte);
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 25px;
}
/* ==================================================
   PAGE À PROPOS
================================================== */

.about-intro {
    max-width: 1000px;

    margin: 0 auto;

    padding: 100px 6vw;

    text-align: center;
}

.about-intro h1 {
    margin: 20px 0 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 6vw, 62px);
    font-weight: 400;

    line-height: 1.05;

    font-style: italic;
}


/* PARCOURS */

.about-story {
    display: grid;

    grid-template-columns: 50% 50%;

    align-items: stretch;

    background: var(--beige);
}

.about-story-image {
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 7vw;
}

.about-story-text h2 {
    margin: 0 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.05;
}

.about-story-text p {
    max-width: 560px;

    margin: 0 0 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;
    line-height: 1.65;

    color: var(--gris);
}

.about-story-text strong {
    color: var(--noir);

    font-weight: 500;
}


/* EXPÉRIENCE */

.about-experience {
    padding: 130px 6vw;

    background: var(--blanc);

    text-align: center;
}

.about-experience-inner {
    max-width: 850px;

    margin: 0 auto;
}

.about-experience h2 {
    margin: 18px 0 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.05;
}

.about-experience p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);
}


/* PHILOSOPHIE */

.about-philosophy {
    padding: 130px 6vw;

    background: var(--beige-clair);

    text-align: center;
}

.about-philosophy-text {
    max-width: 850px;

    margin: 0 auto;
}

.about-philosophy h2 {
    margin: 18px 0 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.05;

    text-align: center;
}

.about-philosophy p:not(.surtitle) {
    max-width: 720px;

    margin: 0 auto 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);

    text-align: center;
}


/* CONTACT À PROPOS */

.about-contact {
    max-width: 800px;

    margin: 0 auto;

    padding: 100px 6vw;

    text-align: center;
}

.about-contact h2 {
    margin: 18px 0 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.05;
}

.about-contact h2 em {
    font-style: italic;
}

.about-contact p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);
}

.about-contact-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;
}

.about-contact-buttons .button {
    margin-top: 0;
}


/* ==================================================
   PAGE MARIAGES
================================================== */

.wedding-intro {
    max-width: 1000px;

    margin: 0 auto;

    padding: 100px 6vw 80px;

    text-align: center;
}

.wedding-intro h1 {
    margin: 18px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.05;
}

.wedding-intro > p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    line-height: 1.65;

    color: var(--gris);
}


/* IMAGE D'OUVERTURE */

.wedding-hero-image {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 5vw 100px;
}

.wedding-hero-image img {
    width: 100%;
    height: auto;

    display: block;
}


/* SÉLECTION */

.wedding-selection {
    padding: 90px 5vw;

    background: var(--beige-clair);
}

.wedding-selection-heading {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.wedding-selection-heading h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.wedding-selection-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}


/* GALERIE */

.wedding-gallery {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.wedding-gallery-item {
    margin: 0;

    overflow: hidden;
}

.wedding-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.wedding-gallery-item:hover img {
    transform: scale(1.015);
}

.wedding-gallery-wide {
    grid-column: span 2;
}

.wedding-gallery-wide img {
    aspect-ratio: 16 / 8;
}

.wedding-gallery-portrait img {
    aspect-ratio: 4 / 5;
}

.wedding-gallery-item:not(.wedding-gallery-wide):not(.wedding-gallery-portrait) img {
    aspect-ratio: 3 / 2;
}


/* REPORTAGES */

.wedding-stories {
    padding: 100px 5vw;
}

.wedding-stories-heading {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.wedding-stories-heading h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.wedding-stories-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}

.wedding-stories-grid {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

.wedding-story a {
    display: block;

    color: inherit;

    text-decoration: none;
}

.wedding-story-image {
    overflow: hidden;
}

.wedding-story-image img {
    width: 100%;

    aspect-ratio: 4 / 5;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.wedding-story:hover .wedding-story-image img {
    transform: scale(1.02);
}

.wedding-story-text {
    padding-top: 20px;

    text-align: center;
}

.wedding-story-text h3 {
    margin: 10px 0 12px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 400;
}

.wedding-story-text span {
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: var(--gris);
}


/* CONTACT MARIAGE */

.wedding-contact {
    max-width: 900px;

    margin: 0 auto;

    padding: 110px 6vw;

    text-align: center;
}

.wedding-contact h2 {
    margin: 15px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
}

.wedding-contact > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}

.wedding-contact-buttons {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}
/* ==================================================
   MARIAGE — MON REGARD
================================================== */

.wedding-approach {
    padding: 110px 6vw 120px;

    background: #f7f5f1;
}


.wedding-approach-inner {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


/* SURTITRE */

.wedding-approach .surtitle {
    margin: 0 0 18px;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.2px;

    text-transform: uppercase;

    color: var(--gris);
}


/* TITRE */

.wedding-approach h2 {
    margin: 0 0 38px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 400;

    line-height: 1.08;

    color: var(--texte);
}


/* PARAGRAPHES */

.wedding-approach-inner > p:not(.surtitle):not(.wedding-approach-conclusion) {
    max-width: 700px;

    margin: 0 auto 22px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.65;

    color: var(--gris);
}


/* PHRASE FORTE */

.wedding-approach-inner strong {
    font-weight: 500;

    color: var(--texte);
}


/* CONCLUSION */

.wedding-approach-conclusion {
    margin: 45px auto 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;
    font-weight: 500;

    line-height: 1.35;

    color: var(--texte);
}


/* BOUTON */

.wedding-approach .button {
    display: inline-block;

    margin-top: 8px;

    padding: 14px 28px;

    border: 1px solid var(--texte);

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: var(--texte);

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.wedding-approach .button:hover {
    background: var(--texte);

    color: #ffffff;
}


/* ==================================================
   MARIAGE — MON REGARD — MOBILE
================================================== */

@media (max-width: 800px) {

    .wedding-approach {
        padding: 80px 7vw 90px;
    }

    .wedding-approach h2 {
        margin-bottom: 30px;

        font-size: 40px;
    }

    .wedding-approach-inner > p:not(.surtitle):not(.wedding-approach-conclusion) {
        font-size: 18px;

        line-height: 1.6;
    }

    .wedding-approach-conclusion {
        margin-top: 38px;

        font-size: 25px;
    }

}


@media (max-width: 480px) {

    .wedding-approach {
        padding: 65px 6vw 75px;
    }

    .wedding-approach h2 {
        font-size: 35px;
    }

    .wedding-approach-inner > p:not(.surtitle):not(.wedding-approach-conclusion) {
        font-size: 17px;
    }

    .wedding-approach-conclusion {
        font-size: 23px;
    }

    .wedding-approach .button {
        width: 100%;

        text-align: center;
    }

}

/* ==================================================
   PAGE PORTRAITS
================================================== */


/* ==================================================
   INTRODUCTION
================================================== */

.portrait-intro {
    max-width: 1000px;

    margin: 0 auto;

    padding: 100px 6vw 80px;

    text-align: center;
}

.portrait-intro h1 {
    margin: 18px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
}

.portrait-intro > p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    line-height: 1.65;

    color: var(--gris);
}


/* ==================================================
   GRANDE IMAGE D'OUVERTURE
================================================== */

.portrait-hero-image {
    width: 100%;

    margin: 0 auto;

    padding: 0 5vw 100px;

    display: flex;
    justify-content: center;
}

.portrait-hero-image img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 78vh;

    object-fit: contain;

    cursor: zoom-in;
}

/* ==================================================
   SÉLECTION PORTRAITS
================================================== */

.portrait-selection {
    padding: 90px 5vw 110px;

    background: var(--beige-clair);
}

.portrait-selection-heading {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.portrait-selection-heading h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.portrait-selection-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}


/* ==================================================
   GALERIE PORTRAITS
================================================== */

.portrait-gallery {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    align-items: start;
}


/* COLONNES INDÉPENDANTES */

.portrait-gallery-column {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


/* IMAGE */

.portrait-gallery-item {
    width: 100%;

    margin: 0;

    overflow: hidden;
}

.portrait-gallery-item img {
    width: 100%;
    height: auto;

    display: block;

    cursor: zoom-in;

    transition: transform 0.5s ease;
}


/* LÉGER EFFET AU SURVOL */

.portrait-gallery-item:hover img {
    transform: scale(1.015);
}
/* GRANDE IMAGE FINALE DE LA GALERIE */

.portrait-gallery-finale {
    grid-column: 1 / -1;

    width: 90%;
    max-width: 1150px;

    margin: 65px auto 10px;
}

.portrait-gallery-finale img {
    width: 100%;
    height: auto;

    display: block;

    aspect-ratio: auto;
    object-fit: contain;
}
/* ==================================================
   APPROCHE PORTRAITS
================================================== */

.portrait-approach {
    padding: 110px 6vw;
}

.portrait-approach-content {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.portrait-approach-content h2 {
    margin: 15px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.1;
}

.portrait-approach-content > p:not(.surtitle) {
    max-width: 680px;

    margin: 0 auto 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);
}

.portrait-approach-content strong {
    font-weight: 500;

    color: var(--noir);
}


/* ==================================================
   PHRASE SIGNATURE
================================================== */

.portrait-approach-signature {
    margin-top: 28px !important;
    margin-bottom: 30px !important;

    font-size: 22px !important;

    color: var(--noir) !important;
}

.portrait-approach-signature em {
    font-style: italic;
}


/* ==================================================
   BOUTON
================================================== */

.portrait-approach-button {
    margin-top: 22px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 800px) {

    .portrait-approach {
        padding: 80px 7vw;
    }

    .portrait-approach-content h2 {
        font-size: 40px;
    }

    .portrait-approach-content > p:not(.surtitle) {
        font-size: 19px;

        line-height: 1.6;
    }

    .portrait-approach-signature {
        font-size: 21px !important;
    }

}

/* ==================================================
   RESPONSIVE — TABLETTE
================================================== */

@media (max-width: 900px) {

    .portrait-intro {
        padding: 80px 6vw 60px;
    }

    .portrait-hero-image {
        padding: 0 4vw 80px;
    }

    .portrait-selection {
        padding: 80px 4vw 90px;
    }

    .portrait-selection-heading {
        margin-bottom: 55px;
    }

    .portrait-approach {
        padding: 90px 6vw;
    }

    .portrait-contact {
        padding: 90px 6vw;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 700px) {

    .portrait-intro {
        padding: 65px 6vw 50px;
    }

    .portrait-intro h1 {
        margin: 15px 0 22px;
    }

    .portrait-intro > p:not(.surtitle) {
        font-size: 19px;
    }


    /* IMAGE D'OUVERTURE */

    .portrait-hero-image {
        padding: 0 0 65px;
    }


    /* SÉLECTION */

    .portrait-selection {
        padding: 70px 4vw 75px;
    }

    .portrait-selection-heading {
        margin-bottom: 45px;
    }

    .portrait-selection-heading > p:not(.surtitle) {
        font-size: 19px;
    }


    /* GALERIE SUR UNE SEULE COLONNE */

    .portrait-gallery {
        display: block;
    }

    .portrait-gallery-column {
        gap: 10px;
    }

    .portrait-gallery-column + .portrait-gallery-column {
        margin-top: 10px;
    }

    .portrait-gallery-item img {
        width: 100%;
        height: auto;
    }


    /* APPROCHE */

    .portrait-approach {
        padding: 80px 7vw;
    }

    .portrait-approach p:not(.surtitle) {
        font-size: 19px;
    }

    .portrait-approach .portrait-approach-highlight {
        margin-top: 30px;

        font-size: 23px;
    }


    /* CONTACT */

    .portrait-contact {
        padding: 80px 7vw;
    }

    .portrait-contact > p:not(.surtitle) {
        font-size: 19px;
    }

    .portrait-contact-buttons {
        flex-direction: column;

        align-items: center;

        gap: 14px;
    }

}


/* ==================================================
   PAGE ÉVÉNEMENTS
================================================== */

.event-intro {
    max-width: 1000px;

    margin: 0 auto;

    padding: 100px 6vw 80px;

    text-align: center;
}

.event-intro h1 {
    margin: 18px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
}

.event-intro > p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    line-height: 1.65;

    color: var(--gris);
}


/* ==================================================
   GRANDE IMAGE D'OUVERTURE
================================================== */

.event-hero-image {
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 5vw 100px;

    display: flex;
    justify-content: center;
}

.event-hero-image img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 82vh;

    object-fit: contain;
}


/* ==================================================
   INTRODUCTION AUX REPORTAGES
================================================== */

.event-selection {
    padding: 90px 5vw;

    background: var(--beige-clair);
}

.event-selection-heading {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.event-selection-heading h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.event-selection-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}


/* ==================================================
   REPORTAGES ÉVÉNEMENTS
================================================== */

.event-reportage {
    padding: 100px 5vw;
}


/* REPORTAGE SUR FOND ALTERNATIF */

.event-reportage-alt {
    background: var(--beige-clair);
}


/* ==================================================
   TITRES DES REPORTAGES
================================================== */

.event-reportage-heading {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}

.event-reportage-heading h2 {
    margin: 15px 0 24px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;

    line-height: 1.1;
}

.event-reportage-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);
}


/* ==================================================
   GALERIES DES REPORTAGES
================================================== */

.event-reportage-gallery {
    width: 88%;
    max-width: 1250px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* ==================================================
   CONTENEURS DES PHOTOS
================================================== */

.event-reportage-item {
    margin: 0;

    display: flex;
    justify-content: center;

    overflow: visible;
}


/* ==================================================
   PHOTOS
================================================== */

.event-reportage-item img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 78vh;

    object-fit: contain;

    cursor: zoom-in;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.event-reportage-item:hover img {
    transform: scale(1.01);

    opacity: 0.96;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 800px) {

    .event-intro {
        padding: 75px 8vw 60px;
    }

    .event-hero-image {
        padding: 0 6vw 70px;
    }

    .event-hero-image img {
        max-height: none;
    }

    .event-selection {
        padding: 70px 6vw;
    }

    .event-reportage {
        padding: 75px 6vw;
    }

    .event-reportage-heading {
        margin-bottom: 45px;
    }

    .event-reportage-gallery {
        width: 100%;

        gap: 16px;
    }

    .event-reportage-item img {
        width: 100%;
        max-width: 100%;

        height: auto;
        max-height: none;
    }

}
/* ==================================================
   GALERIE MARIAGE
================================================== */

.wedding-selection .event-gallery {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;

    /* Espace entre les deux colonnes */
    gap: 14px;
}


/* COLONNES DE LA GALERIE */

.wedding-selection .gallery-column {
    display: flex;
    flex-direction: column;

    /* Espace régulier entre les photos d'une même colonne */
    gap: 14px;
}


/* CONTENEUR DE CHAQUE PHOTO */

.wedding-selection .event-gallery-item {
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* PHOTO */

.wedding-selection .event-gallery-item img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    cursor: zoom-in;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


/* SURVOL */

.wedding-selection .event-gallery-item:hover img {
    transform: scale(1.01);
    opacity: 0.94;
}


/* ==================================================
   LIGHTBOX
================================================== */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 90px;

    background: rgba(15, 14, 13, 0.94);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* LIGHTBOX OUVERTE */

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* IMAGE AGRANDIE */

.lightbox-image {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}


/* BOUTONS */

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    border: 0;

    padding: 0;

    background: transparent;

    color: #ffffff;

    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;

    cursor: pointer;

    opacity: 0.8;

    transition: opacity 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}


/* FERMETURE */

.lightbox-close {
    top: 22px;
    right: 32px;

    font-size: 48px;
    line-height: 1;
}


/* FLÈCHES */

.lightbox-prev,
.lightbox-next {
    top: 50%;

    transform: translateY(-50%);

    font-size: 70px;
    line-height: 1;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* ==================================================
   GALERIE MARIAGE — MOBILE
================================================== */

@media (max-width: 800px) {

    .wedding-selection .event-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wedding-selection .gallery-column {
        gap: 18px;
    }

    .gallery-lightbox {
        padding: 60px 20px 30px;
    }

    .lightbox-image {
        max-width: 94vw;
        max-height: 82vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
    }
}

/* PHRASE CENTRALE */

.wedding-approach-highlight {
    max-width: 620px;

    margin: 34px auto !important;

    font-family: 'Cormorant Garamond', serif !important;

    font-size: 23px !important;
    font-weight: 500 !important;

    line-height: 1.5 !important;

    color: var(--texte) !important;
}
/* APPROCHE ÉVÉNEMENTS */

.event-approach {
    padding: 110px 6vw;
}

.event-approach-text {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.event-approach h2 {
    margin: 15px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;
}

.event-approach p:not(.surtitle) {
    max-width: 680px;

    margin: 0 auto 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.65;

    color: var(--gris);
}


/* TYPES D'ÉVÉNEMENTS */

.event-types {
    padding: 100px 5vw;

    background: var(--beige-clair);
}

.event-types-heading {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.event-types-heading h2 {
    margin: 15px 0 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.event-types-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.event-types-grid article {
    padding: 40px 30px;

    background: var(--blanc);

    text-align: center;
}

.event-types-grid h3 {
    margin: 0 0 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 400;
}

.event-types-grid p {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;
    line-height: 1.6;

    color: var(--gris);
}


/* CONTACT ÉVÉNEMENTS */

.event-contact {
    max-width: 900px;

    margin: 0 auto;

    padding: 110px 6vw;

    text-align: center;
}

.event-contact h2 {
    margin: 15px 0 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
}

.event-contact > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}

.event-contact-buttons {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}


/* ==================================================
   PAGE PRESTATIONS
================================================== */


/* ==================================================
   NAVIGATION INTERNE PRESTATIONS
================================================== */

.services-nav {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 900px;

    margin: 35px auto 20px;

    padding: 24px 30px;

    border-top: 1px solid #ddd8d1;
    border-bottom: 1px solid #ddd8d1;
}

.services-nav a {
    position: relative;

    padding: 4px 38px;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;
    font-weight: 400;

    letter-spacing: 1.8px;

    text-transform: uppercase;
    text-decoration: none;

    color: var(--noir);

    transition:
        opacity 0.3s ease,
        color 0.3s ease;
}


/* SÉPARATEURS */

.services-nav a:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 22px;

    background: #d4cfc7;

    transform: translateY(-50%);
}


/* SOULIGNEMENT AU SURVOL */

.services-nav a::before {
    content: "";

    position: absolute;

    left: 38px;
    right: 38px;
    bottom: -7px;

    height: 1px;

    background: var(--noir);

    transform: scaleX(0);

    transition: transform 0.3s ease;
}

.services-nav a:hover::before {
    transform: scaleX(1);
}

.services-nav a:hover {
    opacity: 0.65;
}

/* ==================================================
   INTRO PRESTATIONS
================================================== */

.pricing-hero {
    max-width: 900px;

    margin: 0 auto;

    padding: 80px 6vw 70px;

    text-align: center;

    scroll-margin-top: 120px;
}

.pricing-hero h1 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.05;
}

.pricing-intro {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   FORMULES MARIAGE
================================================== */

.pricing-section {
    padding: 40px 5vw 100px;
}

.pricing-grid {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;
}


/* ==================================================
   CARTES MARIAGE
================================================== */

.pricing-card {
    position: relative;

    min-width: 0;

    padding: 48px 36px;

    background: var(--blanc);

    border: 1px solid rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
}


/* FORMULE MISE EN AVANT */

.pricing-card.featured {
    border: 2px solid var(--noir);

    transform: translateY(-10px);
}


/* FORMULE PREMIUM */

.pricing-card.premium {
    background: var(--beige-clair);
}


/* ==================================================
   BADGE
================================================== */

.featured-badge {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 8px 18px;

    background: var(--noir);

    color: var(--blanc);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;
}


/* ==================================================
   LABEL
================================================== */

.pricing-label {
    display: inline-block;

    width: fit-content;

    margin: 0 0 20px;

    padding-bottom: 9px;

    border-bottom: 1px solid #8f887f;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #4d4944;
}


/* ==================================================
   TITRES DES FORMULES
================================================== */

.pricing-card h2 {
    margin: 14px 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.1;
}


/* ==================================================
   PRIX
================================================== */

.pricing-price {
    margin-bottom: 24px;

    font-size: 42px;
    font-weight: 500;

    letter-spacing: -1px;

    line-height: 1.2;
}


/* ==================================================
   DESCRIPTION
================================================== */

.pricing-description {
    margin: 0 0 28px;

    color: var(--gris);

    line-height: 1.7;
}


/* ==================================================
   LISTE DES PRESTATIONS
================================================== */

.pricing-list {
    margin: 0 0 36px;

    padding-left: 18px;

    line-height: 2;

    color: #444444;

    flex: 1;
}


/* ==================================================
   NOTE
================================================== */

.pricing-note {
    margin: 18px 0 0;

    font-size: 12px;

    line-height: 1.5;

    color: #888888;
}


/* ==================================================
   OPTIONS MARIAGE
================================================== */

.pricing-options {
    padding: 100px 5vw;

    background: var(--beige-clair);
}

.pricing-options-heading {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;
}

.pricing-options-heading h2 {
    margin: 18px 0 22px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
}

.pricing-options-heading > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.6;

    color: var(--gris);
}


/* ==================================================
   GRILLE OPTIONS
================================================== */

.options-grid {
    max-width: 1200px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.option-card {
    padding: 36px 28px;

    background: var(--blanc);

    text-align: center;
}

.option-card h3 {
    margin: 0 0 14px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 400;
}

.option-price {
    margin-bottom: 18px;

    font-size: 28px;
    font-weight: 500;
}

.option-card p {
    color: var(--gris);

    line-height: 1.6;
}


/* ==================================================
   INFORMATIONS PRESTATIONS
================================================== */

.pricing-info {
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 5vw;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 50px;
}

.info-box h3 {
    margin: 0 0 22px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;
    font-weight: 400;
}

.info-box ul {
    margin: 0;

    padding-left: 20px;

    line-height: 2;
}

.info-box p {
    margin: 0 0 18px;

    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   CONTACT PRESTATIONS MARIAGE
================================================== */

.pricing-contact {
    max-width: 850px;

    margin: 0 auto;

    padding: 100px 6vw 120px;

    text-align: center;
}

.pricing-contact h2 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
}

.pricing-contact p {
    margin: 0 auto 36px;

    max-width: 650px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   PAGE PRESTATIONS ÉVÉNEMENTS
================================================== */


/* ==================================================
   INTRODUCTION
================================================== */

.event-pricing-hero {
    max-width: 900px;

    margin: 0 auto;

    padding: 100px 6vw 75px;

    text-align: center;
}

.event-pricing-hero h1 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(44px, 5vw, 64px);
    font-weight: 400;

    line-height: 1.05;
}

.event-pricing-hero > p:not(.surtitle) {
    max-width: 720px;

    margin: 0 auto 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   SECTION DES PRESTATIONS
================================================== */

.event-pricing-section {
    padding: 45px 5vw 110px;
}

.event-pricing-grid {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* ==================================================
   CARTES
================================================== */

.event-pricing-card {
    padding: 46px 34px;

    background: var(--blanc);

    border: 1px solid rgba(0, 0, 0, 0.08);

    display: flex;

    flex-direction: column;
}

.event-pricing-card h2 {
    margin: 14px 0 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 36px;
    font-weight: 400;

    line-height: 1.1;
}

.event-pricing-price {
    margin: 0 0 24px;

    font-size: 30px;
    font-weight: 500;
}

.event-pricing-card .pricing-description {
    margin: 0 0 24px;

    color: var(--gris);

    line-height: 1.7;
}

.event-pricing-card > p:not(.pricing-label):not(.event-pricing-price):not(.pricing-description):not(.pricing-note) {
    margin: 0 0 18px;

    line-height: 1.7;

    color: #444444;
}

.event-pricing-card .pricing-note {
    margin-top: 18;

    padding-top: 12px;

    font-size: 12px;

    line-height: 1.5;

    color: #888888;
}

.event-pricing-card .button {
    margin-top: auto;
}


/* ==================================================
   INFORMATIONS COMPLÉMENTAIRES
================================================== */

.event-pricing-info {
    max-width: 850px;

    margin: 0 auto;

    padding: 100px 6vw;

    text-align: center;

    border-top: 1px solid #e5e2dd;
}

.event-pricing-info h2 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;
}

.event-pricing-info > p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   CONTACT
================================================== */

.event-pricing-contact {
    max-width: 850px;

    margin: 0 auto;

    padding: 100px 6vw 120px;

    text-align: center;

    border-top: 1px solid #e5e2dd;
}

.event-pricing-contact h2 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 60px);
    font-weight: 400;
}

.event-pricing-contact p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto 36px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 900px) {

    .event-pricing-grid {
        grid-template-columns: 1fr;

        max-width: 720px;
    }

    .event-pricing-card {
        padding: 40px 30px;
    }

}

@media (max-width: 600px) {

    .event-pricing-hero {
        padding: 75px 6vw 55px;
    }

    .event-pricing-section {
        padding: 30px 6vw 80px;
    }

    .event-pricing-card h2 {
        font-size: 32px;
    }

    .event-pricing-info,
    .event-pricing-contact {
        padding: 80px 6vw;
    }

}

/* ==================================================
   RESPONSIVE — PRESTATIONS MARIAGE
================================================== */

@media (max-width: 900px) {

    .pricing-grid,
    .options-grid,
    .pricing-info {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .pricing-price {
        font-size: 36px;
    }

}


@media (max-width: 800px) {

    .pricing-hero {
        padding: 65px 8vw 55px;
    }

    .pricing-hero h1 {
        font-size: 42px;
    }

    .pricing-section {
        padding: 30px 6vw 75px;
    }

    .pricing-options {
        padding: 75px 6vw;
    }

    .options-grid {
        margin-top: 45px;
    }

    .pricing-info {
        padding: 75px 8vw;

        gap: 45px;
    }

    .pricing-contact {
        padding: 85px 8vw;
    }

    .services-coming-soon {
        padding: 75px 8vw;
    }

}

/* ==================================================
   PRESTATIONS PORTRAITS
================================================== */


/* ==================================================
   INTRODUCTION
================================================== */

.portrait-pricing-hero {
    max-width: 900px;

    margin: 0 auto;

    padding: 110px 6vw 65px;

    text-align: center;

    border-top: 1px solid #e5e2dd;

    scroll-margin-top: 120px;
}

.portrait-pricing-hero h2 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;

    line-height: 1.05;
}

.portrait-pricing-hero > p:not(.surtitle) {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   SECTION DES FORMULES
================================================== */

.portrait-pricing-section {
    width: 100%;

    padding: 35px 5vw 100px;
}


/* ==================================================
   GRILLE 2 × 2
================================================== */

.portrait-pricing-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;
}


/* ==================================================
   CARTES
================================================== */

.portrait-pricing-card {
    position: relative;

    min-width: 0;

    padding: 48px 38px;

    display: flex;
    flex-direction: column;

    background: var(--blanc);

    border: 1px solid rgba(0, 0, 0, 0.08);
}


/* DUO */

.portrait-pricing-featured {
    border: 1px solid rgba(0, 0, 0, 0.25);
}


/* PROJET PERSONNALISÉ */

.portrait-pricing-custom {
    background: var(--beige-clair);
}


/* ==================================================
   LABEL
================================================== */

.portrait-pricing-card .pricing-label {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;
    font-weight: 400;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gris);
}


/* ==================================================
   TITRES
================================================== */

.portrait-pricing-card h2 {
    margin: 14px 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.1;
}


/* ==================================================
   PRIX
================================================== */

.portrait-pricing-card .pricing-price {
    margin: 0 0 24px;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;

    letter-spacing: -0.5px;

    line-height: 1.2;
}


/* ==================================================
   DESCRIPTION
================================================== */

.portrait-pricing-card .pricing-description {
    margin: 0 0 28px;

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   LISTES
================================================== */

.portrait-pricing-card .pricing-list {
    margin: 0 0 32px;

    padding-left: 20px;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #444444;

    flex: 1;
}

.portrait-pricing-card .pricing-list li {
    margin-bottom: 6px;
}


/* ==================================================
   NOTE DUO
================================================== */

.portrait-pricing-note {
    margin: 0 0 28px;

    padding-top: 18px;

    border-top: 1px solid #e5e2dd;

    font-family: 'Cormorant Garamond', serif;

    font-size: 15px;
    font-style: italic;

    line-height: 1.55;

    color: var(--gris);
}


/* ==================================================
   BOUTONS DES CARTES
================================================== */

.portrait-pricing-card .button {
    align-self: flex-start;

    margin-top: auto;
}


/* ==================================================
   INFORMATIONS PORTRAITS
================================================== */

.portrait-pricing-info {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 95px 5vw;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 60px;
}


/* TITRES */

.portrait-info-box h3 {
    margin: 0 0 22px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;
    font-weight: 400;

    line-height: 1.2;
}


/* LISTE */

.portrait-info-box ul {
    margin: 0;

    padding-left: 20px;

    line-height: 2;

    color: #444444;
}


/* PARAGRAPHES */

.portrait-info-box p {
    margin: 0 0 18px;

    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   CONTACT PORTRAITS
================================================== */

.portrait-pricing-contact {
    width: 100%;

    padding: 100px 6vw 120px;

    background: var(--beige-clair);

    text-align: center;
}

.portrait-pricing-contact h2 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;

    line-height: 1.05;
}

.portrait-pricing-contact > p:not(.surtitle) {
    max-width: 650px;

    margin: 0 auto 36px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    line-height: 1.7;

    color: var(--gris);
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width: 900px) {

    .portrait-pricing-grid {
        gap: 22px;
    }

    .portrait-pricing-card {
        padding: 40px 30px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .portrait-pricing-hero {
        padding:
            80px
            7vw
            50px;
    }


    .portrait-pricing-section {
        padding:
            25px
            6vw
            75px;
    }


    .portrait-pricing-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .portrait-pricing-card {
        padding: 38px 26px;
    }


    .portrait-pricing-card h2 {
        font-size: 36px;
    }


    .portrait-pricing-card .pricing-price {
        font-size: 34px;
    }


    .portrait-pricing-info {
        grid-template-columns: 1fr;

        padding:
            75px
            7vw;

        gap: 45px;
    }


    .portrait-pricing-contact {
        padding:
            80px
            7vw
            90px;
    }

}

/* ==================================================
   LIEN DONNÉES PERSONNELLES
================================================== */

.privacy-link {
    margin-top: 8px;

    font-size: 11px;
    line-height: 1.5;
}

.privacy-link a {
    color: var(--gris);

    text-decoration: underline;
    text-underline-offset: 3px;

    transition: color 0.25s ease;
}

.privacy-link a:hover {
    color: var(--texte);
}

/* ==================================================
   RESPONSIVE — ÉLÉMENTS COMMUNS ET ACCUEIL
================================================== */

@media (max-width: 800px) {

    /* HEADER */

    .site-header {
        display: block;

        padding: 20px 6vw;

        text-align: center;
    }

    .logo {
        display: block;

        margin-bottom: 15px;

        font-size: 13px;

        letter-spacing: 1.5px;
    }

    .main-nav {
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 18px;
    }

    .main-nav a {
        font-size: 9px;

        letter-spacing: 0.8px;
    }


    /* HERO */

    .hero {
        display: block;
    }

    .hero-photo {
        width: 100%;
    }

    .hero-text {
        width: 100%;

        padding: 60px 9vw;
    }

    .hero-text h1 {
        font-size: 48px;
    }


    /* INTRO ACCUEIL */

    .intro-section {
        display: flex;

        flex-direction: column;

        padding: 60px 6vw;

        gap: 40px;
    }

    .intro-content {
        align-items: center;

        text-align: center;
    }

    .intro-content h2 {
        font-size: 40px;
    }

    .intro-large {
        margin: 0 auto;

        font-size: 20px;
    }

    .intro-content .button {
        align-self: center;

        margin-top: 35px;
    }

    .intro-image img {
        margin: 0 auto;
    }


    /* SECTIONS ACCUEIL */

    .home-feature,
    .home-feature-light {
        display: flex;

        flex-direction: column;

        max-width: none;

        padding: 55px 6vw;

        gap: 40px;
    }

    .home-feature .home-feature-text,
    .home-feature-reverse .home-feature-text {
        order: 1;
    }

    .home-feature .home-feature-image,
    .home-feature-reverse .home-feature-image {
        order: 2;
    }

    .home-feature-text {
        align-items: center;

        text-align: center;
    }

    .home-feature-text h2 {
        font-size: 40px;
    }

    .home-feature-text p:not(.surtitle) {
        margin: 0 auto;

        font-size: 19px;
    }

    .home-feature-image img {
        margin: 0 auto;
    }


    /* CONTACT ACCUEIL */

    .contact-section {
        padding: 80px 8vw;
    }

    .contact-section h2 {
        font-size: 40px;
    }


    /* CITATION */

    .footer-quote {
        padding: 55px 8vw 50px;
    }

    .quote-text {
        font-size: 34px;
    }


    /* FOOTER */

    .site-footer {
        display: block;

        text-align: center;
    }

    .site-footer a {
        display: block;

        margin-top: 10px;
    }

}


/* ==================================================
   RESPONSIVE — À PROPOS
================================================== */

@media (max-width: 800px) {

    .about-intro {
        padding: 90px 8vw 75px;
    }

    .about-intro h1 {
        font-size: 40px;
    }

    .about-story {
        display: block;
    }

    .about-story-image img {
        height: auto;

        object-fit: initial;
    }

    .about-story-text {
        padding: 70px 8vw;
    }

    .about-story-text h2,
    .about-experience h2,
    .about-philosophy h2,
    .about-contact h2 {
        font-size: 44px;
    }

    .about-experience,
    .about-philosophy {
        padding: 90px 8vw;
    }

    .about-contact {
        padding: 100px 8vw;
    }

    .about-contact-buttons {
        flex-direction: column;

        gap: 14px;
    }

    .about-contact-buttons .button {
        width: 100%;
        max-width: 280px;

        text-align: center;
    }

}


/* ==================================================
   RESPONSIVE — MARIAGES
================================================== */

@media (max-width: 800px) {

    .wedding-intro {
        padding: 75px 8vw 60px;
    }

    .wedding-intro h1 {
        font-size: 42px;
    }

    .wedding-hero-image {
        padding: 0 6vw 70px;
    }

    .wedding-selection {
        padding: 70px 6vw;
    }

    .wedding-gallery {
        grid-template-columns: 1fr;
    }

    .wedding-gallery-wide {
        grid-column: auto;
    }

    .wedding-gallery-wide img,
    .wedding-gallery-portrait img,
    .wedding-gallery-item:not(.wedding-gallery-wide):not(.wedding-gallery-portrait) img {
        height: auto;

        aspect-ratio: auto;

        object-fit: contain;
    }

    .wedding-stories {
        padding: 75px 6vw;
    }

    .wedding-stories-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .wedding-story-image img {
        height: auto;

        aspect-ratio: auto;
    }

    .wedding-contact {
        padding: 85px 8vw;
    }

    .wedding-contact-buttons {
        flex-direction: column;

        align-items: center;
    }

}


/* ==================================================
   RESPONSIVE — PORTRAITS
================================================== */

@media (max-width: 800px) {

    .portrait-intro {
        padding: 75px 8vw 60px;
    }

    .portrait-intro h1 {
        font-size: 42px;
    }

    .portrait-hero-image {
        padding: 0 6vw 70px;
    }

    .portrait-selection {
        padding: 70px 6vw;
    }

    .portrait-gallery {
        grid-template-columns: 1fr;
    }

    .portrait-gallery-wide {
        grid-column: auto;
    }

    .portrait-gallery-wide img,
    .portrait-gallery-vertical img,
    .portrait-gallery-item:not(.portrait-gallery-wide):not(.portrait-gallery-vertical) img {
        height: auto;

        aspect-ratio: auto;

        object-fit: contain;
    }

    .portrait-approach {
        padding: 80px 8vw;
    }

    .portrait-sessions {
        padding: 75px 6vw;
    }

    .portrait-sessions-grid {
        grid-template-columns: 1fr;
    }

    .portrait-contact {
        padding: 85px 8vw;
    }

    .portrait-contact-buttons {
        flex-direction: column;

        align-items: center;
    }

}


/* ==================================================
   RESPONSIVE — ÉVÉNEMENTS
================================================== */

@media (max-width: 800px) {

    .event-intro {
        padding: 75px 8vw 60px;
    }

    .event-intro h1 {
        font-size: 42px;
    }

    .event-hero-image {
        padding: 0 6vw 70px;
    }

    .event-selection {
        padding: 70px 6vw;
    }

    .event-gallery {
        grid-template-columns: 1fr;
    }

    .event-gallery-wide {
        grid-column: auto;
    }

    .event-gallery-wide img,
    .event-gallery-vertical img,
    .event-gallery-item:not(.event-gallery-wide):not(.event-gallery-vertical) img {
        height: auto;

        aspect-ratio: auto;

        object-fit: contain;
    }

    .event-approach {
        padding: 80px 8vw;
    }

    .event-types {
        padding: 75px 6vw;
    }

    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .event-contact {
        padding: 85px 8vw;
    }

    .event-contact-buttons {
        flex-direction: column;

        align-items: center;
    }

}


/* ==================================================
   RESPONSIVE — PRESTATIONS
================================================== */

@media (max-width: 900px) {

    .pricing-grid,
    .options-grid,
    .pricing-info {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .pricing-price {
        font-size: 36px;
    }

}


@media (max-width: 800px) {

    /* NAVIGATION INTERNE */

    .services-nav {
        flex-direction: column;

        width: calc(100% - 12vw);

        margin: 25px auto 10px;

        padding: 12px 0;

        border-top: 1px solid #ddd8d1;
        border-bottom: 1px solid #ddd8d1;
    }

    .services-nav a {
        width: 100%;

        padding: 15px 10px;

        text-align: center;

        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .services-nav a:not(:last-child)::after {
        display: none;
    }

    .services-nav a::before {
        left: 35%;
        right: 35%;

        bottom: 8px;
    }


    /* PRESTATIONS */

    .pricing-hero {
        padding: 65px 8vw 55px;
    }

    .pricing-hero h1 {
        font-size: 42px;
    }

    .pricing-section {
        padding: 30px 6vw 75px;
    }

    .pricing-options {
        padding: 75px 6vw;
    }

    .options-grid {
        margin-top: 45px;
    }

    .pricing-info {
        padding: 75px 8vw;

        gap: 45px;
    }

    .pricing-contact {
        padding: 85px 8vw;
    }

    .services-coming-soon {
        padding: 75px 8vw;
    }

}
/* ==================================================
   PAGE CONTACT
================================================== */


/* ==================================================
   INTRODUCTION
================================================== */

.contact-page-intro {
    max-width: 900px;

    margin: 0 auto;

    padding: 100px 6vw 70px;

    text-align: center;
}

.contact-page-intro h1 {
    margin: 18px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.05;
}

.contact-page-intro > p:not(.surtitle) {
    max-width: 680px;

    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    line-height: 1.65;

    color: var(--gris);
}


/* ==================================================
   CHOIX DU PROJET
================================================== */

.contact-project-choice {
    max-width: 1000px;

    margin: 0 auto;

    padding: 20px 6vw 80px;

    text-align: center;
}

.contact-project-choice h2 {
    margin: 15px 0 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
}

.contact-choice-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    max-width: 800px;

    margin: 0 auto;
}

.contact-choice-button {
    padding: 18px 20px;

    background: var(--blanc);

    border: 1px solid #d9d4cc;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: var(--noir);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.contact-choice-button:hover,
.contact-choice-button.active {
    background: var(--noir);

    color: var(--blanc);

    border-color: var(--noir);
}


/* ==================================================
   PANNEAUX DE FORMULAIRE
================================================== */

.contact-form-panel {
    display: none;
}

.contact-form-panel.active {
    display: block;
}

.contact-form-section {
    padding: 0 6vw 110px;
}


/* ==================================================
   FORMULAIRE
================================================== */

.guided-contact-form {
    max-width: 1000px;

    margin: 0 auto;
}

.guided-contact-form fieldset {
    margin: 0 0 60px;

    padding: 45px;

    border: 1px solid #e1ddd6;

    background: var(--blanc);
}

.guided-contact-form legend {
    padding: 0 16px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 31px;
    font-weight: 400;
}

.guided-contact-form legend span {
    margin-right: 12px;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.5px;

    color: var(--gris);
}


/* ==================================================
   GRILLES
================================================== */

.form-grid {
    display: grid;

    gap: 25px;
}

.form-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.form-grid-three {
    grid-template-columns: repeat(3, 1fr);
}


/* ==================================================
   CHAMPS
================================================== */

.form-field {
    margin-bottom: 28px;
}

.form-grid .form-field {
    margin-bottom: 0;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.7px;

    color: var(--noir);
}


/* ==================================================
   OPTIONS DU FORMULAIRE MARIAGE
   Harmonisation et espacement des séances / album
================================================== */

.form-options-section {
    margin-top: 8px;
}

.form-choice-group {
    margin: 0 0 30px;
}

.form-choice-title,
.form-field label.form-choice-title {
    display: block;

    margin: 0 0 12px;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;
    letter-spacing: 0;

    color: var(--noir);
}

.form-radio-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 18px;

    margin: 0;
}

.radio-card {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.4;

    color: var(--noir);

    cursor: pointer;
}

.radio-card input[type="radio"] {
    width: auto;

    margin: 0;

    padding: 0;

    flex: 0 0 auto;
}

.radio-card span {
    display: inline-block;
}

/* Laisse davantage d'air avant "Album ou tirages" */
.form-options-section + .form-field {
    margin-top: 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9d4cc;

    background: var(--blanc);

    color: var(--noir);

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    line-height: 1.5;

    outline: none;

    transition: border-color 0.25s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--noir);
}
/* ==================================================
   MENTION CHAMPS OBLIGATOIRES
================================================== */

.required-fields-note {
    max-width: 1000px;

    margin: 0 0 20px;

    text-align: right;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 0.8px;

    color: var(--gris);
}

/* ==================================================
   CHAMP CONDITIONNEL
================================================== */

.conditional-field {
    display: none;

    margin-top: 28px;
}

.conditional-field.active {
    display: block;
}

.conditional-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.7px;
}

.conditional-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9d4cc;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;
}


/* ==================================================
   NOTE RASSURANTE
================================================== */

.contact-form-note {
    max-width: 750px;

    margin: 0 auto 50px;

    padding: 35px;

    background: var(--beige-clair);

    text-align: center;
}

.contact-form-note h3 {
    margin: 0 0 15px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 400;
}

.contact-form-note p {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;
    line-height: 1.6;

    color: var(--gris);
}


/* ==================================================
   CONSENTEMENT
================================================== */

.form-consent {
    max-width: 750px;

    margin: 0 auto 35px;
}

.form-consent label {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    font-size: 12px;

    line-height: 1.6;

    color: var(--gris);
}

.form-consent input {
    margin-top: 4px;
}


/* ==================================================
   ENVOI
================================================== */

.form-submit {
    text-align: center;
}


/* ==================================================
   PANNEAUX PROVISOIRES
================================================== */

.contact-coming-soon {
    max-width: 750px;

    margin: 0 auto;

    padding: 70px 6vw;

    background: var(--beige-clair);

    text-align: center;
}

.contact-coming-soon h2 {
    margin: 15px 0 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;
}

.contact-coming-soon > p:not(.surtitle) {
    margin: 0 auto 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    line-height: 1.6;

    color: var(--gris);
}


/* ==================================================
   CONTACT — MOBILE
================================================== */

@media (max-width: 800px) {

    .contact-page-intro {
        padding: 75px 8vw 55px;
    }

    .contact-page-intro h1 {
        font-size: 42px;
    }


    .contact-project-choice {
        padding: 15px 6vw 60px;
    }

    .contact-choice-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .contact-form-section {
        padding: 0 6vw 80px;
    }


    .guided-contact-form fieldset {
        padding: 30px 22px;

        margin-bottom: 45px;
    }

    .guided-contact-form legend {
        font-size: 26px;
    }


    .form-grid-two,
    .form-grid-three {
        grid-template-columns: 1fr;
    }


   .contact-form-note {
    padding: 28px 22px;
}

}


/* ==================================================
   PAGE MENTIONS LÉGALES
================================================== */

.legal-page {
    min-height: 100vh;

    padding: 80px 6vw 60px;

    background: #f7f5f1;

    color: #222222;
}


/* ==================================================
   CONTENEUR
================================================== */

.legal-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}


/* ==================================================
   IDENTITÉ
================================================== */

.legal-brand {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #222222;
}

.legal-subtitle {
    margin: 5px 0 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;
    font-style: italic;

    color: #77736d;
}


/* ==================================================
   SÉPARATEUR
================================================== */

.legal-content .separator {
    width: 45px;
    height: 1px;

    margin: 35px 0 45px;

    background: #c9c5be;
}


/* ==================================================
   TITRE PRINCIPAL
================================================== */

.legal-title {
    margin: 0 0 65px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;

    line-height: 1;

    color: #222222;
}


/* ==================================================
   SECTIONS
================================================== */

.legal-content section {
    padding: 0 0 45px;

    margin: 0 0 45px;

    border-bottom: 1px solid #e2ded7;
}


/* ==================================================
   TITRES DES SECTIONS
================================================== */

.legal-content section h2 {
    margin: 0 0 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1.2;

    color: #222222;
}


/* ==================================================
   TEXTES
================================================== */

.legal-content section p {
    margin: 0 0 18px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.7;

    color: #66625d;
}

.legal-content section p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   DONNÉES PERSONNELLES
================================================== */

#donnees-personnelles {
    scroll-margin-top: 120px;
}


/* ==================================================
   ADRESSES / ÉLÉMENTS IMPORTANTS
================================================== */

.legal-content strong {
    font-weight: 500;

    color: #222222;
}


/* ==================================================
   RETOUR À L'ACCUEIL
================================================== */

.back-link {
    display: inline-block;

    margin-top: 10px;

    padding: 12px 22px;

    border: 1px solid #222222;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: #222222;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.back-link:hover {
    background: #222222;

    color: #ffffff;
}


/* ==================================================
   COPYRIGHT
================================================== */

.legal-copyright {
    margin: 55px 0 0;

    padding-top: 25px;

    border-top: 1px solid #e2ded7;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #8a867f;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 800px) {

    .legal-page {
        padding:
            55px
            7vw
            40px;
    }

    .legal-title {
        margin-bottom: 50px;

        font-size: 48px;
    }

    .legal-content section {
        padding-bottom: 35px;

        margin-bottom: 35px;
    }

    .legal-content section h2 {
        font-size: 27px;
    }

    .legal-content section p {
        font-size: 17px;

        line-height: 1.65;
    }

}


/* ==================================================
   PETITS ÉCRANS
================================================== */

@media (max-width: 480px) {

    .legal-page {
        padding:
            45px
            6vw
            35px;
    }

    .legal-brand {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .legal-subtitle {
        font-size: 18px;
    }

    .legal-content .separator {
        margin:
            28px
            0
            35px;
    }

    .legal-title {
        margin-bottom: 40px;

        font-size: 42px;
    }

    .legal-content section h2 {
        font-size: 25px;
    }

    .legal-content section p {
        font-size: 16px;
    }

    .back-link {
        width: 100%;

        text-align: center;
    }

}
