/* ============================================================
   MULTI'CH — Feuille de style globale (fusionnée)
   ============================================================ */


/* ============================================================
   1. TOKENS (variables CSS)
   ============================================================ */
:root {
    --ink:         #1a1410;
    --sand:        #f5f0e8;
    --cream:       #faf8f4;
    --rust:        #c0562a;
    --rust-dark:   #9a3f1c;
    --rust-pale:   #f5e8e0;
    --stone:       #8a8075;
    --white:       #ffffff;

    --f-display: 'Playfair Display', Georgia, serif;
    --f-body:    'DM Sans', sans-serif;

    --section-py:  5rem;
    --container:   1100px;
    --gap:         2rem;

    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-sm:   0 2px 8px rgba(26,20,16,.06);
    --shadow-md:   0 8px 32px rgba(26,20,16,.10);
    --shadow-lg:   0 20px 60px rgba(26,20,16,.14);
    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-pill: 100px;
}


/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ============================================================
   3. NAVIGATION (desktop + mobile)
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(250,248,244,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26,20,16,.07);
    transition: padding .3s var(--ease-out);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.01em;
    z-index: 101;
}

.nav-logo img { height: 40px; border-radius: 8px; }

/* Liens desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--stone);
    transition: color .2s;
    letter-spacing: .01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-cta {
    background: var(--rust) !important;
    color: var(--white) !important;
    padding: .55rem 1.4rem;
    border-radius: var(--radius-pill);
    font-weight: 600 !important;
    transition: background .2s, transform .2s !important;
}

.nav-cta:hover {
    background: var(--rust-dark) !important;
    transform: translateY(-1px);
}

/* ── Hamburger (mobile) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: background .2s;
}

.nav-toggle:hover { background: rgba(26,20,16,.06); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease-out), opacity .2s, width .3s;
    transform-origin: center;
}

/* État ouvert */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu mobile overlay ── */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,248,244,.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease-out);
}

.nav-mobile.open {
    opacity: 1;
    pointer-events: all;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    width: 100%;
    padding: 0 2rem;
}

.nav-mobile-links a {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    padding: .75rem 1.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    text-align: center;
    transition: background .2s, color .2s;
    letter-spacing: -.01em;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
    background: var(--rust-pale);
    color: var(--rust);
}

.nav-mobile-cta {
    margin-top: 2rem;
    background: var(--rust) !important;
    color: var(--white) !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--f-body) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: .9rem 2.5rem !important;
    box-shadow: 0 8px 24px rgba(192,86,42,.3);
}

.nav-mobile-cta:hover {
    background: var(--rust-dark) !important;
}

.nav-mobile-footer {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--stone);
    font-weight: 500;
}

.nav-mobile-footer svg { color: var(--rust); }

/* Empêcher le scroll quand menu ouvert */
body.nav-open { overflow: hidden; }


/* ============================================================
   4. BOUTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    text-align: center;
}

.btn-primary {
    background: var(--rust);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192,86,42,.3);
}

.btn-primary:hover {
    background: var(--rust-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,86,42,.38);
}

.btn-outline {
    background: transparent;
    color: var(--rust);
    border: 2px solid var(--rust);
}

.btn-outline:hover {
    background: var(--rust);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--rust);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--ink);
    font-weight: 500;
    font-size: .95rem;
    background: none;
    border: none;
    padding: 0;
    transition: gap .2s;
    cursor: pointer;
}

.btn-ghost:hover { gap: .8rem; }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(3px); }


/* ============================================================
   5. LAYOUT UTILITAIRES
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-py) var(--gap);
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: .75rem;
}

.section-header { margin-bottom: 3.5rem; }

.section-header h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -.02em;
}

.section-header p {
    margin-top: .75rem;
    color: var(--stone);
    font-size: 1rem;
    font-weight: 300;
}

.bg-sand { background: var(--sand); }
.bg-dark { background: var(--ink); }
.bg-dark .section-label { color: var(--rust); }
.bg-dark h2 { color: var(--white); }


/* ============================================================
   6. TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--f-display);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { font-weight: 300; color: var(--stone); line-height: 1.7; }
strong { font-weight: 600; color: var(--ink); }


/* ============================================================
   7. COMPOSANTS PARTAGÉS
   ============================================================ */

/* Carte service */
.svc-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--white);
    transition: background .25s;
}

.svc-card:hover { background: var(--rust-pale); }

.svc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }

.svc-img-wrap .placeholder {
    width: 100%;
    height: 100%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-img-wrap .placeholder svg { opacity: .18; }

.svc-body {
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-number {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.svc-body h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .75rem;
    letter-spacing: -.01em;
}

.svc-body p {
    color: var(--stone);
    font-size: .95rem;
    line-height: 1.65;
    font-weight: 300;
    max-width: 420px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    border: 1px solid rgba(26,20,16,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(26,20,16,.06);
}


/* Galerie mosaïque */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: .75rem;
}

.gallery-mosaic .g-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,.05);
}

.gallery-mosaic .g-item:first-child { grid-column: span 2; }

.gallery-mosaic .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out), opacity .3s;
    opacity: .85;
}

.gallery-mosaic .g-item:hover img { transform: scale(1.05); opacity: 1; }

.g-item .g-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: rgba(255,255,255,.2);
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* Galerie standard */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-grid .g-item { height: 240px; border-radius: var(--radius-md); overflow: hidden; }

.gallery-grid .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.gallery-grid .g-item:hover img { transform: scale(1.07); }


/* Bannière CTA */
.cta-banner {
    margin: var(--section-py) var(--gap);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    background: var(--rust);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}

.cta-banner::before {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }

.cta-text h3 {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}

.cta-text p { color: rgba(255,255,255,.75); font-size: .975rem; font-weight: 300; }
.cta-action { position: relative; z-index: 1; flex-shrink: 0; }


/* Statistiques */
.stats { display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }

.stat-item h4 {
    font-family: var(--f-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--rust);
    margin-bottom: .2rem;
}

.stat-item p { font-size: .85rem; font-weight: 500; color: var(--stone); margin: 0; }


/* Liste à puces rouille */
.dot-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

.dot-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    color: var(--ink);
    font-weight: 500;
    padding: .65rem .75rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid rgba(26,20,16,.07);
    transition: border-color .2s, transform .2s;
}

.dot-item:hover { border-color: var(--rust); transform: translateX(3px); }

.dot-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rust); flex-shrink: 0; }


/* Mini-cartes icône */
.icon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.icon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,20,16,.06);
}

.icon-card svg { margin: 0 auto .75rem; color: var(--rust); }
.icon-card span { font-size: .8rem; font-weight: 600; color: var(--stone); display: block; letter-spacing: .02em; }


/* Bouton flottant Google Avis */
.google-review-floating { position: fixed; bottom: 30px; right: 30px; z-index: 999; }

.google-review-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: var(--white);
    padding: .9rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 8px 24px rgba(66,133,244,.35);
    transition: transform .25s var(--ease-out), box-shadow .25s;
    border: 2px solid rgba(255,255,255,.3);
}

.google-review-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 36px rgba(66,133,244,.5);
}

.google-icon {
    width: 28px; height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.google-review-btn .stars { display: flex; gap: 1px; font-size: .9rem; }


/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

[data-reveal].visible { opacity: 1; transform: none; }

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }


/* ============================================================
   8. HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--sand);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(192,86,42,.12);
    pointer-events: none;
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(192,86,42,.08);
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: 140px;
    border-radius: 50%;
    background: rgba(192,86,42,.04);
}

.hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--rust); }

.hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1.02;
    max-width: 680px;
    margin-bottom: 1.75rem;
    color: var(--ink);
}

.hero h1 em { font-style: italic; color: var(--rust); }

.hero-desc { font-size: 1.1rem; max-width: 460px; margin-bottom: 3rem; line-height: 1.75; }

.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.hero-tel {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    transition: color .2s;
}

.hero-tel:hover { color: var(--rust); }
.hero-tel svg { color: var(--rust); }

.hero-photo { position: relative; display: flex; justify-content: center; }

.hero-photo-frame { position: relative; width: 340px; height: 420px; }

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 24px 24px;
    position: relative;
    z-index: 1;
}

.hero-photo-frame::before {
    content: '';
    position: absolute;
    inset: -16px -16px -16px 16px;
    background: var(--rust-pale);
    border-radius: 200px 200px 24px 24px;
    z-index: 0;
}

.hero-badge {
    position: absolute;
    bottom: 28px; left: -40px;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .85rem;
    z-index: 2;
    border: 1px solid rgba(26,20,16,.06);
}

.badge-icon {
    width: 40px; height: 40px;
    background: var(--rust-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    flex-shrink: 0;
}

.badge-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--ink); }
.badge-text span { font-size: .75rem; color: var(--stone); font-weight: 400; }

.hero-badge-2 {
    position: absolute;
    top: 20px; right: -30px;
    background: var(--rust);
    border-radius: 16px;
    padding: .85rem 1.1rem;
    box-shadow: 0 8px 24px rgba(192,86,42,.3);
    z-index: 2;
    text-align: center;
}

.hero-badge-2 strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-badge-2 span { font-size: .7rem; color: rgba(255,255,255,.75); font-weight: 500; letter-spacing: .04em; }


/* ============================================================
   9. SERVICES OVERVIEW (index)
   ============================================================ */
.services-overview {
    padding: var(--section-py) var(--gap);
    max-width: var(--container);
    margin: 0 auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.srv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(26,20,16,.07);
    transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
}

.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--rust); }

.srv-icon {
    width: 48px; height: 48px;
    background: var(--rust-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    transition: background .25s;
}

.srv-card:hover .srv-icon { background: var(--rust); color: var(--white); }
.srv-card h3 { font-size: 1.1rem; margin: 0; }
.srv-card p { font-size: .875rem; line-height: 1.6; flex: 1; }

.srv-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--rust);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: gap .2s;
}

.srv-card:hover .srv-link { gap: .7rem; }


/* ============================================================
   10. SECTION À PROPOS
   ============================================================ */
.about-section { background: var(--ink); padding: var(--section-py) var(--gap); }

.about-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-deco-side { position: relative; }

.about-deco-side::before {
    content: '10';
    font-family: var(--f-display);
    font-size: 18rem;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    position: absolute;
    top: -4rem; left: -2rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-stat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    transition: background .25s;
}

.about-stat-card:hover { background: rgba(255,255,255,.08); }

.about-stat-card .num {
    font-family: var(--f-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--rust);
    line-height: 1;
    margin-bottom: .4rem;
}

.about-stat-card p { font-size: .85rem; color: rgba(255,255,255,.5); margin: 0; font-weight: 400; }

.about-content { position: relative; z-index: 1; }
.about-content .section-label { color: var(--rust); }
.about-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-content p { color: rgba(255,255,255,.55); margin-bottom: 1.25rem; font-size: .975rem; }
.about-content strong { color: rgba(255,255,255,.85); }

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.about-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rust); }

.about-avatar-placeholder {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(192,86,42,.2);
    border: 2px solid var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 1.2rem;
}

.about-sig-text strong { display: block; color: var(--white); font-size: .95rem; }
.about-sig-text span { font-size: .8rem; color: rgba(255,255,255,.4); }


/* ============================================================
   11. ZONES D'INTERVENTION
   ============================================================ */
.zones-section { padding: var(--section-py) var(--gap); max-width: var(--container); margin: 0 auto; }

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .75rem;
    margin-top: 3rem;
}

.zone-chip {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1rem;
    background: var(--white);
    border: 1px solid rgba(26,20,16,.07);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink);
    transition: border-color .2s, background .2s;
}

.zone-chip:hover { border-color: var(--rust); background: var(--rust-pale); }
.zone-chip svg { color: var(--rust); flex-shrink: 0; }


/* ============================================================
   12. TÉMOIGNAGES
   ============================================================ */
.reviews-section { background: var(--sand); padding: var(--section-py) var(--gap); }
.reviews-inner { max-width: var(--container); margin: 0 auto; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid rgba(26,20,16,.07);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; font-size: 1rem; }

.review-text { font-size: .9rem; line-height: 1.7; color: var(--stone); margin-bottom: 1.5rem; font-style: italic; }

.review-author { display: flex; align-items: center; gap: .75rem; }

.review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--rust-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--rust);
    flex-shrink: 0;
}

.review-author strong { display: block; font-size: .875rem; color: var(--ink); }
.review-author span { font-size: .75rem; color: var(--stone); }
.reviews-cta { text-align: center; margin-top: 2.5rem; }


/* ============================================================
   13. FOOTER
   ============================================================ */
footer { background: var(--ink); padding: 3rem var(--gap); }

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand { font-family: var(--f-display); font-size: 1.2rem; font-weight: 900; color: var(--white); }

.footer-brand span {
    display: block;
    font-family: var(--f-body);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255,255,255,.4);
    margin-top: .25rem;
    letter-spacing: .02em;
}

.footer-links-group { display: flex; gap: 4rem; flex-wrap: wrap; }

.footer-col h4 {
    font-family: var(--f-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}

.footer-col li { margin-bottom: .55rem; }

.footer-col a,
.footer-col span { font-size: .85rem; color: rgba(255,255,255,.55); font-weight: 400; transition: color .2s; }

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

.footer-bottom {
    max-width: var(--container);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); font-weight: 400; }


/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .nav { padding: 1rem 2.5rem; }
    .services-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    /* Nav : on passe en mode mobile */
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }          /* masquer les liens desktop */
    .nav-toggle { display: flex; }         /* afficher le burger */
    .nav-mobile { display: flex; }         /* prêt à s'ouvrir */

    /* Cards services */
    .svc-card { grid-template-columns: 1fr; }
    .svc-img-wrap { height: 200px; }

    /* Galerie */
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .gallery-mosaic .g-item:first-child { grid-column: span 1; }

    .cta-banner { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }

    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links-group { gap: 2.5rem; }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-eyebrow { justify-content: center; }
    .hero h1 { margin: 0 auto 1.75rem; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-photo { order: -1; }
    .hero-photo-frame { width: 260px; height: 320px; }
    .hero-badge { left: 10px; bottom: 20px; }

    .about-inner { grid-template-columns: 1fr; gap: 4rem; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    :root { --section-py: 3rem; --gap: 1.25rem; }

    .dot-list { grid-template-columns: 1fr; }
    .stats { gap: 2rem; }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
    }

    .google-review-floating { bottom: 18px; right: 18px; }
    .google-review-btn .btn-text { display: none; }
    .google-review-btn { padding: .75rem 1rem; }

    .services-cards { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   15. SCRIPT MENU MOBILE (à inclure dans chaque page HTML)
   ============================================================
   Ajoutez ce bloc <script> avant </body> dans vos pages HTML :

   <script>
     const toggle = document.querySelector('.nav-toggle');
     const mobileMenu = document.querySelector('.nav-mobile');
     toggle.addEventListener('click', () => {
       const isOpen = toggle.classList.toggle('open');
       mobileMenu.classList.toggle('open', isOpen);
       document.body.classList.toggle('nav-open', isOpen);
     });
     // Fermer en cliquant un lien
     document.querySelectorAll('.nav-mobile-links a').forEach(link => {
       link.addEventListener('click', () => {
         toggle.classList.remove('open');
         mobileMenu.classList.remove('open');
         document.body.classList.remove('nav-open');
       });

/* ============================================================
   PAGE CONTACT - STYLE COMPLET
   ============================================================ */

.contact-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.contact-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 0 1.5rem;
}

.contact-info h3 {
    font-family: var(--f-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item .icon-box {
    font-size: 1.5rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
}

.contact-item a, .contact-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

/* Formulaire */
.contact-form {
    background: var(--sand);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--f-body);
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--rust);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--rust-dark);
}

.form-success {
    display: none;
    padding: 1.5rem;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; }
}
     });
   </script>
   ============================================================ */
