/* =========================================================
   1. CONFIGURATION GÉNÉRALE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f1ee;
    color: #1a1a1a;
    line-height: 1.6;
    padding-left: 280px;
    overflow-x: hidden;
}

main {
    display: block;
}

p {
    text-align: justify;
    hyphens: auto;
    line-height: 1.8;
}

/* =========================================================
   2. BARRE HAUTE
   ========================================================= */
.top-bar {
    background: radial-gradient(circle at 50% 100%, #1a2c44 0%, #05080a 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    padding: 12px 5%;
    text-align: right;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    position: sticky;
    top: 0;
    z-index: 999;
    color: #c5a059;
    text-transform: uppercase;
    font-weight: 500;
}
/* =========================================================
   20. PAGE EXPERTISE
   ========================================================= */
.expertise-page,
.expertise-hero,
.expertise-intro,
.expertise-services,
.expertise-process,
.expertise-focus {
    background-color: #f4f1ee;
}

.expertise-page {
    width: 100%;
}

.expertise-hero {
    padding: 110px 8% 80px 8%;
}

.expertise-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    color: #1a1a1a;
}

.expertise-hero .line-1,
.expertise-hero .line-2 {
    display: block;
}

.expertise-hero .line-2 {
    color: #c5a059;
    padding-left: 60px;
}

.expertise-hero .separator-line {
    width: 100px;
    height: 1px;
    background: #c5a059;
    margin: 30px 0 25px 0;
}

.expertise-hero .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.9;
    max-width: 700px;
}

.expertise-intro {
    padding: 30px 8% 110px 8%;
}

.expertise-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

.expertise-intro-text .small-label,
.expertise-section-title span,
.expertise-focus-box .small-label {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b8b8b;
}

.expertise-intro-text h2,
.expertise-section-title h2,
.expertise-focus-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.expertise-intro-text p,
.expertise-card p,
.process-content p,
.expertise-focus-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    color: #555;
    margin: 0 0 18px 0;
}

.expertise-intro-photo {
    width: 100%;
    overflow: hidden;
    background-color: #eae5df;
}

.expertise-intro-photo img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

.expertise-services {
    padding: 60px 8% 120px 8%;
    background: linear-gradient(
        to bottom,
        #f4f1ee 0%,
        #ece7e1 50%,
        #f4f1ee 100%
    );
    position: relative;
}



.expertise-section-title {
    margin-bottom: 45px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.expertise-card {
    padding: 38px 30px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
}

.expertise-number {
    display: block;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #999;
}

.expertise-card h3,
.process-content h3 {
    margin: 0 0 18px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.expertise-process {
    padding: 110px 8%;
}

.process-list {
    display: grid;
    gap: 28px;
}

.process-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.process-step:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.process-index {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #c5a059;
    line-height: 1;
    padding-top: 2px;
}

.expertise-focus {
    padding: 0 8% 120px 8%;
}

.expertise-focus-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    border-top: none;
    border-bottom: none;
}

.expertise-focus-box .small-label {
    margin-bottom: 18px;
}

.expertise-focus-box p {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 1100px) {
    .expertise-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .expertise-intro-photo img {
        height: 560px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expertise-hero .line-2 {
        padding-left: 0;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-index {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .expertise-hero,
    .expertise-intro,
    .expertise-services,
    .expertise-process,
    .expertise-focus {
        padding-left: 6%;
        padding-right: 6%;
    }

    .expertise-intro-photo img {
        height: 420px;
    }

    .expertise-focus-box {
        padding: 50px 20px;
    }
}
.top-bar .location {
    color: #ffffff;
    margin-right: 10px;
}

.top-bar .separator {
    color: rgba(255, 255, 255, 0.4);
}

.top-bar a {
    text-decoration: none;
    color: #c5a059;
    margin-left: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ffffff;
}

/* =========================================================
   3. MENU LATÉRAL
   ========================================================= */
.side-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #ece7e1;
    z-index: 1000;
    padding: 60px 40px;
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

.vertical-nav .main-nav {
    list-style: none;
}

.vertical-nav .main-nav > li {
    margin-bottom: 35px;
    position: relative;
}

.vertical-nav .main-nav > li > a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.vertical-nav .main-nav > li > a:hover {
    color: #c5a059;
}

.vertical-nav .main-nav > li > a span {
    font-size: 0.65rem;
    color: #c5a059;
    margin-right: 15px;
    font-weight: 600;
}

.submenu {
    list-style: none;
    padding-left: 32px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 0;
}

.dropdown:hover .submenu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.submenu li {
    margin-bottom: 10px;
}

.submenu li a {
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    transition: color 0.3s;
    text-transform: none;
}

.submenu li a:hover {
    color: #c5a059;
}

.header-footer p {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* =========================================================
   4. HERO ACCUEIL
   ========================================================= */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('images/décoration-bureau-cabinet privé-coloré-papier peint-angers.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: 0.4s;
}

.hero-btn:hover {
    background-color: #c5a059;
    transform: translateY(-3px);
}

/* =========================================================
   5. INTRO ACCUEIL
   ========================================================= */
.intro-text {
    padding: 140px 10%;
    text-align: center;
    background: radial-gradient(circle at center, #d9bd85 0%, #c5a059 70%, #b38f4d 100%);
}

.intro-text h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 35px;
}

/* =========================================================
   6. GALERIE INTERACTIVE ACCUEIL
   ========================================================= */
.interactive-gallery {
    display: flex;
    height: 700px;
    width: 100%;
    background-color: #000;
}

.project-card {
    position: relative;
    flex: 1;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.project-card:hover {
    flex: 2.5;
}

.project-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: all 0.8s ease;
}

.project-card:hover img {
    filter: brightness(0.95);
}

.project-overlay {
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
    opacity: 1;
    transition: all 0.5s ease;
    color: #ffffff;
    z-index: 10;
}

.project-overlay h2 {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.project-overlay p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: left;
}

.view-project {
    display: inline-block;
    margin-top: 12px;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 3px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.view-project:hover {
    border-bottom-color: #ffffff;
    letter-spacing: 4px;
}

/* =========================================================
   7. FEATURE SECTION
   ========================================================= */
.feature-section {
    padding: 120px 8%;
    background: radial-gradient(circle at center, #d9bd85 0%, #c5a059 70%, #b38f4d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
}

.feature-text p {
    margin-bottom: 40px;
    color: #1a1a1a;
}

.link-more {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: 0.4s;
}

.link-more:hover {
    background-color: #ffffff;
    color: #1a1a1a !important;
    transform: translateY(-3px);
}

.feature-image {
    flex: 1.2;
    position: relative;
    padding: 20px;
}

.feature-image img {
    width: 100%;
    box-shadow: -30px 30px 0px #ffffff;
    transition: 0.6s;
}

.feature-image:hover img {
    transform: scale(1.03) translateY(-10px);
    box-shadow: -15px 15px 0px #ffffff;
}

/* =========================================================
   8. CONTACT
   ========================================================= */
.contact-section { 
    padding: 120px 8%;
    background: linear-gradient(
        to bottom,
        #ddd5cb 0%,     /* sable plus soutenu */
        #ece7e1 50%,    /* transition douce */
        #f4f1ee 100%    /* sable clair (comme avis) */
    );
    position: relative;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #c5a059;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intern-note {
    margin-top: 40px;
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

form input,
form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    margin-bottom: 25px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    border-bottom: 1px solid #c5a059;
}

form button[type="submit"] {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 22px 40px;
    border: 1px solid #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

form button[type="submit"]:hover {
    background-color: #c5a059;
    border-color: #c5a059;
    letter-spacing: 6px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

/* =========================================================
   9. TÉMOIGNAGES
   ========================================================= */
.testimonials-section {
    padding: 140px 8% 120px 8%;
    background-color: #f4f1ee;
    text-align: center;
    position: relative;
}

.testimonials-header {
    margin-bottom: 80px;
}

.gold-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c5a059;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #c5a059;
    font-size: 1.3rem;
    letter-spacing: 5px;
}

.rating-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #fcfcfc;
    padding: 50px 35px;
    border: 1px solid #f2f2f2;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.quote::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c5a059;
    margin: 25px auto 0;
    opacity: 0.4;
}

.client-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-top: 20px;
}

.project-type {
    display: block;
    font-size: 0.7rem;
    color: #c5a059;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================
   10. FOOTER
   ========================================================= */
footer {
    background: radial-gradient(circle at 50% 0%, #1a2c44 0%, #05080a 85%);
    color: #ffffff;
    padding: 120px 8% 40px 8%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.manifesto-title,
.footer-col h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c5a059;
    margin-bottom: 35px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-style: italic;
    max-width: 350px;
}

.contact-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #c5a059;
    transform: translateX(8px);
}

.address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 25px;
    line-height: 1.6;
}

.social-interactive {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0;
}

.social-link span {
    transition: letter-spacing 0.4s ease, color 0.4s ease;
}

.social-link .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #c5a059;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-link:hover .line {
    width: 100%;
}

.social-link:hover span {
    letter-spacing: 3px;
    color: #c5a059;
}

.availability {
    font-size: 0.7rem;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-legal a {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.footer-legal a {
    margin-left: 25px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* =========================================================
   11. PAGE INTRO / RÉSIDENCES / PAGES PROJETS
   ========================================================= */
body.page-residences,
.portfolio-residences {
    background-color: #f4f1ee;
    margin: 0;
    padding: 0;
}

.page-intro {
    background-color: #f4f1ee;
    padding: 150px 8% 100px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-intro h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 10px;
    line-height: 1.2;
    margin: 0;
}

.page-intro h1 span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.page-intro h1.animate .line-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.page-intro h1.animate .line-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
    color: #c5a059;
    padding-left: 80px;
}

.page-intro .separator-line {
    width: 0;
    height: 1px;
    background-color: #c5a059;
    margin: 40px auto;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

.page-intro.animate .separator-line {
    width: 400px;
}

.page-intro .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transition: opacity 1s ease 1.8s;
}

.page-intro.animate .subtitle {
    opacity: 1;
}

.project-showcase:first-of-type {
    margin-top: 100px;
}

/* =========================================================
   12. PROJETS SHOWCASE
   ========================================================= */
.project-showcase {
    background-color: #f4f1ee;
    padding: 60px 0;
    margin: 0;
    border: none;
}

.project-container {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 80px;
    align-items: flex-start;
}

.project-legend {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.legend-sticky {
    position: sticky;
    top: 150px;
}

.project-date {
    font-size: 0.7rem;
    color: #c5a059;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.project-legend h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 5px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 25px;
}

.project-legend h2 .line-1 {
    display: block;
}

.project-legend h2 .line-2 {
    display: block;
    color: #c5a059;
    padding-left: 50px;
}

.project-legend h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background-color: #c5a059;
}

.project-location {
    font-family: 'Inter', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 40px;
    display: block;
}

.project-description p {
    color: #555;
    line-height: 1.9;
    font-size: 0.95rem;
    margin: 0 0 30px 0;
    padding: 0;
}

.btn-contact-project {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.btn-contact-project:hover {
    color: #c5a059;
    padding-left: 10px;
}

.project-showcase.reverse .project-container {
    flex-direction: row-reverse;
}

.project-showcase.reverse .project-legend {
    padding-left: 40px;
    padding-right: 0;
}

/* =========================================================
   13. MOSAÏQUES PROJETS
   ========================================================= */
.project-mosaic {
    flex: 0 0 65%;
    max-width: 65%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
    align-content: start;
}

.mosaic-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background-color: #eae5df;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.mosaic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.h-rect {
    grid-column: span 2;
}

.v-rect {
    grid-row: span 2;
}

.square {
    grid-column: span 1;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 44, 68, 0.1);
    opacity: 0;
    transition: opacity 0.4s;
}

.mosaic-item:hover .image-overlay {
    opacity: 1;
}

/* Version grille puzzle */
.project-mosaic.grid-9-puzzle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 15px;
    grid-auto-flow: dense;
    flex: 0 0 65%;
    max-width: 65%;
}

.grid-9-puzzle .mosaic-item.square {
    grid-column: span 1;
    grid-row: span 1;
}

.grid-9-puzzle .mosaic-item.h-rect {
    grid-column: span 2;
    grid-row: span 1;
}

.grid-9-puzzle .mosaic-item.v-rect {
    grid-column: span 1;
    grid-row: span 2;
}

/* =========================================================
   14. PHOTO UNIQUE PROJET
   ========================================================= */
.project-single-photo {
    flex: 0 0 65%;
    max-width: 65%;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    cursor: pointer;
    background-color: #eae5df;
}

.project-single-photo img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    display: block;
    object-fit: cover;
}

/* =========================================================
   15. SÉPARATEURS
   ========================================================= */
.project-sep-minimal {
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f1ee;
    margin: 0;
}

.sep-line-vertical {
    width: 1px;
    height: 80px;
    background-color: #c5a059;
    position: relative;
    opacity: 0.8;
}

.sep-line-vertical::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -2px;
    width: 5px;
    height: 5px;
    background-color: #c5a059;
    border-radius: 50%;
}

/* =========================================================
   16. FULLWIDTH GALLERY
   ========================================================= */
.fullwidth-gallery {
    width: 100%;
    margin-top: 60px;
    padding: 0 5% 120px 5%;
    background-color: #f4f1ee;
}

.gallery-mosaic {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px 260px 260px;
    gap: 20px;
    grid-template-areas:
        "img1 img1 img2 img3"
        "img4 img5 img5 img3"
        "img6 img5 img5 img7"
        "img8 img9 img10 img10";
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background-color: #eae5df;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-mosaic .gallery-item:nth-child(1)  { grid-area: img1; }
.gallery-mosaic .gallery-item:nth-child(2)  { grid-area: img2; }
.gallery-mosaic .gallery-item:nth-child(3)  { grid-area: img3; }
.gallery-mosaic .gallery-item:nth-child(4)  { grid-area: img4; }
.gallery-mosaic .gallery-item:nth-child(5)  { grid-area: img5; }
.gallery-mosaic .gallery-item:nth-child(6)  { grid-area: img6; }
.gallery-mosaic .gallery-item:nth-child(7)  { grid-area: img7; }
.gallery-mosaic .gallery-item:nth-child(8)  { grid-area: img8; }
.gallery-mosaic .gallery-item:nth-child(9)  { grid-area: img9; }
.gallery-mosaic .gallery-item:nth-child(10) { grid-area: img10; }

/* =========================================================
   17. MODAL PHOTO
   ========================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: apparitionDouce 0.4s ease-out;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f4f1ee;
    font-size: 50px;
    font-weight: 200;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close:hover {
    color: #c5a059;
}

@keyframes apparitionDouce {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   18. PAGE PHILOSOPHIE
   ========================================================= */
.philosophy-page,
.philosophy-section,
.philosophy-values,
.philosophy-hero,
.philosophy-quote {
    background-color: #f4f1ee;
}
.philosophy-page {
    width: 100%;
}

.philosophy-hero {
    padding: 110px 8% 80px 8%;
}

.philosophy-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    color: #1a1a1a;
}

.philosophy-hero .line-1,
.philosophy-hero .line-2 {
    display: block;
}

.philosophy-hero .line-2 {
    color: #c5a059;
    padding-left: 60px;
}

.philosophy-hero .separator-line {
    width: 100px;
    height: 1px;
    background: #c5a059;
    margin: 30px 0 25px 0;
}

.philosophy-hero .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.9;
    max-width: 650px;
}

.philosophy-section {
    width: 100%;
    padding: 20px 8% 90px 8%;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

.philosophy-text {
    max-width: 760px;
}

.philosophy-block {
    margin-bottom: 70px;
}

.philosophy-block .small-label {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b8b8b;
}

.philosophy-block h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0 0 22px 0;
    color: #1a1a1a;
}

.philosophy-block p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    color: #555;
    margin: 0 0 18px 0;
}

.philosophy-block strong {
    font-weight: 600;
}

.philosophy-portrait-wrapper {
    position: sticky;
    top: 60px;
}

.philosophy-portrait {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #eae5df;
}

.philosophy-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.portrait-caption {
    margin-top: 22px;
    max-width: 420px;
}

.portrait-caption h3 {
    margin: 0 0 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.portrait-caption p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.philosophy-values {
    padding: 20px 8% 110px 8%;
}

.values-title {
    margin-bottom: 40px;
}

.values-title span {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 14px;
}

.values-title h2 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}

.value-card .value-number {
    display: block;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #999;
}

.value-card h3 {
    margin: 0 0 18px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.value-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
}

.philosophy-quote {
    padding: 0 8% 120px 8%;
}

.quote-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.quote-box p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    color: #1a1a1a;
    text-align: center;
    font-style: italic;
}
body.philosophy-page {
    background-color: #f4f1ee;
}
/* =========================================================
   19. RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    body {
        padding-left: 0;
    }

    .side-header {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .feature-content,
    .contact-grid,
    .footer-grid {
        display: block;
    }

    .feature-image {
        margin-top: 40px;
    }

    .feature-image img {
        box-shadow: 20px 20px 0px #ffffff;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .project-container {
        flex-direction: column;
        gap: 50px;
    }

    .project-legend,
    .project-mosaic,
    .project-single-photo,
    .project-showcase.reverse .project-legend {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
    }

    .legend-sticky {
        position: static;
    }

    .project-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 50vh;
    }

    .h-rect,
    .v-rect,
    .square {
        grid-column: span 1;
        grid-row: span 1;
    }

    .project-single-photo,
    .project-single-photo img {
        min-height: 500px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-portrait-wrapper {
        position: relative;
        top: auto;
        max-width: 700px;
    }

    .philosophy-portrait img {
        height: 620px;
    }
}

@media (max-width: 1024px) {
    .fullwidth-gallery {
        padding: 0 5% 80px 5%;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        grid-template-areas: none;
        grid-auto-rows: 240px;
    }

    .gallery-mosaic .gallery-item:nth-child(n) {
        grid-area: auto;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .social-link {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-hero {
        padding-top: 70px;
    }

    .philosophy-portrait img {
        height: 500px;
    }

    .quote-box {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .page-intro h1 {
        font-size: 2.2rem;
    }

    .page-intro.animate .separator-line {
        width: 200px;
    }

    .page-intro h1.animate .line-2 {
        padding-left: 0;
    }

    .interactive-gallery {
        flex-direction: column;
        height: auto;
    }

    .project-card {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .philosophy-hero,
    .philosophy-section,
    .philosophy-values,
    .philosophy-quote {
        padding-left: 6%;
        padding-right: 6%;
    }

    .philosophy-block {
        margin-bottom: 50px;
    }

    .philosophy-portrait img {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .top-bar {
        text-align: center;
        padding: 12px 20px;
    }

    .top-bar a {
        margin-left: 12px;
    }
}
.philosophy-values {
    padding: 120px 8%;
    
    background: #ffffff;
    
    border-top: 1px solid rgba(197,160,89,0.15);
    border-bottom: 1px solid rgba(197,160,89,0.15);
}
/* =========================================================
   21. PAGE CONTACT
   ========================================================= */

body.contact-page {
    background-color: #f4f1ee;
}

/* SECTION FORMULAIRE : teinte plus soutenue + contraste visible */
.contact-main-section {
    background: #dcd3c7;
    padding: 50px 8% 120px 8%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

/* SECTION NOTE : retour au sable clair */
.contact-note-section {
    background: #f4f1ee;
    padding: 0 8% 120px 8%;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.contact-main-info .small-label {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7f776d;
}

.contact-main-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.contact-main-info > p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    color: #4f4942;
    margin: 0 0 35px 0;
}

.contact-info-block {
    padding: 22px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-info-block:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-info-block h3 {
    margin: 0 0 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.contact-info-block a,
.contact-info-block p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4f4942;
    text-decoration: none;
    line-height: 1.8;
}

.contact-info-block a:hover {
    color: #c5a059;
}

/* Le formulaire ressort davantage sur le fond plus soutenu */
.contact-main-form-wrapper {
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-main-form input,
.contact-main-form textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.16);
    background: transparent;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s ease;
    color: #1a1a1a;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
    border-bottom: 1px solid #c5a059;
}

.contact-main-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-main-form button {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 40px;
    border: 1px solid #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 25px;
}

.contact-main-form button:hover {
    background-color: #c5a059;
    border-color: #c5a059;
    letter-spacing: 5px;
}

.contact-note-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.contact-note-box p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.9;
    color: #1a1a1a;
    text-align: center;
}

@media (max-width: 1100px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .contact-main-section,
    .contact-note-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .contact-main-form-wrapper {
        padding: 28px 24px;
    }

    .contact-note-box {
        padding: 50px 20px;
    }
}
/* =========================================================
   TIMELINE EXPERTISE (VERSION PREMIUM)
   ========================================================= */

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

/* Ligne centrale */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(0,0,0,0.15);
    transform: translateX(-50%);
}

/* Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px 60px;
}

/* Position gauche */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Position droite */
.timeline-item.right {
    left: 50%;
}

/* Contenu */
.timeline-content {
    max-width: 380px;
}

/* Numéro */
.step-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #c5a059;
    margin-bottom: 15px;
}

/* Titre */
.timeline-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

/* Texte */
.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
}

/* Point sur la ligne */
.timeline-item::after {
    content: "";
    position: absolute;
    top: 45px;
    width: 10px;
    height: 10px;
    background-color: #c5a059;
    border-radius: 50%;
    z-index: 10;
}

/* Position point gauche */
.timeline-item.left::after {
    right: -5px;
}

/* Position point droite */
.timeline-item.right::after {
    left: -5px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 30px 20px 30px 50px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item::after {
        left: 15px;
    }

}
.expertise-process {
    padding: 120px 8%;

    background: radial-gradient(
        circle at center,
        #f0ebe5 0%,
        #e7e1da 60%,
        #f4f1ee 100%
    );

    position: relative;
}
.tao-gallery {
    width: 100%;
    padding: 80px 5% 120px 5%;
    background-color: #f4f1ee;
}

.tao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tao-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #eae5df;
}

.tao-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tao-item:hover img {
    transform: scale(1.05);
}
/* COMPARAISON AVANT / APRÈS */
.comparison-section {
    padding: 120px 8%;
    background-color: #f4f1ee;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-item {
    position: relative;
    overflow: hidden;
    background-color: #eae5df;
}

.comparison-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.comparison-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26,26,26,0.8);
    color: #fff;
    padding: 8px 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }
}
.why-decorator-section {
    background: #f4f1ee;
    color: #1a1a1a;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.why-decorator-section .feature-content {
    flex-direction: row;
}

.why-decorator-section .feature-text h2 {
    color: #1a1a1a;
}

.why-decorator-section .feature-text p {
    color: #4a4a4a;
}

.why-decorator-section .feature-image img {
    box-shadow: -30px 30px 0px rgba(197, 160, 89, 0.12);
}

.why-decorator-section .feature-image:hover img {
    box-shadow: -15px 15px 0px rgba(197, 160, 89, 0.18);
}
.why-decorator-section .feature-content {
    flex-direction: row;
}
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}
.project-showcase .project-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 80px !important;
}

.project-showcase .project-legend,
.project-showcase .project-mosaic {
    flex: 1 !important;
}

/* IMPORTANT : ne pas inverser ici, car ton HTML est déjà inversé */


@media (max-width: 900px) {
    .project-showcase .project-container,
    .project-showcase.reverse .project-container {
        flex-direction: column !important;
    }
}
.service-photo {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    background-color: #eae5df;
}

.service-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.conseil-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.conseil-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.modal-conseil {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.modal-conseil-content {
    background: #fff;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 60px;
    position: relative;
}

.close-conseil {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 34px;
    cursor: pointer;
}

.conseil-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
}

.modal-conseil-content h2 {
    margin-bottom: 30px;
}

.modal-conseil-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.conseil-cta {
    margin-top: 40px;
}
.intervention-section {
    padding: 120px 8%;
    background: radial-gradient(
        circle at center,
        #f0ebe5 0%,
        #e7e1da 60%,
        #f4f1ee 100%
    );
}

.intervention-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.intervention-card {
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 40px 32px;
    min-height: 300px;
    transition: all 0.4s ease;
}

.intervention-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.55);
}

.intervention-number {
    display: block;
    margin-bottom: 22px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #c5a059;
}

.intervention-card h3 {
    margin: 0 0 18px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #1a1a1a;
}

.intervention-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.85;
    color: #555;
}

@media (max-width: 1100px) {
    .intervention-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .intervention-section {
        padding: 80px 6%;
    }

    .intervention-grid {
        grid-template-columns: 1fr;
    }
}
.intervention-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c5a059;
}
.expertise-image-break {
    padding: 110px 8%;
    background-color: #f4f1ee;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.expertise-image-wrapper {
    overflow: hidden;
    background-color: #eae5df;
}

.expertise-image-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.expertise-image-text span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b8b8b;
}

.expertise-image-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.expertise-image-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .expertise-image-break {
        grid-template-columns: 1fr;
        padding: 80px 6%;
    }

    .expertise-image-wrapper img {
        height: 420px;
    }
}
.expertise-banner {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background-color: #eae5df;
}

.expertise-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dropdown.open .submenu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.dropdown > a {
    cursor: pointer;
}