
:root {
    --ivory: #FFFFF0; /* Fond du site */
    --mocha: #9E7B57; /* Couleur du texte - MOCHA */
    --deep-charcoal: #333333; /* Alternative texte - DEEP CHARCOAL */
    --sage-green: #9CAF88; /* Couleur des titres - SAGE GREEN */
    --taupe: #8B8589; /* Alternative titres - TAUPE */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-hover: all 0.7s cubic-bezier(0.215, 0.610, 0.355, 1);
    --sand-light: #F5F1EA;
    --sand-main: #D6C8B2;
    --sand-dark: #A89B86;
}

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

body {
    font-family: 'Cormorant Garamond', serif; /* Police muse pour texte */
    background-color: var(--ivory); /* Fond IVORY */
    color: var(--mocha); /* Texte MOCHA */
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 100vw;
}

/* --- HEADER & NAV --- */
.header-container {
    padding: 25px 0 15px 0;
    background: rgba(255, 255, 240, 0.98); /* IVORY avec transparence */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.logo-img {
    width: 160px;
    height: auto;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    max-width: 100%;
}

.brand-subtitle {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 1.2rem;
    color: var(--sage-green);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
}

.brand-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background: var(--sage-green); /* Titres SAGE GREEN */
}

.nav-link {
    color: var(--sage-green) !important; /* Titres SAGE GREEN */
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    padding: 0 12px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--sage-green); /* Titres SAGE GREEN */
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid var(--sage-green); /* Titres SAGE GREEN */
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28156, 175, 136, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

/* --- HERO CAROUSEL --- */
.hero-carousel {
    height: 200vh;
    max-height: 870px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-caption h2 {
    font-family: 'Mrs Saint Delafield', cursive; /* Highpath signature style */
    font-size: 4rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.carousel-caption p {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
}

.caption-divider {
    width: 80px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 40px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-indicators [data-bs-target] {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    margin: 0 5px !important;
    border: 1px solid white;
    background: transparent;
    transition: var(--transition-smooth);
}

.carousel-indicators .active {
    background: white;
}

/* --- SECTION 2 : INTRO --- */
.intro-section-wrapper {
    padding: 70px 0;
    background-color: var(--ivory); /* Fond IVORY */
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.intro-content-limited {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.intro-brand-title {
    letter-spacing: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 40px;
    text-align: center;
    word-wrap: break-word;
}

/* .intro-brand-title {
    font-family: 'Mrs Saint Delafield', cursive; 
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 40px;
    text-align: center;
    word-wrap: break-word;
} */

.overlap-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    height: 95px;
    width: 100%;
    overflow: hidden;
}

.text-bg-fade {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--sage-green); /* Titres SAGE GREEN */
    opacity: 0.3;
    font-weight: 300;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.text-fg-script {
    position: absolute;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 3.7rem;
    color: var(--sage-green);
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.description-block {
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

.description-block p {
    margin-bottom: 12px;
    position: relative;
}

.description-block em {
    font-style: italic;
    color: var(--sage-green); /* Titres SAGE GREEN */
}

/* --- SECTION 3 : SPECIALISTS --- */
.specialists-section {
    padding: 70px 0 90px;
    background-color: var(--ivory); /* Fond IVORY */
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.mosaic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(250px, 320px) 1fr;
    align-items: start;
    gap: 20px;
}

.mosaic-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mosaic-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.mosaic-left img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.mosaic-left.visible .img-top {
    animation: fadeInUp 0.8s 0.3s forwards;
}

.mosaic-left.visible .img-bottom {
    animation: fadeInUp 0.8s 0.6s forwards;
}

.img-top {
    height: 180px;
}

.img-bottom {
    height: 440px;
}

.mosaic-center {
    position: relative;
    z-index: 10;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mosaic-center.visible {
    opacity: 1;
    transform: translateY(0);
}

.center-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    opacity: 0;
}

.mosaic-center.visible .center-img {
    margin-top: 64px;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.mosaic-center:hover .center-img {
    transform: translateY(-5px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.08);
}

.mosaic-right-container {
    margin-left: -30px;
    padding-top: 10px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mosaic-right-container.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-header-overlap {
    position: relative;
    margin-bottom: 30px;
    z-index: 15;
    width: 100%;
}

.bg-text-faded {
    margin-left: -191px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sage-green); /* Titres SAGE GREEN */
    opacity: 0.3;
}

.fg-text-script {
    position: absolute;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 3.6rem;
    color: var(--sage-green);
    top: 5px;
    left: -180px;
    white-space: nowrap;
}

.mosaic-right-box {
    width: 80%;
    background-color: #faf8f4; /* Légère variation d'Ivory pour contraste */
    padding: 30px 25px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.mosaic-right-container.visible .mosaic-right-box {
    margin-top: 58px;
    animation: fadeInUp 0.8s 1.2s forwards;
}

.mosaic-right-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--sage-green); /* Titres SAGE GREEN */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mosaic-right-box:hover::before {
    transform: scaleY(1);
}

.specialist-p {
    font-size: 0.95rem;
    color: var(--mocha); /* Texte MOCHA */
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.more-services-link {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 1.8rem;
    color: var(--sage-green);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.more-services-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-green); /* Titres SAGE GREEN */
    transition: width 0.4s ease;
}

.more-services-link:hover {
    color: #7e8f6c; /* Version plus foncée de SAGE GREEN */
}

.more-services-link:hover::after {
    width: 100%;
}

/* --- SECTION 4 : SERVICES SLIDER --- */
.services-section {
    padding: 50px 0 100px;
    background-color: #F9F6F0; /* Ivory légèrement plus foncé */
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services-title {
    font-family: 'Mrs Saint Delafield', cursive; /* Highpath signature style */
    font-size: 3.2rem;
    color: var(--sage-green); /* Titres SAGE GREEN */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--sage-green); /* Titres SAGE GREEN */
    opacity: 0.5;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--mocha); /* Texte MOCHA */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Slider - Style comme sur la capture */
.services-slider-container {
    position: relative;
    padding: 0 60px; /* Plus d'espace pour les chevrons */
}

.services-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 5px 40px;
    scroll-snap-type: x mandatory;
}

.services-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Nouveau wrapper pour gérer le flex correctement */
.service-card-wrapper {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 320px;
    height: 450px;
    scroll-snap-align: start;
}

/* Lien prend toute la taille de la carte */
.service-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Modification pour afficher 3 cartes par slide */
.service-card {
    /* flex: 0 0 calc(33.333% - 17px);  */
    min-width: 320px;
    height: 450px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition-hover);
    transform-origin: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-hover);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Overlay plus subtil comme sur la capture */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-hover);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    color: white;
    transform: translateY(20px);
    transition: var(--transition-hover);
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-name {
    font-family: 'Mrs Saint Delafield', cursive; /* Highpath signature style */
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-hover);
    transition-delay: 0.1s;
}

.service-card:hover .service-description {
    opacity: 1;
    transform: translateY(0);
}

/* Numéro de service en bas à gauche */
.service-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
    transition: var(--transition-smooth);
    z-index: 2;
}

/* Contrôles du slider - Positionnement comme sur la capture */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ivory); /* Fond IVORY */
    border: 2px solid var(--sage-green); /* Titres SAGE GREEN */
    color: var(--sage-green); /* Titres SAGE GREEN */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--sage-green); /* Titres SAGE GREEN */
    color: var(--ivory); /* Fond IVORY */
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Dots indicateurs centrés en bas */
.slider-dots-container {
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage-green); /* Titres SAGE GREEN */
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.slider-dot:hover {
    opacity: 0.7;
}

/* --- SECTION 5 : PARTNERS SLIDER --- */
.partners-section {
    padding: 90px 0 100px;
    background-color: var(--ivory); /* Fond IVORY */
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.partners-title {
    font-family: 'Mrs Saint Delafield', cursive; /* Highpath signature style */
    font-size: 3.2rem;
    color: var(--sage-green); /* Titres SAGE GREEN */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--sage-green); /* Titres SAGE GREEN */
    opacity: 0.5;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: var(--mocha); /* Texte MOCHA */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partners Slider */
.partners-slider-container {
    position: relative;
    padding: 0 60px;
}

.partners-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 30px 10px 50px;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    flex: 0 0 calc(20% - 32px); /* 5 logos par ligne */
    min-width: 180px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-hover);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(156, 175, 136, 0.1); /* SAGE GREEN très léger */
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.05) 0%, rgba(156, 175, 136, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--sage-green);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.7;
    transition: var(--transition-hover);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation d'onde au hover */
.partner-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.1) 0%, rgba(156, 175, 136, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.partner-logo:hover::after {
    width: 200px;
    height: 200px;
}

/* Partners Slider Controls */
.partners-slider-controls {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.partners-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ivory);
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partners-slider-btn:hover {
    background: var(--sage-green);
    color: var(--ivory);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Partners Dots */
.partners-dots-container {
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
}

.partners-dots {
    display: flex;
    gap: 10px;
}

.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-green);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.partner-dot.active {
    opacity: 1;
    transform: scale(1.3);
}

.partner-dot:hover {
    opacity: 0.7;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "left center"
            "right right";
        gap: 30px;
    }
    
    .mosaic-left {
        grid-area: left;
    }
    
    .mosaic-center {
        grid-area: center;
        padding-top: 0;
    }
    
    .center-img {
        margin-top: 0;
    }
    
    .mosaic-right-container {
        grid-area: right;
        margin-left: 0;
    }
    
    .section-header-overlap {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .bg-text-faded {
        margin-left: 0;
        font-size: 1.2rem;
    }
    
    .fg-text-script {
        position: relative;
        top: 0;
        left: 0;
        font-size: 2.2rem;
        margin-top: 10px;
    }
    
    .mosaic-right-box {
        width: 100%;
        margin-top: 0 !important;
    }

    .carousel-caption {
        top: 60%;
        left: 50%;
    }
    
    /* 2 cartes par slide sur tablette */
    .service-card {
        flex: 0 0 calc(50% - 17px); /* 2 cards visible */
        height: 420px;
        min-width: 280px;
    }
    
    .services-slider-container {
        padding: 0 50px;
    }
    
    /* Partners responsive */
    .partner-logo {
        flex: 0 0 calc(25% - 30px); /* 4 logos par ligne */
        min-width: 160px;
        height: 140px;
    }
    
    .partners-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .carousel-caption h2 {
        font-size: 3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .intro-brand-title {
        font-size: 2rem;
    }
    
    .text-bg-fade {
        font-size: 1.4rem;
    }
    
    .text-fg-script {
        font-size: 2rem;
    }
    
    .description-block {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .mosaic-grid {
        gap: 25px;
    }

    .carousel-caption {
        top: 60%;
        left: 50%;
    }
    
    .services-title, .partners-title {
        font-size: 2.8rem;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 17px); /* 2 cards visible */
        height: 400px;
        min-width: 260px;
    }
    
    .services-slider-container {
        padding: 0 40px;
    }
    
    /* Partners responsive */
    .partner-logo {
        flex: 0 0 calc(33.333% - 27px); /* 3 logos par ligne */
        min-width: 150px;
        height: 130px;
        padding: 20px;
    }
    
    .partners-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        top: 38%;
    }

    .header-container {
        padding: 15px 0 10px 0;
    }
    
    .logo-img {
        width: 140px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 8px !important;
        text-align: center;
    }
    
    .navbar-nav {
        background: rgba(255, 255, 240, 0.95); /* IVORY avec transparence */
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .hero-carousel {
        height: 40vh;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .caption-divider {
        width: 60px;
        margin-bottom: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .intro-section-wrapper {
        padding: 50px 0;
    }
    
    .intro-brand-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .overlap-container {
        height: 70px;
        margin-bottom: 30px;
    }
    
    .text-bg-fade {
        font-size: 1.1rem;
        white-space: normal;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .text-fg-script {
        font-size: 1.5rem;
        white-space: normal;
        text-align: center;
        padding: 0 10px;
        width: 90%;
    }
    
    .description-block {
        font-size: 1rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "center"
            "left"
            "right";
        gap: 30px;
    }
    
    .center-img {
        height: 100%;
    }

    .mosaic-left img {
        width: 100%;
        height: 100%;
    }
    
    
    .img-top, .img-bottom {
        height: 220px;
    }
    
    .specialist-p {
        font-size: 1rem;
    }
    
    .mosaic-right-box {
        padding: 25px 20px;
        width: 100%;
    }
    
    .more-services-link {
        font-size: 1.5rem;
    }

    .carousel-caption {
        top: 60%;
        left: 50%;
    }
    
    .services-section, .partners-section {
        padding: 70px 0 80px;
    }
    
    .services-title, .partners-title {
        font-size: 2.4rem;
    }
    
    .services-subtitle, .partners-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .services-slider-container, .partners-slider-container {
        padding: 0 30px;
    }
    
    /* 1 carte par slide sur mobile */
    .service-card {
        flex: 0 0 calc(100% - 17px); /* 1 card visible */
        height: 380px;
        min-width: 100%;
    }
    
    .service-name {
        font-size: 2.2rem;
    }
    
    .slider-btn, .partners-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Partners responsive */
    .partner-logo {
        flex: 0 0 calc(50% - 20px); /* 2 logos par ligne */
        min-width: 140px;
        height: 120px;
        padding: 15px;
    }
    
    .partners-slider {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        top: 38%;
    }

    .logo-img {
        width: 130px;
    }
    
    .brand-subtitle {
        font-size: 0.75rem;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .intro-brand-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .overlap-container {
        height: 60px;
    }
    
    .text-bg-fade {
        font-size: 0.9rem;
    }
    
    .text-fg-script {
        font-size: 1.5rem;
        width: 95%;
    }
    
    .description-block {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .mosaic-left {
        gap: 20px;
    }
    
    .center-img {
        height: 100%;
    }

    .mosaic-left img {
        width: 100%;
        height: 100%;
    }
    
    .img-top, .img-bottom {
        height: 180px;
    }
    
    .bg-text-faded {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .fg-text-script {
        font-size: 1.8rem;
    }
    
    .specialist-p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .more-services-link {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.8rem;
        padding: 0 15px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .carousel-caption {
        top: 50%;
        left: 50%;
    }
    
    .services-section, .partners-section {
        padding: 60px 0 70px;
    }
    
    .services-title, .partners-title {
        font-size: 2rem;
    }
    
    .services-subtitle, .partners-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .services-slider-container, .partners-slider-container {
        padding: 0 20px;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-overlay {
        padding: 25px;
    }
    
    .service-name {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .slider-btn, .partners-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Partners responsive */
    .partner-logo {
        flex: 0 0 calc(50% - 15px); /* 2 logos par ligne */
        min-width: 130px;
        height: 110px;
        padding: 12px;
    }
    
    .partners-slider {
        gap: 15px;
        padding: 20px 10px 40px;
    }
}

@media (max-width: 375px) {
    .slider-controls {
        top: 34%;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .intro-brand-title {
        font-size: 1.3rem;
    }
    
    .text-bg-fade {
        font-size: 0.8rem;
    }
    
    .text-fg-script {
        font-size: 1.5rem;
    }
    
    .description-block {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .center-img {
        height: 250px;
    }
    
    .img-top, .img-bottom {
        height: 150px;
    }
    
    .specialist-p {
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 4px 6px !important;
        font-size: 0.85rem;
    }

    .carousel-caption {
        top: 50%;
        left: 50%;
    }
    
    .services-title, .partners-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        height: 320px;
    }
    
    .service-name {
        font-size: 1.8rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .slider-btn, .partners-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Partners responsive */
    .partner-logo {
        flex: 0 0 calc(100% - 20px); /* 1 logo par ligne sur très petit mobile */
        min-width: 100%;
        height: 100px;
        padding: 15px;
    }
}

/* Footer */
footer {
    background: #faf8f4; /* Légère variation d'Ivory pour contraste */
    padding: 50px 0 25px;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    opacity: 0.7;
    max-width: 100%;
}

.footer-text {
    color: var(--mocha); /* Texte MOCHA */
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green); /* Titres SAGE GREEN */
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--sage-green); /* Titres SAGE GREEN */
    color: white;
}

.copyright {
    font-size: 0.75rem;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid rgba(156, 175, 136, 0.2); /* SAGE GREEN avec transparence */
    padding-left: 15px;
    padding-right: 15px;
}


/* ABOUT US */

.about-hero-section {
    padding: 80px 0;
    font-family: 'Cormorant Garamond', serif;
}

/* Titre Calligraphié (Rose) - Ajusté pour le décalage */
.script-title-container {
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; /* Décalage à gauche */
}

.script-title {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin: -15px;
    text-transform: none;
    letter-spacing: 1px;
}

.script-title.subtitle {
    padding-left: 60px; /* Décalage pour l'effet manuscrit */
    margin-top: -10px; /* Rapprocher des deux lignes */
}

/* Titre Principal (Majuscules) - Ajusté */
.about-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 5px;
    color: #555;
    margin: 30px auto 30px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 800px;
    text-align: right;
    line-height: 1.8;
    padding: 0 74px;
}

/* Texte de description */
.about-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    /* line-height: 1.7; */
    color: var(--deep-charcoal);
    margin-bottom: 25px;
    font-weight: 300;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 63px 0 90px;
}

/* Ajustement des sauts de ligne */
.about-description br {
    display: block;
    margin: 5px 0;
    content: "";
}

/* Responsive amélioré */
@media (max-width: 1200px) {
    .about-description {
        padding: 0 50px 0 90px;
    }
    
    .about-main-title {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        padding: 80px 0;
    }
    
    .script-title {
        font-size: 3.2rem;
    }
    
    .script-title.subtitle {
        padding-left: 40px;
    }
    
    .about-main-title {
        font-size: 1rem;
        letter-spacing: 3px;
        margin: 40px auto 50px;
        padding: 0 40px;
        text-align: center;
    }
    
    .about-description {
        font-size: 1.05rem;
        max-width: 90%;
        padding: 0 40px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .script-title-container {
        padding-left: 10px;
        max-width: 90%;
    }
    
    .script-title {
        font-size: 2.5rem;
        line-height: 1;
        margin: -10px;
    }
    
    .script-title.subtitle {
        padding-left: 30px;
        margin-top: -8px;
    }
    
    .about-main-title {
        font-size: 0.9rem;
        letter-spacing: 2.5px;
        margin: 30px auto 40px;
        max-width: 90%;
        padding: 0 20px;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 95%;
        padding: 0 20px;
    }
    
    .about-description br {
        margin: 3px 0;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 50px 0;
    }
    
    .script-title {
        font-size: 2.2rem;
        margin: -5px;
    }
    
    .script-title.subtitle {
        padding-left: 25px;
        margin-top: -5px;
    }
    
    .about-main-title {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin: 25px auto 35px;
        padding: 0 15px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .about-description br {
        display: none; /* Supprime les sauts de ligne forcés sur mobile */
    }
}

@media (max-width: 480px) {
    .script-title {
        font-size: 1.8rem;
    }
    
    .script-title.subtitle {
        padding-left: 20px;
    }
    
    .about-main-title {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
}

.about-image-section {
    padding: 20px 0 80px 0; /* Espacement avec le texte en haut et le footer en bas */
    /* background-color: #ffffff; */
}

.full-width-wedding-img {
    width: 100%;
    max-width: 1200px; 
    height: 500px; /* Votre hauteur fixe */
    
    /* SOLUTION : */
    object-fit: cover; /* L'image remplit le cadre sans se déformer (elle sera légèrement rognée) */
    object-position: center; /* Centre l'image dans le cadre pour ne pas couper les visages ou les éléments importants */
    
    display: block;
    margin: 0 auto;
}

/* Ajustement pour les petits écrans */
@media (max-width: 768px) {
    .about-image-section {
        padding: 10px 15px 50px 15px;
    }
}

.founder-section {
    position: relative;
    padding: 100px 0;
    /* background-color: #fff; */
    overflow: hidden;
}

/* Le grand rectangle rose pâle qui dépasse à gauche */
.bg-decorative-pink {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 35%;
    height: 500px;
    background-color: var(--mocha);
    z-index: 1;
}

/* On "rentre" le contenu à gauche et à droite */
.founder-container {
    padding-left: 80px; 
    padding-right: 80px;
    position: relative;
    z-index: 2;
}

.script-greeting {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 3.9rem;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-align: center;
}

/* L'image est un peu décalée par rapport au bord du bloc rose */
.founder-img-wrapper {
    margin-left: 90px;
}

.founder-img {
    width: 100%;
    max-width: 280px; /* Taille fidèle à la capture */
    height: auto;
    display: block;
}

/* Typographie Texte */
.founder-name {
    font-family: 'Pinyon Script', cursive;
    color: var(--sage-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.founder-role {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.founder-bio p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--mocha); /* Couleur marron clair pour remplacer var(--mocha) */
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Classe pour la colonne de texte avec les marges */
.founder-text-col {
    margin-top: 15px;
    margin-left: -30px;
}

/* --- RESPONSIVE IMPROVED --- */

/* Pour les très grands écrans */
@media (min-width: 1400px) {
    .founder-container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* Pour les écrans larges (desktop) */
@media (max-width: 1200px) {
    .founder-container {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .bg-decorative-pink {
        left: 30px;
        width: 38%;
    }
    
    .founder-img-wrapper {
        margin-left: 60px;
    }
    
    .founder-text-col {
        margin-left: 0px;
    }
    
    .founder-bio p {
        font-size: 1.05rem;
    }
}

/* Pour les tablettes */
@media (max-width: 992px) {
    .founder-section {
        padding: 80px 0;
    }
    
    .founder-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .bg-decorative-pink {
        left: 20px;
        width: 40%;
        height: 450px;
        top: 50px;
    }
    
    .script-greeting {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }
    
    .founder-img-wrapper {
        margin-left: 40px;
    }
    
    .founder-img {
        max-width: 250px;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-role {
        font-size: 0.75rem;
        letter-spacing: 2.5px;
        margin-bottom: 30px;
    }
    
    .founder-bio p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .founder-text-col {
        margin-top: 10px;
        margin-left: 0px;
    }
}

/* Pour les tablettes en mode portrait et grands mobiles */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .bg-decorative-pink {
        width: 60%;
        height: 350px;
        left: 15px;
        top: 40px;
    }
    
    .script-greeting {
        font-size: 3rem;
        margin-bottom: 35px;
    }
    
    .founder-img-wrapper {
        margin-left: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .founder-img {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .founder-name {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .founder-role {
        font-size: 0.7rem;
        letter-spacing: 2px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .founder-bio p {
        font-size: 0.95rem;
        text-align: justify;
        padding: 0 10px;
    }
    
    /* Supprimer les marges sur mobile */
    .founder-text-col {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }
}

/* Pour les mobiles */
@media (max-width: 576px) {
    .founder-section {
        padding: 50px 0;
    }
    
    .founder-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .bg-decorative-pink {
        width: 95%;
        height: 280px;
        left: 10px;
        top: 30px;
    }
    
    .script-greeting {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .founder-img {
        max-width: 200px;
    }
    
    .founder-name {
        font-size: 1.4rem;
    }
    
    .founder-role {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .founder-bio p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

/* Pour les très petits mobiles */
@media (max-width: 375px) {
    .script-greeting {
        font-size: 2.2rem;
    }
    
    .founder-img {
        max-width: 180px;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .founder-role {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .founder-bio p {
        font-size: 0.85rem;
    }
    
    .bg-decorative-pink {
        width: 95%;
        height: 250px;
    }
}

/* Zone de Signature */
.signature-area {
    gap: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 40px; */
    position: relative;
    padding-bottom: 50px;
}

/* Bloc de texte avec fond rose pâle */
.signature-text-box {
    background-color: var(--sand-light);
    padding: 10px 10px;
    max-width: 65%;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--sand-main);
}

.signature-text {
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: var(--mocha);
    line-height: 1.4;
    margin-bottom: 10px;
}

.signature-author {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--mocha);
    text-align: right;
    margin-bottom: 0;
    font-weight: 600;
}

/* Image de la signature à droite */
.signature-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.signature-img {
    max-width: 250px; /* Ajustez selon la taille de votre fichier signature.PNG */
    height: auto;
    /* La signature dépasse souvent légèrement sur le texte dans ce type de design */
    margin-left: -50px; 
    position: relative;
    z-index: 2;
}

/* --- RESPONSIVE SIGNATURE --- */
@media (max-width: 768px) {
    .signature-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .signature-text-box {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .signature-author {
        text-align: center;
    }
    
    .signature-img {
        margin-left: 0;
        max-width: 180px;
    }
}

/* Container pour rendre la carte responsive */
.map-responsive-container {
    overflow: hidden;
    padding-bottom: 40%; /* Ratio pour un format large comme sur votre capture */
    position: relative;
    height: 0;
    border: 1px solid #D6C8B2; /* Bordure couleur "Sand" */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 0 auto;
    max-width: 1200px;
}

.map-destination-section {
    /* padding: 80px 0; */
    position: relative;
    z-index: 1;
}

.map-responsive-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    filter: grayscale(0.2) contrast(1.1); /* Optionnel : pour un look plus "éditorial" */
}

.brand-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--mocha);
    letter-spacing: 1px;
    margin-top: 25px;
}

.brand-address i {
    margin-right: 10px;
    color: var(--sage-green);
}

.script-map-title {
    color: var(--sage-green);
    font-size: 4rem;
    margin-bottom: 30px;
    font-family: 'Mrs Saint Delafield', cursive;
    line-height: 1.1;
}

.map-subtitle {
    margin-bottom: 45px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.map-subtitle br {
    display: block;
    margin: 5px 0;
}

/* --- RESPONSIVE DESIGN --- */

/* Pour les écrans moyens (tablette paysage) */
@media (max-width: 1200px) {
    
    .script-map-title {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .map-subtitle {
        margin-bottom: 35px;
        font-size: 1.15rem;
    }
    
    .map-responsive-container {
        padding-bottom: 45%;
    }
}

/* Pour les tablettes */
@media (max-width: 992px) {
    
    .script-map-title {
        font-size: 3rem;
    }
    
    .map-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .map-responsive-container {
        padding-bottom: 50%;
        border-width: 1px;
    }
    
    .brand-address {
        font-size: 1rem;
        margin-top: 20px;
    }
}

/* Pour les tablettes en mode portrait et mobiles */
@media (max-width: 768px) {
    
    .script-map-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .map-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .map-subtitle br {
        display: none; /* Supprime les sauts de ligne sur mobile */
    }
    
    .map-responsive-container {
        padding-bottom: 65%; /* Ratio plus adapté pour mobile */
        margin: 0 15px;
        border-radius: 3px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    }
    
    .brand-address {
        font-size: 0.95rem;
        text-align: center;
        margin-top: 20px;
    }
    
    /* Ajustement du conteneur pour mobile */
    .col-lg-10 {
        padding: 0 15px;
    }
}

/* Pour les mobiles */
@media (max-width: 576px) {
    .script-map-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .map-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .map-responsive-container {
        padding-bottom: 70%; /* Légèrement plus haut sur très petits écrans */
        margin: 0 10px;
        border-width: 1px;
    }
    
    .brand-address {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/* Pour les très petits mobiles */
@media (max-width: 375px) {
    .script-map-title {
        font-size: 2rem;
    }
    
    .map-subtitle {
        font-size: 0.95rem;
    }
    
    .map-responsive-container {
        padding-bottom: 75%;
    }
    
    .brand-address {
        font-size: 0.85rem;
    }
}

/* Pour les très grands écrans */
@media (min-width: 1400px) {
    
    .script-map-title {
        font-size: 4.5rem;
    }
    
    .map-subtitle {
        font-size: 1.3rem;
    }
    
    .map-responsive-container {
        max-width: 1300px;
        padding-bottom: 35%;
    }
}

/* ============================================
   ANIMATIONS ET HOVER EFFETS POUR ABOUT US
   ============================================ */

/* Effets hover généraux pour les images */
.founder-img, .full-width-wedding-img {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.6s ease,
                filter 0.6s ease;
}

/* Effets pour la signature */
.signature-area {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.signature-img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.signature-area:hover .signature-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Effets pour les titres script */
.script-title, .script-greeting, .script-map-title {
    transition: color 0.4s ease, transform 0.4s ease;
}

.script-title:hover, .script-greeting:hover, .script-map-title:hover {
    transform: translateY(-3px);
}

/* Effets pour la carte */
.map-responsive-container iframe {
    transition: filter 0.5s ease;
}

.map-responsive-container:hover iframe {
    filter: grayscale(0) contrast(1.05) brightness(1.02);
}

/* Effets pour l'adresse */
.brand-address i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-address:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--sage-green);
}

/* Animation subtile pour le fond rose décoratif */
.bg-decorative-pink {
    animation: softPulse 8s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Effet de révélation progressive */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animation d'entrée pour le contenu textuel */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .founder-img:hover,
    .full-width-wedding-img:hover,
    .map-responsive-container:hover {
        transform: none !important;
    }
    
    .bg-decorative-pink {
        animation: none;
    }
}

/* OUR SERVICE CSS */
.services-section-p {
    padding: 80px 5%;
    /* background-color: #fff; */
    text-align: center;
}

/* En-tête de section */
.cursive-main {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 5rem;
    margin-bottom: 0;
    font-weight: 400;
}

.cursive-sub {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 4rem;
    margin-top: -15px;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Grille et Décalage */
.services-grid-p {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card-p {
    text-align: left;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.service-card-p img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 25px;
}

.card-title-p {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.card-description-p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Adaptation Tablette */
@media (max-width: 1024px) {
    .services-section-p {
        padding: 60px 5%;
    }
    
    .cursive-main {
        font-size: 3.5rem;
    }
    
    .cursive-sub {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .services-grid-p {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .service-card-p {
        max-width: 100%;
    }
    
    .service-card-p img {
        height: 350px;
    }
    
    .card-title-p {
        font-size: 2.5rem;
    }
    
    .card-description-p {
        font-size: 1rem;
    }
    
    .spacer { 
        display: none; 
    }
}

/* Adaptation Mobile (Petits écrans) */
@media (max-width: 768px) {
    .services-section-p {
        padding: 50px 20px;
    }
    
    .cursive-main {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .cursive-sub {
        font-size: 2rem;
        margin-top: -10px;
        margin-bottom: 40px;
    }
    
    .services-grid-p {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card-p {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-card-p img {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .card-title-p {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .card-description-p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Adaptation Mobile très petits écrans */
@media (max-width: 480px) {
    .services-section-p {
        padding: 40px 15px;
    }
    
    .cursive-main {
        font-size: 2.2rem;
    }
    
    .cursive-sub {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid-p {
        gap: 35px;
    }
    
    .service-card-p img {
        height: 250px;
    }
    
    .card-title-p {
        font-size: 2rem;
    }
    
    .card-description-p {
        font-size: 0.9rem;
    }
}

/* Adaptation pour les écrans très larges */
@media (min-width: 1600px) {
    .services-grid-p {
        max-width: 1500px;
        gap: 60px 50px;
    }
    
    .service-card-p {
        max-width: 450px;
    }
    
    .service-card-p img {
        height: 450px;
    }
}

/* .portfolio-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 450px;
    background-image: url('../img/our_service_resize.jpg'); 
    background-size: cover;
    background-position: center center; 
    
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.portfolio-banner-s {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    /* background-image: url('../img/our_service.jpg');  */
    background-size: cover;
    background-attachment: fixed; 
    background-position: center center; 
    
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* L'overlay doit couvrir tout l'espace sans marges */
.portfolio-overlay-s {
    background-color: rgba(255, 255, 255, 0.55); /* Augmenté pour l'aspect "lumineux" de la capture */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.portfolio-title-s {
    font-family: 'Mrs Saint Delafield', cursive; /* Ou 'Great Vibes' selon votre préférence */
    font-size: 3.5rem;
    color: var(--deep-charcoal);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.portfolio-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--deep-charcoal);
    text-decoration: none;
    padding: 15px 40px;
    border: 1px solid var(--mocha); /* Le cadre fin autour du bouton */
    transition: all 0.3s ease;
    background: transparent;
}

.portfolio-btn:hover {
    background-color: var(--mocha);
    color: #fff;
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2.2rem;
    }
    .portfolio-banner {
        height: 40vh;
    }
}

/* PORTFOLIO CSS */

/* Section Portfolio */
.portfolio-intro {
    padding: 60px 0 40px;
}

/* Titres */
.script-title-portfolio {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.1;
}

.main-title-portfolio {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* Conteneur description */
.portfolio-description-div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Paragraphe descriptif */
.portfolio-description {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-align: left;
    font-size: 1.1rem;
    color: var(--deep-charcoal);
    line-height: 1.7;
    letter-spacing: 0.5px;
    padding: 0 15px;
}

/* Galerie */
.portfolio-gallery {
    padding: 40px 0;
}

/* Conteneur des images - ajustement pour mobile */
.portfolio-item {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    margin-bottom: 20px;
    height: 300px; /* Hauteur par défaut pour mobile */
}

/* Hauteurs spécifiques pour desktop */
.portfolio-item.tall { 
    height: 550px; 
}

.portfolio-item.short { 
    height: 380px; 
}

/* Images */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay { 
    opacity: 1; 
}

.portfolio-item:hover img { 
    transform: scale(1.08); 
}

/* Texte overlay */
.overlay-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--deep-charcoal);
}

.overlay-text p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--deep-charcoal);
}

/* Bouton */
.btn-outline-portfolio {
    background-color: transparent;
    border: 1px solid var(--sage-green); 
    color: var(--deep-charcoal); 
    padding: 12px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    /* text-transform: lowercase; */
    letter-spacing: 3px;
    transition: all 0.4s ease;
    border-radius: 0;
    display: inline-block;
    cursor: pointer;
    width: auto;
    min-width: 200px;
}

.btn-outline-portfolio:hover {
    background-color: var(--sage-green);
    color: #ffffff;
    border-color: var(--sage-green);
    transform: translateY(-2px);
}

/* ========== MEDIA QUERIES ========== */

/* Tablettes */
@media (max-width: 992px) {
    .script-title-portfolio {
        font-size: 3rem;
    }
    
    .main-title-portfolio {
        font-size: 3.5rem;
    }
    
    .portfolio-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .portfolio-item.tall { 
        height: 450px; 
    }
    
    .portfolio-item.short { 
        height: 300px; 
    }
    
    .overlay-text h3 {
        font-size: 1.8rem;
    }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
    .portfolio-intro {
        padding: 40px 0 20px;
    }
    
    .script-title-portfolio {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }
    
    .main-title-portfolio {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .portfolio-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Galerie mobile - 1 colonne */
    .portfolio-gallery .row.g-4 {
        margin: 0;
    }
    
    .portfolio-gallery .col-md-6 {
        padding: 0;
    }
    
    /* Hauteurs égales pour toutes les images sur mobile */
    /* .portfolio-item,
    .portfolio-item.tall,
    .portfolio-item.short {
        height: 250px !important;
        margin-bottom: 15px;
    } */
    
    /* Réduire l'espacement vertical */
    .portfolio-gallery {
        padding: 20px 0;
    }
    
    /* Bouton mobile */
    .btn-outline-portfolio {
        padding: 10px 30px;
        min-width: 180px;
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    /* Overlay texte mobile */
    .overlay-text h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .overlay-text p {
        font-size: 1rem;
    }
}

/* Petits mobiles (≤576px) */
@media (max-width: 576px) {
    .script-title-portfolio {
        font-size: 2rem;
    }
    
    .main-title-portfolio {
        font-size: 2.5rem;
    }
    
    .portfolio-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* .portfolio-item,
    .portfolio-item.tall,
    .portfolio-item.short {
        height: 200px !important;
    } */
    
    .btn-outline-portfolio {
        padding: 8px 25px;
        min-width: 160px;
        font-size: 12px;
    }
    
    .overlay-text h3 {
        font-size: 1.3rem;
    }
    
    .overlay-text p {
        font-size: 0.9rem;
    }
}

/* Très petits écrans (≤375px) */
@media (max-width: 375px) {
    .script-title-portfolio {
        font-size: 1.8rem;
    }
    
    .main-title-portfolio {
        font-size: 2.2rem;
    }
    
    /* .portfolio-item,
    .portfolio-item.tall,
    .portfolio-item.short {
        height: 180px !important;
    } */
}

/* Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in-custom {
    animation: fadeIn 0.8s forwards;
}


/* FEATURED SECTION CSS */
.featured-in {
    background-color: var(--ivory); 
    padding: clamp(40px, 8vw, 80px) 0;
    margin-bottom: 20px;
}

.featured-title {
    font-family: 'Mrs Saint Delafield', cursive; 
    color: var(--sage-green);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: clamp(15px, 3vw, 30px);
    line-height: 1.2;
}

.brand-logo {
    max-height: clamp(70px, 10vw, 100px);
    width: auto;
    filter: grayscale(0); 
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.brand-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.row.align-items-center {
    row-gap: clamp(20px, 4vw, 40px);
}

/* Pour les tablettes */
@media (max-width: 992px) {
    .featured-in {
        padding: 50px 0;
    }
    
    .brand-logo {
        max-height: 85px;
    }
}

/* Pour les petites tablettes */
@media (max-width: 768px) {
    .featured-in {
        padding: 40px 0;
    }
    
    .featured-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .brand-logo {
        max-height: 75px;
    }
    
    .row.align-items-center {
        row-gap: 30px;
    }
}

/* Pour les mobiles */
@media (max-width: 576px) {
    .featured-in {
        padding: 30px 0;
    }
    
    .featured-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
    
    .row.align-items-center {
        row-gap: 25px;
    }
    
    .col-6 {
        padding: 0 10px;
    }
}

/* Pour les très petits mobiles */
@media (max-width: 375px) {
    .brand-logo {
        max-height: 50px;
    }
    
    .row.align-items-center {
        row-gap: 20px;
    }
    
    .col-6 {
        padding: 0 8px;
    }
}

/* Pour les grands écrans */
@media (min-width: 1400px) {
    .featured-in {
        padding: 80px 0;
    }
    
    .featured-title {
        font-size: 4rem;
        margin-bottom: 40px;
    }
    
    .brand-logo {
        max-height: 110px;
    }
}

/* PAGE CONTACT CSS */
.contact-section {
    background-image: url('../img/bg-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0%;
    background-attachment: fixed;
    height: 1200px;
}

.contact-overlay {
    background-color: rgba(255, 255, 255, 0.4); 
    height: 1200px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease;
}

.header-card {
    /* margin-top: 6rem; */
    padding-top: 60px;
    padding-bottom: 60px;
}

.script-text {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green); 
    font-size: 4rem;
    margin-bottom: 20px;
}

.script-text-small {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--sage-green);
    font-size: 2.2rem;
}

.contact-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--deep-charcoal);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.italic-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-charcoal);
    font-size: 1rem;
}

/* Styles des champs de formulaire */
.form-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.form-control {
    background-color: rgba(245, 245, 245, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 12px 15px;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--sage-green);
    color: var(--deep-charcoal);
    box-shadow: 0 2px 8px rgba(149, 157, 165, 0.1);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid var(--sage-green);
    color: var(--deep-charcoal);
    box-shadow: 0 3px 12px rgba(149, 157, 165, 0.2);
    outline: none;
}

.send-btn {
    background-color: var(--sage-green);
    color: white;
    border: 1px solid var(--sage-green);
    border-radius: 2px;
    padding: 14px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.send-btn:hover {
    background-color: transparent;
    color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--sage-green);
}

.send-btn:active {
    transform: translateY(0);
}

.send-btn::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.send-btn:hover::after {
    right: 15px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .script-text { font-size: 3rem; }
    .send-btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
    .send-btn::after {
        right: 30px;
    }
    .send-btn:hover::after {
        right: 25px;
    }
}